mirror of
https://codeberg.org/privacy1st/arch
synced 2024-12-23 01:16:04 +01:00
64 lines
1.4 KiB
Markdown
64 lines
1.4 KiB
Markdown
# Arch installer
|
|
|
|
## Running the installer
|
|
|
|
### Via ssh and custom livemedium
|
|
|
|
1) Build custom [archiso](https://gitlab.archlinux.org/archlinux/archiso) live medium using docker in privileged mode:
|
|
|
|
```shell
|
|
# dependencies: docker, docker-compose
|
|
|
|
cd build-archiso
|
|
sudo docker-compose run archiso
|
|
ls out/out_dir/*.iso
|
|
```
|
|
|
|
**On the target computer:**
|
|
|
|
2) Boot into the live medium
|
|
3) Connect to the Internet
|
|
* [wifi instructions](https://wiki.archlinux.org/title/Iwd#iwctl)
|
|
|
|
**On some other computer:**
|
|
|
|
4) Connect to target computer via `ssh`
|
|
* See [build-iso/out/out_dir/ssh-host-fingerprints](../../build-iso/out/out_dir/ssh-host-fingerprints)
|
|
for verification of the ssh fingerprint of the target computer
|
|
5) Adjust `/etc/de-p1st-installer/installer.cfg` (or delete it for interactive mode)
|
|
6) Run the installer:
|
|
|
|
```shell
|
|
de-p1st-installer
|
|
```
|
|
|
|
### Via official livemedium
|
|
|
|
1) Boot into [official live medium](https://archlinux.org/download/)
|
|
2) Add to `/etc/pacman.conf`:
|
|
|
|
```shell
|
|
[de-p1st]
|
|
SigLevel = Optional TrustAll
|
|
Server = https://arch.p1st.de
|
|
```
|
|
|
|
3) (Optional) Install screen with a `screenrc` configuration file for long scrollback history
|
|
|
|
```shell
|
|
pacman -Sy
|
|
pacman -S de-p1st-screen
|
|
|
|
# And then start it with:
|
|
screen
|
|
```
|
|
|
|
4) Install `de-p1st-installer` to get the install script
|
|
|
|
```shell
|
|
pacman -Sy
|
|
pacman -S de-p1st-installer
|
|
```
|
|
|
|
5) Continue with step (5) of "Via custom livemedium"
|