32 lines
677 B
Markdown
32 lines
677 B
Markdown
# DRAFT : ARCH linux USB post install
|
|
|
|
|
|
https://www.reddit.com/r/archlinux/comments/5p8au4/arch_linux_on_a_persistent_usb_a_guide_i_made_for/
|
|
|
|
https://www.reddit.com/r/archlinux/comments/7xoted/persistent_and_encrypted_arch_linux_installation/
|
|
|
|
btrfs
|
|
|
|
```
|
|
# /etc/vconsole.conf
|
|
KEYMAP=fr-latin1
|
|
|
|
# /etc/mkinitcpio.conf for / encryption
|
|
base udev keymap encrypt autodetect modconf block filesystems keyboard fsck
|
|
```
|
|
|
|
```
|
|
# changing disk uuids
|
|
uuidgen
|
|
sudo e2fsck -f /dev/sdcX
|
|
sudo tune2fs /dev/sdcX -U xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
```
|
|
|
|
```
|
|
# apple wifi
|
|
pacman -S broadcom-wl-dkms
|
|
```
|
|
|
|
|
|
see [arch-post-install](https://figureslibres.io/gogs/bachir/archlinux-postinstall)
|