【Linux】紅帽7搭建網路YUM源
1、首先檢視redhat 7.0系統本身所安裝的那些yum 軟體包:
[[email protected] ~]# rpm -qa | grep yum yum-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、解除安裝這些軟體包;
[[email protected]~]# rpm -e yum-3.4.3-118.el7.noarch --nodeps [[email protected] ~]# rpm -e yum-utils-1.1.31-24.el7.noarch --nodeps [[email protected] ~]# rpm -e yum-rhn-plugin-2.0.1-4.el7.noarch --nodeps [[email protected] ~]# rpm -e yum-metadata-parser-1.1.4-10.el7.x86_64 --nodeps [[email protected]~]# rpm -e yum-langpacks-0.4.2-3.el7.noarch --nodeps [[email protected] ~]# rpm -e PackageKit-yum-0.8.9-11.el7.x86_64 --nodeps
3、保證本機電腦能上網;
[[email protected] ~]# ping www.baidu.com PING 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、找到自己所需要的版本下載:
[[email protected] ~]# 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/複製下載連結,然後再下載下來; [[email protected] ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-3.4.3-132.el7.centos.0.1.noarch.rpm [[email protected] ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-metadata-parser-1.1.4-10.el7.x86_64.rpm [[email protected] ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-utils-1.1.31-34.el7.noarch.rpm [[email protected] ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-updateonboot-1.1.31-34.el7.noarch.rpm [[email protected] ~]# wget http://mirrors.163.com/centos/7/os/x86_64/Packages/yum-plugin-fastestmirror-1.1.31-34.el7.noarch.rpm
6、檢視下載完成結果;
[[email protected] ~]# ls yum-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、安裝軟體包:--force --nodeps 解決依賴關係
[[email protected] ~]# 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 配置檔案;
[[email protected] ~]# 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=os baseurl=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=updates baseurl=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=extras baseurl=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 網路源已經安裝完成;
[[email protected] ~]# yum clean all
10、測試安裝是否正常;
[[email protected] ~]# yum -y install lftp Loaded 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!
相關推薦
【Linux】紅帽7搭建網路YUM源
1、首先檢視redhat 7.0系統本身所安裝的那些yum 軟體包: [[email protected] ~]# rpm -qa | grep yum yum-utils-1.1.31-24.el7.noarch yum-langpacks-0.4.2-3.el
【linux】CentOS 7 使用ifconfig命令報錯:-bash: ifconfig: command not found;ip/ifcongif命令檢視網路資訊的使用
目錄 一、ip命令檢視網路資訊 二、CentOS 7啟用ifconfig命令 三、ifconfig命令檢視網路資訊 一、ip命令檢視網路資訊 (1)輸入命令檢視網絡卡資訊,找到網絡卡名稱,可以看到該網絡卡已經分配到IP地址,輸入命令: ip addr &nbs
【Linux】LAMP環境搭建(簡易版)
freetype 軟件 系統 解壓縮 net done .gz 輔助 one 一. 輔助軟件包安裝 準備工作:1.Linux系統準備 恢復快照(初始化安裝) 設置IP 關閉SELINUX 配置yum源 2.yum -y install gcc
【Linux】CentOS 7.4 安裝 MySQL 8.0.12 解壓版
style prope error shared false 添加 tab code plain 安裝環境/工具 1、Linux(CentOS 7.4版) 2、mysql-8.0.12-el7-x86_64.tar.gz 安裝步驟 參考:https://dev.
Linux——搭建網路yum源及第三方軟體庫
一、搭建網路yum源 目的:實現共享型yum源的部署,讓其他多臺沒有映象的主機通過訪問網路yum源,下載軟體 (1)首先,需要在主機搭建本地的yum源 注:搭建本地yum源的過程描述在此不再贅述,這裡只將操作截圖列出如下 通常我們會將新建一個根下的目錄/iso,將進行儲
【Linux】基於VMware搭建Linux系統
html 兩種 server tor war 客戶 部分 圖片 基本配置 本篇文章側重於操作,主要內容大致包括: 兩大類操作系統簡要介紹 VMware Workstation Pro 15簡要介紹及安裝 CentOS簡要介紹及基於Wi‘n‘dows 操作系統的安裝
【Linux】為CentOS配置網路,橋接方法
第一步 點開虛擬機器的設定,網路連線選擇橋接方式,其他勾選按照下圖,如下圖做相關的設定: 第二步 開啟網路連線,找到當前主機在上網的:  
【Linux】centos 7 linux系統預設ftp安裝配置和部署(詳細講解)
小生接觸 Linux 系統時間不長,想解決linux系統ftp安裝及部署問題,折騰了大半天,終於弄出來了,將各路 高手的配置方法綜合了一下,如有不對之處,歡迎各位看客指正,感謝! 一、宣告: 本文采用作業系統版本: Centos 7 Linux系統 版本源:C
【Linux】CentOS 7通過Firewall開放防火牆埠
firewall常用命令如下: firewall-cmd --permanent --add-service=http 永久開放HTTP服務 firewall-cmd --permanent --add-port=8080/tcp 永久新增8080埠 s
【Linux】CentOS 7下安裝JDK詳細過程
Linux上一般會安裝Open JDK,關於OpenJDK和JDK的區別:http://www.cnblogs.com/sxdcgaq8080/p/7487369.html 下面開始安裝步驟: -----------------------------------
【Linux】CentOS 7環境下安裝中文字型庫
JAVA畫圖時常用到Font 類物件 這樣的物件依賴於本地的欄位。新裝的linux沒有安裝欄位庫,和相應的字型。 1、fc-list檢視字型庫 2、yum -y install fontconfig安裝 3、安裝好後/usr/share目錄下多兩個目錄fonts和fo
【Linux】企業實戰-搭建高可用的WEB群集(全過程)
大家好,今天給大家帶來web高可用,其中服務包括(Nginx,PHP,MySQL,Memcached,zabbix,keepalived以及Xcahce外掛等; 其中包含: Nginx (Nginx的安裝及Nginx反向代理配置,對Ngin
【Linux】CentOS 7最小化安裝後找不到‘ifconfig’命令
“ifconfig”命令用於配置GNU/Linux系統的網路介面。它顯示網路介面卡的詳細資訊,包括IP地址,MAC地址,以及網路介面卡狀態之類。但是,該命令已經過時了,而且在最小化版本的RHEL 7以及它的克隆版本CentOS 7,Oracle Linux 7和Scientific Linux 7中
【linux】ubuntu下搭建FTP伺服器
關於FTP File Transfer Protocol(檔案傳輸協議)搭建個人網站需要向自己的雲主機上傳(upload)寫好的網站模版,在Linux下就需要一個接收(download)檔案的伺服器。ubuntu 16.04 預設是沒有FTP的,就需要自己搭建環境。 搭建FTP伺服器流程
【Linux】JDK+Eclipse 搭建C/C++開發環境
轉自:http://www.youranshare.com/blog/sid/25.html 注:本文所提供的參考示例是在CentOS Linux環境下的安裝,不保證適用於其他版本的Linux系統。 ·安裝前的注意事項 編譯原始碼是需要對應的程式碼編譯工具的,本文中
【Linux】Centos 7重置密碼
前言: 很早之前自己虛擬機器的密碼就忘記了,自己也嘗試了去解決,可是並沒有解決掉,因為自己的Xshell當時是記住密碼連線的,所以把這事放一邊了,直到有一天突然發現Xshell也無法連線自己的虛擬機器了,奔潰,只能解決了唄,常在河邊站哪有不溼鞋,想偷懶是不行的
【Linux】Ubuntu14.04虛擬網路裝置TUN安裝
1、檢測系統中是否存在TUN模組,ctrl+alt+t開啟Ubuntu終端,輸入: ①modinfo tun modinfo: ERROR: Module tun not found. ②modprobe tun lsmod | grep tun 沒有任何輸出 就是說沒有
【linux】centos6/7 + nginx 利用certbot 申請https證書
需要 als .org bash 之前 原來 部分 dal argument 沒錯我又踩坑了。昨晚上搞到十二點半才成功申請。鬼知道OJ服務器是個什麽渣渣。 早上才算正式弄好,中間也學了不少東西,記錄一下。這次是http轉https,所以默認的還是只有80端口。 請務必確
【原創】CentOS 7搭建多例項MySQL8(想要幾個搞幾個)
起因 最近專案上開始重構,可能會用到主從加讀寫分離的情況,就想先在本地搭一個出來試試效果,結果百度一搜出來一大堆,然而自己去踩坑的沒幾個,絕大多數都是去抄的別人的內容,關鍵是實際應用中還會出錯,瀏覽器開了接近二十個標籤頁,試了好幾個都有問題,完全用不了,時間浪費了不說,還會讓你很憋屈
【linux】驅動-7-平臺裝置驅動
[toc] --- ## 前言 區分**裝置驅動模型**和**平臺裝置驅動模型**。 **裝置驅動模型** 可以理解為 **匯流排、裝置、驅動**。 **平臺裝置驅動模型** 就是那些 Linux 核心管理沒有物理匯流排(*即是不需要特殊時序控制的裝置*)(*也是Linux核心沒有自動建立相應驅動匯流