Updated Home (markdown)
parent
443ac6b4d8
commit
fcd4cd363e
46
Home.md
46
Home.md
|
|
@ -1,15 +1,43 @@
|
||||||
# [Autorun on a Arch Live CD](https://github.com/Torxed/archinstall/wiki/Autorun-on-Arch-Live-CD)
|
Below are a set of quick instructions to build your own ISO.<br>
|
||||||
|
For a more detailed documentation of the project, see the official [documentation](#).
|
||||||
|
|
||||||
More options for the built ISO:
|
# Building your own ISO
|
||||||
|
|
||||||
### [Unattended install of a profile](https://github.com/Torxed/archinstall/wiki/Unattended-install-of-a-profile)
|
### Step 1: Setup archiso
|
||||||
|
|
||||||
### [User guided install (DEFAULT)](https://github.com/Torxed/archinstall/wiki/User-guided-installation-(DEFAULT))
|
The best thing you can do, is follow the official documentation for [archiso](https://wiki.archlinux.org/index.php/archiso) on Arch Linux Wiki.<br>
|
||||||
|
But the gist is this:
|
||||||
|
|
||||||
### [Custom web-server for deployment profiles](https://github.com/Torxed/archinstall/wiki/Custom-web-server-for-deployment-profiles)
|
# mkdir -p ./archiso
|
||||||
|
# cd ./archiso
|
||||||
|
# cp -r /usr/share/archiso/configsreleng/* ./
|
||||||
|
|
||||||
# [Rerunning the installation](https://github.com/Torxed/archinstall/wiki/Rerunning-the-installation)
|
### Step 2: Updated `pacman.conf` in build environment.
|
||||||
|
|
||||||
# Contact
|
We need to update the `pacman.conf` for the **build** environment.<br>
|
||||||
You'll most likely reach me via the [Issues](https://github.com/Torxed/archinstall/issues) tab the fastest.<br>
|
The addition will be a custom mirror pointing towards [archlife](https://archlinux.life).
|
||||||
If all else fails, head over to IRC and see if you can't catch me online at `#archinstall@FreeNode`
|
|
||||||
|
[archlife]
|
||||||
|
Server = https://archlinux.life/$repo/os/$arch
|
||||||
|
SigLevel = Optional TrustAll
|
||||||
|
|
||||||
|
### Step 3: Add packages to `packages.x86_64`
|
||||||
|
|
||||||
|
python
|
||||||
|
archinstall
|
||||||
|
|
||||||
|
`archinstall` is pckaged in the `archlife` mirror.
|
||||||
|
|
||||||
|
### Step 4: Create a skel `.zprofile` for autolaunch
|
||||||
|
|
||||||
|
While standing in the `archiso` folder, create and add the following:
|
||||||
|
|
||||||
|
# mkdir -p ./airootfs/etc/skel
|
||||||
|
# cat <<EOF >> ./airootfs/etc/skel/.zprofile
|
||||||
|
[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && sh -c "archinstall"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
This will auto launch the `archinstall` command without arguments.<br>
|
||||||
|
In this mode, it will start a guided installation of archinstall.
|
||||||
|
|
||||||
|
This is the same setup you'll find on [https://archlinux.life](https://archlinux.life/).
|
||||||
Loading…
Reference in New Issue