广告

本站里的文章大部分经过自行整理与测试

2016年5月8日星期日

CentOS - yum - could not retrieve mirrorlist + 安装 GNOME

由于 Centos 并没有预设安装上 GUI 界面,
而需要自行安装,
但用 yum 指令却出现 could not retrieve mirrorlist

1. 网络设置
 
$ su
$ cd /etc/sysconfig/network-scripts
$ ls
# 如果是用 vmware 上的 centos, 不一定是改 ifcfg-eth0,

# 如本人改的是 ifcfg-eno16777736
$ vi /etc/sysconfig/network-scripts/ifcfg-eth0

# 或修改以下 2个设置
 

ONBOOT=yes
MM_CONTROLLED=no


$ reboot now


2. 重启后, 安装 GNOME 和系统管理工具

$ su
$ yum grouplist
# 这里会花时间去下载与安装
$ yum groupinstall "GNOME Desktop" "System Administration Tools"


$ reboot now


3. 如果 GNOME 已经可以用了, 以下步骤就不需要了 

# systemctl enable graphical.target --force
$ su

$ rm '/etc/systemd/system/default.target'
$ ln -s '/usr/lib/systemd/system/graphical.target' '/etc/systemd/system/default.target'

$ reboot now

没有评论:

发表评论