从 Debian 中删除 Google Play 音乐

从 Debian 中删除 Google Play 音乐

我正在使用 Cinnamon 运行 Debian Stretch 发行版。

我想删除 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*

答案2

我很恼火地在我的 centos 8 系统上发现了这个应用程序图标。看来我的 Chrome 安装(使用同步功能)安装了 Google Play 音乐扩展。我进入 Chrome 的设置,在 Chrome 应用程序的“扩展”部分中,简单地删除了 Google Play 音乐扩展。这立即删除了应用程序和图标,而无需我dnf删除/重新安装任何内容。

看起来很奇怪,我已经使用这个网络浏览器几个月了,但直到最近的更新它才安装这个独立的应用程序。

相关内容