您好,登錄后才能下訂單哦!
本文檔將教會大家快速配置yum源,這種方法很適合新創建的 Linux系統,特別是RHEL7系列的 Linux系統。 |
在右下角的光盤標志這里右鍵,然后點擊連接,桌面就會出現鏡像圖標。
然后再執行創建
腳本的
命令創建
腳本。
vim rhel7.repo.sh #在打開的文件中添加以下內容: #!/bin/bash cd /etc/yum.repos.d cat > rhel7.repo <<OK [rhel7] name=rhel7 baseurl=file:///media/cdrom enabled=1 gpgcheck=0 OK mkdir -p /media/cdrom mount /dev/cdrom /media/cdrom echo "/dev/cdrom /media/cdrom iso9660 defaults 0 0" >> /etc/fstab yum clean all yum makecache
chmod 755 rhel7.repo.sh或者chmod +x rhel7.repo.sh
bash rhel7.repo.sh 或者./rhel7.repo.sh
[root@localhost Desktop]# yum install -y httpd Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager This system is not registered to Red Hat Subscription Management. You can use subscription-manager to register. Resolving Dependencies --> Running transaction check ---> Package httpd.x86_64 0:2.4.6-40.el7 will be installed --> Finished Dependency Resolution Dependencies Resolved ============================================================================================================ Package Arch Version Repository Size ============================================================================================================ Installing: httpd x86_64 2.4.6-40.el7 rhel7 1.2 M Transaction Summary ============================================================================================================ Install 1 Package Total download size: 1.2 M Installed size: 3.7 M Downloading packages: Running transaction check Running transaction test Transaction test succeeded Running transaction Installing : httpd-2.4.6-40.el7.x86_64 1/1 Verifying : httpd-2.4.6-40.el7.x86_64 1/1 Installed: httpd.x86_64 0:2.4.6-40.el7 Complete!
最后出現Complete!說明httpd安裝成功,同時也說明了yum倉庫配置成功!
注:我用的系統是RedHat7,用其他Linux系統的話只需要改yum倉庫名稱即可。
本文原創地址: https://www.linuxprobe.com/quickly-configure-yum.html 編輯:傳棋,審核員:逄增寶
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。