1、系统目录
ls是list的缩写,ls ls / 只要是列出系统的目录与文件命令与其功能;
[[email protected] ~]# ls /
bin dev home lib64 mnt proc run srv tmp var boot etc lib media opt root sbin sys usr 根下面包含这些;
[[email protected] ~]# ls /root/.ssh/authorized_keys //在root根目录
[[email protected] ~]# ls /home/ //在普通用户
[[email protected] ~]# yun install -??? //运行此命令是用来安装缺少命令
2.ls命令
[[email protected] ~]# ls -i anaconda-ks.cfg //多少用户使用anaconda
33574979 anaconda-ks.cfg
[[email protected] ~]# ls -la
总用量 28
dr-xr-x---. 3 root root 147 7月 15 22:03 . //.表示当前目录
dr-xr-xr-x. 17 root root 224 7月 15 23:34 .. //..上一个目录
[[email protected] ~]# ls -l / //不加 -d 的话列出所有目录
总用量 20
lrwxrwxrwx. 1 root root 7 7月 16 04:49 bin -> usr/bin
dr-xr-xr-x. 4 root root 4096 7月 16 04:57 boot
.....................
.....................
[[email protected] ~]# ls -dl / //加上 -d 只列出目录本身
dr-xr-xr-x. 17 root root 224 7月 15 23:34
-l 详细信息 -i -a 全部 -t时间 -h -d 目录 c b s l软连接
3.文件类型
ls -l /dev/
lrwxrwxrwx. 1 root root 15 7月 17 19:31 stderr -> /proc/self/fd/2 //蓝色标注软连接
lrwxrwxrwx. 1 root root 15 7月 17 19:31 stdin -> /proc/self/fd/0
lrwxrwxrwx. 1 root root 15 7月 17 19:31 stdout -> /proc/self/fd/1
crw-rw-rw-. 1 root tty 5, 0 7月 17 19:31 tty
crw--w----. 1 root tty 4, 0 7月 17 19:31 tty0 //黄色标注的是字符串
[[email protected] ~]# ls -l /dev/log
srw-rw-rw-. 1 root root 0 7月 17 19:31 /dev/log //通信服务 tcp/ip
熟悉这些命令所表达的意思以及所使用的意义