Linux

掛載後的 Linux Ubuntu 文件

  • October 23, 2017
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?

您可以通過使用綁定安裝來查看它,例如

mount --bind /tmp /mnt

然後

cat /mnt/test/file.txt
test

您必須綁定掛載包含原始文件的文件系統。在這種情況下 /tmp。這可能不適用於某些文件系統,例如 zfs。

引用自:https://serverfault.com/questions/879885