Played around with KDE NEON 20.04 testing in VM.
I noticed some new options the installer throws in into fstab:
So here we go:
space_cache: that's new I know btrfs check always gave a v1 cache error. Is this to stop it?
autodefrag: I thought Linux didn't need defrag, especially on a rotational drive
discard: I though that was a no-no, and fstrim was the standard way of TRiM
compress=lzo: so by default compression is now enabled? WOn't that slow down writes?
I noticed some new options the installer throws in into fstab:
Code:
[FONT=monospace]# <file system> <mount point> <type> <options> <dump> <pass> UUID=E161-4D09 /boot/efi vfat defaults,noatime 0 2 UUID=17131a05-d5fa-4a55-b608-2d9417412497 / btrfs subvol=@,defaults,noatime,space_cache,autodefrag,discard,compress=lzo 0 1 UUID=17131a05-d5fa-4a55-b608-2d9417412497 /home btrfs subvol=@home,defaults,noatime,space_cache,autodefrag,discard,compress=lzo 0 2 UUID=a0c7e546-fd09-4e83-afe7-d4649b0a69cd swap swap defaults,noatime,discard 0 2 tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0 [/FONT]
space_cache: that's new I know btrfs check always gave a v1 cache error. Is this to stop it?
autodefrag: I thought Linux didn't need defrag, especially on a rotational drive
discard: I though that was a no-no, and fstrim was the standard way of TRiM
compress=lzo: so by default compression is now enabled? WOn't that slow down writes?
Comment