码迷,mamicode.com
首页 > 系统相关 > 详细

linux学习第一周;linux系统配置类

时间:2018-03-17 18:52:36      阅读:247      评论:0      收藏:0      [点我收藏+]

标签:net   链接   定静   linux用户   表示   mes   密码   otp   load   

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
 

linux学习第一周;linux系统配置类

标签:net   链接   定静   linux用户   表示   mes   密码   otp   load   

原文地址:https://www.cnblogs.com/byy18/p/8591638.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!