I want to make a guideline for installing ♥ Arch Linux. ♥
Boot Arch linux from usb-stick how to create one you will find out,
I’m shure, but at least: dd bs=1M if=Downloads/archlinux-2014.12.01-dual.iso of=/dev/sdb
erase & create partition table, connect to internet
Easy to use is the commandline patition tool cfdisk.
# fdisk -l
Device Boot Start End Sectors Size Id Type
/dev/sda1 * 2048 393215 391168 191M 83 Linux
/dev/sda2 393216 117210239 116817024 55,7G 83 Linux
If you have a german keyboard type: # loadkeys de-latin1-nodeadkeys.map.gz
Establish WiFi-connection if you don’t have wired access to theInternet: # wifi-menu
or # ifconfig
and dhcpcd your ethdev
check # ping ccc.de
nice!
encrypt everything except boot
XTS splitts the encryption, to AES 256 bit keylength, use 1024 for a 512bit key. modprobe dm-crypt (to be sure)
# cryptsetup -c aes-xts-plain -y -s 512 luksFormat /dev/sda2 (follow YES & pass)
# cryptsetup luksOpen /dev/sda2 archluks
Mount the volumes into the running livesystem:
# mount /dev/mapper/archvg-root /mnt
# mkdir /mnt/boot
# mount /dev/sda1 /mnt/boot
Install the base and base-devel packets to /mnt (Internet-connection required):
# pacstrap /mnt base base-devel joe openssh net-tools wpa_supplicant dialog
# pacstrap /mnt grub-bios
delete the # in front of your language of choise (e.g. de_DE.UTF-8 UTF-8) in locale.gen and generate the locale:
# joe /etc/locale.gen
remove hash# form your language
de_DE.UTF-8 UTF-8
de_DE ISO-8859-1
de_DE@euro ISO-8859-15
I want to make a guideline for installing Arch Linux with a raid1 and two sata discs.
Clean devices:
# dd if=/dev/urandom of=/dev/sd[a,b]
Boot Arch linux from usb-stick how to create one you will find out,
I’m shure, but at least:
dd bs=4M if=Downloads/archlinux-2015.5.01-dual.iso of=/dev/sdb
create partition table, connect to internet
Easy to use is the commandline patition tool cfdisk.
Gerät Boot Anfang Ende Sektoren Größe Kn Typ
/dev/sda1 * 2048 393215 391168 191M 83 Linux
/dev/sda2 393216 321672959 321279744 153,2G fd Linux raid autodetect
Device Start End Sectors Size Type
/dev/sda1 2048 294911 292864 143M Linux RAID
/dev/sda2 294912 1953525134 1953230223 931.4G Linux RAID
# mount /dev/mapper/duovg-root /mnt
# mkdir /mnt/boot
# mount /dev/md0 /mnt/boot
Install the base and base-devel packets to /mnt (Internet-connection required):
# pacstrap /mnt base base-devel joe openssh net-tools
# pacstrap /mnt grub-bios
Generate fstab:
# swapon -L swap
# genfstab -p -U /mnt > /mnt/etc/fstab
After succesfully setting up the drives, install the base packages and then, once that is complete, switch TTYs and update your Raid configuration prior to configuring your system. This means that when your initrd is regenerated, it will inlcude the correct Raid information:
mdadm --examine --scan > /mnt/etc/mdadm.conf
chroot and configure
# arch-chroot /mnt
delete the # in front of your language of choise
(e.g. de_DE.UTF-8 UTF-8) in locale.gen and generate the locale:
In /etc/default/grub edit the line GRUB_CMDLINE_LINUX=”” to GRUB_CMDLINE_LINUX=”cryptdevice=/dev/md1:duovg” then run:
# grub-mkconfig -o /boot/grub/grub.cfg
make sure to have
# (0) Arch
title Arch Linux
root (hd0,0)
kernel /vmlinuz26 root=/dev/mapper/duovg-root
cryptdevice=/dev/md1:duovg ro
initrd /kernel26.img
# (1) Arch Fallback
title Arch Linux Fallback
root (hd0,0)
kernel /vmlinuz26 root=/dev/mapper/duovg-root
cryptdevice=/dev/md1:duovg ro
initrd /kernel26-fallback.img
# systemctl enable dhcpcd.service
set your root password:
# passwd
Exit the chroot:
# exit