#!/bin/bash #author liuhui by #this script is only for CentOS 7.x #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo "this scrip ...
分类:
其他好文 时间:
2019-01-23 01:24:14
阅读次数:
214
#!/bin/bash#判断一个当前用户是不是root用户,不是则提示需要使用sudo来提升权限if [ $user != "root"] then echo "需要使用 sudo 才能使用的脚本"】 &n
分类:
其他好文 时间:
2018-04-08 12:13:03
阅读次数:
151
脚本如下,后续继续优化 #!/bin/bash #author junxi by #this script is only for CentOS 7.x #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo ...
分类:
其他好文 时间:
2018-01-27 15:26:42
阅读次数:
194
由于自己经常用虚拟机来做各种测试,每次创建虚拟机都要重新把该关闭的服务(比如SELinux,postfix等),每次都要重新修改主机名等等,虽然可以打快照并进行虚拟盘克隆,但是磁盘文件太大也不是我所乐见的,所以仿照网上的做法,也弄了一个shell脚本来优化一下系统,这样的话每..
分类:
其他好文 时间:
2016-08-16 14:50:28
阅读次数:
204
#脚本名称:systemyh.sh#本脚本中需要配合一个文档来关闭不必要的服务,文档内容为不必要的服务名称#请斟酌使用本例中的stopservices.txt文档#脚本内容如下:#!/bin/bash#关闭SELinux防火墙cp/etc/sysconfig/selinux/etc/sysconfig/selinux-`date+"%Y%m%d"`sed-i‘s/SELINUX\=en..
分类:
其他好文 时间:
2015-10-28 10:56:05
阅读次数:
226