disable copy on write on var

This commit is contained in:
Maciej Lebiest 2021-06-21 14:31:38 +02:00 committed by GitHub
parent d1e67c0565
commit 2307d7837c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,8 +90,11 @@ For setting up different locale than pl check official guide
>mkdir /mnt/efi # for EFI partition /dev/sdX1
## disable copy on write on var
>chattr +C /mnt/var
### If using encryption, change /dev/sdX2 to /dev/mapper/MainPart
### IMPORTANT for swap subvolume add nodatacow option to disable CoW
### for swap subvolume add nodatacow option to disable CoW (works only if its separate partition)
### Discard ssd and noatime are for ssd disks only
>mount -o defaults,noatime,nodatacow,discard,ssd,subvol=@swap /dev/sdX2 /mnt/swap