91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Redhat7怎么使用CentOS7的Yum網絡源

發布時間:2022-02-17 09:24:04 來源:億速云 閱讀:218 作者:iii 欄目:開發技術

這篇文章主要介紹“Redhat7怎么使用CentOS7的Yum網絡源”,在日常操作中,相信很多人在Redhat7怎么使用CentOS7的Yum網絡源問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Redhat7怎么使用CentOS7的Yum網絡源”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

Redhat7怎么使用CentOS7的Yum網絡源

1、首先查看redhat 7.0系統本身所安裝的那些yum 軟件包:

[root@linuxprobe ~]# rpm -qa | grep yumyum-utils-1.1.31-24.el7.noarch
yum-langpacks-0.4.2-3.el7.noarch
yum-metadata-parser-1.1.4-10.el7.x86_64
yum-rhn-plugin-2.0.1-4.el7.noarch
PackageKit-yum-0.8.9-11.el7.x86_64
yum-3.4.3-118.el7.noarch

2、卸載這些軟件包;

[root@linuxprobe ~]# rpm -e yum-3.4.3-118.el7.noarch --nodeps[root@linuxprobe ~]# rpm -e yum-utils-1.1.31-24.el7.noarch --nodeps[root@linuxprobe ~]# rpm -e yum-rhn-plugin-2.0.1-4.el7.noarch --nodeps[root@linuxprobe ~]# rpm -e yum-metadata-parser-1.1.4-10.el7.x86_64 --nodeps[root@linuxprobe ~]# rpm -e yum-langpacks-0.4.2-3.el7.noarch --nodeps[root@linuxprobe ~]# rpm -e PackageKit-yum-0.8.9-11.el7.x86_64 --nodeps

3、保證本機電腦能上網;

[root@linuxprobe ~]# ping www.baidu.comPING www.a.shifen.com (61.135.169.121) 56(84) bytes of data.
64 bytes from 61.135.169.121: icmp_seq=1 ttl=53 time=31.8 ms
64 bytes from 61.135.169.121: icmp_seq=2 ttl=53 time=31.9 ms
64 bytes from 61.135.169.121: icmp_seq=3 ttl=53 time=32.0 ms

4、進入以下網站上面查看軟件包的版本是否升級或者找到自己系統所對應的文件包版本更新;

網易163網絡源地址:http://mirrors.163.com/
CentOS網絡源地址:http://centos.ustc.edu.cn/centos/

5、找到自己所需要的版本下載:

[root@Linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-3.4.3-118.el7.centos.noarch.rpm--2016-01-17 20:43:15--  http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-3.4.3-118.el7.centos.noarch.rpm
Resolving mirrors.163.com (mirrors.163.com)... 123.58.173.185, 123.58.173.186
Connecting to mirrors.163.com (mirrors.163.com)|123.58.173.185|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2016-01-17 20:43:15 ERROR 404: Not Found.   //如果找不到,是安裝包更新了,你可以到這個網站http://mirrors.163.com/centos/7/os/x86_64/Packages/復制下載鏈接,然后再下載下來;

[root@linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-3.4.3-132.el7.centos.0.1.noarch.rpm[root@linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm[root@linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-34.el7.noarch.rpm [root@linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-updateonboot-1.1.31-34.el7.noarch.rpm[root@linuxprobe ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-34.el7.noarch.rpm

6、查看下載完成結果;

[root@linuxprobe ~]# lsyum-3.4.3-132.el7.centos.0.1.noarch.rpm
yum-metadata-parser-1.1.4-10.el7.x86_64.rpm
yum-plugin-fastestmirror-1.1.31-34.el7.noarch.rpm
yum-updateonboot-1.1.31-34.el7.noarch.rpm
yum-utils-1.1.31-34.el7.noarch.rpm

7、安裝軟件包:

[root@Linuxprobe ~]# rpm -ivh yum-*warning: yum-3.4.3-132.el7.centos.0.1.noarch.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]Updating / installing...
1:yum-metadata-parser-1.1.4-10.el7    ################################# [ 20%]2:yum-plugin-fastestmirror-1.1.31-3   ################################# [ 40%]3:yum-3.4.3-132.el7.centos.0.1        ################################# [ 60%]4:yum-updateonboot-1.1.31-34.el7      ################################# [ 80%]5:yum-utils-1.1.31-34.el7             ################################# [100%]

8、新建repo 配置文件;

[root@linuxprobe ~]# vim /etc/yum.repos.d/CentOS-Base.repo#CentOS-Base.repo## The mirror system uses the connecting IP address of the client and the# update status of each mirror to pick mirrors that are updated to and# geographically close to the client.  You should use this for CentOS updates# unless you are manually picking other mirrors.## If the mirrorlist= does not work for you, as a fall back you can try the# remarked out baseurl= line instead.##[base]
name=CentOS-$7 - Base - 163.com#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=osbaseurl=http://mirrors.163.com/centos/7/os/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7#released updates[updates]
name=CentOS-$7 - Updates - 163.com#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=updatesbaseurl=http://mirrors.163.com/centos/7/updates/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7#additional packages that may be useful[extras]
name=CentOS-$7 - Extras - 163.com#mirrorlist=http://mirrorlist.centos.org/?release=$7&arch=$basearch&repo=extrasbaseurl=http://mirrors.163.com/centos/7/extras/$basearch/
gpgcheck=1
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7#additional packages that extend functionality of existing packages[centosplus]
name=CentOS-$7 - Plus - 163.com
baseurl=http://mirrors.163.com/centos/7/centosplus/$basearch/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.163.com/centos/RPM-GPG-KEY-CentOS-7

9、至此YUM 網絡源已經安裝完成;

[root@linuxprobe ~]# yum clean all

10、測試安裝是否正常;

[root@Linuxprobe ~]# yum -y install lftpLoaded plugins: fastestmirror, product-id, 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
Resolving Dependencies
--> Running transaction check
---> Package lftp.x86_64 0:4.4.8-7.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
================================================================================================
Package              Arch                     Version                    Repository               Size
================================================================================================
Installing:
lftp                x86_64                    4.4.8-7.el7                base                     750 k
Transaction Summary
================================================================================================

Install  1 Package
………………省略部分安裝過程………………
Installed:
lftp.x86_64 0:4.4.8-7.el7
Complete!

到這里安裝完成,以后安裝所需包,可以不用本地yum源了,直接使用網絡yum源。

到此,關于“Redhat7怎么使用CentOS7的Yum網絡源”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

黄大仙区| 灵川县| 湟源县| 富民县| 陕西省| 沁源县| 通州市| 海晏县| 阜康市| 东兴市| 富锦市| 迭部县| 玉溪市| 鸡泽县| 汽车| 樟树市| 岱山县| 舒兰市| 乌拉特中旗| 青田县| 玉门市| 阳高县| 福建省| 大田县| 汉源县| 正阳县| 彝良县| 凤翔县| 武胜县| 崇信县| 云南省| 噶尔县| 东乡| 罗平县| 宝鸡市| 巴马| 吴忠市| 临泽县| 博罗县| 政和县| 乌兰浩特市|