1. 程式人生 > >redhat7.2修改yum源-以及-yum操作的技巧(xxx.so檔案缺失處理辦法)

redhat7.2修改yum源-以及-yum操作的技巧(xxx.so檔案缺失處理辦法)

redhat7.2修改yum源

redhat企業版7.2安裝軟體,需要作業系統註冊才行。
但是redhat的軟體跟centos軟體的源都是一樣的。所以可以用centos軟體的源替換。
下面介紹redhat企業版7.2修改配置yum源的方法。

最後使用下述命令驗證一下:

yum install redhat-lsb -y
lsb_release -a

另外,介紹一個yum安裝技巧。

yum list根據package名稱關鍵詞,進行搜尋確認

因為yum後面是package的名稱,跟linux命令名稱是不一樣的。
為了安裝合適的package,可以使用下述命令查詢確認。
yum list | grep lsb

再說一個相關技巧

yum install去掉下載確認的步驟

一般yum install xxxxxxxx 安裝的時候,會提示軟體佔用空間大小。每次都得輸入y確認。
如果不想確認,那就改為

yum install xxxxxxxx -y

yum provide 命令(特別推薦)

適合.so檔案缺失或者程式名稱
舉2個例子:

[[email protected] 2.5.2]$ cdnshelp
Cadence Help v02.10-p001
Copyright (c) 2006-2013 Cadence Design Systems, Inc. All rights reserved
Launching gui.../home/qilei/cadence/INCISIV14/tools.lnx86/cdnshelp/bin/cdnshelp.exe /home/qilei/cadence/INCISIV14/doc/xmlreg/library.lbr
/home/qilei/cadence/INCISIV14/tools.lnx86/cdnshelp/bin/32
bit/cdnshelp.exe: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory [[email protected] 2.5.2]$ su Password: [[email protected] 2.5.2]# yum provides libz.so.1 Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. Loading mirror speeds from cached hostfile zlib-1.2
.7-17.el7.i686 : The compression and decompression library Repo : base Matched from: Provides : libz.so.1 [[email protected] 2.5.2]# yum install zlib-1.2.7-17.el7.i686 -y
[[email protected] 2.5.2]# yum provides emacs
Loaded plugins: fastestmirror, product-id, search-disabled-repos, subscription-manager
This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.
Loading mirror speeds from cached hostfile
1:emacs-24.3-18.el7.x86_64 : GNU Emacs text editor
Repo        : base



總結

有了上述yum源和yum操作技巧,redhat系統下安裝軟體的方法就簡單多了。

參考文件:

注意:
1. redhat6.3配置yum源,使之來自centos;
2. redhat6.3除了下述操作外,還要修改centos源的版本號為最新。否則會提示網址請求無應答的錯誤。
3. 下載http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-6;放在目錄:/etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
4. 命令執行:rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-6
rehat 安裝軟體源”Unable to read consumer identity”解決:使用非註冊的軟體源 - 河西無名式 - 部落格頻道 - CSDN.NET
http://blog.csdn.net/trochiluses/article/details/17027045