配置主机名称 hostname
# 方法一
hostnamectl set-hostname '你的主机名称'
# 方法二
hostname '你的主机名称'
echo '你的主机名称' > /etc/hostname
时区同步配置
# 设置时区
timedatectl set-timezone Asia/Shanghai
# 设置 RTC 时间
timedatectl set-local-rtc 0
配置 hosts 文件
# 配置文件 /etc/hosts
# 把需要自主接线的 ip 添加到这个文件内
127.0.0.1 '你的主机名称'