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目錄下匯入資源
5、在瀏覽器中開啟http:///udh,檢視是否顯示相關的資源包。
6、yum源的配置
# vi /etc/yum.repos.d/
udh.repo
新增一下內容:
[manager]
name=manager
baseurl=
enabled=1
gpgcheck=0
[repository]
name=mvn
repository
baseurl=
repository/
enabled=1
gpgcheck=0
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本地源配置
yum install y downloadonly downloaddir path 2 建立repo檔案 yum的源配置檔案在 etc yum.repos.d 目錄下,可以參考centos base.repo自己建立乙個repo檔案 cat etc yum.repos.d centos loca...