From 233029c31648368efeb64a5323a2211a041a628d Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Tue, 30 Sep 2025 17:06:47 +0200 Subject: [PATCH] Update LVM partition size recommendation in README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 94704a4..61e1fbf 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,8 @@ sudo vgcreate vg0 /dev/mapper/cryptroot # Create Logical Volumes # (Up to max 16GB) sudo lvcreate -L 12G -n swap vg0 # 12GB SWAP -# (For ROOT partition it's best to give at least 1/4 of the disk, but from experience I recommend roughly 100-200GB. System takes about 70GB, but it's worth leaving some extra space) -sudo lvcreate -L 175G -n root vg0 # 175GB ROOT +# (For ROOT partition it's best to give at least 1/4 of the disk. System takes about 45GB, but around 1,5x more is necessary) +sudo lvcreate -L 75GB -n root vg0 # 75GB ROOT sudo lvcreate -l 100%FREE -n home vg0 # rest HOME ```