U盤安裝rhel7後使用本地yum源
阿新 • • 發佈:2018-12-26
自己使用U盤安裝rhel7後很多東西是沒有安裝的,如果再次使用yum安裝,則需要聯網並且還要rhel註冊,所以考慮著把U盤的安裝包拷貝到電腦上作一個yum源。
1.建立一個目錄,用於存放資料(因為U盤還有其他用,裡面東西格掉)
[[email protected] oracle]# mkdir /media/rhel7
2.插入U盤,並將U盤掛載到/mnt(可以使用fdisk -l 檢視U盤位置)
[[email protected] oracle]# mount /dev/sda4 /mnt
3.將檔案複製到/media/rhel7中
[[email protected] oracle]# cp -rf /mnt/* /media/rhel7
4.開啟yum配置檔案,我這裡是新建了一個
[[email protected] oracle]# vi /etc/yum.repos.d/rhel7.repo
5.增加以下內容
[LocalYum]
name=rhel7
baseurl=file:///media/rhel7
enable=1
gpgcheck=1
gpgfile=file:///media/rhel7/RPM-GPG-KEY-redhat-release
6.清除yum快取
[[email protected] oracle]# yum clean all
7.檢視yum源中所有可用的軟體包,驗證是否安裝成功
[[email protected]
安裝時候如果報祕鑰失敗,則匯入祕鑰即可
rpm --import /media/rhel7/RPM-GPG-KEY-redhat-release