Linux

從自定義 repo 安裝 rpm

  • October 6, 2014

我在我的一台機器上創建了一個自定義儲存庫,我可以從中獲取更新。但是,我也希望能夠從 repo 安裝 emacs、gcc 等軟體包。更新正常工作並安裝。但是,如果我這樣做yum install emacsyum install gcc使用我的自定義儲存庫,它會說沒有要安裝的東西。如何將軟體包安裝添加到我的倉庫?我知道我可以做到wget這一點,但更喜歡讓 yum 管理安裝。

回購文件看起來像這樣

[repo] 
gpgcheck=0 
enabled=1 
name=customrepo 
baseurl=http://path_to_my_repo

# yum repolist
Loaded plugins: fastestmirror, refresh-packagekit, security
Loading mirror speeds from cached hostfile
customrepo                                               | 2.9 kB     00:00     
customrepo/primary_db                                    | 436 kB     00:00     
repo                                                     | 2.9 kB     00:00     
repo/primary_db                                          | 436 kB     00:00     
repo id                          repo name                                status
customrepo                       Custom Repository                        158
repo                             Updates                                  158
repolist: 316

執行sudo yum clean all然後執行sudo yum update,系統現在應該擁有伺服器的所有更新和新軟體。

引用自:https://unix.stackexchange.com/questions/159071