Compare commits

..
4 Commits
Author SHA1 Message Date
dataprolet 20eaf8f130 add German locale 2026-07-08 11:01:44 +02:00
dataprolet 0c29d395a9 Update README.md 2026-07-07 20:17:51 +02:00
dataprolet 1cc7f72595 Merge pull request 'Updated Readme' (#2) from taxicomics/Arch-Linux-Installer:taxicomics-patch-1 into main
Reviewed-on: #2
2026-07-07 20:17:09 +02:00
taxicomics 87b7c7a76f Updated Readme
- included keyboard layout instruction
- changed file directory name
- removed herobrine
2026-07-07 19:57:42 +02:00
2 changed files with 10 additions and 2 deletions
+9 -2
View File
@@ -8,17 +8,24 @@ Tested and working as of **July 2026**.
![Post-install screenshot.](img/screenshot.png) ![Post-install screenshot.](img/screenshot.png)
## Set your keyboard layout correctly
Before starting the install script you should set your keyboard layout correctly. Otherwise you might run into problems with mismatching passwords.
```
$ loadkeys de
```
## To automatically install Arch Linux, clone this repository: ## To automatically install Arch Linux, clone this repository:
``` ```
$ pacman -Sy git $ pacman -Sy git
$ git clone https://git.dataprolet.de/dataprolet/Arch-Linux-Installer.git $ git clone https://git.dataprolet.de/dataprolet/Arch-Linux-Installer.git
$ cd arch $ cd Arch-Linux-Installer
$ sh install.sh $ sh install.sh
``` ```
### Or as a one-liner: ### Or as a one-liner:
``` ```
# pacman -Sy git --noconfirm && git clone https://git.dataprolet.de/dataprolet/Arch-Linux-Installer.git && cd arch && sh install.sh # pacman -Sy git --noconfirm && git clone https://git.dataprolet.de/dataprolet/Arch-Linux-Installer.git && cd Arch-Linux-Installer && sh install.sh
``` ```
### Post-Install ### Post-Install
+1
View File
@@ -362,6 +362,7 @@ echo
# https://wiki.archlinux.org/title/Installation_guide#Localization # https://wiki.archlinux.org/title/Installation_guide#Localization
echo "Setting locale and keymap.." echo "Setting locale and keymap.."
echo "en_US.UTF-8 UTF-8" >> "/mnt/etc/locale.gen" echo "en_US.UTF-8 UTF-8" >> "/mnt/etc/locale.gen"
echo "de_DE.UTF-8 UTF-8" >> "/mnt/etc/locale.gen"
arch-chroot "/mnt" locale-gen arch-chroot "/mnt" locale-gen
arch-chroot "/mnt" localectl set-locale LANG=en_US.UTF-8 arch-chroot "/mnt" localectl set-locale LANG=en_US.UTF-8