1.centos记录

1.初次安装--网络问题

cd /etc/sysconfig/network-scripts
vi ifcfg-ens33 
将“ONBOOT=no” 修改为“ONBOOT=yes”

service network restart

2.开启ssh的root登陆

vim /etc/ssh/sshd_config
将“PermitRootLogin   no” 修改为“PermitRootLogin   yes”

service sshd start

3.时间同步

···
yum install -y ntp
ntpdate time.windows.com && hwclock -w
···

你可能感兴趣的:(1.centos记录)