码迷,mamicode.com
首页 >  
搜索关键字:centos系统优化脚本    ( 6个结果
Centos 7 系统优化脚本
#!/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
CentOS系统优化脚本,未完结
#!/bin/bash#判断一个当前用户是不是root用户,不是则提示需要使用sudo来提升权限if [ $user != "root"]    then        echo "需要使用 sudo 才能使用的脚本"】   &n
分类:其他好文   时间:2018-04-08 12:13:03    阅读次数:151
Centos 7系统优化脚本
脚本如下,后续继续优化 #!/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
Linux CentOS 6.9系统优化脚本
Linux CentOS 6.9系统优化
分类:系统相关   时间:2018-01-15 01:03:37    阅读次数:485
CentOS 6系统优化脚本
由于自己经常用虚拟机来做各种测试,每次创建虚拟机都要重新把该关闭的服务(比如SELinux,postfix等),每次都要重新修改主机名等等,虽然可以打快照并进行虚拟盘克隆,但是磁盘文件太大也不是我所乐见的,所以仿照网上的做法,也弄了一个shell脚本来优化一下系统,这样的话每..
分类:其他好文   时间:2016-08-16 14:50:28    阅读次数:204
CentOS6.5系统优化
#脚本名称: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
6条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!