命令行提示符高亮显示
PS1="\[\e[32;1m\][\u@\h \W]\\$ \[\e[0m\]"
系统重要配置文件
配置文件 |
描述 |
版本 |
/etc/hosts |
域名与IP地址映射关系 |
C6/C7 |
/etc/sysconfig/network-scripts/ifcfg-eth0 |
网卡配置文件 |
C6/C7 |
/etc/motd |
用户登录之后的提示信息 |
C6/C7 |
/etc/issue |
用户登录之前的提示信息 |
C6/C7 |
/etc/issue.net |
用户登录之前的提示信息 |
C7 |
/etc/fstab |
系统启动时挂载文件系统 |
C6/C7 |
/etc/hostname |
主机名称 |
C7 |
/etc/sysconfig/network ??? |
主机名称 |
C6 |
/etc/resolv.conf |
DNS配置信息 |
C6/C7 |
/etc/selinux/config |
selinux配置信息 |
C6/C7 |
/etc/skel |
创建用户时拷贝此目录内全部文件到用户家目录 |
C6/C7 |
/etc/profile
|
用户登录时执行的配置文件,step1 |
C6/C7 |
/etc/bashrc |
用户登录时执行的配置文件,step2 |
C6/C7 |
~/.bashrc |
用户登录时执行的配置文件,step3 |
C6/C7 |
~/.bash_profile
|
用户登录时执行的配置文件,step4 |
C6/C7 |
find用法
在/etc目录内查找文件 要求:7天以前,大于100KB
[root@backup ~]# date
Wed Jan 2 19:26:45 CST 2019
[root@backup ~]# find /etc/ -mtime +7 -size +100k | xargs ls -lh
-rw-------. 1 root root 373K Apr 12 2018 /etc/selinux/targeted/active/file_contexts
-rw-------. 1 root root 3.6M Apr 12 2018 /etc/selinux/targeted/active/policy.kern
-rw-r--r--. 1 root root 373K Apr 12 2018 /etc/selinux/targeted/contexts/files/file_contexts
-rw-r--r--. 1 root root 1.3M Apr 12 2018 /etc/selinux/targeted/contexts/files/file_contexts.bin
-rw-r--r--. 1 root root 3.6M Apr 12 2018 /etc/selinux/targeted/policy/policy.31
-rw-r--r--. 1 root root 655K Jun 7 2013 /etc/services
-rw-r--r--. 1 root root 569K Apr 11 2018 /etc/ssh/moduli
grep用法
sed用法
awk用法
网友评论