CentOS7 minimal安装后需要安装的软件:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
yum update -y yum upgrade yum install wget telnet perl perl-devel net-tools kernel-devel vim yum groupinstall "Development tools" -y vim /etc/selinux/config yum -y install epel-release yum -y install python-pip pip install -U pip vim /etc/selinux/config 在 SELINUX=enforcing 前面加个#号注释掉它 #SELINUX=enforcing 然后新加一行 SELINUX=disabled #SELINUXTYPE=targeted #注释掉这行 setenforce 0 systemctl stop firewalld.service systemctl disable firewalld yum install iptables-services vim /etc/sysconfig/iptables yum install ntpdate -y ntpdate time.windows.com && hwclock -w hwclock --systohc |
0 Comments