9、管道与重定向
9.1 重定向
标准输入、标准正确输出、标准错误输出 进程在运行的过程中根据需要会打开多个文件,每打开一个文件会有一个数字标识,这个标识叫文件描述符。 进程使用文件描述符来管理打开的文件(FD----file descriptors)。 文件描述符:每打开一个程序都会有文件描述。
0, 1, and 2, known as standard input, standard output, and standard error
0: 标准输入(键盘) 1: 标准输出 2: 标准错误 3+:进程在执行过程中打开的其他文件 &: 表示正确错误混合输出
9.2 输出重定向
> ------覆盖 >> ------追加 正确输出: 1> 1>> 等价于 > >> 错误输出: 2> 2>>
9.2.1 案例1:输出重定向(覆盖)
[root@localhost ~]# date 1> date.txt #正确输出------覆盖 # 注意:如果 > 前面什么都不加默认为1,即为标准正确输出 [root@localhost ~]# cat date.txt 2024年 04月 25日 星期四 15:12:51 CST
9.2.2 案例2:输出重定向(追加)
[root@localhost ~]# date >> date.txt #正确输出------追加 [root@localhost ~]# cat date.txt 2024年 04月 25日 星期四 15:12:51 CST 2024年 04月 25日 星期四 15:16:21 CS
9.2.3 案例3:错误输出重定向
[root@localhost ~]# ls /home/ /aaaaaa >list.txt ls: 无法访问/aaaaaa: 没有那个文件或目录 [root@localhost ~]# ls /home/ /aaaaaa >list.txt 2>error.txt #重定向到不同的位置 [root@localhost ~]# cat error.txt ls: 无法访问/aaaaaa: 没有那个文件或目录
9.2.4 正确和错误都输入到相同位置
[root@localhost ~]# ls /home/ /zzzzzz &>list.txt #混合输出到相同文件
9.2.5 重定向到空设备 /dev/null
[root@localhost ~]# ls /home/ /zzzzzz >list.txt 2>/dev/null #空设备,将错误的输出丢掉 [root@localhost ~]# ls /home/ /zzzzzz &>/dev/null #空设备,将正确与错误的输出丢掉
echo会将输入的内容送往标准输出(打印) echo 内容 >> 文件名或脚本里面
9.2.6 脚本中使用重定向
a. 实战一(没有使用重定向)
[root@localhost ~]# vim ping1.sh #!/bin/bash ping -c1 www.baidu.com if [ $? -eq 0 ]; then echo "success" else echo "failure" fi [root@localhost ~]# chmod +x ping1.sh [root@localhost ~]# ./ping1.sh #执行文件(执行脚本) PING www.wshifen.com (119.63.197.151) 56(84) bytes of data. 64 bytes from 119.63.197.151 (119.63.197.151): icmp_seq=1 ttl=128 time=112 ms --- www.wshifen.com ping statistics --- 1 packets transmitted, 1 received, 0% packet loss, time 0ms rtt min/avg/max/mdev = 112.838/112.838/112.838/0.000 ms success
b. 实战二(使用重定向)
[root@localhost ~]# vim ping1.sh #!/bin/bash ping -c1 www.baidu.com &> /dev/null if [ $? -eq 0 ]; then echo "success!" >> suc.txt else echo "failure!" >> fai.txt fi [root@localhost ~]# ./ping1.sh [root@localhost ~]# cat suc.txt success!
9.3 输入重定向 <
标准输入: < 等价 0<
a. 例子
默认情况下,cat命令会接受标准输入设备(键盘)的输入,并显示到控制台,但如果用文件代替键盘作为输入设备,那么该命令会以指定的文件作为输入设备,并将文件中的内容读取并显示到控制台。 [root@localhost ~]# cat /etc/passwd root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin ... [root@localhost ~]# cat < /etc/passwd #输入重定向 root:x:0:0:root:/root:/bin/bash bin:x:1:1:bin:/bin:/sbin/nologin ... 虽然执行结果相同,但第一行代表是以键盘作为输入设备,而第二行代码则是以/etc/passwd 文件作为输入设备 注意:将/etc/passwd 作为cat 的输入,读出/etc/passwd 的内容
b. 通过输入重定向创建文件
(cat > file << EOF )是用来创建文件或者在脚本中使用,并向文件中输入信息且输入的任何东西会被写入文件中,并以EOF命令结束。 语法:cat >> file5 <<EOF #可以写到脚本或者文件里面 EOF:开始和结束的标记。 成对使用 结尾的另一个必须定格写。
c. 实战案例一
[root@localhost ~]# cat >file4 <<EOF > 777 > 888 > 999 > EOF [root@localhost ~]# cat file4 777 888 999
d. 实战案例二
利用重定向建立多行的文件,脚本创建多行文件
[root@localhost ~]# vim create_file.sh #!/bin/bash cat > file7.txt <<EOF 7777 8888 9999 0000 EOF [root@localhost ~]# chmod +x create_file.sh [root@localhost ~]# ./create_file.sh [root@localhost ~]# cat file7.txt 7777 8888 9999 0000
9.4 管道
用法:command1 | command2 |command3 |...
9.4.1 实战案例一
[root@localhost ~]# rpm -qa | grep "httpd" #查询所有安装的软件包,过滤包含httpd的包 httpd-2.4.6-99.el7.centos.1.x86_64 httpd-tools-2.4.6-99.el7.centos.1.x86_64 [root@localhost ~]# ps aux | grep "sshd" root 1272 0.0 0.0 112984 384 ? Ss 4月24 0:00 /usr/sbin/sshd -D root 40815 0.0 0.1 161072 1684 ? Ss 14:30 0:03 sshd: root@pts/2 root 60163 0.0 0.2 161072 2596 ? Ss 18:56 0:01 sshd: root@pts/1 root 66885 0.0 0.0 112824 980 pts/1 R+ 20:43 0:00 grep --color=auto sshd
9.4.2 实战案例二
将/etc/passwd 中的用户按UID 大小排序
[root@localhost ~]# sort -t":" -k3 -n /etc/passwd #以 ":" 分隔,将第三列按数值升序 [root@localhost ~]# sort -t":" -k3 -n -r /etc/passwd #以 ":" 分隔,将第三列按数值降序 [root@localhost ~]# sort -t":" -k3 -n /etc/passwd | head #以 ":" 分隔,将第三列按数值升序看前十行 [root@localhost ~]# sort -t":" -k3 -n /etc/passwd | tail #以 ":" 分隔,将第三列按数值升序看后十行 参数: sort:排序,默认升序 -t:指定分隔符(sort指令的默认分隔符是空格) -k:指定列 -n:按数值 -r:降序 head:默认输出前十行 tail:默认输出后十行
9.4.3 实战案例三
[root@localhost ~]# awk -F":" '{print $3}' /etc/passwd #打印文件的第3列 [root@localhost ~]# awk -F":" '{print $1,$3}' /etc/passwd #打印文件的第1列和第3列 [root@localhost ~]# awk -F":" '{print $1,$3}' /etc/passwd | sort -k2 -n #打印文件的第1列和第3列,进行排序 [root@localhost ~]# awk -F":" 'NR==5{print $1,$3}' /etc/passwd #打印文件第5行的,第1列和第3列
[root@localhost ~]# netstat -tnlp | awk 'NR==3 {print $4}' 0.0.0.0:111 [root@localhost ~]# netstat -tnlp | awk 'NR==3 {print $4}' | awk -F":" '{print $2}' 111
9.5 参数传递:xargs
对:ls cp rm 管道不能执行。所以通过xargs。
语法: cat a.txt | xargs -i cp {} /目录 {}:前面传过来的内容 -i :为了让大括号生效 目录时 -r 解释:前面传过来的东西交给大括号 cat file.txt |xargs ls -l 前面是目录或者目录的路径。 ls - l 后面可以不加大括号,直接执行。
9.5.1 实战案例一
[[email protected] ~]# touch /home/file{1..5} [root@localhost ~]# vim files.txt /home/file1 /home/file2 /home/file3 /home/file4 /home/file5 [root@localhost ~]# cat files.txt | ls -l #不加xargs传参,看输出结果 [root@localhost ~]# cat files.txt | rm -rvf #不加xargs传参,看输出结果
[root@localhost ~]# cat files.txt |xargs rm -rvf 已删除"/home/file1" 已删除"/home/file2" 已删除"/home/file3" 已删除"/home/file4" 已删除"/home/file5"
9.5.2 实战案例二
[root@localhost ~]# touch /home/file{1..5} [root@localhost ~]# cat files.txt | xargs -i cp -rvf {} /tmp/ "/home/file1" -> "/tmp/file1" "/home/file2" -> "/tmp/file2" "/home/file3" -> "/tmp/file3" "/home/file4" -> "/tmp/file4" "/home/file5" -> "/tmp/file5"
9.6 其他常用小命令
[root@localhost ~]# dd if=/dev/zero of=/opt/a.txt bs=1M count=1024 dd #生成文件 if #从哪个设备取空间 input file of #输出到哪个目录以及文件 output file bs #block size 块大小 count #块的数量
[root@localhost ~]# du -h /home/ #查看目录及目录中的文件大小 [root@localhost ~]# du -sh /home/ #查看目录的总大小 [root@localhost ~]# ls /home/ | wc -l #查看目录中有多少个文件
9.7 扩展-----阅读
a. 什么是CC攻击?
攻击者借助代理服务器生成指向受害主机的合法请求,实现DDOS和伪装就叫:CC(ChallengeCollapsar)。 CC主要是用来攻击页面的。大家都有这样的经历,就是在访问论坛时,如果这个论坛比较大,访问的人比较多,打开页面的速度会比较慢, 访问的人越多,论坛的页面越多,数据库压力就越大,被访问的频率也越高,占用的系统资源也就相当可观。
b. 如何防御CC攻击
1.开启防火墙,过滤掉访问次数多的IP地址 2.拒绝代理服务器访问你服务器 怎么拒绝代理服务器访问呢? 代理服务器有固定的IP地址,将这些IP地址都加到防火墙下,全部drop掉
c. CC攻击危害是什么?
大量的流量不断冲击你的服务器,会让你的服务器负载及压力越来越大,直到服务器崩溃宕机
d. 什么是DOS攻击
DoS是Denial of Service的简称,即拒绝服务,造成DoS的攻击行为被称为DoS攻击,其目的是使计算机或网络无法 提供正常的服务。最常见的DoS攻击有计算机网络带宽攻击和连通性攻击。
10、文件查找与打包压缩
grep:文件内容过滤
[root@localhost /]# grep 'root' /etc/passwd #从/etc/passwd文件中过滤root 字段 root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin
查找命令
[root@localhost /]# grep 'root' /etc/passwd root:x:0:0:root:/root:/bin/bash operator:x:11:0:operator:/root:/sbin/nologin [root@localhost /]# which ls alias ls='ls --color=auto' /usr/bin/ls [root@localhost /]# which cd /usr/bin/cd [root@localhost /]# which rm alias rm='rm -i' /usr/bin/rm
查询命令和配置文件的位置
[root@localhost /]# whereis rpm rpm: /usr/bin/rpm /usr/lib/rpm /etc/rpm /usr/share/man/man8/rpm.8.gz [root@localhost /]# whereis passwd passwd: /usr/bin/passwd /etc/passwd /usr/share/man/man1/passwd.1.gz /usr/share/man/man5/passwd.5.gz
10.1 find详解:文件查找,针对文件名
语法: #find 路径 条件 跟条件相关的操作符 [-exec 动作] 路径: 1.默认不写路径时查找的是当前路径 2.加路径 条件: 1.指定的名称 -name 2.文件类型 -type 3.权限 4.时间
10.1.1 按文件名查找
从根开始找文件 [root@localhost /]# find / -name "a.txt" #从根开始找文件 find: ‘/run/user/1000/gvfs’: 权限不够 /mnt/a.txt /test/a.txt /a.txt /test2/test/a.txt [root@localhost ~]# find /etc/ -name "ifcfg-ens33" #以名字的方式查找 [root@localhost ~]# find /etc/ -iname "ifcfg-ens33" #-i忽略大小写
*通配符
[root@localhost ~]# find /etc/ -iname "*.txt" 参数: *:表示所有字符
10.1.2 按文件大小-----size
[root@localhost ~]# find /etc/ -size +5M #大于5M [root@localhost ~]# find /etc/ -size 5M #等于5M [root@localhost ~]# find /etc/ -size -5M #小于5M [root@localhost ~]# find / -size +3M -a -size -5M #查找“/”下大于3M 且小于5M 的文件 参数: -a:add [root@localhost ~]# find / -size -1M -o -size +30M #查找“/”下面小于1M 或者大于30M 的文件 参数: -o:or [root@localhost ~]# find / -size -3M -a -name "*.txt" #查找下面小于3M 而且名字是.txt 的文件
10.1.3 按时间查找
按时间找(atime,mtime,ctime) -atime = access:访问时间 -mtime = modify:改变时间 内容修改时间会改变 -ctime = change:修改时间 属性修改时间会改变 -amin #分钟 -mmin -cmin
[root@localhost ~]# find /opt -mtime +5 #修改时间5天之前 [root@localhost ~]# find /opt -atime +1 #访问时间1天之前 [root@localhost ~]# find . -mtime -2 #修改时间2天之内 [root@localhost ~]# find . -amin +1 #访问时间在1分钟之前 [root@localhost ~]# find /opt -amin -4 #访问时间在4分钟之内 [root@localhost ~]# find /opt -mmin -2 #修改时间在2分钟之内
10.1.4 按文件类型
[root@localhost ~]# find /test -type f #f 普通文件 [root@localhost ~]# find / -type f -size -1M -o -name "*.txt" [root@localhost ~]# find /dev -type d #d 目录 [root@localhost ~]# find /etc/ -type d -name "*.conf.d" [root@localhost ~]# find /etc/ -type l #l 链接 [root@localhost ~]# find /dev/ -type b #b 块设备 [root@localhost ~]# find /dev/ -type b -name "sd*"
10.1.5 按文件权限
[root@localhost ~]# find . -perm 644 #. 是当前目录,精确查找644 [root@localhost ~]# find /usr/bin/ -perm -4000 #包含set uid [root@localhost ~]# find /usr/bin/ -perm -2000 #包含set gid [root@localhost ~]# find /usr/bin/ -perm -1000 #包含sticky
10.1.6 找到后处理的动作ACTIONS
-name "ifcfg*" | xargs -name "ifcfg*" -print #打印
[root@localhost ~]# find /etc/ -name "ifcfg*" -exec cp -rf {} /tmp/ \; #exec命令对之前查找出来的文件做进一步操作-----查找带ifcfg 开头的文件复制到tmp下 [root@localhost ~]# touch /home/test{1..20}.txt [root@localhost ~]# find /home/ -name test* -exec rm -rf {} \; #{}为前面查找到的内容, \; 格式
a. find使用xargs
[root@localhost ~]# touch /home/test{1..20}.txt [root@localhost ~]# # find /home/ -name "test*" | xargs -i cp {} /tmp/ #找到之后删除处理xargs 参数传递
b. -exec和xargs的区别
-exec: 参数是一个一个传递的,传递一个参数执行一次命令。 xargs: 将前一个命令的标准输出传递给下一个命令,作为它的参数转换成下一个命令的参数列表。 ========================================================= 1、exec 每处理一个文件或者目录,它都需要启动一次命令,效率不好; 2、exec 格式麻烦,必须用 {} 做文件的代位符,必须用 \来转义; 作为命令的结束符,书写不便。 3、xargs 不能操作文件名有空格的文件; 综上,如果要使用的命令支持一次处理多个文件,并且也知道这些文件里没有带空格的文件, 那么使用 xargs比较方便; 否则,就要用 exec了。
案例比较
[root@localhost ~]# touch /tmp/a\ .txt #\ 转义字符 [root@localhost ~]# ls /tmp/ a .txt a.txt [root@localhost ~]# find /tmp/ -name "a\ .txt" |xargs rm -rf [root@localhost ~]# ls /tmp/ a .txt a.txt [root@localhost ~]# find /tmp/ -name "a\ .txt" -exec rm -rf {} \; [root@localhost ~]# ls /tmp/ a.txt
c. 案例:分别找出test5 和除了test5 的文件
[root@localhost ~]# find /home/ -name *test5* [root@localhost ~]# find /home/ ! -name "test5*" # !--取反
10.2 打包压缩
Windows 打包压缩工具:
结尾:.rar .zip 打包工具:winrar zip 7zip 好压
Linux 打包压缩工具:
结尾:.tar.gz .tar.bz2 .zip 工具:gzip和tar(打包) bzip2(只压缩)
a. 打包
语法: #tar cvf xxxx.tar filename 被打包的文件 ... c :create 创建 v :verbose 详细信息 f :file 文件 z : zip 压缩
b. 解包
#tar xvf filename.tar -C /root/ x: extract 解压缩 解包 -C: 指定解包路径
c. 案例
[root@localhost ~]# tar cvzf kkk.tar.gz /test #打包目录test,将包命名为kkk.tar.gz [root@localhost ~]# tar xvf kkk.tar.gz -C /test2 #将kkk.tar.gz包解压到指定目录/test2下 [root@localhost ~]# ll -h /test2/test/ 总用量 129M -rw-r--r--. 1 root root 4 4月 24 10:17 file1 -rw-r--r--. 1 root root 0 4月 24 10:15 file2 -rw-r--r--. 1 root root 128M 4月 26 14:09 kali.txt 注意:tar命令,打包压缩一般都需要切换到和目录同一级,然后再用相对路径进行打包压缩;如果直接写绝对路径,解压出来的路径也会是绝对路径
tar打包压缩应该是以下正确操作:
[root@localhost test2]# tar cvzf test.tar.gz test/ #打包目录 [root@localhost test2]# tar vxf test.tar.gz -C /recive/ #将test包解压到指定目录recive/下 [root@localhost test2]# ll -h /recive/test 总用量 129M -rw-r--r--. 1 root root 4 4月 24 10:17 file1 -rw-r--r--. 1 root root 0 4月 24 10:15 file2 -rw-r--r--. 1 root root 128M 4月 26 14:09 kali.txt
c. 压缩
gzip bzip2 语法, 压缩: #gzip 源文件 #格式 file.gz结尾 #bzip2 源文件 #格式 file.bz2结尾
注:bzip2需要安装
[root@localhost ~]# yum install -y bzip2 #打包bzip2需要安装
d. 解压缩
语法: #gunzip 压缩文件 #bunzip2 压缩文件 #gzip -d 压缩文件 #bzip2 -d 压缩文件 -d---dicompress 解压缩
e. 案例gzip
[root@localhost ~]# dd if=/dev/zero of=file count=1024 bs=1M [root@localhost ~]# gzip file #压缩,压缩成功之后,源文件不存在 [root@localhost ~]# gzip -d file.gz #解压缩 [root@localhost ~]# gunzip file1.gz #解压缩包 [root@localhost ~]# gzip -c file > /usr/local/file.gz #压缩到指定位置(注意以.gz结尾),源文件存在 [root@localhost ~]# gunzip -c /usr/local/file1.gz > /opt/file1 #解压到指定位置(解压出的名字可以自定义),源压缩文件依然存在 -c, --stdout
f. 案例bzip2
[root@localhost dir1]# dd if=/dev/zero of=a.txt count=1024 bs=1M [root@localhost dir1]# bzip2 a.txt #压缩,压缩成功之后,源文件不存在 [root@localhost dir1]# ll -h total 4.0K -rw-r--r-- 1 root root 785 Apr 25 15:51 a.txt.bz2 [root@localhost dir1]# bunzip2 a.txt.bz2 #解压缩 [root@localhost dir1]# bzip2 -d a.txt.bz2 #解压缩 #压缩到指定位置 [root@localhost dir1]# bzip2 -c a.txt > /mnt/a.txt.bz2 #压缩到指定位置(注意以.bz2结尾),源文件存在 [root@localhost dir1]# ll -h total 1.0G -rw-r--r-- 1 root root 1.0G Apr 25 15:51 a.txt [root@localhost dir1]# ll -h /mnt/ total 20K -rw-r--r-- 1 root root 785 Apr 26 11:06 a.txt.bz2 #解压到指定位置 [root@localhost dir1]# bunzip2 -c /mnt/a.txt.bz2 > /home/a.txt #解压到指定位置(解压出的名字可以自定义),源压缩文件依然存在 [root@localhost dir1]# ll -h /mnt/a.txt.bz2 -rw-r--r-- 1 root root 785 Apr 26 11:06 /mnt/a.txt.bz2 [root@localhost dir1]# ll -h /home/a.txt -rw-r--r--. 1 root root 1.0G Apr 26 11:08 /home/a.txt
g. 打包压缩一起
语法: # tar cvzf file.tar.gz 源文件 #打包压缩成.tar.gz,要求有tar工具和gzip工具 # tar cvjf file.tar.bz2 源文件 #打包压缩成.tar.bz2,要求有tar工具和bzip2工具 z:表示gz压缩 j:表示bz2压缩
h. 解压解包一起
语法: #tar xvzf 压缩文件 [-C 解压路径] #tar xvjf 压缩文件 [-C 解压路径]
[root@localhost dir777]# tar cvzf dir7.tar.gz dir7/ #打包并压缩 [root@localhost dir777]# tar cvjf dir7.tar.bz2 dir7/ #打包并压缩
[root@localhost dir777]# rm -rf /test7/* [root@localhost dir777]# tar xvzf dir7.tar.gz -C /test7/ #解压到指定位置 [root@localhost dir777]# ll -h 总用量 1.0M drwxr-xr-x. 2 root root 21 4月 26 20:05 dir7 -rw-r--r--. 1 root root 903 4月 26 20:08 dir7.tar.bz2 -rw-r--r--. 1 root root 1018K 4月 26 20:07 dir7.tar.gz #解压后源文件存在 [root@localhost dir777]# ll -h /test7/dir7/ 总用量 1.0G -rw-r--r--. 1 root root 1.0G 4月 26 20:05 777.txt [root@localhost dir777]# rm -rf /test7/* [root@localhost dir777]# tar -xvjf dir7.tar.bz2 -C /test7/
总结:gzip和bzip2,不能单独压缩目录,需要和tar工具结合使用,才能压缩目录
i. 打包到指定路径-----文件头带时间
[root@localhost dir777]# tar cvzf tmp/`date +%F-%T`-dir7.tar.gz dir7/ #将打包的文件放到tmp 目录下,并以当前时间开头命名
j. 扩展---按时间创建目录或者文件
# mkdir `date +%F`-upload # touch file-`date +%F`.txt
10.3 链接文件
软链接 或 符号链接 硬链接
10.3.1 硬链接
一般情况下,文件名和inode号码是"一一对应"关系,每个inode号码对应一个文件名。但是,Unix/Linux系统允许,多个文件名指向同一个inode号码。 这意味着,可以用不同的文件名访问同样的内容;对文件内容进行修改,会影响到所有文件; 但是,删除一个文件名,不影响另一个文件名的访问。这种情况就被称为"硬链接"(hard link)。
[root@localhost ~]# echo 777 > /file7 [root@localhost ~]# ll -i /file7 #-i:显示inode编号 78493 -rw-r--r--. 1 root root 4 4月 29 10:48 /file7 [root@localhost ~]# ll -i /file7 /file7-h1 #查看inode号 78493 -rw-r--r--. 2 root root 4 4月 29 10:48 /file7 78493 -rw-r--r--. 2 root root 4 4月 29 10:48 /file7-h1 [root@localhost ~]# rm -rf /file7 #删除源文件 [root@localhost ~]# ll -i /file7-h1 #查看链接文件 78493 -rw-r--r--. 1 root root 4 4月 29 10:48 /file7-h1 查看: [root@localhost ~]# cat /file7-h1 777
运行上面这条命令以后,源文件与目标文件的inode号码相同,都指向同一个inode。inode信息中有一项叫做"链接数",记录指向该inode的文件名总数,这时就会增加1。 反过来,删除一个文件名,就会使得inode节点中的"链接数"减1。当这个值减到0,表明没有文件名指向这个inode,系统就会回收这个inode号码,以及其所对应block区域。
10.3.2 软链接
除了硬链接以外,还有一种特殊情况 文件A和文件B的inode号码虽然不一样,但是文件A的内容是文件B的路径。读取文件A时,系统会自动将访问者导向文件B。因此,无论打开哪一个文件,最终读取的都是文件B。这时,文件A就称为文件B的"软链接"(soft link)或者"符号链接(symbolic link)。 这意味着,文件A依赖于文件B而存在,如果删除了文件B,打开文件A就会报错:"No such file or directory"。这是软链接与硬链接最大的不同:文件A指向文件B的文件名,而不是文件B的inode号码,文件B的inode"链接数"不会因此发生变化。
ln -s 命令可以创建软链接
语法:ln -s 源文件 链接文件
[root@localhost ~]# echo 777 > /file7 [root@localhost ~]# ll -i /file7 78527 -rw-r--r--. 1 root root 4 4月 29 19:04 /file7 [root@localhost ~]# ln -s /file7 /file77 #将文件file7 软链接到file77 [root@localhost ~]# ll /file77 lrwxrwxrwx. 1 root root 6 4月 29 19:04 /file77 -> /file7 [root@localhost ~]# ll -i /file77 /file7 #查看inode号 78527 -rw-r--r--. 1 root root 4 4月 29 19:04 /file7 78610 lrwxrwxrwx. 1 root root 6 4月 29 19:04 /file77 -> /file7 [root@localhost ~]# cat /file7 777 [root@localhost ~]# cat /file77 777 [root@localhost ~]# rm -rf /file77 #取消软链接 [root@localhost ~]# ln -s /file7 /file77 [root@localhost ~]# rm -rf /file7 [root@localhost ~]# ll /file77 lrwxrwxrwx. 1 root root 6 4月 29 19:08 /file77 -> /file7 #已失效 #给目录设置软链接必须是绝对路劲 [root@localhost ~]# ln -s /root/test/ /usr/test2/ [root@localhost ~]# ll /usr/test2 总用量 0 lrwxrwxrwx. 1 root root 11 4月 29 19:11 test -> /root/test/ [root@localhost ~]# rm -rf /usr/test2 #取消链接,注意:删除目录链接时目录后面加“/”是删除目录,不加是删除链接
把一些重要文件做多个链接
注:硬链接 1. 不能跨文件系统 2. 不能跨区 3. 不支持目录做硬链接
[root@localhost ~]# ln /root/test/ /mnt/bbb ln: "/root/test/": 不允许将硬链接指向目录
面试:软链接和硬链接的区别:
- 软链接可以跨文件系统,硬链接不可以; - 软链接可以对目录进行连接,硬链接不可以; - 删除源文件之后,软链接失效,硬链接无影响; - 两种链接都可以通过命令 ln 来创建; - ln 默认创建的是硬链接; - 使用 -s 参数可以创建软链接。
10.4 破解密码------扩展
[root@test1 ~]# cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core)
修复模式: 特权模式:不需要root密码,直接以root账户身份登陆。 破解密码时特权模式。
1.重起系统,进入grub菜单 2.选择要使用的内核 3.按e 4.找到linux16那一行,把光标移动到最后,添加 init=/bin/sh 5.ctrl+x #保存退出 6.进入系统后,以rw方式重新挂载/分区 #mount -o remount,rw / 7.永久关闭selinux #vim /etc/sysconfig/selinux 8.修改密码 9. # touch /.autorelabcl #重新识别新的root密码 10.# exec /sbin/init #重启机器