#!/bin/bash # # 2015/02/04 yum -y update yum -y groupinstall "Development Tools" yum -y install lrzsz wget https://lug.ustc.edu.cn/wiki/_export/code/mirrors/help/epel?codeblock=0 -O /etc/yum.repos.d/epel.repo && wget http://mirrors.ustc.edu.cn/epel/RPM-GPG-KEY-EPEL-6 -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 && yum makecache # 禁用selinux # modify /etc/sysconfig/selinux # to: SELINUX=disabled # and reboot later. [ -f /etc/selinux/config.bak ] || cp -a /etc/selinux/config /etc/selinux/config.bak && sed -i ‘s/SELINUX=enforcing/SELINUX=disabled/‘ /etc/selinux/config
时间: 2024-11-19 21:46:07