链接到特定的索引节点
我有一个文件已被删除,但我的程序仍然保持打开状态。 我使用 lsof 找到了 inode 号。 如何创建回到该 inode 的硬链接?
任何代码都有帮助,但 Perl 会很方便。
I have a file that was deleted, but is still held open my a program. I found the inode number using lsof. How can I create a hard link back to that inode?
Any code helps, but Perl would be handy.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从 /proc/pid/fd/文件描述符 复制
使用 lsof 查找 pid 和文件描述符。
Copy from /proc/pid/fd/file descriptor
Use lsof to find the pid and the file descriptor.
在 EXT 文件系统上,您可以使用 debugfs 命令重新创建链接,如下所示:
这将创建一个名为 myfile 的“文件”并指向 inode 16。
on EXT filesystem you can use debugfs command to recreate the link like :
Which will create a "file" named myfile and pointing to inode 16.