我正在尝试移动 /var/log/。到它自己的子卷。我已经尝试了很多事情,但是 /etc/fstab 条目从来没有像我希望的那样。我在这里使用的示例/spam
是因为我不想在解决这个问题时丢弃日志文件。我的问题在下面用粗体表示。
我不会让你厌烦那些不起作用的东西。但这是我所在的位置:
thor / 158# btrfs subvolume create /spam
Create subvolume '//spam'
thor / 161# ll -d spam
drwxr-xr-x 1 root root 0 Jul 25 16:19 spam/
thor / 163# df -T
Filesystem Type 1K-blocks Used Available Use% Mounted on
udev devtmpfs 1540072 0 1540072 0% /dev
tmpfs tmpfs 310140 5380 304760 2% /run
/dev/sdb1 btrfs 33739776 7791536 24482480 25% /
tmpfs tmpfs 1550684 156 1550528 1% /dev/shm
tmpfs tmpfs 5120 4 5116 1% /run/lock
tmpfs tmpfs 1550684 0 1550684 0% /sys/fs/cgroup
/dev/sdb1 btrfs 33739776 7791536 24482480 25% /home
cgmfs tmpfs 100 0 100 0% /run/cgmanager/fs
tmpfs tmpfs 310140 44 310096 1% /run/user/1000
thor / 164# btrfs subvolume list /
ID 257 gen 289 top level 5 path @
ID 258 gen 286 top level 5 path @home
ID 263 gen 41 top level 257 path var/lib/machines
ID 275 gen 287 top level 257 path spam
thor / 165# grep -v '^#' /etc/fstab
UUID=ee321c37-2ccc-4016-aa0b-9cf9280be11e / btrfs defaults,subvol=@ 0 1
UUID=ee321c37-2ccc-4016-aa0b-9cf9280be11e /home btrfs defaults,subvol=@home 0 2
UUID=aff22fd4-48d6-4c8c-9c2e-260c05028fba none swap sw 0 0
thor / 166#
我的 OpenSUSE 机器(因此有不同的 UUID)从以下fstab
条目中安装了一堆子卷:
UUID=2c2aa4ed-bb4e-4c44-b222-4e75dc0469f2 /spam btrfs subvol=spam 0 0
如果我在我的 Ubuntu 机器上尝试这个,它不会启动。strace
来自单用户模式的节目mount(2)
失败并显示:
mount("/dev/sdb1", "/spam", "btrfs", MS_MGC_VAL, "subvol=spam") = -1 ENOENT (No such file or directory)
此外,如果我 df 目录,我会得到:
thor /spam 174# df -T /spam/.
Filesystem Type 1K-blocks Used Available Use% Mounted on
- - 33739776 7791776 24482368 25% /spam
thor /spam 175#
我的第一个问题:我错过了什么? 出了点问题,因为它行为不端。 第二个问题:我在正确的地方发帖吗? 谢谢!
更新1:
thor /spam 175# uname -a
Linux thor 3.19.0-23-generic #24-Ubuntu SMP Tue Jul 7 18:52:29 UTC 2015 i686 i686 i686 GNU/Linux