千家信息网

快速配置yum本地源

发表于:2024-11-19 作者:千家信息网编辑
千家信息网最后更新 2024年11月19日,本文档将教会大家快速配置yum源,这种方法很适合新创建的 Linux系统,特别是RHEL7系列的 Linux系统。首先把系统镜像挂载过来:在右下角的光盘标志这里右键,然后点击连接,桌面就会出现镜像图标
千家信息网最后更新 2024年11月19日快速配置yum本地源
本文档将教会大家快速配置yum源,这种方法很适合新创建的 Linux系统,特别是RHEL7系列的 Linux系统。
首先把系统镜像挂载过来:

在右下角的光盘标志这里右键,然后点击连接,桌面就会出现镜像图标。
然后再执行创建 脚本的 命令创建 脚本。

vim rhel7.repo.sh#在打开的文件中添加以下内容:#!/bin/bashcd /etc/yum.repos.dcat > rhel7.repo <> /etc/fstabyum clean allyum makecache
写完脚本后记得赋予脚本执行权限:
chmod 755 rhel7.repo.sh或者chmod +x rhel7.repo.sh
赋予脚本执行权限后再运行脚本:
bash rhel7.repo.sh 或者./rhel7.repo.sh
测试:
[root@localhost Desktop]# yum install -y httpdLoaded plugins: langpacks, product-id, search-disabled-repos, subscription-managerThis 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 ResolutionDependencies Resolved============================================================================================================ Package                Arch                    Version                        Repository              Size============================================================================================================Installing: httpd                  x86_64                  2.4.6-40.el7                   rhel7                  1.2 MTransaction Summary============================================================================================================Install  1 PackageTotal download size: 1.2 MInstalled size: 3.7 MDownloading packages:Running transaction checkRunning transaction testTransaction test succeededRunning 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 编辑:传棋,审核员:逄增宝

0