yum
install-y
--downloadonly--
downloaddir=/path/#-
-
2、建立repo檔案
yum的源配置檔案在/etc/yum.repos.d/目錄下,可以參考centos-base.repo自己建立乙個repo檔案
cat >>/etc/yum.repos.d/centos-local.repo<<-eof
[local]
name=local
yumbaseurl=file:///~/yumrepo/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-centos-7
enabled=1
3、安裝createrepo
yum install createrepo #若之前沒有安裝記得把安裝包靠過來手動安裝使用rpm安裝
rpm -ivh ***.rpm #***->createrepo的安裝包
4、為自定義源建立索引
createrepo ~/yumrepo
yum makecache #更新快取
1、掛載
mkdir /mnt/cdrom #建立目錄
mount /dev/cdrom /mnt/cdrom #掛載
umount /mnt/cdrom #解除安裝
2、建立repo檔案
cat >>/etc/yum.repos.d/centos-local.repo<<-eof
[local]
name=local
yumbaseurl=file:///yum/
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/rpm-gpg-key-centos-7
enabled=1
問:為什麼連createrepo軟體都不用安裝?
createrepo 的作用是建立索引檔案的(位於repodata資料夾),光碟中連gpg-key都有了。
yum本地源配置
很多內網伺服器或者本地連線不了外網時,安裝軟體的時候 各種依賴 會讓想到放棄安裝 配置本地yum源可以解決打部分依賴問題 安裝方法 1.需要centos映象 iso檔案 2.將該檔案上傳或者掛載到linux機器上 3.mount o loop 映象路徑 mnt 將映象掛載到 mnt目錄下面 4.編輯...
本地配置yum源
1 先掛載光碟 在 mnt 目錄下,建立乙個掛載點 mkdir mnt cdrom 掛載光碟 mount o loop dev sr0 mnt cdrom 2 設定yum源的配置定義檔案,檔案存放在 etc yum.repos.d 目錄下 編輯此配置檔案 name anything 可寫可不寫,內容...
配置本地yum源
1 開啟http服務 2 在html目錄下建立新目錄,如 udh cd var www html mkdir udh 3 搭建本地yum源 在udh目錄下安裝repo yum install y createrepo createrepo var www html udh 4 在udh目錄下匯入資源...