脚本内容在文档的底部,将脚本后缀改为.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
#!/bin/bash#thisscriptisonlyforCentOS6#checktheOSplatform=`uname-i`if[$platform!="x86_64"];thenecho"thisscriptisonlyfor64bitOperatingSystem!"exit1fiecho"theplatformisok"version=`lsb_release-r|awk‘{printsubstr($2,1,1)}‘`if[$version!=6];thenecho"thisscriptiso..
分类:
系统相关 时间:
2014-05-03 14:51:00
阅读次数:
415