Skip to content

Instantly share code, notes, and snippets.

@thislight
Last active July 7, 2016 15:01
Show Gist options
  • Save thislight/72a14691256475f56c2ccf48c7b20728 to your computer and use it in GitHub Desktop.
Save thislight/72a14691256475f56c2ccf48c7b20728 to your computer and use it in GitHub Desktop.
Fedora23添加 @Seaorsen 的源后貌似直接用dnf安装网易云音乐会报包长度错误,所以写了一个小脚本方便安装,记得需要root权限
#! /bin sh
# only for fedaora23
cd ~
wget http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-23.noarch.rpm
rpm -ivh rpmfusion-free-release-23.noarch.rpm
rm -rf rpmfusion-free-release-23.noarch.rpm
wget http://dl-http.senorsen.com/pub/package/linux/rpm/netease-cloud-music-0.9.0-4.x86_64.rpm
dnf install gstreamer1-plugins-ugly openal-soft opencore-amr qt5-qtmultimedia qt5-qtx11extras -y
rpm -ivh netease-cloud-music-0.9.0-4.x86_64.rpm
rm -rf netease-cloud-music-0.9.0-4.x86_64.rpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment