Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDaemon Coder <11915375+codefiles@users.noreply.github.com>2023-04-27 11:16:05 -0400
committerGitHub <noreply@github.com>2023-04-27 17:16:05 +0200
commit02af5fb6b2e134b78e45266b82c1689a96606c19 (patch)
tree9c1e449f34123f3d0f1f411c5806d4cb28d7b669 /README.md
parent32982b880bd4e76b158442e444c001f8ebd8bb06 (diff)
Fix README.md links (#1768)
Diffstat (limited to 'README.md')
-rw-r--r--README.md27
1 files changed, 6 insertions, 21 deletions
diff --git a/README.md b/README.md
index 517621bc..720bd487 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ The installer also doubles as a python library to install Arch Linux and manage
Or simply `git clone` the repo as it has no external dependencies *(but there are optional ones)*.<br>
Or use `pip install --upgrade archinstall` to use as a library.
-## Running the [guided](https://github.com/archlinux/archinstall/blob/master/examples/guided.py) installer
+## Running the [guided](https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/guided.py) installer
Assuming you are on an Arch Linux live-ISO:
@@ -86,7 +86,7 @@ When doing so, attach the `/var/log/archinstall/install.log` to the issue ticket
# Mission Statement
-Archinstall promises to ship a [guided installer](https://github.com/archlinux/archinstall/blob/master/examples/guided.py) that follows
+Archinstall promises to ship a [guided installer](https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/guided.py) that follows
the [Arch Principles](https://wiki.archlinux.org/index.php/Arch_Linux#Principles) as well as a library to manage services, packages and other Arch Linux aspects.
The guided installer will provide user-friendly options along the way, but the keyword here is options, they are optional and will never be forced upon anyone.
@@ -178,33 +178,18 @@ For an example of a fully scripted, automated installation please see the exampl
Archinstall comes with an [unattended](https://github.com/archlinux/archinstall/blob/master/examples/mac_address_installation.py)
example which will look for a matching profile for the machine it is being run on, based on any local MAC address.
For instance, if the machine the code is executed on has the MAC address `52:54:00:12:34:56` it will look for a profile called
-[52-54-00-12-34-56.py](https://github.com/archlinux/archinstall/default_profiles/tailored.py).
+[52-54-00-12-34-56.py](https://github.com/archlinux/archinstall/blob/master/archinstall/default_profiles/tailored.py).
If it's found, the unattended installation will commence and source that profile as its installation procedure.
# Profiles
`archinstall` ships with a set of pre-defined profiles that can be chosen during the installation process.
-| *Desktop* | *Server* |
-|---------------|------------|
-| Awesome | Cockpit |
-| Bspwm | Docker |
-| Budgie | Lighttpd |
-| Cinnamon | Mariadb |
-| Cutefish | Nginx |
-| Deepin | Postgresql |
-| Enlightenment | Tomcat |
-| Gnome | httpd |
-| Kde | sshd |
-| Lxqt | |
-| Mate | |
-| Qtile | |
-| Sway | |
-| Xfce4 | |
-| i3-wm | |
+- [Desktop](https://github.com/archlinux/archinstall/tree/master/archinstall/default_profiles/desktops)
+- [Server](https://github.com/archlinux/archinstall/tree/master/archinstall/default_profiles/servers)
The definitions of the profiles and what packages they will install can be seen directly in the menu or
-[default profiles](https://github.com/archlinux/archinstall/default_profiles)
+[default profiles](https://github.com/archlinux/archinstall/tree/master/archinstall/default_profiles)
# Testing