配置主机名称 hostname

  1. # 方法一
  2. hostnamectl set-hostname '你的主机名称'
  3. # 方法二
  4. hostname '你的主机名称'
  5. echo '你的主机名称' > /etc/hostname

时区同步配置

  1. # 设置时区
  2. timedatectl set-timezone Asia/Shanghai
  3. # 设置 RTC 时间
  4. timedatectl set-local-rtc 0

配置 hosts 文件

  1. # 配置文件 /etc/hosts
  2. # 把需要自主接线的 ip 添加到这个文件内
  3. 127.0.0.1 '你的主机名称'