开发者俱乐部

标题: 非常全面的Linux知识点总结 [打印本页]

作者: jack    时间: 2016-4-20 06:11
标题: 非常全面的Linux知识点总结
$1 我的Linux需求

Linux博大精深。我只在此讨论一些我对线上Linux机器维护人员的基本需求,比如装机,加硬盘,配网络。只讨论CentOS 6,或者类似的RHEL,当然Ubuntu也可以此类推,但是一些新特性不予讨论,因为我不懂,比如CentOS 7的xfs不予讨论,并不是说xfs不好,而是以目前我的Linux水平需要更新很多xfs的知识,驾驭需要时间。CentOS 7将ifconfig,netstat等原来常用的命令也干掉了,用ip,lsof替换是更加好的工具,但是大部分的线上机器都应该还没有更新到CentOS 7。下面我们以CentOS 6作为基础,谈我认为最基本的4点。

$1.1 最小化安装

CentOS有一个minimal版本,相对于标准版去掉了很多Service,比如Network Manager,安装最小版本以后的网络配置是需要admin进行写配置文件的。我个人认为这样是比较好的,因为这样才能知道Linux内核真正关心的是哪些配置文件,直达核心。一些必要的监控工具,完全可以通过yum install来完成。作为线上机器,还是最小化安装,做到能不开的服务就不开,能关掉的端口就关掉,这样既能将宝贵的硬件资源留下来给应用程序,也能够做到更加的安全。

$1.2 足够安全

除了将能关的端口关掉,能不用的服务关掉以外,安全还需要做到特定的服务只能访问特定的内容。哪怕是root账户,不能访问的文件和文件夹还是不能访问,更加不能操作。开启SELinux以后,能够做到在不修改SELinux的情况下,指定的服务只能访问指定的资源。对于ssh要做到关闭账户密码登录,只能通过秘钥登录,这样在保证秘钥不被盗用的情况下是最安全的。

$1.3 资源按需调度

我们经常会遇到这样一个问题,假设将磁盘sda挂载到/var目录,但是由于log太多或者上传的文件等等其他因素将硬盘吃光了,再创建一块sdb磁盘就无法挂载到/var目录了,其实Linux自带的lvm已经解决了这个问题,并且CentOS默认就是用lvm来管理磁盘的。我们需要学会如何格式化一块硬盘为lvm,然后挂载到对应目录,在空间被吃光前能够添加一块硬盘就自动扩容。

$1.4 网络监控

Linux本地要利用好net_filter,也就是iptables,来规划服务哪些网络流量,抛弃哪些网络流量。以及在进行组网的时候需要用router来进行网关的创建,在遇到网络问题的时候通过netstat来查看网络访问异常。网络这块内容很多很杂,各种参数,TCP/IP协议栈等等,但是往往问题还就是出在网络这块,所以要给与高度的关注。

$2 Linux的理念与基础

小谈几点我对Linux的认识。

$2.1 Linux的文件系统

Linux将所有的事物都看成文件,这一点人尽皆知。我想说的是,除了传统的ext文件系统,Linux在抽象不同的资源的时候其实有各种不同的文件系统,都是从需求和使用出发,比如proc文件系统就是针对进程的抽象,使得修改对应进程的值就可以直接改变进程的行为。再比如,对于远程ssh登录的pts设备,Linux有对应的devpts文件系统。看下面表哥的type一栏。



$2.2 Linux的权限管理

Linux的-rwxrwxrwx权限管理也可谓人尽皆知,其实Linux自己也意识到了这样的权限管理所带来的一些局限性。首先rwx的权限管理是基于用户和组的,并且只是大致的分为owner|group|other这三类,无法再作更加细粒度的划分。有鉴于此,Linux目前默认是有ACL(Access Control List)管理的,所谓ACL就是能够提供更加细粒度的用户和组管理,比如可以明确哪个user可以有什么样的权限。如下示例

  1. getfacl abc
  2. # file: abc
  3. # owner: someone
  4. # group: someone
  5. user::rw-
  6. user:johny:r-x
  7. group::r--
  8. mask::r-x
  9. other::r--
复制代码

而SELinux提供了不基于用户与组的权限管理,SELinux是基于应用程序的,什么样的应用程序可以使用什么资源,对于这些资源这个应用程序能干嘛,这个就是SELinux的管理方式。

$2.3 Linux上的Service

Linux上的Service组织得非常清晰,/etc/init.d/里面包含了所有的Service启动脚本,对应的二进制文件在/usr/bin 、 /usr/sbin 、 /usr/local/bin等目录下,一般而言配置文件在/etc/app_name下,还有一个chkconfig的工具来管理各个runlevel下需要启动的Service。这样的约定俗成使得管理员在配置和使用的时候非常方便。Linux标准的Service都会将log记录到/var/log/messages中,使得系统管理员不需要翻阅各种log,直接在/var/log/messages中就可以找到绝大部分的log来判断当前系统是否正常。更甚者,syslogd被rsyslogd替换以后,可以将/var/log/messages中的内容通过UDP发送到远端用专业的log分析工具进行分析。我们需要学习Linux上Service的这些优秀的编程习惯和技巧。

$3 磁盘

根据$1中的需求,下面是我记录的一些基本的磁盘操作。

$4 网络

网络的坑很多,需要把网络搞通没个3,4年很难。下面从网络的配置文件着手,简单理一下网络方面的内容。网络最难的方面应该是如何搭建一个合理的高效的局域网或者城域网,这个需要有专业的网络知识。

$4.1 配置文件$4.2 与网络有关的一些命令$5 安全$5.1 PAM

PAM只需要简单了解就行,是一个可插拔的认证模块。我的理解是:开发Linux的极客们搞出来的可复用的一个组件。举个例子,现在有一个app,想要验证当前的登录用户是否有权限操作某个目录,那么在PAM里面有现成的模块,app只需要include这个模块,给出一个配置文件,就可以了。有一个非常好的关于PAM的视频教程,请看这里

$5.2 SELinux

SELinux也有一个非常好的视频教程,请看这里

$5.3 防火墙

下面是学习时候的一些摘录。特别一点,要开启内核参数net.ipv4.ip_forward=1,在/etc/sysctl.conf文件中,用sysctl -p来保存。所谓ip_forward指的是内核提供的从一个iface到另外一个iface的IP包转发,比如将IP包从192.168.1.10的eth0转发到10.0.0.123的eth1上。防火墙配置是需要专业技能的。

$6 工具

一个好的Linux命令参考网站

$6.1 CPU$6.2 Memory$6.3 IO杂项

关于安装好系统之后的运行脚本,这边有一个参考

  1. #!/bin/bash
  2. #################################################
  3. #   author  huachao
  4. #   date    2015-12-09
  5. #   email   i@huachao.me
  6. #   web     blog.huachao.me
  7. #################################################

  8. flagFile="/root/centos6-init.executed"

  9. precheck(){

  10.     if [[ "$(whoami)" != "root" ]]; then
  11.     echo "please run this script as root ." >&2
  12.     exit 1
  13.     fi

  14.     if [ -f "$flagFile" ]; then
  15.     echo "this script had been executed, please do not execute again!!" >&2
  16.     exit 1
  17.     fi

  18.     echo -e "\033[31m WARNING! THIS SCRIPT WILL \033[0m\n"
  19.     echo -e "\033[31m *1 update the system; \033[0m\n"
  20.     echo -e "\033[31m *2 setup security permissions; \033[0m\n"
  21.     echo -e "\033[31m *3 stop irrelevant services; \033[0m\n"
  22.     echo -e "\033[31m *4 reconfig kernel parameters; \033[0m\n"
  23.     echo -e "\033[31m *5 setup timezone and sync time periodically; \033[0m\n"
  24.     echo -e "\033[31m *6 setup tcp_wrapper and netfilter firewall; \033[0m\n"
  25.     echo -e "\033[31m *7 setup vsftpd; \033[0m\n"
  26.     sleep 5

  27. }

  28. yum_update(){
  29.     yum -y update
  30.     #update system at 5:40pm daily
  31.     echo "40 3 * * * root yum -y update && yum clean packages" >> /etc/crontab
  32. }

  33. permission_config(){
  34.     #chattr +i /etc/shadow
  35.     #chattr +i /etc/passwd
  36. }

  37. selinux(){
  38.     sed -i 's/SELINUX=disabled/SELINUX=enforcing/g' /etc/sysconfig/selinux
  39.     setenforce 1
  40. }

  41. stop_services(){
  42.     for server in `chkconfig --list |grep 3:on|awk '{print $1}'`
  43.     do
  44.         chkconfig --level 3 $server off
  45.     done

  46.     for server in crond network rsyslog sshd iptables
  47.     do
  48.        chkconfig --level 3 $server on
  49.     done
  50. }

  51. limits_config(){
  52. cat >> /etc/security/limits.conf <<EOF
  53. * soft nproc 65535
  54. * hard nproc 65535
  55. * soft nofile 65535
  56. * hard nofile 65535
  57. EOF
  58. echo "ulimit -SH 65535" >> /etc/rc.local
  59. }

  60. sysctl_config(){
  61. sed -i 's/net.ipv4.tcp_syncookies.*$/net.ipv4.tcp_syncookies = 1/g' /etc/sysctl.conf
  62. sed -i 's/net.ipv4.ip_forward.*$/net.ipv4.ip_forward = 1/g' /etc/sysctl.conf
  63. cat >> /etc/sysctl.conf <<EOF
  64. net.ipv4.tcp_max_syn_backlog = 65536
  65. net.core.netdev_max_backlog =  32768
  66. net.core.somaxconn = 32768
  67. net.core.wmem_default = 8388608
  68. net.core.rmem_default = 8388608
  69. net.core.rmem_max = 16777216
  70. net.core.wmem_max = 16777216
  71. net.ipv4.tcp_timestamps = 0
  72. net.ipv4.tcp_synack_retries = 2
  73. net.ipv4.tcp_syn_retries = 2
  74. net.ipv4.tcp_tw_recycle = 1
  75. net.ipv4.tcp_tw_reuse = 1
  76. net.ipv4.tcp_mem = 94500000 915000000 927000000
  77. net.ipv4.tcp_max_orphans = 3276800
  78. net.ipv4.ip_local_port_range = 1024  65535
  79. EOF
  80. sysctl -p
  81. }

  82. sshd_config(){
  83.     if [ ! -f "/root/.ssh/id_rsa.pub" ]; then
  84.     ssh-keygen -t rsa -P '' -f /root/.ssh/id_rsa
  85.     cat /root/.ssh/id_rsa.pub >> /root/.ssh/authorized_keys
  86.     chmod 600 /root/.ssh/authorized_keys
  87.     fi

  88.     #sed -i '/^#Port/s/#Port 22/Port 65535/g' /etc/ssh/sshd_config
  89.     sed -i '/^#UseDNS/s/#UseDNS no/UseDNS yes/g' /etc/ssh/sshd_config
  90.     #sed -i 's/#PermitRootLogin yes/PermitRootLogin no/g' /etc/ssh/sshd_config
  91.     sed -i 's/#PermitEmptyPasswords yes/PermitEmptyPasswords no/g' /etc/ssh/sshd_config
  92.     sed -i 's/PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config
  93.     /etc/init.d/sshd restart
  94. }

  95. time_config(){
  96.     #timezone
  97.     echo "TZ='Asia/Shanghai'; export TZ" >> /etc/profile

  98.     # Update time
  99.     if [! -f "/usr/sbin/ntpdate"]; then
  100.         yum -y install ntpdate
  101.     fi

  102.     /usr/sbin/ntpdate pool.ntp.org
  103.     echo "30 3 * * * root (/usr/sbin/ntpdate pool.ntp.org && /sbin/hwclock -w) &> /dev/null" >> /etc/crontab
  104.     /sbin/service crond restart
  105. }

  106. iptables(){
  107. cat > /etc/sysconfig/iptables << EOF
  108. # Firewall configuration written by system-config-securitylevel
  109. # Manual customization of this file is not recommended.
  110. *filter
  111. :INPUT DROP [0:0]
  112. :FORWARD ACCEPT [0:0]
  113. :OUTPUT ACCEPT [0:0]
  114. :syn-flood - [0:0]
  115. -A INPUT -i lo -j ACCEPT
  116. -A INPUT -m state --state RELATED,ESTABLISHED -j ACCEPT
  117. -A INPUT -p tcp -m state --state NEW -m tcp --dport 22 -j ACCEPT
  118. -A INPUT -p tcp -m state --state NEW -m tcp --dport 80 -j ACCEPT
  119. -A INPUT -p icmp -m limit --limit 100/sec --limit-burst 100 -j ACCEPT
  120. -A INPUT -p icmp -m limit --limit 1/s --limit-burst 10 -j ACCEPT
  121. -A INPUT -p tcp -m tcp --tcp-flags FIN,SYN,RST,ACK SYN -j syn-flood
  122. -A INPUT -j REJECT --reject-with icmp-host-prohibited
  123. -A syn-flood -p tcp -m limit --limit 3/sec --limit-burst 6 -j RETURN
  124. -A syn-flood -j REJECT --reject-with icmp-port-unreachable
  125. COMMIT
  126. EOF
  127. /sbin/service iptables restart
  128. source /etc/profile
  129. }

  130. other(){
  131.     # initdefault
  132.     sed -i 's/^id:.*$/id:3:initdefault:/' /etc/inittab
  133.     /sbin/init q

  134.     # PS1
  135.     #echo 'PS1="\[\e[32m\][\[\e[35m\]\u\[\e[m\]@\[\e[36m\]\h \[\e[31m\]\w\[\e[32m\]]\[\e[36m\]$\[\e[m\]"' >> /etc/profile

  136.     # Wrong password five times locked 180s
  137.     sed -i '4a auth        required      pam_tally2.so deny=5 unlock_time=180' /etc/pam.d/system-auth
  138. }

  139. vsftpd_setup(){
  140.     yum -y install vsftpd
  141.     mv /etc/vsftpd/vsftpd.conf /etc/vsftpd/vsftpd.conf.bak
  142.     touch /etc/vsftpd/chroot_list
  143.     setsebool -P ftp_home_dir=1
  144. cat >> /etc/vsftpd/vsftpd.conf <<EOF
  145. # normal user settings
  146. local_enable=YES
  147. write_enable=YES
  148. local_umask=022
  149. chroot_local_user=YES
  150. chroot_list_enable=YES
  151. chroot_list_file=/etc/vsftpd/chroot_list
  152. local_max_rate=10000000
  153. # anonymous settings
  154. anonymous_enable=YES
  155. no_anon_password=YES
  156. anon_max_rate=1000000
  157. data_connection_timeout=60
  158. idle_session_timeout=600
  159. # ssl settings
  160. #ssl_enable=YES            
  161. #allow_anon_ssl=NO           
  162. #force_local_data_ssl=YES   
  163. #force_local_logins_ssl=YES  
  164. #ssl_tlsv1=YES               
  165. #ssl_sslv2=NO
  166. #ssl_sslv3=NO
  167. #rsa_cert_file=/etc/vsftpd/vsftpd.pem
  168. # server settings
  169. max_clients=50
  170. max_per_ip=5
  171. use_localtime=YES
  172. dirmessage_enable=YES
  173. xferlog_enable=YES
  174. connect_from_port_20=YES
  175. xferlog_std_format=YES
  176. listen=YES
  177. pam_service_name=vsftpd
  178. tcp_wrappers=YES
  179. #banner_file=/etc/vsftpd/welcome.txt
  180. dual_log_enable=YES
  181. pasv_min_port=65400
  182. pasv_max_port=65410
  183. EOF
  184.     chkconfig --level 3 vsftpd on
  185.     service vsftpd restart
  186. }

  187. main(){
  188.     precheck

  189.     printf "\033[32m================%40s================\033[0m\n" "updating the system            "
  190.     yum_update

  191.     printf "\033[32m================%40s================\033[0m\n" "re-config permission           "
  192.     permission_config

  193.     printf "\033[32m================%40s================\033[0m\n" "enabling selinux               "
  194.     selinux

  195.     printf "\033[32m================%40s================\033[0m\n" "stopping irrelevant services   "
  196.     stop_services

  197.     printf "\033[32m================%40s================\033[0m\n" "/etc/security/limits.config    "
  198.     limits_config

  199.     printf "\033[32m================%40s================\033[0m\n" "/etc/sysctl.conf               "
  200.     sysctl_config

  201.     printf "\033[32m================%40s================\033[0m\n" "sshd re-configuring            "
  202.     sshd_config

  203.     printf "\033[32m================%40s================\033[0m\n" "configuring time               "
  204.     time_config

  205.     printf "\033[32m================%40s================\033[0m\n" "configuring firewall           "
  206. #   iptables

  207.     printf "\033[32m================%40s================\033[0m\n" "someother stuff                "
  208.     other

  209.     printf "\033[32m================%40s================\033[0m\n" "done! rebooting                "
  210.     touch "$flagFile"
  211.     sleep 5
  212.     reboot
  213. }

  214. main
复制代码










欢迎光临 开发者俱乐部 (http://xodn.com/) Powered by Discuz! X3.2