溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

RedHat使用yum命令時(shí)提示not registered錯(cuò)誤的解決方法

發(fā)布時(shí)間:2020-07-03 02:43:07 來(lái)源:網(wǎng)絡(luò) 閱讀:8740 作者:路人分享 欄目:軟件技術(shù)

    在redhat系統(tǒng),使用yum命令時(shí),提示:

This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register.

無(wú)法更新。

原因:redhat 默認(rèn)自帶的 yum 源需要注冊(cè),才能更新。我們想不花錢也可以更新,需要替換掉redhat的yum源。


1.檢查是否安裝yum包

查看RHEL是否安裝了yum,若是安裝了,那么又有哪些yum包:

[root@localhost ~]# rpm -qa |grep yum
yum-metadata-parser-1.0-8.fc6
yum-3.0.1-5.el5
yum-rhn-plugin-0.4.3-1.el5
yum-updatesd-3.0.1-5.el5

2 刪除redhat自帶的yum包

卸載上面顯示的所有yum包:

[root@localhost ~]# rpm -qa|grep yum|xargs rpm -e --nodeps(不檢查依賴,直接刪除rpm包)
再用
[root@localhost ~]# rpm -qa |grep yum
[root@localhost ~]#

查看,無(wú)信息顯示表示已經(jīng)卸載完成。

看一下系統(tǒng)版本號(hào)和系統(tǒng)位數(shù)

[root@localhost ~]# cat /etc/issue && uname -a


3.下載新的yum包。使用Centos6.5的yum包

# wget http://mirrors.163.com/centos/6/os/x86_64/Packages/yum-metadata-parser-1.1.2-16.el6.x86_64.rpm
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI