Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tips:archlinux:install [2022/09/16 08:51] – [Install system] sscipioni | tips:archlinux:install [2022/10/03 12:23] (current) – [from archlinux iso] sscipioni | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== from archlinux iso ===== | ===== from archlinux iso ===== | ||
- | * [[https:// | + | install on archiso zfs system from https:// |
+ | < | ||
+ | curl -s https:// | ||
+ | </ | ||
+ | |||
+ | ===== ext4 ===== | ||
+ | create partition | ||
< | < | ||
- | systemctl enable dhcpd | + | DISK=ata-SSDPR-CX400-256-G2_GY3042305 |
+ | sgdisk --clear -g $DISK | ||
+ | |||
+ | sgdisk | ||
+ | parted $DISK set 3 bios_grub on | ||
+ | sgdisk | ||
</ | </ | ||
- | install on archiso zfs system from https:// | + | format |
- | < | + | < |
- | curl -s https:// | + | mkfs.ext4 |
</ | </ | ||
+ | mount | ||
+ | < | ||
+ | mount $DISK-part1 /mnt | ||
+ | </ | ||
+ | |||
+ | install arch | ||
+ | < | ||
+ | pacstrap /mnt base linux-lts linux-firmware | ||
+ | genfstab -U /mnt >> / | ||
+ | </ | ||
+ | follow https:// | ||
==== ZFS ==== | ==== ZFS ==== |