Linux Ubuntu 安装背后的文件

Linux Ubuntu 安装背后的文件
root@host:~# mkdir -p /tmp/test
root@host:~# echo "test" >> /tmp/test/file.txt
root@host:~# mount /dev/xy /tmp/test/

我现在如何在不卸载 /dev/xy 的情况下访问 file.txt?

答案1

您可能能够通过使用绑定安装来看到它,例如

mount --bind /tmp /mnt

然后

cat /mnt/test/file.txt
test

您必须绑定安装包含原始文件的文件系统。在本例中为 /tmp。这可能不适用于某些文件系统,例如 zfs。

相关内容