Korzystając z systemu plików btrfs montowanego w pętli, z odpowiednio ustawionymi uprawnieniami, użytkownik może swobodnie tworzyć podwoluminy btrfs:
user@machine:~/btrfs/fs/snapshots$ /sbin/btrfs sub create newsubvol
Create subvolume './newsubvol'
Jednak próba usunięcia nowo utworzonego podwoluminu powoduje błąd:
user@machine:~/btrfs/fs/snapshots$ /sbin/btrfs sub del newsubvol
Delete subvolume '/home/user/btrfs/fs/snapshots/newsubvol'
ERROR: cannot delete '/home/user/btrfs/fs/snapshots/newsubvol'
Użytkownik root oczywiście może go usunąć:
root@machine:/home/user/btrfs/fs/snapshots# /sbin/btrfs sub del newsubvol
Delete subvolume '/home/user/btrfs/fs/snapshots/newsubvol'
Ta różnica w zachowaniu między operacjami tworzenia i usuwania wydaje się nieco dziwna. Czy ktoś może rzucić na to trochę światła?
Oto dokładna sekwencja poleceń:
user@machine:~$ dd if=/dev/zero of=btrfs_disk bs=1M count=100
100+0 records in
100+0 records out
104857600 bytes (105 MB) copied, 1.2345 s, 84.9 MB/s
user@machine:~$ mkdir mountpoint
user@machine:~$ /sbin/mkfs.btrfs btrfs_disk
WARNING! - Btrfs Btrfs v0.19 IS EXPERIMENTAL
WARNING! - see http://btrfs.wiki.kernel.org before using
SMALL VOLUME: forcing mixed metadata/data groups
Created a data/metadata chunk of size 8388608
fs created label (null) on btrfs_disk
nodesize 4096 leafsize 4096 sectorsize 4096 size 100.00MB
Btrfs Btrfs v0.19
user@machine:~$ sudo mount btrfs_disk mountpoint/
user@machine:~$ cd mountpoint/
user@machine:~/mountpoint$ /sbin/btrfs sub create test
Create subvolume './test'
user@machine:~/mountpoint$ /sbin/btrfs sub delete test
Delete subvolume '/home/user/mountpoint/test'
ERROR: cannot delete '/home/user/mountpoint/test' - Operation not permitted
Oto uprawnienia:
user@machine:~/mountpoint$ ls -la
total 4
drwxr-xr-x 1 user user 8 Set 4 09:30 .
drwx------ 1 user user 4486 Set 4 09:29 ..
drwx------ 1 user user 0 Set 4 09:38 test
I odpowiedni wiersz na df -T
:
Filesystem Type 1K-blocks Used Available Use% Mounted on
/dev/loop0 btrfs 102400 32 98284 1% /home/user/mountpoint
Distro to Debian Wheezy, 3.2.0-4-686-pae
jądro, v0.19
btrfs-tools. Sytuacja nadal występuje w Ubuntu Saucy, 3.11.0-4-generic
jądrze, v0.20-rc1
narzędziach btrfs.
df -T
i btrfs version
? Kiedy spróbowałem tego samego, otrzymałem następujący błąd „BŁĄD: nie można utworzyć objętości cząstkowej - Odmowa zezwolenia”