一、配置本地yum源
1、挂载:
[[email protected] ~]# mount /dev/cdrom /mnt
mount: block device /dev/cdrom is write-protected, mounting read-only
[[email protected] ~]# cd /etc/yum.repos.d/
[[email protected] yum.repos.d]# vi rhel-debuginfo.repo --添加下面内容
[localyum]
name=localyum
baseurl=file:///mnt
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-beta,file:///etc/pki/rpm-gpg/RPM-GPG-KEY-redhat-release
:wq --退出并保存
2、使用yum命令自动安装软件
1)、yum clean all #清除yum缓存
2)、 yum makecache #缓存本地yum源中的软件包信息
3、测试
yum install httpd
安装成功
二、最小化安装的Centos7系统并没有nano、vim、wget、curl、ifconfig、lsof、zip、unzip命令
这里首先安装一下,即可使用:
yum -y install nano vim wget curl net-tools lsof Yum -y install zip
时间: 2024-10-29 20:02:59