blob: 7c44d727a259b76d1393c27618bf52fc12c7ed69 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Install ArchLinux
- Download [archlinux](https://archlinux.org/releng/releases/)
- Format a USB
- Unmount disk (on MacOS ex. `diskutil unmountDisk /dev/diskX`)
- Create bootable image from iso `sudo dd if=/path/to/image.iso of=/dev/diskX bs=4M status=progress`
- Boot the `archiso` live image from a bootable USB.
- Connect to wireless network (if not connected via LAN).
- Set root password (which will be asked to run the install playbook).
- `cp host_vars/archiso.local.example host_vars/archiso.local`
- Update the `host_vars/archiso.local` file
- Run the playbook on the ansible controller
**Example:**
```bash
passwd
iwctl --passphrase <PASSPHRASE> station wlan0 connect <SSID>
```
|