Hi all!
$ mount | grep home
/dev/sda2 on /home type btrfs (rw,relatime,seclabel,compress=zstd:1,ssd,space_cache=v2,subvolid=256,subvol=/home)
$ ls -l WF.txt
-rw-r--r--. 1 archer archer 1100 Sep 29 2021 WF.txt
$ lsattr WF.txt
---------------------- WF.txt
$ chattr +u WF.txt
chattr: Operation not supported while setting flags on WF.txt
$ lsattr WF.txt
---------------------- WF.txt
$ chattr +i WF.txt
chattr: Operation not permitted while setting flags on WF.txt
$ lsattr WF.txt
---------------------- WF.txt
$
At first i thought the reason is “compress=zstd:1” mount option.
Then mentioned that I have another drive
mount | grep R1
/dev/sdb on /mnt/R1 type btrfs (rw,relatime,seclabel,space_cache,subvolid=5,subvol=/)'
cd /mnt/R1/DataR/BackUp
$ lsattr Bookmarks
---------------------- Bookmarks
$ chattr +u Bookmarks
chattr: Operation not supported while setting flags on Bookmarks
$ lsattr Bookmarks
---------------------- Bookmarks
The same.
Before at another Linux I used to put attributes on this disc
Proof=
$ lsattr IAF34
---------------C------ IAF34/Logs
---------------C------ IAF34/Snapshots
---------------C------ IAF34/iaF34.vdi
---------------C------ IAF34/IAF34.vbox-prev
---------------C------ IAF34/IAF34.vbox
Why “Operation not supported” now?
Thanx.