符号链接(sysmbolic link)文件 ,软链接(soft link)
快捷方式ln -s rm
字符(charzcter)/块(block)设备文件
[if !supportLists]1.1.1 [endif]以c开头的就是字符设备,猫等串口设备
[if !supportLists]1.1.2 [endif]以b开头的块设备 硬盘、光驱等都属于块设备
[if !supportLists]1.2 [endif]套接口(socket)文件
用于进程之间通信的文件
[if !supportLists]第2章 [endif]基础命令
[if !supportLists]2.1 [endif]which 查命令所在的路径
重点:
PATH 变量作用
命令行命令会从PATH对应的路径中查找命令,PATH对应的路径中没有就会报command not found
[if !supportLists]2.2 [endif]whereis:显示命令、源码、说明文档等路径
-b 只查找二进制命令
[if !supportLists]2.3 [endif]locate:快速定位文件路径
查找文件路径,是从数据库A里查询
更新A数据库用
centos 7 默认没有安装
yum provides locate 查看命令对应的软件包
yum install mlocate -y
[if !supportLists]2.4 [endif]find:查找目录下的文件
查找原理:磁盘遍历,速度慢。
练习:从根下查找ifcfg-eth网卡文件
find/ -name “ifcfg-eth0”
模糊查找 * 表示所有
[if !supportLists]2.4.1 [endif]按文件类型查找type
find / -type f -name "oldboy*"
-type c
File is of type c:
b block (buffered) special
c character (unbuffered) special
d directory
p named pipe (FIFO)
f regular file
l symbolic link; this is never true if the -L option or the -follow option is in effect,
unless the symbolic link is broken. If you want to search for symbolic links when -L is
in effect, use -xtype.
find / -type d -name "oldboy*"
这里的类型和名字是取交集,两条件都满足。默认是交集,相当于有个-a
如果取并集即或者用-o分割查找的项
find / -type d -o -name "oldboy*"
了解:
-a and 并且
-o or 或者
! 取反
[if !supportLists]2.5 [endif]xargs 分组
-n数字,几个内容分成一组 xargs -n a
-d 指定分隔符,如果不指定,默认是空格
xargs -n a”.”
-d指定分隔符,如果不指定,默认是空格
-I -i 把{}当作前面查找的结果
[if !supportLists]2.6 [endif]data 显示日期和时间
-s 修改时间
clock -w 应用到bios界面
data +%F +%Y +%M+%D +%H +%M +%S
年 月 日 时 分 秒
[if !supportLists]2.7 [endif]打包压缩 tar
打包 筐 放文件 压缩体积降低
文件压缩,大小会降低。
tar
打包:
语法:
tar 参数 筐(压缩包) 苹果(被打包的文件)
打包集合参数zcvf:v可以不加
压缩包名字:data.tar.gz #tar表示打包,gz表示gzip格式压缩。
例子:
[root@oldboyedu ~]# mkdir /data
[root@oldboyedu ~]# cd /data
[root@oldboyedu /data]# touch{1..5}.txt
[root@oldboyedu /data]# ls
1.txt 2.txt 3.txt 4.txt 5.txt
[root@oldboyedu /data]# cd ..
[root@oldboyedu /]# tar zcvf/opt/data.tar.gz ./data
./data/
./data/1.txt
./data/2.txt
./data/3.txt
./data/4.txt
./data/5.txt
查看压缩包里的内容:-t
[root@oldboyedu /]# tar tf/opt/data.tar.gz
./data/
./data/1.txt
./data/2.txt
./data/3.txt
./data/4.txt
./data/5.txt
解压:
[root@oldboyedu /opt]# tar zxvfdata.tar.gz
./data/
./data/1.txt
./data/2.txt
./data/3.txt
./data/4.txt
./data/5.txt
[root@oldboyedu /opt]# ls
data data.tar.gz
[root@oldboyedu /opt]# ls data
1.txt 2.txt 3.txt 4.txt 5.txt
[root@oldboyedu /opt]# tar xfdata.tar.gz
[root@oldboyedu /opt]# tar xfdata.tar.gz -C /tmp/
[root@oldboyedu /opt]# ls/tmp/data
1.txt 2.txt 3.txt 4.txt 5.txt