#!/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
##############################################################FileName:system.sh#Author:She#E-mail:shenzhuang@aliyun.com#CreatedTime:Fri18May201805:01:02PMCST#=========================================
分类:
其他好文 时间:
2018-10-31 11:24:23
阅读次数:
248
#!/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
紧承上文《CentOS6系统优化脚本》,因为有时候一台虚拟机已经刷过了优化脚本,但是可能因为别的原因,这台虚拟机暂时搁置了。等过了一段时间之后,突然要用又不知道这台虚拟机是否已经优化过了,而重新使用cobbler刷一次系统又会耗费一定的时间,所以这个检测系统是否刷过优化..
分类:
其他好文 时间:
2016-08-16 22:17:07
阅读次数:
146
由于自己经常用虚拟机来做各种测试,每次创建虚拟机都要重新把该关闭的服务(比如SELinux,postfix等),每次都要重新修改主机名等等,虽然可以打快照并进行虚拟盘克隆,但是磁盘文件太大也不是我所乐见的,所以仿照网上的做法,也弄了一个shell脚本来优化一下系统,这样的话每..
分类:
其他好文 时间:
2016-08-16 14:50:28
阅读次数:
204
脚本内容在文档的底部,将脚本后缀改为.sh,放到系统(CentOS6.X)里直接执行即可,有不能执行的麻烦告诉我,多谢!#!/bin/bash./etc/init.d/functionsif["$UID"-ne0];thenecho"youshouldchangetoroot,thenrunthisscript,pleaseentertherootpassword:"su-rootfiRETVAL=0DIR="/t..
分类:
系统相关 时间:
2016-04-05 20:03:30
阅读次数:
247
#!/bin/bash#thisscriptiscreatedbytangbo.#e_mail:79313760@qq.com#version:1.0###################################################################################################set-x#SetLanguageandmustberootexportLANG="zh_CN.GB18030"if[["$(whoami)"!="root"]]th..
分类:
系统相关 时间:
2016-03-18 17:58:40
阅读次数:
314
#!/bin/sh#服务优化,(sshd、network、crond、syslog、rsyslog)服务保持默认开机启动ServiceList=$(chkconfig--list|grep‘0‘|awk‘{print$1}‘|grep-Ev‘sshd|network|crond|syslog‘)forServicein$ServiceListdo/etc/init.d/$Servicestopchkconfig--level0123456$Serviceoffdone#..
分类:
系统相关 时间:
2015-11-28 06:42:00
阅读次数:
223