linux初始化shell脚本

#!/bin/bash
# this is a init script
ping -c 1 -i 0.1 -W 1 baidu.com
a=`echo $?`
if [ ${a} == 0 ];then
    echo "network success"
else
    echo "network failer"
    exit 2
fi
systemctl stop firewalld
systemctl disable  firewalld
sed -i 's/^SELINUX=enforcing/SELINUX=disable/' /etc/selinux/config
hn=master1.localdomain
hostnamectl set-hostname ${hn}
# -----------------------------
mkdir /tmp/yum.repo.bak ;mv /etc/yum.repos.d/* /tmp/yum.repos.bak/
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
b=`echo $?`
if [ ${b} == 0 ];then 
    echo "yum 替换成功"
else
    echo "yum 替换失败,将手动执行下列过程"
    exit 2
fi
yum clean all;yum makecache
yum install -y wget vim 2>&1
reboot

 

转载于:https://www.cnblogs.com/FengGeBlog/p/11023200.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值