1、安裝雲鎖linux
一、報錯vim
Install Selinux Policy Module:yunsuo_install/install: line 371: checkmodule: command not foundpost
二、關閉SeLinuxspa
#vim /etc/selinux/configblog
將 SELINUX=enforcingip
改 SELINUX=disabledci
三、重啓系統cmd
#reboot nowmodule
2、Centos7相關的操做配置
一、防火牆(firewall-cmd)
1)、禁止被ping(禁止ICMP協議)
#vim /etc/sysctl.conf
#net.ipv4.icmp_echo_ignore_all = 1
#sysctl -p //使配置生效。
2)、關閉SMTP簡單郵件傳輸協議,25端口
#關閉
#systemctl stop postfix.service
#chkconfig postfix off
#開啓
#chkconfig postfix on
#systemctl start postfix.service