1. 程式人生 > >debian9.6安裝網易音樂並解決安裝之後不能開啟網易音樂的問題

debian9.6安裝網易音樂並解決安裝之後不能開啟網易音樂的問題

我的系統環境,如下:

[email protected]:~$ lsb_release -a
No LSB modules are available.
Distributor ID:	Debian
Description:	Debian GNU/Linux 9.6 (stretch)
Release:	9.6
Codename:	stretch

1,下載網易音樂的deb包

官網:https://music.163.com/#/download

我下載的是:netease-cloud-music_1.1.0_amd64_ubuntu.deb

2,安裝

[email protected]
:~/音樂$ sudo dpkg -i netease-cloud-music_1.1.0_amd64_ubuntu.deb [email protected]:~/音樂$ sudo apt-get install -f [email protected]:~/音樂$ sudo dpkg -i netease-cloud-music_1.1.0_amd64_ubuntu.deb

三條命令:

第一條,安裝會有問題;

第二條,解決依賴性問題;

第三條,重新安裝就會成功。

3,開啟網易音樂

問題來了,點圖示打不開。

4,解決問題

a,修改/etc/sudoers檔案

[email protected]:~/音樂$ su -
密碼:
[email protected]:~# chmod 640 /etc/sudoers
[email protected]:~# vim /etc/sudoers
末尾新增guoyanzhang ALL = NOPASSWD: /usr/bin/netease-cloud-music
[email protected]:~# chmod 440 /etc/sudoers

 特別注意,guoyanzhang是我的登入使用者用,其他使用者用其他使用者的使用者名稱。

b,修改/usr/share/applications/netease-cloud-music.desktop檔案

[email protected]:~# vim /usr/share/applications/netease-cloud-music.desktop
修改Exec=netease-cloud-music %U 為 Exec=sudo netease-cloud-music %U

其實就是在前面添加了sudo,估計之前起不來是因為許可權的問題。

這個時候應該是可以啟動了,如果不能啟動,出現c的問題,可參照c解決。

c,如果有類似問題

Gtk-Message: Failed to load module "canberra-gtk-module"
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-root'

解決方法:

[email protected]:~/音樂$ sudo apt-get install canberra-gtk-module

這樣就可以了。

不過網易音樂沒有酷狗音樂歌曲多。

參考1:http://tieba.baidu.com/p/5656330156

參考2:https://blog.csdn.net/qq_36275734/article/details/81907566

參考3:https://blog.csdn.net/Gpwner/article/details/78347516

參考4:https://blog.csdn.net/sinat_31092021/article/details/80744875