User Tools

Site Tools


arch:install

This is an old revision of the document!


#!/bin/bash set -e

timedatectl set-timezone Europe/Berlin timedatectl set-ntp true

echo ',,L,*' | sfdisk /dev/sda

mkfs.ext4 /dev/sda1 mount /dev/sda1 /mnt

pacstrap /mnt base linux linux-firmware vim

genfstab -U /mnt » /mnt/etc/fstab

chroot /mnt /bin/bash «“EOT” ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime hwclock –systohc echo “de_DE.UTF-8 UTF-8” > /etc/locale.gen echo “de_DE ISO-8859-1” » /etc/locale.gen echo “de_DE@euro ISO-8859-15” » /etc/locale.gen echo “en_US.UTF-8 UTF-8” » /etc/locale.gen echo “en_US ISO-8859-1” » /etc/locale.gen locale-gen echo “LANG=en_US.UTF-8” > /etc/locale.conf echo “KEYMAP=de-latin1” > /etc/vconsole.conf echo “vm51” > /etc/hostname echo -e “sun\nsun” | passwd root >/dev/null 2>&1 pacman -Sy grub intel-ucode grub-install –target=i386-pc /dev/sda grub-mkconfig -o /boot/grub/grub.cfg EOT

arch/install.1658148686.txt.gz · Last modified: 2023/01/11 20:30 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki