update README

This commit is contained in:
Andreas Zweili 2021-12-19 20:10:56 +01:00
parent 9a34894861
commit e17f5263f7
1 changed files with 1 additions and 20 deletions

View File

@ -6,26 +6,7 @@ In addition some of the scripts required for installation will destroy your data
## Base installation
```
parted /dev/sda -- mklabel gpt
parted /dev/sda -- mkpart ESP fat32 1MiB 512MiB
parted /dev/sda -- set 1 esp on
parted /dev/sda -- mkpart primary 512MiB 100%
cryptsetup luksFormat --type luks1 /dev/sda2
cryptsetup open /dev/sda2 cryptlvm
pvcreate /dev/mapper/cryptlvm
vgcreate MainGroup /dev/mapper/cryptlvm
lvcreate -L 8G MainGroup -n swap
lvcreate -l 100%FREE MainGroup -n root
mkfs.ext4 -L nixos /dev/MainGroup/root
mkswap -L swap /dev/MainGroup/swap
mkfs.fat -F 32 -n BOOT /dev/sda1
```
1. `sudo scripts/format-drive.sh`
1. `sudo python3 scripts/format-disk.py`
2. Execute one of the following scripts:
- `sudo scripts/link-asus.sh`
- `sudo scripts/link-vm.sh`