CentOS 7常用軟體安裝彙總(更新)
阿新 • • 發佈:2019-01-23
建議:登陸root賬戶進行操作
2017-11-21
*安裝Nvidia獨立顯示卡驅動(重要:在雙顯示卡的筆記本上測試失敗,最後一次重啟系統後無法正常進入centOS)
//匯入公鑰 rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org //安裝ELRepo rpm -Uvh http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm //修改配置檔案 echo “blacklist nouveau options nouveau modeset=0″ > /etc/modprobe.d/blacklist-nouveau.conf //上面完成後重新啟動系統再進行下面操作 yum -y install kmod-nvidia 再次重啟系統可以看到驅動安裝成功
*安裝Flash
登陸https://get.adobe.com/flashplayer下載rpm版本的flash,記住儲存路徑
//先cd命令切換到檔案儲存路徑
//再使用rpm命令
rpm -ivh adobe-release-x86_64-1.0-1.noarch.rpm
//使用yum命令安裝
yum install flash-plugin
*安裝Google Chrome瀏覽器
在目錄/etc/yum.repos.d/下新建檔案google-chrome.repo:
cd /etc/yum.repos.d/
vim google-chrome.repo
新增如下內容:
[google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64 enabled=1 gpgcheck=1 gpgkey=https://dl.google.com/linux/linux_signing_key.pub
按ESC後輸入:wq儲存退出檔案
使用yum命令安裝chrome:
yum -y install google-chrome-stable --nogpgcheck
*安裝主題
從https://www.gnome-look.org/browse/下載主題後解壓縮,使用cp命令將主題資料夾複製至/usr/share/themes資料夾下,再開啟優化工具選擇主題即可
cp -r XXX /usr/share/themes
2017-11-30
*安裝中文輸入法
centOS 7自帶的拼音輸入法對常用詞彙的支援比較差,建議安裝cloudpinyin輸入法來提高打字效率。
//安裝/更新epel yum -y install epel-release //新增源mosquito-myrepo yum-config-manager --add-repo=https://copr.fedoraproject.org/coprs/mosquito/myrepo/repo/epel-7/mosquito-myrepo-epel-7.repo //安裝CloudPinyin yum -y install fcitx-cloudpinyin