2021-05-12 14:32:11
RHEL7 本地yum源設定
RHEL7 設定yum 源
1、掛載DVD光碟到/mnt 因為設定時候路徑名裡面不能有空格,否則不能識別 [root@ mnt]# mount /dev/cdrom /mnt
2、在目錄/etc/yum.repos.d/建立檔案檔名.repo
3、設定本地yum源
cd /etc/yum.repos.d/ #進入yum設定目錄
touch rhel7.repo #建立yum組態檔
vim rhel7.repo #編輯組態檔,新增以下內容
[rhel-yum]
name=rhel7 #自定義名稱
baseurl=file:///mnt#本地光碟掛載路徑
enabled=1 #啟用yum源,0為不啟用,1為啟用
gpgcheck=0 #檢查GPG-KEY,0為不檢查,1為檢查
:wq! #儲存退出
4、、測試使用yum命令自動安裝軟體
yum clean all #清除yum快取
yum makecache #快取本地yum源中的軟體包資訊
yum install httpd #安裝apache
rpm -ql httpd #查詢所有安裝httpd的目錄和檔案
systemctl start httpd.service #啟動apache
systemctl stop httpd.service #停止apache
systemctl restart httpd.service #重新啟動apache
systemctl enable httpd.service #設定開機啟動
RHEL 7.0預設使用的是firewall作為防火牆,這裡改為iptables防火牆。
5、通過yum安裝GUI圖形介面# yum -y groupinstall "Server with GUI"可以執行startx看下效果。
通過yum解除安裝軟體 yum -y remove httpd(移除httpd軟體)
更多YUM相關教學見以下內容:
RedHat 6.2 Linux修改yum源免費使用CentOS源 http://www.linuxidc.com/Linux/2013-07/87383.htm
設定EPEL YUM源 http://www.linuxidc.com/Linux/2012-10/71850.htm
Redhat 本地yum源設定 http://www.linuxidc.com/Linux/2012-11/75127.htm
yum的組態檔說明 http://www.linuxidc.com/Linux/2013-04/83298.htm
RedHat 6.1下安裝yum(圖文) http://www.linuxidc.com/Linux/2013-06/86535.htm
YUM 安裝及清理 http://www.linuxidc.com/Linux/2013-07/87163.htm
CentOS 6.4上搭建yum本地源 http://www.linuxidc.com/Linux/2014-07/104533.htm
本文永久更新連結地址:http://www.linuxidc.com/Linux/2017-01/139140.htm
相關文章