包管理
- 安装本地包,rpm -i xxx.rpm
网络相关
配置文件,/etc/sysconfig/network-scripts
1 | [root@TENCENT64 /etc/sysconfig/network-scripts]# ls |
重启网络服务,# service network restart
网卡配置,
1 | [root@TENCENT64 /etc/sysconfig/network-scripts]# cat ifcfg-eth0 |
Misc
- sudo 组不存在,添加 sudo 组,
groupadd sudo
,否则提示useradd: group 'sudo' does not exist
- 添加用户,
useradd -G sudo,docker jeromesun -m -s /bin/bash
- 添加用户到 sudoers file,在 root 用户下,visudo,添加一行
jeromesun ALL=(ALL) ALL
。否则出现jeromesun is not in the sudoers file. This incident will be reported.
。