博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux 下利用 Lsof 恢复误删文件
阅读量:6554 次
发布时间:2019-06-24

本文共 1110 字,大约阅读时间需要 3 分钟。

  hot3.png

 

  原理:在Linux系统的/proc 分区下保存着进程的目录和名字,包含fd(文件描述符)和其下的子目录(进程打开文件的链接),那么如果删除了一个文件,还存在一个 inode的引用:/proc/进程号/fd/文件描述符。我们只要知道当前打开文件的进程pid和文件描述符fd就能利用lsof工具列出进程打开的文件。

 

一、将 ls 的手册过滤掉主要控制符后重定向到文件ls.txt 中,并用more查看,CTRL + Z 暂停查看操作

 
1: [root@localhost script]# man ls |col -b > ls.txt
2: [root@localhost script]# more ls.txt
3: LS(1)                            User Commands                           LS(1)
4:
 
1: [1]+  Stopped                 more ls.txt
2: [root@localhost script]#
3: [root@localhost script]# jobs
4: [1]+  Stopped                 more ls.txt
5:

二、假设误删文件 ls.txt

 
1: [root@localhost script]# rm ls.txt
2: rm:是否删除 一般文件 “ls.txt”? y
 

三、利用lsof找到进程6511、并拷贝恢复,只能在这个文件被使用或调用的情况下有效

 

3: [root@localhost script]# lsof |grep ls.txt

 

4: more      6511      root    3r      REG      253,0     7300    1083699 /opt/script/ls.txt (deleted)
5:
 
1: [root@localhost script]# ls -l /proc/6511/fd/
2: 0  1  2  3
3: [root@localhost script]# ls -l /proc/6511/fd/3
4: lr-x------ 1 root root 64 10-30 21:21 /proc/6511/fd/3 -> /opt/script/ls.txt (deleted)
5:
 
1: cp /proc/6511/fd/3 ls.txt.saved
2:

转载于:https://my.oschina.net/chenxu/blog/86157

你可能感兴趣的文章
gulp 插件之 gulp-uglify
查看>>
Android Handler消息传递机制
查看>>
Linux用户进程内存空间分析
查看>>
Lync Server 2010迁移至Lync Server 2013故障排错 Part 2: Lync Server 迁移后部分用户无法移池问题...
查看>>
cdh4.6.0升级测试2-distribute cache bug fix
查看>>
Boss OpenCart 2.X 商城自适应主题模板 ABC-0008
查看>>
18.1 集群介绍;18.2 keepalived介绍;18.3-18.5用keepalived配置
查看>>
我的友情链接
查看>>
常用JS图片滚动(无缝、平滑、上下左右滚动)代码大全
查看>>
内容丰富的第三方rpm库
查看>>
胡说编程
查看>>
软件质量之企业成熟度
查看>>
yarn磁盘监控参数
查看>>
jquery javascript获得网页的高度和宽度
查看>>
mysql设置自增id清零 auto_increment
查看>>
linux(Centos7)服务器硬件改动,进入Emergency模式
查看>>
Easyui Treegrid 分页解决方案
查看>>
hihoCoder1038
查看>>
hdu3976(Electric resistance) 高斯消元
查看>>
BZOJ3874:[AHOI2014&JSOI2014]宅男计划(爬山法)
查看>>