(Based on Beginners' guide)
Host :
- Debian Jessie
Guest :
- ArchLinux 2016.01.01
- Kernel 4.3.3
- Partition table type : MBR
-
# ls /sys/firmware/efi/efivars
-
# loadkeys fr-pc
-
# timedatectl set-ntp true
-
# lsblk
-
# parted /dev/vda (parted) mklabel msdos
-
Create separate /boot (100MiB), / (2.5GiB), swap (1GiB), and /home (all remaining space) partitions :
(parted) mkpart primary ext4 1MiB 100MiB (parted) set 1 boot on (parted) mkpart primary ext4 100MiB 2.5GiB (parted) mkpart primary linux-swap 2.5GiB 3.5GiB (parted) mkpart primary ext4 3.5GiB 100% (parted) quit
-
# lsblk /dev/vda
-
# mkfs.ext4 /dev/vda1 # mkfs.ext4 /dev/vda2 # mkfs.ext4 /dev/vda4
-
# mkswap /dev/vda3 # swapon /dev/vda3
-
# mount /dev/vda2 /mnt
-
Remaining partitions (except swap) may be mounted in any order, after creating the respective mount points.
# mkdir -p /mnt/boot # mount /dev/vda1 /mnt/boot # mkdir -p /mnt/home # mount /dev/vda4 /mnt/home
# pacstrap -i /mnt base base-devel
Generate an fstab file. The -U option indicates UUIDs: see Persistent block device naming. Labels can be used instead through the -L option.
# genfstab -U /mnt > /mnt/etc/fstab
Check the resulting file in /mnt/etc/fstab
afterwards, and edit it in case of errors.
# arch-chroot /mnt /bin/bash
Edit /etc/locale.gen
and uncomment en_US.UTF-8 UTF-8, as well as other needed localisations. Save the file, and generate the new locales:
# locale-gen
Create /etc/locale.conf
, where LANG
refers to the first column of an uncommented entry in /etc/locale.gen
:
LANG=en_US.UTF-8
If you set the keyboard layout, make the changes persistent in /etc/vconsole.conf
. Assign the KEYMAP
and FONT
variables accordingly:
KEYMAP=fr-latin9
FONT=lat9w-16
# tzselect
# ln -s /usr/share/zoneinfo/Europe/Paris /etc/localtime
# hwclock --systohc --utc
# pacman -S intel-ucode
# pacman -S grub os-prober
# grub-install --recheck /dev/vda
# grub-mkconfig -o /boot/grub/grub.cfg
Note: When reinstalling GRUB, you may receive warnings like /run/lvm/lvmetad.socket: connect failed: No such file or directory or WARNING: failed to connect to lvmetad: No such file or directory. Falling back to internal scanning. This is because /run is not available inside the chroot. These warnings will not prevent the system from booting, provided that everything has been done correctly, so you may continue with the installation.
myhostname
# systemctl enable [email protected]
# systemctl start systemd-networkd.service
# systemctl enable systemd-networkd.service
# passwd
Partitions will be unmounted automatically by systemd on shutdown. You may however unmount manually as a safety measure:
# umount -R /mnt
# reboot