銀河麒麟V10利用系統(tǒng)光盤與 yum 離線升級系統(tǒng)
當(dāng)系統(tǒng)處于離線狀態(tài)或者無法訪問官方更新源時,可以利用更新的系統(tǒng)光盤
創(chuàng)建本地 yum 源并進行升級。步驟如下:
1. 創(chuàng)建系統(tǒng)光盤掛載目錄,以 root 用戶執(zhí)行:
# mkdir mount_dir? ?(可復(fù)制該代碼)
2. 將系統(tǒng)安裝光盤掛載至該目錄,以 root 用戶執(zhí)行
# mount -o loop iso_name mount_dir? ??(可復(fù)制該代碼)
3. 將系統(tǒng)光盤中的 media.repo 文件從掛載目錄拷貝至/etc/yum.repo s.d/目錄下:
# cp mount_dir/media.repo /etc/yum.repos.d/new.repo? ??(可復(fù)制該代碼)
4. 編輯/etc/yum.repos.d/new.repo 配置文件以添加光盤路徑:
# baseurl=file://mount_dir? ??(可復(fù)制該代碼)
5. 更新 yum 源并進行升級,以 root 用戶執(zhí)行:
# yum update? ??(可復(fù)制該代碼)
6. 升級成功后,卸載系統(tǒng)光盤掛載目錄:
# umount mount_dir 或者 rmdir mount_dir? ?(可復(fù)制該代碼)
如果不再使用這個 yum 源進行安裝和升級,可以以 root 用戶刪除文件:
# rm /etc/yum.repos.d/new.repo? ?(可復(fù)制該代碼)

以上內(nèi)容來源于技術(shù)論壇“信創(chuàng)技術(shù)聯(lián)盟”https://www.cnxclm.com/read-391-1.html,歡迎對信創(chuàng)感興趣的朋友們一同到論壇相互討論交流!??
