&& || | > >> &

[wangshumin@CentOSNode3 ~]$ cd shell/
[wangshumin@CentOSNode3 shell]$ ll
总用量 4
-rw-rw-r--. 1 wangshumin wangshumin 33 3月  10 04:12 shelltest1
[wangshumin@CentOSNode3 shell]$ echo hh >> shelltest1 
[wangshumin@CentOSNode3 shell]$ vim  shelltest1 
[wangshumin@CentOSNode3 shell]$ ll
总用量 4
-rw-rw-r--. 1 wangshumin wangshumin 36 3月  10 04:35 shelltest1
[wangshumin@CentOSNode3 shell]$ chmod u+x shelltest1 
[wangshumin@CentOSNode3 shell]$ ll
总用量 4
-rwxrw-r--. 1 wangshumin wangshumin 36 3月  10 04:35 shelltest1
[wangshumin@CentOSNode3 shell]$ echo hh 2>> shelltest1 
hh
[wangshumin@CentOSNode3 shell]$ echo hh 2 >> shelltest1 
[wangshumin@CentOSNode3 shell]$ cat shelltest1 shelltest1 
#!/bin/bash
echo "wangshumin..."
hh
hh 2
#!/bin/bash
echo "wangshumin..."
hh
hh 2
[wangshumin@CentOSNode3 shell]$ cat shelltest1 
#!/bin/bash
echo "wangshumin..."
hh
hh 2
[wangshumin@CentOSNode3 shell]$ ls  > a
[wangshumin@CentOSNode3 shell]$ cat a
a
shelltest1
[wangshumin@CentOSNode3 shell]$ pwd  >>  a
[wangshumin@CentOSNode3 shell]$ cat a
a
shelltest1
/home/wangshumin/shell
[wangshumin@CentOSNode3 shell]$ pwd  >  a
[wangshumin@CentOSNode3 shell]$ cat a
/home/wangshumin/shell
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh >aa
ls: 无法访问hhhhhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh > aa
ls: 无法访问hhhhhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ cat aa
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh 2 > aa
ls: 无法访问hhhhhhh: 没有那个文件或目录
ls: 无法访问2: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ cat aa
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh 2> aa
[wangshumin@CentOSNode3 shell]$ cat aa
ls: 无法访问hhhhhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ ll
总用量 12
-rw-rw-r--. 1 wangshumin wangshumin 23 3月  10 04:38 a
-rw-rw-r--. 1 wangshumin wangshumin 53 3月  10 04:39 aa
-rwxrw-r--. 1 wangshumin wangshumin 41 3月  10 04:37 shelltest1
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh &> aa
[wangshumin@CentOSNode3 shell]$ llcat 
bash: llcat: 未找到命令...
[wangshumin@CentOSNode3 shell]$ cat aa
ls: 无法访问hhhhhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ ls  &> aa
[wangshumin@CentOSNode3 shell]$ cat aa
a
aa
shelltest1
[wangshumin@CentOSNode3 shell]$ ls  &>> aa
[wangshumin@CentOSNode3 shell]$ ls hhhhhhh &>> aa
[wangshumin@CentOSNode3 shell]$ cat aa
a
aa
shelltest1
a
aa
shelltest1
ls: 无法访问hhhhhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ uname -r  &>> aa 
[wangshumin@CentOSNode3 shell]$ cat aa
a
aa
shelltest1
a
aa
shelltest1
ls: 无法访问hhhhhhh: 没有那个文件或目录
3.10.0-693.17.1.el7.x86_64
[wangshumin@CentOSNode3 shell]$ ls >> aa 2>>bb
[wangshumin@CentOSNode3 shell]$ cat aa
a
aa
shelltest1
a
aa
shelltest1
ls: 无法访问hhhhhhh: 没有那个文件或目录
3.10.0-693.17.1.el7.x86_64
a
aa
bb
shelltest1
[wangshumin@CentOSNode3 shell]$ ls aaa >> aa 2>>bb
[wangshumin@CentOSNode3 shell]$ cat aa 
a
aa
shelltest1
a
aa
shelltest1
ls: 无法访问hhhhhhh: 没有那个文件或目录
3.10.0-693.17.1.el7.x86_64
a
aa
bb
shelltest1
[wangshumin@CentOSNode3 shell]$ ls aaahhhh >> aa 2>>bb
[wangshumin@CentOSNode3 shell]$ cat aa 
a
aa
shelltest1
a
aa
shelltest1
ls: 无法访问hhhhhhh: 没有那个文件或目录
3.10.0-693.17.1.el7.x86_64
a
aa
bb
shelltest1
[wangshumin@CentOSNode3 shell]$ cat bb
ls: 无法访问aaa: 没有那个文件或目录
ls: 无法访问aaahhhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ ls  >> c 2>>d
[wangshumin@CentOSNode3 shell]$ cat c
a
aa
bb
c
d
shelltest1
[wangshumin@CentOSNode3 shell]$ cat d
[wangshumin@CentOSNode3 shell]$ ls xhh >> c 2>>d
[wangshumin@CentOSNode3 shell]$ cat d
ls: 无法访问xhh: 没有那个文件或目录
[wangshumin@CentOSNode3 shell]$ ls
a  aa  bb  c  d  shelltest1
[wangshumin@CentOSNode3 shell]$ ls >>c1 2>>&1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >> c1 2>>&1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >> c1 2>> & 1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >> c1 2>> &1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >> c1 2> &1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >> c1 2>>&1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls >>c1 2>>&1
-bash: 未预期的符号 `&' 附近有语法错误
[wangshumin@CentOSNode3 shell]$ ls
a  aa  bb  c  d  shelltest1
[wangshumin@CentOSNode3 shell]$ 
[wangshumin@CentOSNode3 shell]$ cd ;ls;date
ekl  shell  公共  模板  视频  图片  文档  下载  音乐  桌面
2018年 03月 10日 星期六 04:50:49 CST
[wangshumin@CentOSNode3 ~]$ ls&&date
ekl  shell  公共  模板  视频  图片  文档  下载  音乐  桌面
2018年 03月 10日 星期六 04:51:38 CST
[wangshumin@CentOSNode3 ~]$ ls sss &&date
ls: 无法访问sss: 没有那个文件或目录
[wangshumin@CentOSNode3 ~]$ ls sss &&date >>v1 2>>v2
ls: 无法访问sss: 没有那个文件或目录
[wangshumin@CentOSNode3 ~]$ ls sss >>v1 2>>v2 &&date >>v1 2>>v2
[wangshumin@CentOSNode3 ~]$ cat  v1
[wangshumin@CentOSNode3 ~]$ cat  v2
ls: 无法访问sss: 没有那个文件或目录
[wangshumin@CentOSNode3 ~]$ ls sss >>v1 2>>v2 || date >>v1 2>>v2
[wangshumin@CentOSNode3 ~]$ cat v1
2018年 03月 10日 星期六 04:53:38 CST
[wangshumin@CentOSNode3 ~]$ ls  && echo "yes " || echo "no"
ekl  shell  v1  v2  公共  模板  视频  图片  文档  下载  音乐  桌面
yes 
[wangshumin@CentOSNode3 ~]$ ls ss && echo "yes " || echo "no"
ls: 无法访问ss: 没有那个文件或目录
no
[wangshumin@CentOSNode3 ~]$ ls ss && echo "yes " || echo "no" 
ls: 无法访问ss: 没有那个文件或目录
no
[wangshumin@CentOSNode3 ~]$ echo "yes " || echo "no" 
yes 
[wangshumin@CentOSNode3 ~]$ echo s  "yes " || echo "no" 
s yes 
[wangshumin@CentOSNode3 ~]$ ls  && echo hh
ekl  shell  v1  v2  公共  模板  视频  图片  文档  下载  音乐  桌面
hh
[wangshumin@CentOSNode3 ~]$ ls ss && echo hh
ls: 无法访问ss: 没有那个文件或目录
[wangshumin@CentOSNode3 ~]$ ls ss ll echo xxx
ls: 无法访问ss: 没有那个文件或目录
ls: 无法访问ll: 没有那个文件或目录
ls: 无法访问echo: 没有那个文件或目录
ls: 无法访问xxx: 没有那个文件或目录
[wangshumin@CentOSNode3 ~]$ ls ss || echo xxx
ls: 无法访问ss: 没有那个文件或目录
xxx
[wangshumin@CentOSNode3 ~]$ ls  && echo "yes " || echo "no"
ekl  shell  v1  v2  公共  模板  视频  图片  文档  下载  音乐  桌面
yes 
[wangshumin@CentOSNode3 ~]$ netstat -nlut
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN     
tcp        0      0 192.168.122.1:53        0.0.0.0:*               LISTEN     
tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN     
tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN     
tcp6       0      0 :::111                  :::*                    LISTEN     
tcp6       0      0 :::22                   :::*                    LISTEN     
tcp6       0      0 ::1:631                 :::*                    LISTEN     
tcp6       0      0 ::1:25                  :::*                    LISTEN     
udp        0      0 192.168.122.1:53        0.0.0.0:*                          
udp        0      0 0.0.0.0:67              0.0.0.0:*                          
udp        0      0 0.0.0.0:40579           0.0.0.0:*                          
udp        0      0 0.0.0.0:5353            0.0.0.0:*                          
[wangshumin@CentOSNode3 ~]$ netstat -nlut | grep 80
[wangshumin@CentOSNode3 ~]$ netstat -nlut | grep 111
tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN     
tcp6       0      0 :::111                  :::*                    LISTEN     
[wangshumin@CentOSNode3 ~]$ ls -l /etc/ | more 
总用量 1424
drwxr-xr-x.  3 root       root          101 1月  28 13:16 abrt
-rw-r--r--.  1 root       root           16 1月  28 13:45 adjtime
-rw-r--r--.  1 root       root         1518 6月   7 2013 aliases
-rw-r--r--.  1 root       root        12288 1月  28 15:06 aliases.db
drwxr-xr-x.  2 root       root           51 1月  28 13:18 alsa
drwxr-xr-x.  2 root       root         4096 1月  30 15:35 alternatives
drwxr-xr-x.  3 root       root           23 1月  28 13:18 amanda
-rw-------.  1 root       root          541 8月   3 2017 anacrontab
-rw-r--r--.  1 root       root           55 3月   1 2017 asound.conf
-rw-r--r--.  1 root       root            1 1月  25 23:49 at.deny
drwxr-x---.  3 root       root           43 1月  28 13:18 audisp
drwxr-x---.  3 root       root           83 1月  28 15:06 audit
-rw-r--r--.  1 root       root        14392 12月  1 03:17 autofs.conf
-rw-------.  1 root       root          232 12月  1 03:17 autofs_ldap_auth.conf
-rw-r--r--.  1 root       root          795 12月  1 03:17 auto.master
drwxr-xr-x.  2 root       root            6 12月  1 03:17 auto.master.d
-rw-r--r--.  1 root       root          524 12月  1 03:17 auto.misc
-rwxr-xr-x.  1 root       root         1260 12月  1 03:17 auto.net
-rwxr-xr-x.  1 root       root          687 12月  1 03:17 auto.smb
drwxr-xr-x.  4 root       root           71 1月  28 13:30 avahi
drwxr-xr-x.  2 root       root         4096 1月  30 16:35 bash_completion.d
-rw-r--r--.  1 root       root         2853 11月  6 2016 bashrc
drwxr-xr-x.  2 root       root            6 1月  25 23:52 binfmt.d
drwxr-xr-x.  2 root       root           23 1月  30 15:31 bluetooth
drwxr-xr-x.  2 root       root        12288 1月  28 13:19 brltty
-rw-r--r--.  1 root       root        21929 8月   7 2017 brltty.conf
-rw-r--r--.  1 root       root           38 8月  30 2017 centos-release
-rw-r--r--.  1 root       root           51 8月  30 2017 centos-release-upstream
drwxr-xr-x.  2 root       root           29 1月  28 13:18 certmonger
-rw-r--r--.  1 root       root          676 8月   3 2017 cgconfig.conf
drwxr-xr-x.  2 root       root            6 8月   3 2017 cgconfig.d
-rw-r--r--.  1 root       root          265 1月  28 13:30 cgrules.conf
-rw-r--r--.  1 root       root          131 8月   3 2017 cgsnapshot_blacklist.conf
drwxr-xr-x.  2 root       root            6 8月   4 2017 chkconfig.d
-rw-r--r--.  1 root       root         1108 1月  31 2017 chrony.conf
-rw-r-----.  1 root       chrony        481 1月  31 2017 chrony.keys
drwxr-xr-x.  2 root       root           26 1月  30 15:27 cifs-utils
drwxr-xr-x.  3 root       root           65 1月  30 16:35 containers
drwxr-xr-x.  2 root       root           54 1月  28 13:30 cron.d
drwxr-xr-x.  2 root       root           70 1月  30 16:35 cron.daily
-rw-------.  1 root       root            0 8月   3 2017 cron.deny
drwxr-xr-x.  2 root       root           22 6月  10 2014 cron.hourly
drwxr-xr-x.  2 root       root            6 6月  10 2014 cron.monthly
-rw-r--r--.  1 root       root          451 6月  10 2014 crontab
drwxr-xr-x.  2 root       root            6 6月  10 2014 cron.weekly
-rw-------.  1 root       root            0 1月  28 13:08 crypttab
-rw-r--r--.  1 root       root         1620 11月  6 2016 csh.cshrc
-rw-r--r--.  1 root       root          841 6月   7 2013 csh.login
drwxr-xr-x.  5 root       lp           4096 1月  28 18:00 cups
drwxr-xr-x.  2 root       root           34 1月  28 13:17 cupshelpers
drwxr-xr-x.  4 root       root           78 1月  28 13:15 dbus-1
drwxr-xr-x.  4 root       root           31 1月  28 13:16 dconf
drwxr-xr-x.  2 root       root           44 1月  30 15:31 default
drwxr-xr-x.  2 root       root           23 1月  30 15:27 depmod.d
drwxr-x---.  4 root       root           53 1月  26 01:44 dhcp
-rw-r--r--.  1 root       root         5090 11月  5 2016 DIR_COLORS
-rw-r--r--.  1 root       root         5725 11月  5 2016 DIR_COLORS.256color
-rw-r--r--.  1 root       root         4669 11月  5 2016 DIR_COLORS.lightbgcolor
-rw-r--r--.  1 root       root         1174 12月  1 03:44 dleyna-server-service.conf
-rw-r--r--.  1 root       root        26832 10月  3 07:14 dnsmasq.conf
drwxr-xr-x.  2 root       root            6 10月  3 07:14 dnsmasq.d
drwxr-xr-x.  3 root       root           56 1月  30 16:40 docker
-rw-r--r--.  1 root       root         1285 1月   5 20:47 dracut.conf
drwxr-xr-x.  2 root       root            6 1月   5 20:47 dracut.conf.d
-rw-r--r--.  1 root       root         4676 8月   4 2017 drirc
-rw-r--r--.  1 root       root          112 3月  16 2017 e2fsck.conf
-rw-r--r--.  1 root       root         4760 6月  10 2014 enscript.cfg
-rw-r--r--.  1 root       root            0 11月  6 2016 environment
-rw-r--r--.  1 root       root         1317 11月  6 2016 ethertypes
-rw-r--r--.  1 root       root            0 6月   7 2013 exports
drwxr-xr-x.  2 root       root            6 1月  25 23:55 exports.d
lrwxrwxrwx.  1 root       root           56 1月  28 13:12 favicon.png -> /usr/share/icons/hicolor/16x16/apps/fedo
ra-logo-icon.png
drwxr-xr-x.  2 root       root           22 1月  28 13:25 fcoe
drwxr-xr-x.  2 root       root           46 1月  28 13:15 festival
-rw-r--r--.  1 root       root           70 11月  6 2016 filesystems
drwxr-xr-x.  3 root       root           18 1月  28 13:27 firefox
drwxr-x---.  7 root       root          133 1月  28 13:17 firewalld
drwxr-xr-x.  3 root       root           23 1月  28 13:19 flatpak
drwxr-xr-x.  3 root       root           38 1月  28 13:12 fonts
-rw-r--r--.  1 root       root           20 6月  24 2014 fprintd.conf
-rw-r--r--.  1 root       root          501 1月  28 13:08 fstab
-rw-r--r--.  1 root       root           38 5月   2 2017 fuse.conf
drwxr-xr-x.  7 root       root          107 1月  28 13:16 gconf
drwxr-xr-x.  2 root       root            6 8月   2 2017 gcrypt
-rw-r--r--.  1 root       root          265 1月  25 22:41 gdbinit
drwxr-xr-x.  2 root       root            6 1月  25 22:41 gdbinit.d
drwxr-xr-x.  6 root       root          107 1月  30 15:31 gdm
drwxr-xr-x.  2 root       root           26 1月  28 13:19 geoclue
-rw-r--r--.  1 root       root          842 11月  6 2016 GeoIP.conf
-rw-r--r--.  1 root       root          858 11月  6 2016 GeoIP.conf.default
drwxr-xr-x.  3 root       root           18 9月   7 2017 ghostscript
drwxr-xr-x.  2 root       root            6 11月  6 2016 gnupg
-rw-r--r--.  1 root       root           94 3月  25 2017 GREP_COLORS
drwxr-xr-x.  4 root       root           40 1月  28 13:10 groff
-rw-r--r--.  1 root       root          998 1月  30 16:38 group
-rw-r--r--.  1 root       root          988 1月  30 16:37 group-
lrwxrwxrwx.  1 root       root           22 1月  30 15:28 grub2.cfg -> ../boot/grub2/grub.cfg
drwx------.  2 root       root          182 1月  30 15:27 grub.d
----------.  1 root       root          809 1月  30 16:38 gshadow
----------.  1 root       root          799 1月  30 16:37 gshadow-
drwxr-xr-x.  3 root       root           20 1月  28 13:12 gss
drwxr-xr-x.  2 root       root           79 1月  30 15:27 gssproxy
drwxr-xr-x.  2 root       root           28 1月  28 13:11 highlight
-rw-r--r--.  1 root       root            9 6月   7 2013 host.conf
-rw-r--r--.  1 root       root           12 1月  28 16:50 hostname
-rw-r--r--.  1 root       root          239 1月  28 16:24 hosts
-rw-r--r--.  1 root       root          370 6月   7 2013 hosts.allow
-rw-r--r--.  1 root       root          460 6月   7 2013 hosts.deny
drwxr-xr-x.  2 root       root           24 1月  28 13:19 hp
-rw-r--r--.  1 root       root         4849 8月   2 2017 idmapd.conf
lrwxrwxrwx.  1 root       root           11 1月  28 13:10 init.d -> rc.d/init.d
-rw-r--r--.  1 root       root          511 1月  25 23:59 inittab
-rw-r--r--.  1 root       root          942 6月   7 2013 inputrc
drwxr-xr-x.  3 root       root           19 12月  1 04:03 ipa
drwxr-xr-x.  2 root       root          140 1月  28 13:11 iproute2
-rw-r--r--.  1 root       root         2050 12月  1 04:28 ipsec.conf
drwx------.  3 root       root           50 1月  30 15:31 ipsec.d
-rw-------.  1 root       root           31 12月  1 04:28 ipsec.secrets
drwxr-xr-x.  2 root       root           52 1月  28 13:17 iscsi
-rw-r--r--.  1 root       root           23 8月  30 2017 issue
-rw-r--r--.  1 root       root           22 8月  30 2017 issue.net
drwxr-xr-x.  3 root       root           62 1月  28 13:13 java
drwxr-xr-x.  2 root       root            6 11月 21 2015 jvm
drwxr-xr-x.  2 root       root            6 11月 21 2015 jvm-commmon
-rw-r--r--.  1 root       root         7265 1月  30 15:31 kdump.conf
drwxr-xr-x.  3 root       root           24 1月  28 13:30 kernel
-rw-r--r--.  1 root       root          590 4月  29 2017 krb5.conf
drwxr-xr-x.  2 root       root            6 8月   4 2017 krb5.conf.d
-rw-r--r--.  1 root       root          478 1月   5 03:00 ksmtuned.conf
-rw-r--r--.  1 root       root        84125 1月  30 15:35 ld.so.cache
-rw-r--r--.  1 root       root           28 2月  28 2013 ld.so.conf
drwxr-xr-x.  2 root       root          200 1月  30 15:30 ld.so.conf.d
-rw-r-----.  1 root       root          191 4月  19 2017 libaudit.conf
drwxr-xr-x.  2 root       root          249 1月  28 13:17 libibverbs.d
drwxr-xr-x.  2 root       root           35 1月  28 13:10 libnl
drwxr-xr-x.  6 root       root          149 1月  28 13:14 libreport
-rw-r--r--.  1 root       root         2391 10月 13 2013 libuser.conf
drwx------.  4 root       root          184 1月  30 15:28 libvirt
-rw-r--r--.  1 root       root           19 1月  28 13:45 locale.conf
lrwxrwxrwx.  1 root       root           35 1月  28 13:45 localtime -> ../usr/share/zoneinfo/Asia/Shanghai
-rw-r--r--.  1 root       root         2028 11月  5 2016 login.defs
-rw-r--r--.  1 root       root          662 7月  31 2013 logrotate.conf
drwxr-xr-x.  2 root       root          258 1月  30 16:35 logrotate.d
drwxr-xr-x.  3 root       root           43 1月  30 15:27 lsm
drwxr-xr-x.  6 root       root          100 1月  28 13:18 lvm
-r--r--r--.  1 root       root           33 1月  28 13:15 machine-id
-rw-r--r--.  1 root       root          111 11月  6 2016 magic
-rw-r--r--.  1 root       root         1968 8月   3 2017 mail.rc
-rw-r--r--.  1 root       root         5122 10月 20 05:03 makedumpfile.conf.sample
-rw-r--r--.  1 root       root         5171 6月  10 2014 man_db.conf
drwxr-xr-x.  2 root       root            6 11月 21 2015 maven
-rw-r--r--.  1 root       root          936 8月   3 2017 mke2fs.conf
drwxr-xr-x.  2 root       root           81 1月  30 15:31 modprobe.d
drwxr-xr-x.  2 root       root            6 1月  25 23:52 modules-load.d
-rw-r--r--.  1 root       root            0 6月   7 2013 motd
lrwxrwxrwx.  1 root       root           17 1月  28 13:08 mtab -> /proc/self/mounts
-rw-r--r--.  1 root       root         2620 6月  10 2014 mtools.conf
drwxr-xr-x.  2 root       root            6 1月  26 00:05 multipath
-rw-r--r--.  1 root       root          570 6月   8 2017 my.cnf
drwxr-xr-x.  2 root       root           31 1月  28 13:13 my.cnf.d
-rw-r--r--.  1 root       root         8892 6月  10 2014 nanorc
-rw-r--r--.  1 root       root          767 8月   4 2017 netconfig
drwxr-xr-x.  8 root       root          145 1月  26 01:44 NetworkManager
-rw-r--r--.  1 root       root           58 1月  25 23:59 networks
-rw-r--r--.  1 root       root          955 1月  25 23:55 nfs.conf
-rw-r--r--.  1 root       root         3390 1月  25 23:55 nfsmount.conf
-rw-r--r--.  1 root       root         1746 1月  28 13:15 nsswitch.conf
-rw-r--r--.  1 root       root         1735 8月   2 2017 nsswitch.conf.bak
drwxr-xr-x.  3 root       root           52 1月  28 13:19 ntp
-rw-r--r--.  1 root       root         2000 4月  12 2017 ntp.conf
-rw-r--r--.  1 root       root           91 12月  3 2012 numad.conf
-rw-r--r--.  1 root       root           85 1月  30 04:20 oci-register-machine.conf
-rw-r--r--.  1 root       root          522 1月  30 04:21 oci-umount.conf
drwxr-xr-x.  2 root       root            6 3月   6 2015 oddjob
-rw-r--r--.  1 root       root         4922 3月   6 2015 oddjobd.conf
drwxr-xr-x.  2 root       root           70 1月  28 13:18 oddjobd.conf.d
drwxr-xr-x.  3 root       root           36 1月  28 13:14 openldap
drwxr-xr-x.  2 root       root            6 11月  5 2016 opt
-rw-r--r--.  1 root       root          393 8月  30 2017 os-release
drwxr-xr-x.  2 root       root           92 1月  28 13:30 PackageKit
drwxr-xr-x.  2 root       root         4096 1月  30 16:35 pam.d
drwxr-xr-x.  2 root       root           57 1月  28 13:31 pam_pkcs11
-rw-r--r--.  1 root       root         2309 1月  30 16:35 passwd
-rw-r--r--.  1 root       root         2246 1月  30 15:28 passwd-
-rw-r--r--.  1 root       root         1362 6月  10 2014 pbm2ppa.conf
-rw-r--r--.  1 root       root         2872 6月  10 2014 pinforc
drwxr-xr-x.  3 root       root           21 1月  28 13:10 pkcs11
drwxr-xr-x. 14 root       root          189 1月  30 16:36 pki
drwxr-xr-x.  2 root       root           28 1月  28 13:18 plymouth
drwxr-xr-x.  5 root       root           52 1月  28 13:09 pm
-rw-r--r--.  1 root       root         6300 6月  10 2014 pnm2ppa.conf
drwxr-xr-x.  5 root       root           72 1月  28 13:16 polkit-1
drwxr-xr-x.  2 root       root            6 6月  10 2014 popt.d
drwxr-xr-x.  2 root       root          154 1月  28 13:30 postfix
drwxr-xr-x.  3 root       root          219 1月  30 15:27 ppp
drwxr-xr-x.  2 root       root          105 1月  30 15:31 prelink.conf.d
-rw-r--r--.  1 root       root          233 6月   7 2013 printcap
-rw-r--r--.  1 root       root         2263 1月  28 20:56 profile
drwxr-xr-x.  2 root       root         4096 1月  30 15:27 profile.d
-rw-r--r--.  1 root       root         6545 6月   7 2013 protocols
drwxr-xr-x.  2 root       root           79 1月  28 13:18 pulse
drwxr-xr-x.  2 root       root           23 1月  28 13:19 purple
drwxr-xr-x.  2 root       root           35 1月  28 13:12 python
drwxr-xr-x.  3 root       root           50 1月  28 13:30 qemu-ga
drwxr-xr-x.  2 root       root           51 1月  30 15:30 qemu-kvm
-rw-r--r--.  1 root       root          433 9月   9 2015 radvd.conf
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc0.d -> rc.d/rc0.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc1.d -> rc.d/rc1.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc2.d -> rc.d/rc2.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc3.d -> rc.d/rc3.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc4.d -> rc.d/rc4.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc5.d -> rc.d/rc5.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc6.d -> rc.d/rc6.d
drwxr-xr-x. 10 root       root          127 1月  25 23:59 rc.d
lrwxrwxrwx.  1 root       root           13 1月  30 15:27 rc.local -> rc.d/rc.local
drwxr-xr-x.  2 root       root           79 1月  28 13:17 rdma
drwxr-xr-x.  2 root       root            6 11月 20 2015 reader.conf.d
lrwxrwxrwx.  1 root       root           14 1月  28 13:09 redhat-release -> centos-release
-rw-r--r--.  1 root       root         1787 6月  10 2014 request-key.conf
drwxr-xr-x.  2 root       root           77 1月  30 15:27 request-key.d
-rw-r--r--.  1 root       root           54 3月  10 04:02 resolv.conf
drwxr-xr-x.  5 root       root           86 1月  30 16:35 rhsm
-rw-r--r--.  1 root       root         1634 12月 25 2012 rpc
drwxr-xr-x.  2 root       root         4096 1月  28 13:16 rpm
-rw-r--r--.  1 root       root          458 8月   2 2017 rsyncd.conf
-rw-r--r--.  1 root       root         3232 5月  10 2017 rsyslog.conf
drwxr-xr-x.  2 root       root           25 1月  30 15:27 rsyslog.d
-rw-r--r--.  1 root       root          966 1月  25 23:59 rwtab
drwxr-xr-x.  2 root       root           35 1月  30 15:27 rwtab.d
drwxr-xr-x.  2 root       root           61 1月  30 15:27 samba
drwxr-xr-x.  3 root       root         4096 1月  28 13:17 sane.d
drwxr-xr-x.  2 root       root           65 1月  30 15:28 sasl2
drwxr-xr-x.  3 root       root           34 1月  30 15:32 scl
-rw-------.  1 root       root          221 11月  6 2016 securetty
drwxr-xr-x.  6 root       root         4096 1月  28 21:39 security
drwxr-xr-x.  5 root       root           81 12月  2 05:38 selinux
-rw-r--r--.  1 root       root       670293 6月   7 2013 services
-rw-r--r--.  1 root       root          216 8月   4 2017 sestatus.conf
drwxr-xr-x.  2 root       root           33 1月  28 13:18 setroubleshoot
drwxr-xr-x.  2 root       root         4096 1月  28 13:30 setuptool.d
drwxr-xr-x.  3 root       root           21 1月  28 13:10 sgml
----------.  1 root       root         1279 1月  30 16:35 shadow
----------.  1 root       root         1253 1月  30 15:28 shadow-
-rw-r--r--.  1 root       root           95 1月  28 13:31 shells
drwxr-xr-x.  3 root       root           78 1月  30 15:23 skel
drwxr-xr-x.  3 root       root           74 1月  28 13:30 smartmontools
-rw-r--r--.  1 root       root          100 1月  26 01:44 sos.conf
drwxr-xr-x.  4 root       root           56 1月  28 13:20 speech-dispatcher
drwxr-xr-x.  2 root       root          225 1月  30 15:31 ssh
drwxr-xr-x.  2 root       root           19 1月  28 13:10 ssl
drwx--x--x.  3 sssd       sssd           20 12月  5 23:35 sssd
-rw-r--r--.  1 root       root          212 1月  25 23:59 statetab
drwxr-xr-x.  2 root       root            6 1月  25 23:59 statetab.d
-rw-r--r--.  1 root       root            0 11月  6 2016 subgid
-rw-r--r--.  1 root       root            0 11月  6 2016 subuid
drwxr-xr-x.  2 root       root            6 8月  24 2017 subversion
-rw-r-----.  1 root       root         1786 9月   6 2017 sudo.conf
-r--r-----.  1 root       root         3964 1月  28 17:06 sudoers
drwxr-x---.  2 root       root            6 9月   7 2017 sudoers.d
-rw-r-----.  1 root       root         3181 9月   6 2017 sudo-ldap.conf
drwxr-xr-x.  6 root       root         4096 1月  30 16:35 sysconfig
-rw-rw-r--.  1 wangshumin wangshumin    473 1月  28 21:20 sysctl.conf
drwxr-xr-x.  2 root       root           28 1月  30 15:27 sysctl.d
drwxr-xr-x.  4 root       root          151 1月  30 15:27 systemd
lrwxrwxrwx.  1 root       root           14 1月  28 13:09 system-release -> centos-release
-rw-r--r--.  1 root       root           23 8月  30 2017 system-release-cpe
drwxr-xr-x.  3 root       root           20 1月  28 13:19 target
-rw-------.  1 tss        tss          7046 8月   4 2017 tcsd.conf
drwxr-xr-x.  2 root       root            6 9月   7 2017 terminfo
drwxr-xr-x.  2 root       root            6 1月  25 23:52 tmpfiles.d
-rw-r--r--.  1 root       root          750 1月  22 21:30 trusted-key.key
drwxr-xr-x.  2 root       root           70 1月  30 15:31 tuned
drwxr-xr-x.  3 root       root           54 1月  30 15:27 udev
drwxr-xr-x.  2 root       root            6 11月 20 2015 udisks2
drwxr-xr-x.  2 root       root           68 1月  30 15:28 unbound
-rw-r--r--.  1 root       root          513 11月  5 2016 updatedb.conf
drwxr-xr-x.  2 root       root           25 1月  28 13:19 UPower
-rw-r--r--.  1 root       root         1018 11月  6 2016 usb_modeswitch.conf
-rw-r--r--.  1 root       root           37 1月  28 13:45 vconsole.conf
-rw-r--r--.  1 root       root         1982 8月   2 2017 vimrc
-rw-r--r--.  1 root       root         1982 8月   2 2017 virc
drwxr-xr-x.  5 root       root          231 1月  28 13:19 vmware-tools
-rw-r--r--.  1 root       root         4479 10月 27 00:50 wgetrc
drwxr-xr-x.  2 root       root           33 1月  30 15:27 wpa_supplicant
-rw-r--r--.  1 root       root            0 6月  10 2014 wvdial.conf
drwxr-xr-x.  7 root       root          114 1月  28 13:31 X11
drwxr-xr-x.  5 root       root           99 1月  28 13:15 xdg
drwxr-xr-x.  2 root       root            6 11月  5 2016 xinetd.d
drwxr-xr-x.  2 root       root           21 1月  28 13:10 xml
drwxr-xr-x.  6 root       root          100 1月  28 13:15 yum
-rw-r--r--.  1 root       root          970 8月   6 2017 yum.conf
drwxr-xr-x.  2 root       root          187 8月   6 2017 yum.repos.d
[wangshumin@CentOSNode3 ~]$ ls -l /etc/ | more 
总用量 1424
drwxr-xr-x.  3 root       root          101 1月  28 13:16 abrt
-rw-r--r--.  1 root       root           16 1月  28 13:45 adjtime
-rw-r--r--.  1 root       root         1518 6月   7 2013 aliases
-rw-r--r--.  1 root       root        12288 1月  28 15:06 aliases.db
drwxr-xr-x.  2 root       root           51 1月  28 13:18 alsa
drwxr-xr-x.  2 root       root         4096 1月  30 15:35 alternatives
drwxr-xr-x.  3 root       root           23 1月  28 13:18 amanda
-rw-------.  1 root       root          541 8月   3 2017 anacrontab
-rw-r--r--.  1 root       root           55 3月   1 2017 asound.conf
-rw-r--r--.  1 root       root            1 1月  25 23:49 at.deny
drwxr-x---.  3 root       root           43 1月  28 13:18 audisp
drwxr-x---.  3 root       root           83 1月  28 15:06 audit
-rw-r--r--.  1 root       root        14392 12月  1 03:17 autofs.conf
-rw-------.  1 root       root          232 12月  1 03:17 autofs_ldap_auth.conf
-rw-r--r--.  1 root       root          795 12月  1 03:17 auto.master
drwxr-xr-x.  2 root       root            6 12月  1 03:17 auto.master.d
-rw-r--r--.  1 root       root          524 12月  1 03:17 auto.misc
-rwxr-xr-x.  1 root       root         1260 12月  1 03:17 auto.net
-rwxr-xr-x.  1 root       root          687 12月  1 03:17 auto.smb
drwxr-xr-x.  4 root       root           71 1月  28 13:30 avahi
drwxr-xr-x.  2 root       root         4096 1月  30 16:35 bash_completion.d
-rw-r--r--.  1 root       root         2853 11月  6 2016 bashrc
drwxr-xr-x.  2 root       root            6 1月  25 23:52 binfmt.d
drwxr-xr-x.  2 root       root           23 1月  30 15:31 bluetooth
drwxr-xr-x.  2 root       root        12288 1月  28 13:19 brltty
-rw-r--r--.  1 root       root        21929 8月   7 2017 brltty.conf
-rw-r--r--.  1 root       root           38 8月  30 2017 centos-release
-rw-r--r--.  1 root       root           51 8月  30 2017 centos-release-upstream
drwxr-xr-x.  2 root       root           29 1月  28 13:18 certmonger
-rw-r--r--.  1 root       root          676 8月   3 2017 cgconfig.conf
drwxr-xr-x.  2 root       root            6 8月   3 2017 cgconfig.d
-rw-r--r--.  1 root       root          265 1月  28 13:30 cgrules.conf
-rw-r--r--.  1 root       root          131 8月   3 2017 cgsnapshot_blacklist.conf
drwxr-xr-x.  2 root       root            6 8月   4 2017 chkconfig.d
-rw-r--r--.  1 root       root         1108 1月  31 2017 chrony.conf
-rw-r-----.  1 root       chrony        481 1月  31 2017 chrony.keys
drwxr-xr-x.  2 root       root           26 1月  30 15:27 cifs-utils
drwxr-xr-x.  3 root       root           65 1月  30 16:35 containers
drwxr-xr-x.  2 root       root           54 1月  28 13:30 cron.d
drwxr-xr-x.  2 root       root           70 1月  30 16:35 cron.daily
-rw-------.  1 root       root            0 8月   3 2017 cron.deny
drwxr-xr-x.  2 root       root           22 6月  10 2014 cron.hourly
drwxr-xr-x.  2 root       root            6 6月  10 2014 cron.monthly
-rw-r--r--.  1 root       root          451 6月  10 2014 crontab
drwxr-xr-x.  2 root       root            6 6月  10 2014 cron.weekly
-rw-------.  1 root       root            0 1月  28 13:08 crypttab
-rw-r--r--.  1 root       root         1620 11月  6 2016 csh.cshrc
-rw-r--r--.  1 root       root          841 6月   7 2013 csh.login
drwxr-xr-x.  5 root       lp           4096 1月  28 18:00 cups
drwxr-xr-x.  2 root       root           34 1月  28 13:17 cupshelpers
drwxr-xr-x.  4 root       root           78 1月  28 13:15 dbus-1
drwxr-xr-x.  4 root       root           31 1月  28 13:16 dconf
drwxr-xr-x.  2 root       root           44 1月  30 15:31 default
drwxr-xr-x.  2 root       root           23 1月  30 15:27 depmod.d
drwxr-x---.  4 root       root           53 1月  26 01:44 dhcp
-rw-r--r--.  1 root       root         5090 11月  5 2016 DIR_COLORS
-rw-r--r--.  1 root       root         5725 11月  5 2016 DIR_COLORS.256color
-rw-r--r--.  1 root       root         4669 11月  5 2016 DIR_COLORS.lightbgcolor
-rw-r--r--.  1 root       root         1174 12月  1 03:44 dleyna-server-service.conf
-rw-r--r--.  1 root       root        26832 10月  3 07:14 dnsmasq.conf
drwxr-xr-x.  2 root       root            6 10月  3 07:14 dnsmasq.d
drwxr-xr-x.  3 root       root           56 1月  30 16:40 docker
-rw-r--r--.  1 root       root         1285 1月   5 20:47 dracut.conf
drwxr-xr-x.  2 root       root            6 1月   5 20:47 dracut.conf.d
-rw-r--r--.  1 root       root         4676 8月   4 2017 drirc
-rw-r--r--.  1 root       root          112 3月  16 2017 e2fsck.conf
-rw-r--r--.  1 root       root         4760 6月  10 2014 enscript.cfg
-rw-r--r--.  1 root       root            0 11月  6 2016 environment
-rw-r--r--.  1 root       root         1317 11月  6 2016 ethertypes
-rw-r--r--.  1 root       root            0 6月   7 2013 exports
drwxr-xr-x.  2 root       root            6 1月  25 23:55 exports.d
lrwxrwxrwx.  1 root       root           56 1月  28 13:12 favicon.png -> /usr/share/icons/hicolor/16x16/apps/fedo
ra-logo-icon.png
drwxr-xr-x.  2 root       root           22 1月  28 13:25 fcoe
drwxr-xr-x.  2 root       root           46 1月  28 13:15 festival
-rw-r--r--.  1 root       root           70 11月  6 2016 filesystems
drwxr-xr-x.  3 root       root           18 1月  28 13:27 firefox
drwxr-x---.  7 root       root          133 1月  28 13:17 firewalld
drwxr-xr-x.  3 root       root           23 1月  28 13:19 flatpak
drwxr-xr-x.  3 root       root           38 1月  28 13:12 fonts
-rw-r--r--.  1 root       root           20 6月  24 2014 fprintd.conf
-rw-r--r--.  1 root       root          501 1月  28 13:08 fstab
-rw-r--r--.  1 root       root           38 5月   2 2017 fuse.conf
drwxr-xr-x.  7 root       root          107 1月  28 13:16 gconf
drwxr-xr-x.  2 root       root            6 8月   2 2017 gcrypt
-rw-r--r--.  1 root       root          265 1月  25 22:41 gdbinit
drwxr-xr-x.  2 root       root            6 1月  25 22:41 gdbinit.d
drwxr-xr-x.  6 root       root          107 1月  30 15:31 gdm
drwxr-xr-x.  2 root       root           26 1月  28 13:19 geoclue
-rw-r--r--.  1 root       root          842 11月  6 2016 GeoIP.conf
-rw-r--r--.  1 root       root          858 11月  6 2016 GeoIP.conf.default
drwxr-xr-x.  3 root       root           18 9月   7 2017 ghostscript
drwxr-xr-x.  2 root       root            6 11月  6 2016 gnupg
-rw-r--r--.  1 root       root           94 3月  25 2017 GREP_COLORS
drwxr-xr-x.  4 root       root           40 1月  28 13:10 groff
-rw-r--r--.  1 root       root          998 1月  30 16:38 group
-rw-r--r--.  1 root       root          988 1月  30 16:37 group-
lrwxrwxrwx.  1 root       root           22 1月  30 15:28 grub2.cfg -> ../boot/grub2/grub.cfg
drwx------.  2 root       root          182 1月  30 15:27 grub.d
----------.  1 root       root          809 1月  30 16:38 gshadow
----------.  1 root       root          799 1月  30 16:37 gshadow-
drwxr-xr-x.  3 root       root           20 1月  28 13:12 gss
drwxr-xr-x.  2 root       root           79 1月  30 15:27 gssproxy
drwxr-xr-x.  2 root       root           28 1月  28 13:11 highlight
-rw-r--r--.  1 root       root            9 6月   7 2013 host.conf
-rw-r--r--.  1 root       root           12 1月  28 16:50 hostname
-rw-r--r--.  1 root       root          239 1月  28 16:24 hosts
-rw-r--r--.  1 root       root          370 6月   7 2013 hosts.allow
-rw-r--r--.  1 root       root          460 6月   7 2013 hosts.deny
drwxr-xr-x.  2 root       root           24 1月  28 13:19 hp
-rw-r--r--.  1 root       root         4849 8月   2 2017 idmapd.conf
lrwxrwxrwx.  1 root       root           11 1月  28 13:10 init.d -> rc.d/init.d
-rw-r--r--.  1 root       root          511 1月  25 23:59 inittab
-rw-r--r--.  1 root       root          942 6月   7 2013 inputrc
drwxr-xr-x.  3 root       root           19 12月  1 04:03 ipa
drwxr-xr-x.  2 root       root          140 1月  28 13:11 iproute2
-rw-r--r--.  1 root       root         2050 12月  1 04:28 ipsec.conf
drwx------.  3 root       root           50 1月  30 15:31 ipsec.d
-rw-------.  1 root       root           31 12月  1 04:28 ipsec.secrets
drwxr-xr-x.  2 root       root           52 1月  28 13:17 iscsi
-rw-r--r--.  1 root       root           23 8月  30 2017 issue
-rw-r--r--.  1 root       root           22 8月  30 2017 issue.net
drwxr-xr-x.  3 root       root           62 1月  28 13:13 java
drwxr-xr-x.  2 root       root            6 11月 21 2015 jvm
drwxr-xr-x.  2 root       root            6 11月 21 2015 jvm-commmon
-rw-r--r--.  1 root       root         7265 1月  30 15:31 kdump.conf
drwxr-xr-x.  3 root       root           24 1月  28 13:30 kernel
-rw-r--r--.  1 root       root          590 4月  29 2017 krb5.conf
drwxr-xr-x.  2 root       root            6 8月   4 2017 krb5.conf.d
-rw-r--r--.  1 root       root          478 1月   5 03:00 ksmtuned.conf
-rw-r--r--.  1 root       root        84125 1月  30 15:35 ld.so.cache
-rw-r--r--.  1 root       root           28 2月  28 2013 ld.so.conf
drwxr-xr-x.  2 root       root          200 1月  30 15:30 ld.so.conf.d
-rw-r-----.  1 root       root          191 4月  19 2017 libaudit.conf
drwxr-xr-x.  2 root       root          249 1月  28 13:17 libibverbs.d
drwxr-xr-x.  2 root       root           35 1月  28 13:10 libnl
drwxr-xr-x.  6 root       root          149 1月  28 13:14 libreport
-rw-r--r--.  1 root       root         2391 10月 13 2013 libuser.conf
drwx------.  4 root       root          184 1月  30 15:28 libvirt
-rw-r--r--.  1 root       root           19 1月  28 13:45 locale.conf
lrwxrwxrwx.  1 root       root           35 1月  28 13:45 localtime -> ../usr/share/zoneinfo/Asia/Shanghai
-rw-r--r--.  1 root       root         2028 11月  5 2016 login.defs
-rw-r--r--.  1 root       root          662 7月  31 2013 logrotate.conf
drwxr-xr-x.  2 root       root          258 1月  30 16:35 logrotate.d
drwxr-xr-x.  3 root       root           43 1月  30 15:27 lsm
drwxr-xr-x.  6 root       root          100 1月  28 13:18 lvm
-r--r--r--.  1 root       root           33 1月  28 13:15 machine-id
-rw-r--r--.  1 root       root          111 11月  6 2016 magic
-rw-r--r--.  1 root       root         1968 8月   3 2017 mail.rc
-rw-r--r--.  1 root       root         5122 10月 20 05:03 makedumpfile.conf.sample
-rw-r--r--.  1 root       root         5171 6月  10 2014 man_db.conf
drwxr-xr-x.  2 root       root            6 11月 21 2015 maven
-rw-r--r--.  1 root       root          936 8月   3 2017 mke2fs.conf
drwxr-xr-x.  2 root       root           81 1月  30 15:31 modprobe.d
drwxr-xr-x.  2 root       root            6 1月  25 23:52 modules-load.d
-rw-r--r--.  1 root       root            0 6月   7 2013 motd
lrwxrwxrwx.  1 root       root           17 1月  28 13:08 mtab -> /proc/self/mounts
-rw-r--r--.  1 root       root         2620 6月  10 2014 mtools.conf
drwxr-xr-x.  2 root       root            6 1月  26 00:05 multipath
-rw-r--r--.  1 root       root          570 6月   8 2017 my.cnf
drwxr-xr-x.  2 root       root           31 1月  28 13:13 my.cnf.d
-rw-r--r--.  1 root       root         8892 6月  10 2014 nanorc
-rw-r--r--.  1 root       root          767 8月   4 2017 netconfig
drwxr-xr-x.  8 root       root          145 1月  26 01:44 NetworkManager
-rw-r--r--.  1 root       root           58 1月  25 23:59 networks
-rw-r--r--.  1 root       root          955 1月  25 23:55 nfs.conf
-rw-r--r--.  1 root       root         3390 1月  25 23:55 nfsmount.conf
-rw-r--r--.  1 root       root         1746 1月  28 13:15 nsswitch.conf
-rw-r--r--.  1 root       root         1735 8月   2 2017 nsswitch.conf.bak
drwxr-xr-x.  3 root       root           52 1月  28 13:19 ntp
-rw-r--r--.  1 root       root         2000 4月  12 2017 ntp.conf
-rw-r--r--.  1 root       root           91 12月  3 2012 numad.conf
-rw-r--r--.  1 root       root           85 1月  30 04:20 oci-register-machine.conf
-rw-r--r--.  1 root       root          522 1月  30 04:21 oci-umount.conf
drwxr-xr-x.  2 root       root            6 3月   6 2015 oddjob
-rw-r--r--.  1 root       root         4922 3月   6 2015 oddjobd.conf
drwxr-xr-x.  2 root       root           70 1月  28 13:18 oddjobd.conf.d
drwxr-xr-x.  3 root       root           36 1月  28 13:14 openldap
drwxr-xr-x.  2 root       root            6 11月  5 2016 opt
-rw-r--r--.  1 root       root          393 8月  30 2017 os-release
drwxr-xr-x.  2 root       root           92 1月  28 13:30 PackageKit
drwxr-xr-x.  2 root       root         4096 1月  30 16:35 pam.d
drwxr-xr-x.  2 root       root           57 1月  28 13:31 pam_pkcs11
-rw-r--r--.  1 root       root         2309 1月  30 16:35 passwd
-rw-r--r--.  1 root       root         2246 1月  30 15:28 passwd-
-rw-r--r--.  1 root       root         1362 6月  10 2014 pbm2ppa.conf
-rw-r--r--.  1 root       root         2872 6月  10 2014 pinforc
drwxr-xr-x.  3 root       root           21 1月  28 13:10 pkcs11
drwxr-xr-x. 14 root       root          189 1月  30 16:36 pki
drwxr-xr-x.  2 root       root           28 1月  28 13:18 plymouth
drwxr-xr-x.  5 root       root           52 1月  28 13:09 pm
-rw-r--r--.  1 root       root         6300 6月  10 2014 pnm2ppa.conf
drwxr-xr-x.  5 root       root           72 1月  28 13:16 polkit-1
drwxr-xr-x.  2 root       root            6 6月  10 2014 popt.d
drwxr-xr-x.  2 root       root          154 1月  28 13:30 postfix
drwxr-xr-x.  3 root       root          219 1月  30 15:27 ppp
drwxr-xr-x.  2 root       root          105 1月  30 15:31 prelink.conf.d
-rw-r--r--.  1 root       root          233 6月   7 2013 printcap
-rw-r--r--.  1 root       root         2263 1月  28 20:56 profile
drwxr-xr-x.  2 root       root         4096 1月  30 15:27 profile.d
-rw-r--r--.  1 root       root         6545 6月   7 2013 protocols
drwxr-xr-x.  2 root       root           79 1月  28 13:18 pulse
drwxr-xr-x.  2 root       root           23 1月  28 13:19 purple
drwxr-xr-x.  2 root       root           35 1月  28 13:12 python
drwxr-xr-x.  3 root       root           50 1月  28 13:30 qemu-ga
drwxr-xr-x.  2 root       root           51 1月  30 15:30 qemu-kvm
-rw-r--r--.  1 root       root          433 9月   9 2015 radvd.conf
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc0.d -> rc.d/rc0.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc1.d -> rc.d/rc1.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc2.d -> rc.d/rc2.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc3.d -> rc.d/rc3.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc4.d -> rc.d/rc4.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc5.d -> rc.d/rc5.d
lrwxrwxrwx.  1 root       root           10 1月  30 15:27 rc6.d -> rc.d/rc6.d
drwxr-xr-x. 10 root       root          127 1月  25 23:59 rc.d
lrwxrwxrwx.  1 root       root           13 1月  30 15:27 rc.local -> rc.d/rc.local
drwxr-xr-x.  2 root       root           79 1月  28 13:17 rdma
drwxr-xr-x.  2 root       root            6 11月 20 2015 reader.conf.d
lrwxrwxrwx.  1 root       root           14 1月  28 13:09 redhat-release -> centos-release
-rw-r--r--.  1 root       root         1787 6月  10 2014 request-key.conf
drwxr-xr-x.  2 root       root           77 1月  30 15:27 request-key.d
-rw-r--r--.  1 root       root           54 3月  10 04:02 resolv.conf
drwxr-xr-x.  5 root       root           86 1月  30 16:35 rhsm
-rw-r--r--.  1 root       root         1634 12月 25 2012 rpc
drwxr-xr-x.  2 root       root         4096 1月  28 13:16 rpm
-rw-r--r--.  1 root       root          458 8月   2 2017 rsyncd.conf
-rw-r--r--.  1 root       root         3232 5月  10 2017 rsyslog.conf
drwxr-xr-x.  2 root       root           25 1月  30 15:27 rsyslog.d
-rw-r--r--.  1 root       root          966 1月  25 23:59 rwtab
drwxr-xr-x.  2 root       root           35 1月  30 15:27 rwtab.d
drwxr-xr-x.  2 root       root           61 1月  30 15:27 samba
drwxr-xr-x.  3 root       root         4096 1月  28 13:17 sane.d
drwxr-xr-x.  2 root       root           65 1月  30 15:28 sasl2
drwxr-xr-x.  3 root       root           34 1月  30 15:32 scl
-rw-------.  1 root       root          221 11月  6 2016 securetty
drwxr-xr-x.  6 root       root         4096 1月  28 21:39 security
drwxr-xr-x.  5 root       root           81 12月  2 05:38 selinux
-rw-r--r--.  1 root       root       670293 6月   7 2013 services
-rw-r--r--.  1 root       root          216 8月   4 2017 sestatus.conf
drwxr-xr-x.  2 root       root           33 1月  28 13:18 setroubleshoot
drwxr-xr-x.  2 root       root         4096 1月  28 13:30 setuptool.d
drwxr-xr-x.  3 root       root           21 1月  28 13:10 sgml
----------.  1 root       root         1279 1月  30 16:35 shadow
----------.  1 root       root         1253 1月  30 15:28 shadow-
-rw-r--r--.  1 root       root           95 1月  28 13:31 shells
drwxr-xr-x.  3 root       root           78 1月  30 15:23 skel
drwxr-xr-x.  3 root       root           74 1月  28 13:30 smartmontools
-rw-r--r--.  1 root       root          100 1月  26 01:44 sos.conf
drwxr-xr-x.  4 root       root           56 1月  28 13:20 speech-dispatcher
drwxr-xr-x.  2 root       root          225 1月  30 15:31 ssh
drwxr-xr-x.  2 root       root           19 1月  28 13:10 ssl
drwx--x--x.  3 sssd       sssd           20 12月  5 23:35 sssd
-rw-r--r--.  1 root       root          212 1月  25 23:59 statetab
drwxr-xr-x.  2 root       root            6 1月  25 23:59 statetab.d
-rw-r--r--.  1 root       root            0 11月  6 2016 subgid
-rw-r--r--.  1 root       root            0 11月  6 2016 subuid
drwxr-xr-x.  2 root       root            6 8月  24 2017 subversion
-rw-r-----.  1 root       root         1786 9月   6 2017 sudo.conf
-r--r-----.  1 root       root         3964 1月  28 17:06 sudoers
drwxr-x---.  2 root       root            6 9月   7 2017 sudoers.d
-rw-r-----.  1 root       root         3181 9月   6 2017 sudo-ldap.conf
drwxr-xr-x.  6 root       root         4096 1月  30 16:35 sysconfig
-rw-rw-r--.  1 wangshumin wangshumin    473 1月  28 21:20 sysctl.conf
drwxr-xr-x.  2 root       root           28 1月  30 15:27 sysctl.d
drwxr-xr-x.  4 root       root          151 1月  30 15:27 systemd
lrwxrwxrwx.  1 root       root           14 1月  28 13:09 system-release -> centos-release
-rw-r--r--.  1 root       root           23 8月  30 2017 system-release-cpe
drwxr-xr-x.  3 root       root           20 1月  28 13:19 target
-rw-------.  1 tss        tss          7046 8月   4 2017 tcsd.conf
drwxr-xr-x.  2 root       root            6 9月   7 2017 terminfo
drwxr-xr-x.  2 root       root            6 1月  25 23:52 tmpfiles.d
-rw-r--r--.  1 root       root          750 1月  22 21:30 trusted-key.key
drwxr-xr-x.  2 root       root           70 1月  30 15:31 tuned
drwxr-xr-x.  3 root       root           54 1月  30 15:27 udev
drwxr-xr-x.  2 root       root            6 11月 20 2015 udisks2
drwxr-xr-x.  2 root       root           68 1月  30 15:28 unbound
-rw-r--r--.  1 root       root          513 11月  5 2016 updatedb.conf
drwxr-xr-x.  2 root       root           25 1月  28 13:19 UPower
-rw-r--r--.  1 root       root         1018 11月  6 2016 usb_modeswitch.conf
-rw-r--r--.  1 root       root           37 1月  28 13:45 vconsole.conf
-rw-r--r--.  1 root       root         1982 8月   2 2017 vimrc
-rw-r--r--.  1 root       root         1982 8月   2 2017 virc
drwxr-xr-x.  5 root       root          231 1月  28 13:19 vmware-tools
-rw-r--r--.  1 root       root         4479 10月 27 00:50 wgetrc
drwxr-xr-x.  2 root       root           33 1月  30 15:27 wpa_supplicant
-rw-r--r--.  1 root       root            0 6月  10 2014 wvdial.conf
drwxr-xr-x.  7 root       root          114 1月  28 13:31 X11
drwxr-xr-x.  5 root       root           99 1月  28 13:15 xdg
drwxr-xr-x.  2 root       root            6 11月  5 2016 xinetd.d
drwxr-xr-x.  2 root       root           21 1月  28 13:10 xml
drwxr-xr-x.  6 root       root          100 1月  28 13:15 yum
-rw-r--r--.  1 root       root          970 8月   6 2017 yum.conf
drwxr-xr-x.  2 root       root          187 8月   6 2017 yum.repos.d
[wangshumin@CentOSNode3 ~]$ ls -l /etc/ | grep yum
drwxr-xr-x.  6 root       root          100 1月  28 13:15 yum
-rw-r--r--.  1 root       root          970 8月   6 2017 yum.conf
drwxr-xr-x.  2 root       root          187 8月   6 2017 yum.repos.d
[wangshumin@CentOSNode3 ~]$ 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值