Mise à jour de 'arch_install.md'

This commit is contained in:
vincent 2019-09-15 18:09:47 +02:00
parent 75beb76e9e
commit f815e3b7ca

View File

@ -22,6 +22,13 @@ Verify that the [system clock is up to date][8].
$ timedatectl set-ntp true $ timedatectl set-ntp true
(bios mode)
$ parted -s /dev/sda mklabel msdos
$ parted -s /dev/sda mkpart primary 1MiB 513MiB
$ parted -s /dev/sda mkpart primary 1024MiB 100%
$ mkfs.ext2 /dev/sda1
$ mkfs.ext4 /dev/sda2
(UEFI mode) Create partitions for EFI, boot, and root. (UEFI mode) Create partitions for EFI, boot, and root.
@ -92,7 +99,7 @@ Set your mkinitcpio.
Configure GRUB. Configure GRUB.
# BIOS mode # BIOS mode
$ grub-install /dev/sdat $ grub-install /dev/sda
$ grub-mkconfig -o /boot/grub/grub.cfg $ grub-mkconfig -o /boot/grub/grub.cfg