I wish to have noatime
set for all my mounts
On container it looks like it’s relatime
though.
[0] # mount | grep ' / '
/dev/vda2 on / type btrfs (rw,relatime,idmapped,compress-force=zstd:3,discard=async,space_cache=v2,user_subvol_rm_allowed,subvolid=262,subvol=/var/lib/incus/storage-pools/default/containers/bree)
My host has noatime set for its own volumes, including the btrfs volume.
[0] # \df | grep -v -e tmpfs -e efivarfs
Filesystem 1K-blocks Used Available Use% Mounted on
dev 997608 0 997608 0% /dev
run 1005372 604 1004768 1% /run
/dev/vda2 48302080 8774060 36301460 20% /
/dev/vda1 523244 22596 500648 5% /boot
/dev/vda2 48302080 8774060 36301460 20% /var/lib/incus/storage-pools/default
[0] # mount | grep noatime
/dev/vda2 on / type btrfs (rw,noatime,compress-force=zstd:3,discard=async,space_cache=v2,user_subvol_rm_allowed,subvolid=5,subvol=/)
/dev/vda1 on /boot type vfat (rw,noatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro)
/dev/vda2 on /var/lib/incus/storage-pools/default type btrfs (rw,noatime,compress-force=zstd:3,discard=async,space_cache=v2,user_subvol_rm_allowed,subvolid=259,subvol=/var/lib/incus/storage-pools/default)
# incus --version
6.3
What am I doing wrong?