This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| tips:archlinux:install [2022/10/03 12:11] – [from archlinux iso] sscipioni | tips:archlinux:install [2022/10/03 12:23] (current) – [from archlinux iso] sscipioni | ||
|---|---|---|---|
| Line 8: | Line 8: | ||
| </ | </ | ||
| + | ===== ext4 ===== | ||
| + | |||
| + | create partition | ||
| + | < | ||
| + | DISK=ata-SSDPR-CX400-256-G2_GY3042305 | ||
| + | sgdisk --clear -g $DISK | ||
| + | |||
| + | sgdisk | ||
| + | parted $DISK set 3 bios_grub on | ||
| + | sgdisk | ||
| + | </ | ||
| + | |||
| + | format | ||
| + | < | ||
| + | mkfs.ext4 -L ROOT $DISK-part1 | ||
| + | </ | ||
| + | |||
| + | mount | ||
| + | < | ||
| + | mount $DISK-part1 /mnt | ||
| + | </ | ||
| + | |||
| + | install arch | ||
| + | < | ||
| + | pacstrap /mnt base linux-lts linux-firmware | ||
| + | genfstab -U /mnt >> / | ||
| + | </ | ||
| + | |||
| + | follow https:// | ||
| ==== ZFS ==== | ==== ZFS ==== | ||