Linux 基本系统初始化脚本第一版

继续共享线上脚本,本脚本主要用于新装linux系统初始化工作。

 

  
  
  
  
  1. #!/bin/sh 
  2. # desc:  coralzd modified by www.freebsdsystem.org  www.linuxtone.org 
  3. #-------------------cut begin------------------------------------------- 
  4. #welcome 
  5. cat << EOF 
  6. +--------------------------------------------------------------+ 
  7. |         === Welcome to Centos System init ===                | 
  8. +--------------http://www.linuxtone.org------------------------+ 
  9. +----------------------Author:NetSeek--------------------------+ 
  10. EOF 
  11.  
  12. #disable ipv6 
  13. cat << EOF 
  14. +--------------------------------------------------------------+ 
  15. |         === Welcome to Disable IPV6 ===                      | 
  16. +--------------------------------------------------------------+ 
  17. EOF 
  18. echo "alias net-pf-10 off" >> /etc/modprobe.conf 
  19. echo "alias ipv6 off" >> /etc/modprobe.conf 
  20. /sbin/chkconfig --level 35 ip6tables off 
  21. echo "ipv6 is disabled!" 
  22.  
  23. #disable selinux 
  24. sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config 
  25. echo "selinux is disabled,you must reboot!" 
  26.  
  27. #vim 
  28. sed -i "8 s/^/alias vi='vim'/" /root/.bashrc 
  29. echo 'syntax on' > /root/.vimrc 
  30.  
  31. #zh_cn 
  32. sed -i -e 's/^LANG=.*/LANG="zh_CN.UTF-8"/'   /etc/sysconfig/i18n 
  33. # configure file max to 52100 
  34. echo "*                soft              nofile             52100 
  35. *                             hard              nofile             52100" >> /etc/security/limits.conf 
  36.  
  37. #tunoff services 
  38. #-------------------------------------------------------------------------------- 
  39. cat << EOF 
  40. +--------------------------------------------------------------+ 
  41. |         === Welcome to Tunoff services ===                   | 
  42. +--------------------------------------------------------------+ 
  43. EOF 
  44. #--------------------------------------------------------------------------------- 
  45. for i in `ls /etc/rc3.d/S*` 
  46. do 
  47.               CURSRV=`echo $i|cut -c 15-` 
  48.  
  49. echo $CURSRV 
  50. case $CURSRV in 
  51.           crond | irqbalance | microcode_ctl | network | random | sendmail | sshd | syslog | local | mysqld ) 
  52.       echo "Base services, Skip!" 
  53.       ;; 
  54.       *) 
  55.           echo "change $CURSRV to off" 
  56.           chkconfig --level 235 $CURSRV off 
  57.           service $CURSRV stop 
  58.       ;; 
  59. esac 
  60. done 
  61. rm -rf /etc/sysctl.conf 
  62. echo "net.ipv4.ip_forward = 0 
  63. net.ipv4.conf.default.rp_filter = 1 
  64. net.ipv4.conf.default.accept_source_route = 0 
  65. kernel.sysrq = 0 
  66. kernel.core_uses_pid = 1 
  67. net.ipv4.tcp_syncookies = 1 
  68. kernel.msgmnb = 65536 
  69. kernel.msgmax = 65536 
  70. kernel.shmmax = 68719476736 
  71. kernel.shmall = 134217728 
  72. net.ipv4.ip_local_port_range = 1024 65536 
  73. net.core.rmem_max = 16777216 
  74. net.core.wmem_max = 16777216 
  75. net.ipv4.tcp_rmem = 4096 87380 16777216 
  76. net.ipv4.tcp_wmem = 4096 65536 16777216 
  77. net.ipv4.tcp_fin_timeout = 3 
  78. net.ipv4.tcp_tw_recycle = 1 
  79. net.core.netdev_max_backlog = 30000 
  80. net.ipv4.tcp_no_metrics_save = 1 
  81. net.core.somaxconn = 262144 
  82. net.ipv4.tcp_syncookies = 0 
  83. net.ipv4.tcp_max_orphans = 262144 
  84. net.ipv4.tcp_max_syn_backlog = 262144 
  85. net.ipv4.tcp_synack_retries = 2 
  86. net.ipv4.tcp_syn_retries = 2 
  87. vm.swappiness = 3" >> /etc/sysctl.conf 
  88. echo "optimizited kernel configure was done!" 

 

你可能感兴趣的:(linux,shell,System,init,休闲)