1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
   |  nmtui
 
  hostnamectl set-hostname uat-native.yourcompany.com
 
  systemctl stop firewalld.service systemctl disable firewalld.service
 
  getenforce setenforce 0 sed -i 's/^SELINUX=enforcing$/SELINUX=permissive/' /etc/selinux/config
 
  swapoff -a vi /etc/fstab  注释掉swap行
 
  |