標籤:style http 使用 strong os 檔案
系統版本:
CentOS-6.4-x86_64-minimal 此系統為CD版本,所以基本是屬於迷你安裝版本。現將系統預設源更換成網易源,保證下載軟體的速度。步驟如下:
1、下載新源及將本地源備份[[email protected] ~]#
cd /etc/yum.repos.d/[[email protected] ~]#
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo[[email protected] ~]#
mv CentOS-Base.repo CentOS-Base.repo.bak[[email protected] ~]#
mv CentOS6-Base-163.repo CentOS-Base.repo 2、yum源更新[[email protected] ~]#
yum clean all && yum makecache && yum update -y 3、完成。 yum 命令工具使用舉例 1、升級系統[[email protected] ~]#yum update 2、安裝指定的軟體包[[email protected] ~]# yum -y install mysql-server 3、升級指定的軟體包[[email protected] ~]# yum -y update mysql 4、卸載指定的軟體包[[email protected] ~]# yum -y remore mysql 5、查看系統中已經安裝的和可用的軟體組,對於可用的軟體組,你可以選擇安裝[[email protected] ~]# yum grouplist 6、安裝上一個命令中顯示的可用的軟體組中的一個軟體組[[email protected] ~]# yum -y groupinstall Emacs 7、更新指定軟體組中的軟體包[[email protected] ~]# yum -y groupupdate Emacs 8、卸載指定軟體組中的軟體包[[email protected] ~]# yum -y groupremove Emacs 9、清除緩衝中的rpm 標頭檔和包檔案[[email protected] ~]# yum clean all 10、搜尋相關的軟體包[[email protected] ~]# yum -y search Emacs 11、顯示指定軟體包的資訊[[email protected] ~]# yum info Emacs 12、查詢指定軟體包的依賴包[[email protected] ~]# yum deplist emacs 13、列出所有以 yum 開頭的軟體包[[email protected] ~]# yum list yum\* 14、列出已經安裝的但是不包含在資產庫中的rpm 包[[email protected] ~]# # yum list extras