Linux用户和组的主要配置文件:
/etc/passwd:用户及其属性信息(名称、UID、主组ID等)
/etc/group:组及其属性信息
/etc/shadow:用户密码及其相关属性
/etc/gshadow:组密码及其相关属性
时间同步:
1、ntpdate serverip
2 vim /etc/ntp.conf
3 添加server serverip iburst(serverip表示同步到的主机ip地址)
对于centos6 时间同步
4 server ntpd start
5 chkconfig ntpd on #开机自动启动
对于centos7 时间同步
4 systemctl start ntpd
5 systemctl enable ntpd # 开机自动启动
centos 7设置静态ip地址:
1、nmcli connection show(显示链接,如果有Wired\ connection\ 1和ens33就执行2、3操作;即 把Wired链接与ens33全部删除)
2、nmcli connection delete Wired\ connection\ 1
3、nmcli connection delete ens33
4、vim /etc/sysconfig/network-scripts/ifcfg-eth0(重新建立一个eth0)
DEVICE=eth0
BOOTPROTO=static
IPADDR=192.168.10.7(可以随意指定静态IP地址)
PREFIX=24
5、nmcli connection reload(重新启动服务)
修改centos7的网卡名称:
vim /boot/grub2/grub.cfg
linux16 后加 net.ifnames=0