【轉】linux上建立本地yum源

msdnchina發表於2011-11-06

  1、把光碟放到光碟機,掛載光碟機:

  #mount /dev/hdc /mnt/cdrom

  或者:

  # mount /dev/hdc /media/cdrom

  mount: block device /dev/hdc is write-protected, mounting read-only

  如果本機有iso檔案也可以將iso檔案上傳到伺服器上,然後執行:

  # mount -o loop rhel-server-5.4-i386-dvd.iso /media/cdrom

  2、設定yum源,在/etc/yum.repos.d目錄下新增一個檔案,檔案的內容如下:

  # vi dvd.repo

  [dvd]

  name=install dvd

  baseurl=file:///media/cdrom/Server

  enabled=1

  gpgcheck=0

  3.、清除舊記錄並生成新的倉庫

  # yum clean all

  Loading "rhnplugin" plugin

  Loading "security" plugin

  Cleaning up Everything

  # yum list

  好了,本地倉庫建立完成。

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/161195/viewspace-1056188/,如需轉載,請註明出處,否則將追究法律責任。

相關文章