configs/arch-config/Dokumente/other-linux/arch-install.md

177 lines
3.0 KiB
Markdown
Raw Normal View History

2020-11-04 15:47:06 +01:00
# Arch Installation
## Keyboard layout
```bash
loadkeys de_CH-latin1
```
## Check UEFI mode
If the following command works, the system is booted in EFI.
```bash
ls /sys/firmware/efi/efivars
```
## Verify internet connection
```bash
ping realstickman.net
```
## Update system clock
```bash
timedatectl set-ntp true
```
## Creating partitions
```bash
cfdisk
```
## Format partitions
Fat 32:
```bash
mkfs.fat -F32 /dev/(partition)
```
Ext4:
```bash
mkfs.ext4 /dev/(partition)
```
## Mounting partitions
Generally partitions have to be mounted where you will later use them in your system.
Root: /mnt
2020-11-04 17:38:38 +01:00
EFI: /mnt/boot
2020-11-05 21:48:55 +01:00
Home: /mnt/home
2020-11-04 15:47:06 +01:00
## Creating swapfile
```bash
dd if=/dev/zero of=/mnt/swapfile bs=1M count=(size) status=progress
```
```bash
chmod 600 /mnt/swapfile
```
```bash
mkswap /mnt/swapfile
```
```bash
swapon /mnt/swapfile
```
## Essential packages
Some things like the userspace utilities for file management will vary.
See [file systems](https://wiki.archlinux.org/index.php/File_systems#Types_of_file_systems)
```bash
2020-11-04 21:37:57 +01:00
pacstrap /mnt base linux linux-firmware vim dosfstools e2fsprogs git openssh networkmanager network-manager-applet dialog mtools base-devel linux-headers
2020-11-04 15:47:06 +01:00
```
## Generate fstab
```bash
genfstab -U /mnt >> /mnt/etc/fstab
```
2020-11-04 17:38:38 +01:00
IMPORTANT: Make sure the fstab file has everything included
2020-11-04 15:47:06 +01:00
## Chroot into the system
`arch-chroot /mnt`
## Set timezone
`ln -sf /usr/share/zoneinfo/Europe/Zurich /etc/localtime`
## Set hardware clock
`hwclock --systohc`
## Set locale
`vim /etc/locale.gen`
Uncomment the locales that should be generated.
Make sure to use a UTF-8 entry.
`locale-gen`
Edit `/etc/locale.conf` and set `LANG=(locale)`.
`LANG=de_CH.UTF-8`
## Set keymap permanently
`vim /etc/vconsole.conf`
`KEYMAP=de_CH-latin1`
## Set hostname
Edit `/etc/hostname`
`(hostname)`
Edit `/etc/hosts`
```
127.0.0.1 localhost
::1 localhost
127.0.1.1 (hostname).localdomain (hostname)
```
## Change root password
`passwd`
## Bootloader installation
### rEFInd
2020-11-04 20:42:40 +01:00
*doesn't work atm*
2020-11-04 15:47:06 +01:00
```bash
2020-11-04 21:37:57 +01:00
pacman -S refind-efi efibootmgr
2020-11-04 15:47:06 +01:00
```
```bash
refind-install --usedefault /dev/(efi partition) --alldrivers
```
`mkrlconf`
Edit `/boot/refind_linux.conf`
Delete any lines with "archiso".
2020-11-04 17:38:38 +01:00
Edit `/boot/EFI/BOOT/refind.conf`
2020-11-04 15:47:06 +01:00
Search for `Arch Linux` (vim, press "/". Attention: case sensitive)
Under `options` replace the UUID after `root=` with the configured EFI partition.
2020-11-04 20:42:40 +01:00
### GRUB
```bash
2020-11-04 21:37:57 +01:00
pacman -S grub efibootmgr
2020-11-04 20:42:40 +01:00
```
```bash
grub-install --target=x86_64-efi --efi-directory=(efi partition mountpoint) --bootloader-id=GRUB
```
```bash
grub-mkconfig -o /boot/grub/grub.cfg
```
### systemd-boot
2020-11-04 15:47:06 +01:00
## Networking
`systemctl enable NetworkManager`
## Add user
`useradd -mG wheel (user)`
Set password
`passwd (user)`
### Enable sudo
`visudo`
Uncomment `%wheel ALL=(ALL) ALL`
## Finishing installation
`exit`
`reboot`
2020-11-04 21:37:57 +01:00
## Install AUR helper
2020-11-04 21:52:08 +01:00
### yay
2020-11-04 21:37:57 +01:00
```bash
git clone https://aur.archlinux.org/yay.git
cd yay
makepkg -si
```
2020-11-04 15:47:06 +01:00