博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
linux初始化shell脚本
阅读量:5840 次
发布时间:2019-06-18

本文共 809 字,大约阅读时间需要 2 分钟。

#!/bin/bash# this is a init scriptping -c 1 -i 0.1 -W 1 baidu.coma=`echo $?`if [ ${a} == 0 ];then    echo "network success"else    echo "network failer"    exit 2fisystemctl stop firewalldsystemctl disable  firewalldsed -i 's/^SELINUX=enforcing/SELINUX=disable/' /etc/selinux/confighn=master1.localdomainhostnamectl 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.repowget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repob=`echo $?`if [ ${b} == 0 ];then     echo "yum 替换成功"else    echo "yum 替换失败,将手动执行下列过程"    exit 2fiyum clean all;yum makecache yum install -y wget vim 2>&1 reboot

 

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

你可能感兴趣的文章
Swift教程_CoreData实例(三)_构建控制层(列表数据加载、删除数据)
查看>>
每周一道数据结构(二)排序总结
查看>>
转 cocos2d-x3.2 24种基本特效
查看>>
CentOS6.5安装oracle10g数据库(二)
查看>>
winform实现拼图游戏
查看>>
OC weak strong __weak __strong copy retain assign nonatomic atomic等关键字的总结
查看>>
JVM堆大小的调整
查看>>
YARN(hadoop2)框架的一些软件设计模式
查看>>
HTTP协议基础
查看>>
【分布式系统工程实现】CAP理论及系统一致性
查看>>
如何将NSString字符串放入剪贴板
查看>>
【SICP练习】63 练习2.34
查看>>
美文共赏
查看>>
iOS XMPP研究探索:添加好友
查看>>
Spring中bean的scope
查看>>
DRC,为什么我们要走最难的路
查看>>
棱镜-分布式实时计算的跟踪校验系统
查看>>
使用go-swagger为golang API自动生成swagger文档
查看>>
bing Map 在vue项目中的使用
查看>>
前后端都需要知道的跨域
查看>>