1

I want to disable BTRFS copy-on-write updates for a subvolume using the newer method btrfs property instead of the old method chattr.

I found the man page here: Manpage/btrfs-property - btrfs Wiki

This quote leads me to believe it has the functionality I desire:

btrfs property provides an unified and user-friendly method to tune different btrfs properties instead of using the traditional method like chattr(1) or lsattr(1)

However, I need an example that will replicate this command:

chattr +C /path/to/my/subvolume/.cache

where .cache is a BTRFS subvolme.

MountainX
  • 17,168
  • 59
  • 155
  • 264

1 Answers1

1

In October 2020, it seems that only ro (read-only), label, and compression are the only properties available via btrfs property ... at this time.

rickhg12hs
  • 1,193
  • 7
  • 19