calamares-parch/etc/calamares/modules/mount.conf

53 lines
1.2 KiB
Text
Raw Normal View History

2023-10-05 12:55:53 +03:30
extraMounts:
- device: proc
fs: proc
mountPoint: /proc
- device: sys
fs: sysfs
mountPoint: /sys
- device: /dev
mountPoint: /dev
2024-01-15 22:42:23 +03:30
options: [ bind ]
2023-10-05 12:55:53 +03:30
- device: tmpfs
fs: tmpfs
mountPoint: /run
- device: /run/udev
mountPoint: /run/udev
2024-01-15 22:42:23 +03:30
options: [ bind ]
2023-10-05 12:55:53 +03:30
- device: efivarfs
fs: efivarfs
mountPoint: /sys/firmware/efi/efivars
2024-01-15 22:42:23 +03:30
efi: true
2023-10-05 12:55:53 +03:30
btrfsSubvolumes:
- mountPoint: /
subvolume: /@
- mountPoint: /home
subvolume: /@home
2024-01-15 22:42:23 +03:30
- mountPoint: /root
subvolume: /@root
- mountPoint: /srv
subvolume: /@srv
2023-10-05 12:55:53 +03:30
- mountPoint: /var/cache
subvolume: /@cache
- mountPoint: /var/log
subvolume: /@log
2024-01-15 22:42:23 +03:30
- mountPoint: /var/tmp
subvolume: /@tmp
btrfsSwapSubvol: /@swap
2023-10-05 12:55:53 +03:30
mountOptions:
- filesystem: default
options: [ defaults, noatime ]
- filesystem: efi
options: [ defaults, umask=0077 ]
- filesystem: btrfs
2024-01-15 22:42:23 +03:30
options: [ defaults, noatime, compress=zstd ]
2023-10-05 12:55:53 +03:30
- filesystem: btrfs_swap
options: [ defaults, noatime ]
2024-01-15 22:42:23 +03:30
- filesystem: ext4
options: [ defaults, noatime, commit=60 ]
- filesystem: xfs
options: [ defaults, lazytime, noatime, attr2, inode64, logbsize=256k, noquota ]