配置本地yum源及配置图形化界面

2023-01-24 17:28:24 来源:51CTO博客

1.将ios镜像文件传送到/tmp下


(资料图片)

2.mkdir -p /mnt/yum1 --新建一个挂载源

​​3.vi​​ /etc/fstab --修改挂载源配置,添加以下一行

/tmp/CentOS-7-x86_64-DVD-2003.iso/mnt/yum1 iso9660 loop 00

4.mount /tmp/CentOS-7-x86_64-DVD-2003.iso /mnt/yum1

5.mv /etc/yum.repos.d /etc/yum.repos_bak.d

6.mkdir /etc/yum.repos.d

7.vi /etc/yum.repos.d/yum.repo --添加以下内容:(每行之间不要有空行!)

#本源的名字(不能和其他重复)

[base-local]

name=yum1

#步骤2中挂载镜像创建的目录

baseurl=file:///mnt/yum1/

#启动yum源:1-启用 0-不启用

enabled=1

#安全检测:1-开启 0-不开启

gpgcheck=0

8.yum repolist

9.安装图形化界面

yum groupinstall "Server with GUI"

10.systemctl set-default graphical.target

11.systemctl start graphical.targetgraphical.target

标签: 每行之间 以下内容 安全检测

上一篇:天天要闻:【学懂Java】(四)面向对象编程-6
下一篇:Nginx与LUA(7)