一.配置當前用戶為sudoer
1:切換到root用戶
[test@x-sco]$ su root Password: [root@x-sco]#
2 :賦予普通用戶root權限
編輯/etc/sudoers配置文件,找到下面一行,在root下面添加一行,如下所示:
root ALL=(ALL) ALL
test ALL=(ALL) ALL
修改完畢,現在可以用test帳號登錄,然后用命令 su - ,即可獲得root權限進行操作。
3:退出root用戶
[root@x-sco
]# exit exit [test@x-sco
]$
二.配置網絡(這一步可在安裝時省略)
1. 使用root賬戶登錄;
2. 切換當前目錄:cd /etc/sysconfig/network-scripts/
3. 通過vi ifcfg-enoxxxx打開網絡配置文件;
4. 修改網絡配置文件並保存:
BOOTPROTO=dhcp(刪除或使用#號注釋該行,即可開啟靜態設置模式)
ONBOOT=YES(表示自動加載)
IPADDR0=192.168.1.xxx
GATEWAY0=192.168.1.1
DNS1=192.168.1.1
5. 重啟網絡服務:
service network restart
6. 使用ifconfig(CentOS 6)或者ip addr/link(CentOS 7)命令查看當前網絡狀態,測試網絡配置是否生效;
三.更換源
1、備份 mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下載新的CentOS-Base.repo 到/etc/yum.repos.d/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
3、
:運行yum makecache生成緩存
yum clean all
yum makecache