如何将/ var / log移动到btrfs子卷? (ubuntu 15.04桌面版)

时间:2015-07-25 23:46:00

标签: ubuntu filesystems mount opensuse btrfs

我正在尝试移动/ 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)

此外,如果我在目录中,我得到这个:

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

1 个答案:

答案 0 :(得分:1)

  

我的第一个问题:我错过了什么?有些错误,因为它的行为错误。

目前,spam子卷相对于btrfs根的路径为@/spam,因为spam子卷是在@子卷中创建的。使用btrfs sub list -a /查看此内容。 <{1}}中需要subvol=@/spam才能安装它。

但我认为你实际上想要在btrfs根目录中创建子卷,在这种情况下你需要在某处安装root来创建子卷:

fstab
  

第二个问题:我是否在正确的位置发帖?

对于像这样的问题,我建议Unix/Linux Stack Exchange