Debian から Google Play ミュージックを削除する

Debian から Google Play ミュージックを削除する

私はDebian Stretchディストリビューションを実行するためにCinnamonを使用しています。

Google Playミュージックを削除したいのですが、インストール方法がわかりません。

ここから.debパッケージをダウンロードした可能性があります。https://www.googleplaymusicdesktopplayer.com/ しかし、注文は

dpkg -r package.deb

動作しません

そして私はそれをリストできません。

dpkg -l | grep google
dpkg -l | grep music

添付の写真を見ると、google-chromeパッケージに関連していますが、google-chromeを削除したくありません。

ここに画像の説明を入力してください。

ベストアンサー1

パッケージ名は「google-play-music-desktop-player」dpkg --remove google-play-music-desktop-playerなので、削除してください。.debパッケージ名の一部ではないファイル拡張子にのみ、dpkg --removeパッケージファイル名ではなくインストールされたパッケージ名が必要です。

dpkg -l | grep foo特にキーワードがわからない場合は、インストールされているパッケージを見つける非常に信頼できない方法です。apt-cache searchより良い傾向があります。

shadur@axiom: ~/Downloads/ > sudo dpkg -i google-play-music-desktop-player_4.4.1_amd64.deb 
Selecting previously unselected package google-play-music-desktop-player.
(Reading database ... 411755 files and directories currently installed.)
Preparing to unpack google-play-music-desktop-player_4.4.1_amd64.deb ...
Unpacking google-play-music-desktop-player (4.4.1-1) ...
Setting up google-play-music-desktop-player (4.4.1-1) ...
Processing triggers for desktop-file-utils (0.23-2) ...
Processing triggers for gnome-menus (3.13.3-9) ...
Processing triggers for mime-support (3.60) ...

shadur@axiom: ~/Downloads/ > dpkg -l googl\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name                     Version           Architecture      Description
+++-========================-=================-=================-=====================================================
ii  google-play-music-deskto 4.4.1-1           amd64             An Electron wrapper for Google Play Music

shadur@axiom: ~/Downloads/ > sudo dpkg --remove google-play-music-desktop-player
(Reading database ... 411831 files and directories currently installed.)
Removing google-play-music-desktop-player (4.4.1-1) ...
Processing triggers for desktop-file-utils (0.23-2) ...
Processing triggers for gnome-menus (3.13.3-9) ...
Processing triggers for mime-support (3.60) ...
shadur@axiom: ~/Downloads/ > 

shadur@axiom: ~/Downloads/ > dpkg -l googl\*
dpkg-query: no packages found matching googl*

おすすめ記事