more markdown

This commit is contained in:
Harri Lahtinen 2020-01-14 16:09:54 +02:00
parent b02d663ef1
commit 5ace99968b
1 changed files with 8 additions and 3 deletions

View File

@ -6,7 +6,9 @@
#### Copy to a usb-drive #### Copy to a usb-drive
```sh
dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux dd if=archlinux.img of=/dev/sdX bs=16M && sync # on linux
```
#### Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration. #### Boot from the usb. If the usb fails to boot, make sure that secure boot is disabled in the BIOS configuration.
@ -89,9 +91,12 @@ vim /etc/locale.gen
locale-gen locale-gen
localectl set-locale LANG=en_IE.UTF-8 localectl set-locale LANG=en_IE.UTF-8
#To avoid problems with gnome-terminal set locale system wide #### To avoid problems with gnome-terminal set locale system wide
#Do N-OT set LC_ALL=C. It overrides all the locale vars and messes up special characters
#Pay attention to the UTF-8. Capital letters ! #### Do N-OT set LC_ALL=C. It overrides all the locale vars and messes up special characters
#### Pay attention to the UTF-8. Capital letters !
echo LANG=en_IE.UTF-8 >> /etc/locale.conf echo LANG=en_IE.UTF-8 >> /etc/locale.conf
echo LC_ALL= >> /etc/locale.conf echo LC_ALL= >> /etc/locale.conf