链接到特定的索引节点

发布于 2024-07-27 18:13:07 字数 110 浏览 4 评论 0原文

我有一个文件已被删除,但我的程序仍然保持打开状态。 我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

So尛奶瓶 2024-08-03 18:13:07

从 /proc/pid/fd/文件描述符 复制

使用 lsof 查找 pid 和文件描述符。

Copy from /proc/pid/fd/file descriptor

Use lsof to find the pid and the file descriptor.

清君侧 2024-08-03 18:13:07

在 EXT 文件系统上,您可以使用 debugfs 命令重新创建链接,如下所示:

debugfs -w /dev/mapper/vg0-root -R 'link <16> myfile'

这将创建一个名为 myfile 的“文件”并指向 inode 16。

on EXT filesystem you can use debugfs command to recreate the link like :

debugfs -w /dev/mapper/vg0-root -R 'link <16> myfile'

Which will create a "file" named myfile and pointing to inode 16.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文