2018-12-04 RHCSA Redhat7配置yum仓库

YUM的仓库软件源为 http://domain1.example.com/yum
配置:

#vim /etc/yum.repos.d/example.repo
[example]
name=example
baseurl=http://domain1.example.com/yum
enable=1
gpgcheck=0

我们也可以使用安装光盘作为yum源,参考2018-10-29 Redhat 7使用安装光盘做yum源, 也可以使用CentOS的源作为yum源,参考2018-10-12 Redhat 7更改CentOS yum源.

从http://domain1.example.com/update安装内核升级,升级完之后重启,升级的内核作为默认内核,原内核保留并能正常启动

#vim /etc/yum.repos.d/update.repo
[update]
name=update
baseurl=http://domain1.example.com/update
enable=1
gpgcheck=0

#yum clean all
#yum makecache
#yum update kernel -y

你可能感兴趣的:(2018-12-04 RHCSA Redhat7配置yum仓库)