Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2023-11-22 22:24:29 +0100
committerGitHub <noreply@github.com>2023-11-22 22:24:29 +0100
commitd7eb35f4ee49cbb8fe065db445a84000883d69b5 (patch)
treea54c84b31789c832b0eb136082bc824c1cdba016
parentdb326590ba31f17f5fd7113a112e787627f2f464 (diff)
Nuking docs to allow for redirect (ouff) (#2245)
-rw-r--r--docs/archinstall/Installer.rst11
-rw-r--r--docs/archinstall/plugins.rst57
-rw-r--r--docs/cli_parameters/config/config_options.csv24
-rw-r--r--docs/cli_parameters/config/custom_commands.rst22
-rw-r--r--docs/cli_parameters/config/disk_config.rst245
-rw-r--r--docs/cli_parameters/config/disk_encryption.rst19
-rw-r--r--docs/cli_parameters/config/manual_options.csv4
-rw-r--r--docs/examples/python.rst96
-rw-r--r--docs/flowcharts/BlockDeviceSelection.svg3
-rw-r--r--docs/flowcharts/DiskSelectionProcess.drawio1
-rw-r--r--docs/help/discord.rst14
-rw-r--r--docs/help/known_issues.rst103
-rw-r--r--docs/help/report_bug.rst33
-rw-r--r--docs/installing/guided.rst287
-rw-r--r--docs/installing/python.rst59
15 files changed, 0 insertions, 978 deletions
diff --git a/docs/archinstall/Installer.rst b/docs/archinstall/Installer.rst
deleted file mode 100644
index d1bbaa7c..00000000
--- a/docs/archinstall/Installer.rst
+++ /dev/null
@@ -1,11 +0,0 @@
-.. _archinstall.Installer:
-
-archinstall.Installer
-=====================
-
-The installer is the main class for accessing an installation-instance.
-You can look at this class as the installation you have or will perform.
-
-Anything related to **inside** the installation, will be found in this class.
-
-.. autofunction:: archinstall.Installer
diff --git a/docs/archinstall/plugins.rst b/docs/archinstall/plugins.rst
deleted file mode 100644
index 898f9006..00000000
--- a/docs/archinstall/plugins.rst
+++ /dev/null
@@ -1,57 +0,0 @@
-.. _archinstall.Plugins:
-
-Python Plugins
-==============
-
-``archinstall`` supports plugins via two methods.
-
-First method is directly via the ``--plugin`` parameter when running as a CLI tool. This will load a specific plugin locally or remotely via a path.
-
-The second method is via Python's built in `plugin discovery`_ using `entry points`_ categorized as ``archinstall.plugin``.
-
-``--plugin`` parameter
-----------------------
-
-The parameter has the benefit of being stored in the ``--conf`` state, meaning when re-running an installation — the plugin will automatically be loaded.
-It's limitation is that it requires an initial path to be known and written and be cumbersome.
-
-Plugin Discovery
-----------------
-
-This method allows for multiple plugins to be loaded with the drawback that they have to be installed beforehand on the system running ``archinstall``.
-This mainly targets those who build their own ISO's and package specific setups for their needs.
-
-
-What's supported?
------------------
-
-Currently the documentation for this is scarse. Until that is resolved, the best way to find supported features is to search the source code for `plugin.on_ <https://github.com/search?q=repo%3Aarchlinux%2Farchinstall+%22plugin.on_%22&type=code>`_ as this will give a clear indication of which calls are made to plugins.
-
-How does it work?
------------------
-
-``archinstall`` plugins use a discovery-driven approach where plugins are queried for certain functions.
-As an example, if a plugin has the following function:
-
-.. code-block:: python
-
- def on_pacstrap(*packages):
- ...
-
-The function :code:`archinstall.Pacman().strap(["some packages"])` is hardcoded to iterate plugins and look for :code:`on_pacstrap` in the plugin.
-If the function exists, :code:`.strap()` will call the plugin's function and replace the initial package list with the result from the plugin.
-
-The best way to document these calls is currently undecided, as it's hard to document this behavior dynamically.
-
-Writing your own?
------------------
-
-The simplest way currently is to look at a reference implementation or the community. Two of these are:
-
-* `torxed/archinstall-aur <https://github.com/torxed/archinstall-aur>`_
-* `phisch/archinstall-aur <https://github.com/phisch/archinstall-aur>`_
-
-And search for `plugin.on_ <https://github.com/search?q=repo%3Aarchlinux%2Farchinstall+%22plugin.on_%22&type=code>`_ in the code base to find what ``archinstall`` will look for. PR's are welcome to widen the support for this.
-
-.. _plugin discovery: https://packaging.python.org/en/latest/specifications/entry-points/
-.. _entry points: https://docs.python.org/3/library/importlib.metadata.html#entry-points \ No newline at end of file
diff --git a/docs/cli_parameters/config/config_options.csv b/docs/cli_parameters/config/config_options.csv
deleted file mode 100644
index 1861b1e1..00000000
--- a/docs/cli_parameters/config/config_options.csv
+++ /dev/null
@@ -1,24 +0,0 @@
-Key,Value(s),Description,Required
-additional-repositories,[ `multilib <https://wiki.archlinux.org/title/Official_repositories#multilib>`_!, `testing <https://wiki.archlinux.org/title/Official_repositories#Testing_repositories>`_ ],Enables one or more of the testing and multilib repositories before proceeding with installation,No
-archinstall-language,`lang <https://github.com/archlinux/archinstall/blob/master/archinstall/locales/languages.json>`__,Sets the TUI language used *(make sure to use the ``lang`` value not the ``abbr``)*,No
-audio_config,`pipewire <https://wiki.archlinux.org/title/PipeWire>`_!, `pulseaudio <https://wiki.archlinux.org/title/PulseAudio>`_,Audioserver to be installed,No
-bootloader,`Systemd-boot <https://wiki.archlinux.org/title/Systemd-boot>`_!, `grub <https://wiki.archlinux.org/title/GRUB>`_,Bootloader to be installed *(grub being mandatory on BIOS machines)*,Yes
-debug,``true``!, ``false``,Enables debug output,No
-disk_config,*Read more under* :ref:`disk config`,Contains the desired disk setup to be used during installation,No
-disk_encryption,*Read more about under* :ref:`disk encryption`,Parameters for disk encryption applied ontop of ``disk_config``,No
-hostname,``str``,A string definining your machines hostname on the network *(defaults to ``archinstall``)*,No
-kernels,[ `linux <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_!, `linux-hardened <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_!, `linux-lts <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_!, `linux-rt <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_!, `linux-rt-lts <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_!, `linux-zen <https://wiki.archlinux.org/title/Kernel#Officially_supported_kernels>`_ ],Defines which kernels should be installed and setup in the boot loader options,Yes
-custom-commands,*Read more under* :ref:`custom commands`,Custom commands that will be run post-install chrooted inside the installed system,No
-locale_config,{kb_layout: `lang <https://wiki.archlinux.org/title/Linux_console/Keyboard_configuration>`__!, sys_enc: `Character encoding <https://wiki.archlinux.org/title/Locale>`_!, sys_lang: `locale <https://wiki.archlinux.org/title/Locale>`_},Defines the keyboard key map!, system encoding and system locale,No
-mirror_config,{custom_mirrors: [ https://... ]!, mirror_regions: { "Worldwide": [ "https://geo.mirror.pkgbuild.com/$repo/os/$arch" ] } },Sets various mirrors *(defaults to ISO's ``/etc/pacman.d/mirrors`` if not defined)*,No
-network_config,*`see options under Network Configuration`*,Sets which type of *(if any)* network configuration should be used,No
-no_pkg_lookups,``true``!, ``false``,Disabled package checking against https://archlinux.org/packages/,No
-ntp,``true``!, ``false``,enables or disables `NTP <https://wiki.archlinux.org/title/Network_Time_Protocol_daemon>`_ during installation,No
-offline,``true``!, ``false``,enables or disables certain online checks such as mirror reachability etc,No
-packages,[ <package1>!, <package2>!, ... ],A list of packages to install during installation,No
-parallel downloads,0-∞,sets a given number of paralell downloads to be used by `pacman <https://wiki.archlinux.org/title/Pacman#Enabling_parallel_downloads>`_,No
-profile_config,*`read more under the profiles section`*,Installs a given profile if defined,No
-script,`guided <https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/guided.py>`__! *(default)*!, `minimal <https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/minimal.py>`__!, `only_hdd <https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/only_hdd.py>`_!, `swiss <https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/swiss.py>`_!, `unattended <https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/unattended.py>`_,When used to autorun an installation!, this sets which script to autorun with,No
-silent,``true``!, ``false``,disables or enables user questions using the TUI,No
-swap,``true``!, ``false``,enables or disables swap,No
-timezone,`timezone <https://wiki.archlinux.org/title/System_time#Time_zone>`_,sets a timezone for the installed system,No \ No newline at end of file
diff --git a/docs/cli_parameters/config/custom_commands.rst b/docs/cli_parameters/config/custom_commands.rst
deleted file mode 100644
index c1529020..00000000
--- a/docs/cli_parameters/config/custom_commands.rst
+++ /dev/null
@@ -1,22 +0,0 @@
-.. _custom commands:
-
-Custom Commands
-===============
-
-| Custom commands is a configuration entry that allows for executing custom commands post-installation.
-| The commands are executed with `arch-chroot <https://man.archlinux.org/man/extra/arch-install-scripts/arch-chroot.8.en>`_.
-
-The option takes a list of arguments, an example is:
-
-.. code-block:: json
-
- {
- "custom-commands": [
- "hostname new-hostname"
- ]
- }
-
-| The following example will set a new hostname in the installed system.
-| The example is just to illustrate that the command is not run in the ISO but inside the installed system after the base system is installed.
-
-More examples can be found in the code repository under `examples/ <https://github.com/archlinux/archinstall/tree/e6344f93f7e476d05bbcd642f2ed91fdde545870/examples>`_ \ No newline at end of file
diff --git a/docs/cli_parameters/config/disk_config.rst b/docs/cli_parameters/config/disk_config.rst
deleted file mode 100644
index ed5f42c1..00000000
--- a/docs/cli_parameters/config/disk_config.rst
+++ /dev/null
@@ -1,245 +0,0 @@
-.. _disk config:
-
-Disk Configuration
-==================
-
-There are only three modes in the ``disk_config`` option. They are described in more detail below.
-
-"Leave as is"
---------------
-
-.. code-block:: json
-
- {
- "config_type": "pre_mounted_config",
- "mountpoint": "/mnt/archinstall"
- }
-
-This mode will not perform any partitioning what so ever.
-Instead it relies on what's mounted manually by the user under ``/mnt/archinstall``.
-
-Given the following disk example:
-
-.. code-block::
-
- /mnt/archinstall (/dev/sda2)
- ├── boot (/dev/sda1)
- └── home (/dev/sda3)
-
-Runing ``archinstall --conf your.json --silent`` where the above JSON is configured. The disk will be left alone — and a working system will be installed to the above folders and mountpoints will be translated into the installed system.
-
-.. note::
-
- Some disk layouts can be too complicated to detect, such as RAID setups. Please do report those setups on the `Issue Tracker <https://github.com/archlinux/archinstall>`__ so we can support them.
-
-Best Effort
------------
-
-.. warning::
-
- This mode will wipe data!
-
-.. note::
-
- Note that this options is similar to the manual partitioning but is generated through the menu system! And the best effort layout might deviate slightly from some wiki guidelines in order to facilitate some optional configurations at a later stage.
-
-.. code-block:: json
-
- {
- "disk_config": {
- "config_type": "default_layout",
- "device_modifications": [
- {
- "device": "/dev/sda",
- "wipe": true,
- "partitions": "..."
- }
- ]
- }
- }
-
-This mode will attempt to configure a sane default layout on the selected disks.
-Based on the chosen filesystem, and potential optional settings for said filesystem — different default layouts will be provided.
-
-Manual Partitioning
--------------------
-
-.. code-block:: json
-
- {
- "disk_config": {
- "config_type": "manual_partitioning",
- "device_modifications": [
- "filesystem struct"
- ]
- }
- }
-
-Manual partitioning is the most complex one of the three. It offers you near endless flexibility of how to partition your disk. It integrates against `pyparted <https://github.com/dcantrell/pyparted>`__ and some control logic in ``archinstall`` that deals with creating things like subvolumes and compression.
-
-Sizes are by default ``sector`` units, but other units are supported.
-
-The options supplied to ``manual_partitioning`` are dictionary definitions, where the following parameters must exist:
-
-.. csv-table:: JSON options
- :file: ./manual_options.csv
- :widths: 15, 15, 65, 5
- :escape: !
- :header-rows: 1
-
-Each partition definition heavily relies on what filesystem is used.
-Below follow two of the more common filesystems, anything else will best be described by running ``archinstall`` to generate a desired configuration for the desired filesystem type — and copy the relevant parts for permanent configurations.
-
-.. warning::
-
- Important to note that the units and positions in the examples below — are highly user specific!
-
-FAT32
-^^^^^
-
-.. code-block:: json
-
- {
- "btrfs": [],
- "flags": [
- "Boot"
- ],
- "fs_type": "fat32",
- "length": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 99982592
- },
- "mount_options": [],
- "mountpoint": "/boot",
- "obj_id": "369f31a8-2781-4d6b-96e7-75680552b7c9",
- "start": {
- "sector_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 512
- },
- "total_size": null,
- "unit": "sectors",
- "value": 34
- },
- "status": "create",
- "type": "primary"
- }
-
-.. note::
-
- The ``Boot`` flag will make ``archinstall`` automatically set the correct ESP partition GUID if the system is booted with ``EFI`` support. The GUID will then be set to ``C12A7328-F81F-11D2-BA4B-00A0C93EC93B``.
-
-EXT4
-^^^^
-
-.. code-block:: json
-
- {
- "btrfs": [],
- "flags": [],
- "fs_type": "ext4",
- "length": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 15805127360
- },
- "mount_options": [],
- "mountpoint": "/",
- "obj_id": "3e75d045-21a4-429d-897e-8ec19a006e8b",
- "start": {
- "sector_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 512
- },
- "total_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 16106127360
- },
- "unit": "MB",
- "value": 301
- },
- "status": "create",
- "type": "primary"
- }
-
-BTRFS
-^^^^^
-
-The BTRFS filesystem is inherently more complicated, thus the options are a bit more involved.
-This example contains both subvolumes and compression.
-
-.. note::
-
- Note that the ``"mountpoint": null`` is used for the overall partition, and instead individual subvolumes have mountpoints set.
-
-.. code-block:: json
-
- {
- "btrfs": [
- {
- "compress": false,
- "mountpoint": "/",
- "name": "@",
- "nodatacow": false
- },
- {
- "compress": false,
- "mountpoint": "/home",
- "name": "@home",
- "nodatacow": false
- },
- {
- "compress": false,
- "mountpoint": "/var/log",
- "name": "@log",
- "nodatacow": false
- },
- {
- "compress": false,
- "mountpoint": "/var/cache/pacman/pkg",
- "name": "@pkg",
- "nodatacow": false
- },
- {
- "compress": false,
- "mountpoint": "/.snapshots",
- "name": "@.snapshots",
- "nodatacow": false
- }
- ],
- "dev_path": null,
- "flags": [],
- "fs_type": "btrfs",
- "mount_options": [
- "compress=zstd"
- ],
- "mountpoint": null,
- "obj_id": "d712357f-97cc-40f8-a095-24ff244d4539",
- "size": {
- "sector_size": {
- "unit": "B",
- "value": 512
- },
- "unit": "B",
- "value": 15568207872
- },
- "start": {
- "sector_size": {
- "unit": "B",
- "value": 512
- },
- "unit": "MiB",
- "value": 513
- },
- "status": "create",
- "type": "primary"
- } \ No newline at end of file
diff --git a/docs/cli_parameters/config/disk_encryption.rst b/docs/cli_parameters/config/disk_encryption.rst
deleted file mode 100644
index df2e2fa7..00000000
--- a/docs/cli_parameters/config/disk_encryption.rst
+++ /dev/null
@@ -1,19 +0,0 @@
-.. _disk encryption:
-
-Disk Encryption
-===============
-
-Disk encryption consists of a top level entry in the user configuration.
-
-.. code-block:: json
-
- {
- "disk_encryption": {
- "encryption_type": "luks",
- "partitions": [
- "d712357f-97cc-40f8-a095-24ff244d4539"
- ]
- }
- }
-
-The ``UID`` in the ``partitions`` list is an internal reference to the ``obj_id`` in the :ref:`disk config` entries. \ No newline at end of file
diff --git a/docs/cli_parameters/config/manual_options.csv b/docs/cli_parameters/config/manual_options.csv
deleted file mode 100644
index 2fcc26f0..00000000
--- a/docs/cli_parameters/config/manual_options.csv
+++ /dev/null
@@ -1,4 +0,0 @@
-Key,Value(s),Description,Required
-device,``str``,Which block-device to format,yes
-partitions,[ {key: val} ],The data describing the change/addition in a partition,yes
-wipe,``bool``,clear the disk before adding any partitions,No \ No newline at end of file
diff --git a/docs/examples/python.rst b/docs/examples/python.rst
deleted file mode 100644
index 7fb3f6c3..00000000
--- a/docs/examples/python.rst
+++ /dev/null
@@ -1,96 +0,0 @@
-.. _examples.python:
-
-Python module
-=============
-
-Archinstall supports running in `module mode <https://docs.python.org/3/library/__main__.html>`_.
-The way the library is invoked in module mode is limited to executing scripts under the `scripts`_ folder.
-
-It's therefore important to place any script or profile you wish to invoke in the examples folder prior to building and installing.
-
-Pre-requisites
---------------
-
-We'll assume you've followed the :ref:`installing.python.manual` method.
-Before actually installing the library, you will need to place your custom installer-scripts under `scripts`_ as a python file.
-
-More on how you create these in the next section.
-
-.. warning::
-
- This is subject to change in the future as this method is currently a bit stiff. The script path will become a parameter. But for now, this is by design.
-
-Creating a script
------------------
-
-Lets create a `test_installer` - installer as an example. This is assuming that the folder `./archinstall` is a git-clone of the main repo.
-We begin by creating "`scripts`_:code:`/test_installer.py`". The placement here is important later.
-
-This script can now already be called using :code:`python -m archinstall test_installer` after a successful installation of the library itself.
-But the script won't do much. So we'll do something simple like list all the hard drives as an example.
-
-To do this, we'll begin by importing :code:`archinstall` in our "`scripts`_:code:`/test_installer.py`" and call a function whtin ``archinstall``.
-
-.. code-block:: python
-
- import archinstall
-
- print(archinstall.disk.device_handler.devices)
-
-Now, go ahead and reference the :ref:`installing.python.manual` installation method.
-After runnig ``python -m archinstall test_installer`` it should print something that looks like:
-
-.. code-block:: text
-
- [
- BDevice(
- disk=<parted.disk.Disk object at 0x7fbe17156050>,
- device_info=_DeviceInfo(
- model='PC801 NVMe SK hynix 512GB',
- path=PosixPath('/dev/nvme0n1'),
- type='nvme',
- total_size=Size(value=512110190592, unit=<Unit.B: 1>,
- sector_size=SectorSize(value=512, unit=<Unit.B: 1>)),
- free_space_regions=[
- <archinstall.lib.disk.device_model.DeviceGeometry object at 0x7fbe166c4250>,
- <archinstall.lib.disk.device_model.DeviceGeometry object at 0x7fbe166c4c50>,
- <archinstall.lib.disk.device_model.DeviceGeometry object at 0x7fbe166c4a10>],
- sector_size=SectorSize(value=512, unit=<Unit.B: 1>),
- read_only=False,
- dirty=False
- ),
- partition_infos=[
- _PartitionInfo(
- partition=<parted.partition.Partition object at 0x7fbe166c4a90>,
- name='primary',
- type=<PartitionType.Primary: 'primary'>,
- fs_type=<FilesystemType.Fat32: 'fat32'>,
- path='/dev/nvme0n1p1',
- start=Size(value=2048, unit=<Unit.sectors: 'sectors'>, sector_size=SectorSize(value=512, unit=<Unit.B: 1>)),
- length=Size(value=535822336, unit=<Unit.B: 1>, sector_size=SectorSize(value=512, unit=<Unit.B: 1>)),
- flags=[
- <PartitionFlag.Boot: 1>,
- <PartitionFlag.ESP: 18>
- ],
- partn=1,
- partuuid='a26be943-c193-41f4-9930-9341cf5f6b19',
- uuid='6EE9-2C00',
- disk=<parted.disk.Disk object at 0x7fbe17156050>,
- mountpoints=[
- PosixPath('/boot')
- ],
- btrfs_subvol_infos=[]
- ),
- _PartitionInfo(...)
- ]
- )
- ]
-
-That means your script is in the right place, and ``archinstall`` is working as intended.
-
-.. note::
-
- Most calls, including the one above requires `root <https://en.wikipedia.org/wiki/Superuser>`_ privileges.
-
-
-.. _scripts: https://github.com/archlinux/archinstall/tree/master/archinstall/scripts \ No newline at end of file
diff --git a/docs/flowcharts/BlockDeviceSelection.svg b/docs/flowcharts/BlockDeviceSelection.svg
deleted file mode 100644
index 2d63f674..00000000
--- a/docs/flowcharts/BlockDeviceSelection.svg
+++ /dev/null
@@ -1,3 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="521px" height="546px" viewBox="-0.5 -0.5 521 546" content="&lt;mxfile host=&quot;Electron&quot; modified=&quot;2021-05-02T19:58:13.539Z&quot; agent=&quot;5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/14.5.1 Chrome/89.0.4389.82 Electron/12.0.1 Safari/537.36&quot; etag=&quot;Pkv6xZ_P1Z1qw9YxKuYv&quot; version=&quot;14.5.1&quot; type=&quot;device&quot;&gt;&lt;diagram id=&quot;C5RBs43oDa-KdzZeNtuy&quot; name=&quot;Page-1&quot;&gt;7VvZdqM4EP2anHlKDpsxPMZ20sl0kl7S05meNwVkYCIjt5C3+fqRjFgFNnbwksQv3a5CCKG6dWsROdP7o/knAsb+PXYhOtMUd36mD840TVUsi/3HNYtYY5tC4ZHAFYMyxWPwH0zuFNpJ4MKoMJBijGgwLiodHIbQoQUdIATPisOGGBWfOgYelBSPDkCy9ilwqR9rLa2b6W9g4PnJk1XTjq+MQDJYvEnkAxfPcir96kzvE4xp/Gs070PENy/Zl6fbxRO6ezE//fkt+g3+6n3+8fDzPJ7sepNb0lcgMKRbT/3y2bLtaXf4oFrf7ga/rYfB/dW5IV6NLpL9gi7bPiFiQn3s4RCgq0zbI3gSupDPqjIpG3OH8Vgo/4WULgQWwIRipvLpCImr7C3I4m8mKBedRPzFxUQYzAvSQkhDHNI+RpgsV6obpmF3BkwfUYJfYO5K17IuL3V+R4BQTt/T+vZlbzmve80upetxLznSmOggEEWBs5wUECoGKYmcDAtxyHcieoHU8cWAeCf59pWAt8ZqYlyEJ8SBK8bpwnkA8eCq+cwUmsynIR5BtoXsPgIRoMG0uDggnMtLx2UAYj8EhjaAqljkFKCJeNIjRNytNaWHsPMygNPAYXRQRt3MDyh8HIPlDswYExURwy0v4KSyl+t53EypYbj1E9/mo1NHVSS01gFiBYRqQLeZdaeQUDjP7b1soOSqKehG8K0lxFlGXmrCSH6OuAzl9SatpAhNMukDPrFGBUHskwzMhmSgKtVga50NKqEjs8GvCt8/IHbUA2HnbUScCpBp3mx4N50TtftTuRl3H7/9Y4fnmrGS0c6Vi65qCCw0Bp6Y7isOQpobgofDiC2mjMz0qduHLlMC69VoTPl7xCEswKEEXeLj0fOELa23JoAVQhJH1TUYBYjD7AaiKaSBAyrCHECBF3KMMHtCUh3r2COD0GOSmUk/lm7Bkru3H/7UbsP4Z7UQ/6rRXcNiCp9WU7YKhs6ETJdGkTOUgodvQXWbU1OdieE8oDnOZFJKmex3xphcSAhz2yBd4LpqSizxpiDEjFeVjVGZJ8Bq02sNw2y3koprQa5cqIZmv44QxVRGp+QvZskP4rWLu/Ll4f6YtSsza+iQxZg//Tsvn0/VQB1SOnrJvPahywHlSMqBd5nWJ02ztSlXZ13G9XqCaZUXKqGkSlA6VHmwx0j3YXBbPbCG7vbTnVJl8rqf8FY0g5Gm9AZ/yOg7Zfi7zvC1piFtdxm+Kpn9naTwbbt5coCzLjxZDfPhPbm9HGjSrjSb8HmZgvbTig6ELvsXj3nFD/jkI2ZdeupZN3dpQ99jlloJQLul1KJd723dS+tzw2N20srVqHKVuFVh8arucCGRy/K62qbFG7G0ah6VqTuSpftsv0AQ8q7aV5bGBpx6T7nY7olb7xxbLqbKzL1/GtjskOjgNGC1TQO5gxvdFj3Qo2gjVKfvbQX7nab0FWd5pYq98lCwXOQfvjJ4FQS140o6LAk5X5CbrwoUH/Cg5LBdhKHcqP64EQkQR6xU0/cYoAz14AHKOkWjlVSgNv02pemh2WaRh1EoWOQGjHkcinYRd1T5i4G0rRAfaynXtwhGi4jCkQSaU/eg7oxLb+rjO+seaHKFcmzpRFt5gAsiP11Wy0yQ7FrDD4iOJitI1p0/JuAtwNXV6RqHLgGgnA9sdiQkM0Cd3fO8sS8H3ucnqyvxlDPgbcjS7eWd/DMunuCNKvK57W0o2crSnnXTbGIrtwMt1yjZquCXzA70C0/tKN9hY5e21I0js6Xe1inxqbrbnsiblncJERwLkcv13VMwhrH/96q+PPq4Bd3OCKVUwXWMTjNG2VkFpx9dMve+2aN9Uqj+FNJUS3WEYRenqPkUsq16MHnP/LkGgoDwnIN3lUzEdrP3zGTT47/iwtA9F50mZqWKuHYipNazVaMBIRntEBITs78PjXGW/ZWtfvU/&lt;/diagram&gt;&lt;/mxfile&gt;"><defs/><g><path d="M 60 40 L 60 83.63" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 60 88.88 L 56.5 81.88 L 60 83.63 L 63.5 81.88 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><rect x="0" y="0" width="120" height="40" rx="6" ry="6" fill="#b2c9ab" stroke="#788aa3" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 20px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Select BlockDevices</div></div></div></foreignObject><text x="60" y="24" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Select BlockDevices</text></switch></g><path d="M 60 170 L 60 203.63" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 60 208.88 L 56.5 201.88 L 60 203.63 L 63.5 201.88 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 190px; margin-left: 60px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">No</div></div></div></foreignObject><text x="60" y="193" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">No</text></switch></g><path d="M 120 130 L 230 130 Q 240 130 240 120 L 240 46.37" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 240 41.12 L 243.5 48.12 L 240 46.37 L 236.5 48.12 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 130px; margin-left: 150px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes</div></div></div></foreignObject><text x="150" y="133" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes</text></switch></g><path d="M 30 110 L 51.68 95.55 Q 60 90 68.32 95.55 L 111.68 124.45 Q 120 130 111.68 135.55 L 68.32 164.45 Q 60 170 51.68 164.45 L 8.32 135.55 Q 0 130 8.32 124.45 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 110px; height: 1px; padding-top: 128px; margin-left: 5px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Empty Selection</div></div></div></foreignObject><text x="60" y="132" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Empty Selection</text></switch></g><path d="M 430 46.37 L 430 110" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 430 41.12 L 433.5 48.12 L 430 46.37 L 426.5 48.12 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 80px; margin-left: 430px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes / No</div></div></div></foreignObject><text x="430" y="83" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes / No</text></switch></g><rect x="370" y="110" width="120" height="40" rx="6" ry="6" fill="#b2c9ab" stroke="#788aa3" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 130px; margin-left: 371px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Encrypt Root</div></div></div></foreignObject><text x="430" y="134" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Encrypt Root</text></switch></g><path d="M 120 250 L 183.63 250" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 188.88 250 L 181.88 253.5 L 183.63 250 L 181.88 246.5 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 250px; margin-left: 150px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">No</div></div></div></foreignObject><text x="150" y="253" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">No</text></switch></g><path d="M 60 290 L 60 343.63" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 60 348.88 L 56.5 341.88 L 60 343.63 L 63.5 341.88 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 320px; margin-left: 60px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes</div></div></div></foreignObject><text x="60" y="323" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes</text></switch></g><path d="M 30 230 L 51.68 215.55 Q 60 210 68.32 215.55 L 111.68 244.45 Q 120 250 111.68 255.55 L 68.32 284.45 Q 60 290 51.68 284.45 L 8.32 255.55 Q 0 250 8.32 244.45 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 110px; height: 1px; padding-top: 248px; margin-left: 5px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Multiple BD's</div></div></div></foreignObject><text x="60" y="252" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Multiple BD's</text></switch></g><path d="M 120 370 L 183.63 370" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 188.88 370 L 181.88 373.5 L 183.63 370 L 181.88 366.5 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><rect x="0" y="350" width="120" height="40" rx="6" ry="6" fill="#b2c9ab" stroke="#788aa3" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 370px; margin-left: 1px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Select /boot, / and optional mounts</div></div></div></foreignObject><text x="60" y="374" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Select /boot, / and...</text></switch></g><path d="M 250 290 L 250 323.63" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 250 328.88 L 246.5 321.88 L 250 323.63 L 253.5 321.88 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 310px; margin-left: 250px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes</div></div></div></foreignObject><text x="250" y="313" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes</text></switch></g><path d="M 310 250 L 363.63 250" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 368.88 250 L 361.88 253.5 L 363.63 250 L 361.88 246.5 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 250px; margin-left: 340px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">No</div></div></div></foreignObject><text x="340" y="253" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">No</text></switch></g><path d="M 220 230 L 241.68 215.55 Q 250 210 258.32 215.55 L 301.68 244.45 Q 310 250 301.68 255.55 L 258.32 284.45 Q 250 290 241.68 284.45 L 198.32 255.55 Q 190 250 198.32 244.45 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 110px; height: 1px; padding-top: 248px; margin-left: 195px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Contains Partitions</div></div></div></foreignObject><text x="250" y="252" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Contains Partitions</text></switch></g><path d="M 310 370 L 420 370 Q 430 370 430 360 L 430 276.37" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 430 271.12 L 433.5 278.12 L 430 276.37 L 426.5 278.12 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 370px; margin-left: 339px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">No</div></div></div></foreignObject><text x="339" y="373" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">No</text></switch></g><path d="M 250 410 L 250 458.63" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 250 463.88 L 246.5 456.88 L 250 458.63 L 253.5 456.88 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 438px; margin-left: 250px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes</div></div></div></foreignObject><text x="250" y="441" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes</text></switch></g><path d="M 220 350 L 240.43 336.38 Q 250 330 259.57 336.38 L 300.43 363.62 Q 310 370 300.43 376.38 L 259.57 403.62 Q 250 410 240.43 403.62 L 199.57 376.38 Q 190 370 199.57 363.62 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 110px; height: 1px; padding-top: 368px; margin-left: 195px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Old /boot has content</div></div></div></foreignObject><text x="250" y="372" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Old /boot has cont...</text></switch></g><path d="M 430 230 L 430 156.37" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 430 151.12 L 433.5 158.12 L 430 156.37 L 426.5 158.12 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><rect x="370" y="230" width="120" height="40" rx="6" ry="6" fill="#b2c9ab" stroke="#788aa3" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 250px; margin-left: 371px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Select Root FIlesystem</div></div></div></foreignObject><text x="430" y="254" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Select Root FIlesyst...</text></switch></g><path d="M 370 20 L 306.37 20" fill="none" stroke="#788aa3" stroke-miterlimit="10" stroke-dasharray="3 3" pointer-events="stroke"/><path d="M 301.12 20 L 308.12 16.5 L 306.37 20 L 308.12 23.5 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><rect x="370" y="0" width="120" height="40" rx="6" ry="6" fill="#b2c9ab" stroke="#788aa3" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 20px; margin-left: 371px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Mount Partitions</div></div></div></foreignObject><text x="430" y="24" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Mount Partitions</text></switch></g><rect x="180" y="0" width="120" height="40" rx="6" ry="6" fill="#d5e8d4" stroke="#82b366" stroke-dasharray="3 3" pointer-events="all"/><g transform="translate(-0.5 -0.5)" opacity="0.4"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 118px; height: 1px; padding-top: 20px; margin-left: 181px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #000000; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Install on /mnt</div></div></div></foreignObject><text x="240" y="24" fill="#000000" font-family="Helvetica" font-size="12px" text-anchor="middle">Install on /mnt</text></switch></g><path d="M 310 505 L 373.63 505" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 378.88 505 L 371.88 508.5 L 373.63 505 L 371.88 501.5 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 1px; height: 1px; padding-top: 505px; margin-left: 345px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 11px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; background-color: #ffffff; white-space: nowrap; ">Yes</div></div></div></foreignObject><text x="345" y="508" fill="#46495D" font-family="Helvetica" font-size="11px" text-anchor="middle">Yes</text></switch></g><path d="M 220 485 L 241.68 470.55 Q 250 465 258.32 470.55 L 301.68 499.45 Q 310 505 301.68 510.55 L 258.32 539.45 Q 250 545 241.68 539.45 L 198.32 510.55 Q 190 505 198.32 499.45 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 110px; height: 1px; padding-top: 503px; margin-left: 195px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Wipe /Boot</div></div></div></foreignObject><text x="250" y="507" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Wipe /Boot</text></switch></g><path d="M 450 465 L 450 275.37" fill="none" stroke="#788aa3" stroke-miterlimit="10" pointer-events="stroke"/><path d="M 450 270.12 L 453.5 277.12 L 450 275.37 L 446.5 277.12 Z" fill="#788aa3" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><path d="M 415 485 L 441.32 469.96 Q 450 465 458.68 469.96 L 511.32 500.04 Q 520 505 511.32 509.96 L 458.68 540.04 Q 450 545 441.32 540.04 L 388.68 509.96 Q 380 505 388.68 500.04 Z" fill="#b2c9ab" stroke="#788aa3" stroke-miterlimit="10" pointer-events="all"/><g transform="translate(-0.5 -0.5)"><switch><foreignObject style="overflow: visible; text-align: left;" pointer-events="none" width="100%" height="100%" requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"><div xmlns="http://www.w3.org/1999/xhtml" style="display: flex; align-items: unsafe center; justify-content: unsafe center; width: 130px; height: 1px; padding-top: 503px; margin-left: 385px;"><div style="box-sizing: border-box; font-size: 0; text-align: center; "><div style="display: inline-block; font-size: 12px; font-family: Helvetica; color: #46495D; line-height: 1.2; pointer-events: all; white-space: normal; word-wrap: normal; ">Clear old<br />systemd-boot files</div></div></div></foreignObject><text x="450" y="507" fill="#46495D" font-family="Helvetica" font-size="12px" text-anchor="middle">Clear old...</text></switch></g></g><switch><g requiredFeatures="http://www.w3.org/TR/SVG11/feature#Extensibility"/><a transform="translate(0,-5)" xlink:href="https://www.diagrams.net/doc/faq/svg-export-text-problems" target="_blank"><text text-anchor="middle" font-size="10px" x="50%" y="100%">Viewer does not support full SVG 1.1</text></a></switch></svg> \ No newline at end of file
diff --git a/docs/flowcharts/DiskSelectionProcess.drawio b/docs/flowcharts/DiskSelectionProcess.drawio
deleted file mode 100644
index 7c8a1fcb..00000000
--- a/docs/flowcharts/DiskSelectionProcess.drawio
+++ /dev/null
@@ -1 +0,0 @@
-<mxfile host="Electron" modified="2021-05-02T19:57:46.193Z" agent="5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) draw.io/14.5.1 Chrome/89.0.4389.82 Electron/12.0.1 Safari/537.36" etag="WWkzNgJUxTiFme1f07FW" version="14.5.1" type="device"><diagram id="C5RBs43oDa-KdzZeNtuy" name="Page-1">7VvZdqM4EP2anHlKDpsxPMZ20sl0kl7S05meNwVkYCIjt5C3+fqRjFgFNnbwksQv3a5CCKG6dWsROdP7o/knAsb+PXYhOtMUd36mD840TVUsi/3HNYtYY5tC4ZHAFYMyxWPwH0zuFNpJ4MKoMJBijGgwLiodHIbQoQUdIATPisOGGBWfOgYelBSPDkCy9ilwqR9rLa2b6W9g4PnJk1XTjq+MQDJYvEnkAxfPcir96kzvE4xp/Gs070PENy/Zl6fbxRO6ezE//fkt+g3+6n3+8fDzPJ7sepNb0lcgMKRbT/3y2bLtaXf4oFrf7ga/rYfB/dW5IV6NLpL9gi7bPiFiQn3s4RCgq0zbI3gSupDPqjIpG3OH8Vgo/4WULgQWwIRipvLpCImr7C3I4m8mKBedRPzFxUQYzAvSQkhDHNI+RpgsV6obpmF3BkwfUYJfYO5K17IuL3V+R4BQTt/T+vZlbzmve80upetxLznSmOggEEWBs5wUECoGKYmcDAtxyHcieoHU8cWAeCf59pWAt8ZqYlyEJ8SBK8bpwnkA8eCq+cwUmsynIR5BtoXsPgIRoMG0uDggnMtLx2UAYj8EhjaAqljkFKCJeNIjRNytNaWHsPMygNPAYXRQRt3MDyh8HIPlDswYExURwy0v4KSyl+t53EypYbj1E9/mo1NHVSS01gFiBYRqQLeZdaeQUDjP7b1soOSqKehG8K0lxFlGXmrCSH6OuAzl9SatpAhNMukDPrFGBUHskwzMhmSgKtVga50NKqEjs8GvCt8/IHbUA2HnbUScCpBp3mx4N50TtftTuRl3H7/9Y4fnmrGS0c6Vi65qCCw0Bp6Y7isOQpobgofDiC2mjMz0qduHLlMC69VoTPl7xCEswKEEXeLj0fOELa23JoAVQhJH1TUYBYjD7AaiKaSBAyrCHECBF3KMMHtCUh3r2COD0GOSmUk/lm7Bkru3H/7UbsP4Z7UQ/6rRXcNiCp9WU7YKhs6ETJdGkTOUgodvQXWbU1OdieE8oDnOZFJKmex3xphcSAhz2yBd4LpqSizxpiDEjFeVjVGZJ8Bq02sNw2y3koprQa5cqIZmv44QxVRGp+QvZskP4rWLu/Ll4f6YtSsza+iQxZg//Tsvn0/VQB1SOnrJvPahywHlSMqBd5nWJ02ztSlXZ13G9XqCaZUXKqGkSlA6VHmwx0j3YXBbPbCG7vbTnVJl8rqf8FY0g5Gm9AZ/yOg7Zfi7zvC1piFtdxm+Kpn9naTwbbt5coCzLjxZDfPhPbm9HGjSrjSb8HmZgvbTig6ELvsXj3nFD/jkI2ZdeupZN3dpQ99jlloJQLul1KJd723dS+tzw2N20srVqHKVuFVh8arucCGRy/K62qbFG7G0ah6VqTuSpftsv0AQ8q7aV5bGBpx6T7nY7olb7xxbLqbKzL1/GtjskOjgNGC1TQO5gxvdFj3Qo2gjVKfvbQX7nab0FWd5pYq98lCwXOQfvjJ4FQS140o6LAk5X5CbrwoUH/Cg5LBdhKHcqP64EQkQR6xU0/cYoAz14AHKOkWjlVSgNv02pemh2WaRh1EoWOQGjHkcinYRd1T5i4G0rRAfaynXtwhGi4jCkQSaU/eg7oxLb+rjO+seaHKFcmzpRFt5gAsiP11Wy0yQ7FrDD4iOJitI1p0/JuAtwNXV6RqHLgGgnA9sdiQkM0Cd3fO8sS8H3ucnqyvxlDPgbcjS7eWd/DMunuCNKvK57W0o2crSnnXTbGIrtwMt1yjZquCXzA70C0/tKN9hY5e21I0js6Xe1inxqbrbnsiblncJERwLkcv13VMwhrH/96q+PPq4Bd3OCKVUwXWMTjNG2VkFpx9dMve+2aN9Uqj+FNJUS3WEYRenqPkUsq16MHnP/LkGgoDwnIN3lUzEdrP3zGTT47/iwtA9F50mZqWKuHYipNazVaMBIRntEBITs78PjXGW/ZWtfvU/</diagram></mxfile> \ No newline at end of file
diff --git a/docs/help/discord.rst b/docs/help/discord.rst
deleted file mode 100644
index f0c7c279..00000000
--- a/docs/help/discord.rst
+++ /dev/null
@@ -1,14 +0,0 @@
-.. _help.discord:
-
-Discord
-=======
-
-There's a discord channel which is frequented by some `contributors <https://github.com/archlinux/archinstall/graphs/contributors>`_.
-
-| To join the server, head over to `https://discord.gg/cqXU88y <https://discord.gg/cqXU88y>`_ and join in.
-| There's not many rules other than common sense and to treat others with respect. The general chat is for off-topic things as well.
-
-There's the ``@Party Animals`` role if you want notifications of new releases which is posted in the ``#Release Party`` channel.
-Another thing is the ``@Contributors`` role can be activated by contributors by writing ``!verify`` and follow the verification process.
-
-Hop in, we hope to see you there! : )
diff --git a/docs/help/known_issues.rst b/docs/help/known_issues.rst
deleted file mode 100644
index 2f1f62cb..00000000
--- a/docs/help/known_issues.rst
+++ /dev/null
@@ -1,103 +0,0 @@
-.. _help.known_issues:
-
-Known Issues
-============
-
-| Some issues are out of the `archinstall`_ projects scope, and the ones we know of are listed below.
-
-.. _waiting for time sync:
-
-Waiting for time sync `#2144`_
-------------------------------
-
-| The usual root cause of this is the network topology.
-| More specifically `timedatectl show`_ cannot perform a proper time sync against the default servers.
-
-| A *"fix"* for this is mentioned in the issue above.
-| That is to configure ``/etc/systemd/timesyncd.conf`` and restart ``systemd-timesyncd.service``.
-
-.. note::
-
- A proposal to override the time sync check has been put up for discussion in `#2144`_.
-
-Missing Nvidia Proprietary Driver `#2002`_
-------------------------------------------
-
-| In some instances, the nvidia driver might not have all the nessecary packages installed.
-| This is due to the kernel selection and/or hardware setups requiring additional packages to work properly.
-
-A common workaround is to install the package `linux-headers`_ and `nvidia-dkms`_
-
-ARM, 32bit and other CPU types error out `#1686`_, `#2185`_
------------------------------------------------------------
-
-| This is a bit of a catch-all known issue.
-| Officially `x86_64`_ is only supported by Arch Linux.
-| Hence little effort have been put into supporting other platforms.
-
-| In theory, other architectures should work but small quirks might arise.
-
-| PR's are welcome but please be respectful of the delays in merging.
-| Other fixes, issues or features will be prioritized for the above reasons.
-
-Keyring is out of date `#2213`_
--------------------------------
-
-| Missing key-issues tend to be that the `archlinux-keyring`_ package is out of date, usually as a result of an outdated ISO.
-| There is an attempt from upstream to fix this issue, and it's the `archlinux-keyring-wkd-sync.service`_
-
-| The service starts almost immediately during boot, and if network is not configured in time — the service will fail.
-| Subsequently the ``archinstall`` run might operate on a old keyring despite there being an update service for this.
-
-| There is really no way to reliably over time work around this issue in ``archinstall``.
-| Instead, efforts to the upstream service should be considered the way forward. And/or keys not expiring betwene a sane ammount of ISO's.
-
-.. note::
-
- The issue can happen on new ISO's too even as little as a few days after release, as some keys might expire right after the keyring is *"burnt in"* to the ISO.
-
-.. note::
-
- Another common issue relating to the network not being configured, is that time might not be set correctly - resulting in the keyring not being able to update. See :ref:`waiting for time sync`.
-
-AUR packages
-------------
-
-| This is also a catch-all issue.
-| `AUR is unsupported <https://wiki.archlinux.org/title/Arch_User_Repository#Updating_packages>`_, and until that changes we cannot use AUR packages to solve feature requests in ``archinstall``.
-
-| This means that feature requests like supporting filesystems such as `ZFS`_ can not be added, and issues cannot be solved by using AUR packages either.
-
-.. note::
-
- But in spirit of giving the community options, ``archinstall`` supports :ref:`archinstall.Plugins`, which means you can run ``archinstall --plugin <url>`` and source an AUR plugin.
-
- `torxed/archinstall-aur <https://github.com/torxed/archinstall-aur>`_ is a reference implementation for plugins:
-
- .. code-block:: console
-
- # archinstall --plugin https://archlinux.life/aur-plugin
-
- `phisch/archinstall-aur <https://github.com/phisch/archinstall-aur>`_ is another alternative:
-
- .. code-block:: console
-
- # archinstall --plugin https://raw.githubusercontent.com/phisch/archinstall-aur/master/archinstall-aur.py
-
- .. warning::
-
- This will allow for unsupported usage of AUR during installation.
-
-.. _#2213: https://github.com/archlinux/archinstall/issues/2213
-.. _#2185: https://github.com/archlinux/archinstall/issues/2185
-.. _#2144: https://github.com/archlinux/archinstall/issues/2144
-.. _#2002: https://github.com/archlinux/archinstall/issues/2002
-.. _#1686: https://github.com/archlinux/archinstall/issues/1686
-.. _linux-headers: https://archlinux.org/packages/core/x86_64/linux-headers/
-.. _nvidia-dkms: https://archlinux.org/packages/extra/x86_64/nvidia-dkms/
-.. _x86_64: https://wiki.archlinux.org/title/Frequently_asked_questions#What_architectures_does_Arch_support?
-.. _archlinux-keyring: https://archlinux.org/packages/core/any/archlinux-keyring/
-.. _archlinux-keyring-wkd-sync.service: https://gitlab.archlinux.org/archlinux/archlinux-keyring/-/blob/7e672dad10652a80d1cc575d75cdb46442cd7f96/wkd_sync/archlinux-keyring-wkd-sync.service.in
-.. _ZFS: https://aur.archlinux.org/packages/zfs-linux
-.. _archinstall: https://github.com/archlinux/archinstall/
-.. _timedatectl show: https://github.com/archlinux/archinstall/blob/e6344f93f7e476d05bbcd642f2ed91fdde545870/archinstall/lib/installer.py#L136 \ No newline at end of file
diff --git a/docs/help/report_bug.rst b/docs/help/report_bug.rst
deleted file mode 100644
index bd0ac50a..00000000
--- a/docs/help/report_bug.rst
+++ /dev/null
@@ -1,33 +0,0 @@
-.. _help.issues:
-
-Report Issues & Bugs
-====================
-
-Issues and bugs should be reported over at `https://github.com/archlinux/archinstall/issues <https://github.com/Torxed/archinstall/issues>`_.
-
-General questions, enhancements and security issues can be reported over there too.
-For quick issues or if you need help, head over to the Discord server which has a help channel.
-
-Log files
----------
-
-| When submitting a help ticket, please include the :code:`/var/log/archinstall/install.log`.
-| It can be found both on the live ISO but also in the installed filesystem if the base packages were strapped in.
-
-.. tip::
- | An easy way to submit logs is ``curl -F'file=@/var/log/archinstall/install.log' https://0x0.st``.
- | Use caution when submitting other log files, but ``archinstall`` pledges to keep ``install.log`` safe for posting publicly!
-
-| There are additional log files under ``/var/log/archinstall/`` that can be useful:
-
- - ``/var/log/archinstall/user_configuration.json`` - Stores most of the guided answers in the installer
- - ``/var/log/archinstall/user_credentials.json`` - Stores any usernames or passwords, can be passed to ``--creds``
- - ``/var/log/archinstall/user_disk_layouts.json`` - Stores the chosen disks and their layouts
- - ``/var/log/archinstall/install.log`` - A log file over what steps were taken by archinstall
- - ``/var/log/archinstall/cmd_history.txt`` - A complete command history, command by command in order
- - ``/var/log/archinstall/cmd_output.txt`` - A raw output from all the commands that were executed by archinstall
-
-.. warning::
-
- We only try to guarantee that ``/var/log/archinstall/install.log`` is free from sensitive information.
- Any other log file should be pasted with **utmost care**!
diff --git a/docs/installing/guided.rst b/docs/installing/guided.rst
deleted file mode 100644
index dcedfc10..00000000
--- a/docs/installing/guided.rst
+++ /dev/null
@@ -1,287 +0,0 @@
-.. _guided:
-
-Guided installation
-===================
-
-Archinstall ships with a pre-programmed `Guided Installer`_ guiding you through the mandatory steps as well as some optional configurations that can be done.
-
-.. note::
-
- Other pre-programmed scripts can be invoked by executing :code:`archinstall <script>` *(without .py)*. To see a complete list of scripts, run :code:`archinstall --script list` or check the source code `scripts`_ directory.
-
-.. note::
-
- It's recommended to run ``archinstall`` from the official Arch Linux ISO.
-
-
-.. warning::
- The installer will not configure WiFi before the installation begins. You need to read up on `Arch Linux networking <https://wiki.archlinux.org/index.php/Network_configuration>`_ before you continue.
-
-Running the guided installation
--------------------------------
-
-To start the installer, run the following in the latest Arch Linux ISO:
-
-.. code-block:: sh
-
- archinstall
-
-Since the `Guided Installer`_ is the default script, this is the equvilant of running :code:`archinstall guided`
-
-
-The guided installation also supports installing with pre-configured answers to all the guided steps. This can be a quick and convenient way to re-run one or several installations.
-
-There are two configuration files, both are optional.
-
-``--config``
-------------
-
-This parameter takes a local or remote :code:`.json` file as argument and contains the overall configuration and menu answers for the guided installer.
-
-.. note::
-
- You can always get the latest options for this file with ``archinstall --dry-run``, this executes the guided installer in a safe mode where no permanent actions will be taken on your system but simulate a run and save the configuration to disk.
-
-Example usage
-^^^^^^^^^^^^^
-
-.. code-block:: sh
-
- archinstall --config https://domain.lan/config.json
-
-The contents of :code:`https://domain.lan/config.json`:
-
-.. code-block:: json
-
- {
- "__separator__": null,
- "additional-repositories": [],
- "archinstall-language": "English",
- "audio_config": null,
- "bootloader": "Systemd-boot",
- "config_version": "2.6.0",
- "debug": false,
- "disk_config": {
- "config_type": "manual_partitioning",
- "device_modifications": [
- {
- "device": "/dev/sda",
- "partitions": [
- {
- "btrfs": [],
- "flags": [
- "Boot"
- ],
- "fs_type": "fat32",
- "length": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 99982592
- },
- "mount_options": [],
- "mountpoint": "/boot",
- "obj_id": "369f31a8-2781-4d6b-96e7-75680552b7c9",
- "start": {
- "sector_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 512
- },
- "total_size": null,
- "unit": "sectors",
- "value": 34
- },
- "status": "create",
- "type": "primary"
- },
- {
- "btrfs": [],
- "flags": [],
- "fs_type": "fat32",
- "length": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 100000000
- },
- "mount_options": [],
- "mountpoint": "/efi",
- "obj_id": "13cf2c96-8b0f-4ade-abaa-c530be589aad",
- "start": {
- "sector_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 512
- },
- "total_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 16106127360
- },
- "unit": "MB",
- "value": 100
- },
- "status": "create",
- "type": "primary"
- },
- {
- "btrfs": [],
- "flags": [],
- "fs_type": "ext4",
- "length": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 15805127360
- },
- "mount_options": [],
- "mountpoint": "/",
- "obj_id": "3e75d045-21a4-429d-897e-8ec19a006e8b",
- "start": {
- "sector_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 512
- },
- "total_size": {
- "sector_size": null,
- "total_size": null,
- "unit": "B",
- "value": 16106127360
- },
- "unit": "MB",
- "value": 301
- },
- "status": "create",
- "type": "primary"
- }
- ],
- "wipe": false
- }
- ]
- },
- "disk_encryption": {
- "encryption_type": "luks",
- "partitions": [
- "3e75d045-21a4-429d-897e-8ec19a006e8b"
- ]
- },
- "hostname": "archlinux",
- "kernels": [
- "linux"
- ],
- "locale_config": {
- "kb_layout": "us",
- "sys_enc": "UTF-8",
- "sys_lang": "en_US"
- },
- "mirror_config": {
- "custom_mirrors": [],
- "mirror_regions": {
- "Sweden": [
- "https://mirror.osbeck.com/archlinux/$repo/os/$arch",
- "https://mirror.bahnhof.net/pub/archlinux/$repo/os/$arch",
- "https://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch",
- "https://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch",
- "https://ftp.ludd.ltu.se/mirrors/archlinux/$repo/os/$arch",
- "https://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch",
- "http://mirror.bahnhof.net/pub/archlinux/$repo/os/$arch",
- "http://ftpmirror.infania.net/mirror/archlinux/$repo/os/$arch",
- "http://ftp.myrveln.se/pub/linux/archlinux/$repo/os/$arch",
- "http://ftp.lysator.liu.se/pub/archlinux/$repo/os/$arch",
- "http://ftp.acc.umu.se/mirror/archlinux/$repo/os/$arch"
- ]
- }
- },
- "network_config": {},
- "no_pkg_lookups": false,
- "ntp": true,
- "offline": false,
- "packages": [],
- "parallel downloads": 0,
- "profile_config": null,
- "save_config": null,
- "script": "guided",
- "silent": false,
- "swap": true,
- "timezone": "UTC",
- "version": "2.6.0"
- }
-
-``--config`` options
-^^^^^^^^^^^^^^^^^^^^
-
-.. warning::
-
- All key and value entries must conform to the JSON standard. Below is human readable examples with links, effectively breaking the syntax. Adapt the descriptions below to suit your needs and the JSON format.
-
-.. note::
-
- Scroll to the right in the table to see required options.
-
-.. csv-table:: JSON options
- :file: ../cli_parameters/config/config_options.csv
- :widths: 15, 40, 40, 5
- :escape: !
- :header-rows: 1
-
-.. I'd like to keep this note, as this is the intended behavior of archinstall.
-.. note::
-
- If no entries are found in ``disk_config``, archinstall guided installation will use whatever is mounted currently under ``/mnt/archinstall`` without performing any disk operations.
-
-Options for ``--creds``
------------------------
-
-| Creds is a separate configuration file to separate normal options from more sensitive data like passwords.
-| Below is an example of how to set the root password and below that are description of other values that can be set.
-
-.. code-block:: json
-
- {
- "!root-password" : "SecretSanta2022"
- }
-
-.. list-table:: --creds options
- :widths: 25 25 40 10
- :header-rows: 1
-
- * - Key
- - Values
- - Description
- - Required
- * - !encryption-password
- - ``str``
- - Password to encrypt disk, not encrypted if password not provided
- - No
- * - !root-password
- - ``str``
- - The root account password
- - No
- * - !users
- - .. code-block:: json
-
- {
- "username": "<USERNAME>",
- "!password": "<PASSWORD>",
- "sudo": false
- }
- - List of regular user credentials, see configuration for reference
- - Maybe
-
-
-.. note::
-
- ``!users`` is optional only if ``!root-password`` was set. ``!users`` will be enforced otherwise and the minimum amount of users with sudo privileges required will be set to 1.
-
-.. note::
-
- The key's start with ``!`` because internal log functions will mask any keys starting with explamation from logs and unrestricted configurations.
-
-.. _scripts: https://github.com/archlinux/archinstall/tree/master/archinstall/scripts
-.. _Guided Installer: https://github.com/archlinux/archinstall/blob/master/archinstall/scripts/guided.py \ No newline at end of file
diff --git a/docs/installing/python.rst b/docs/installing/python.rst
deleted file mode 100644
index edd55138..00000000
--- a/docs/installing/python.rst
+++ /dev/null
@@ -1,59 +0,0 @@
-.. _installing.python:
-
-Python library
-==============
-
-Archinstall ships on `PyPi <https://pypi.org/>`_ as `archinstall <pypi.org/project/archinstall/>`_.
-But the library can be installed manually as well.
-
-.. warning::
- These steps are not required if you want to use archinstall on the official Arch Linux ISO.
-
-Installing with pacman
-----------------------
-
-Archinstall is on the `official repositories <https://wiki.archlinux.org/index.php/Official_repositories>`_.
-And it will also install archinstall as a python library.
-
-To install both the library and the archinstall script:
-
-.. code-block:: console
-
- pacman -S archinstall
-
-Alternatively, you can install only the library and not the helper executable using the ``python-archinstall`` package.
-
-Installing with PyPi
---------------------
-
-The basic concept of PyPi applies using `pip`.
-
-.. code-block:: console
-
- pip install archinstall
-
-.. _installing.python.manual:
-
-Install using source code
--------------------------
-
-| You can also install using the source code.
-| For sake of simplicity we will use ``git clone`` in this example.
-
-.. code-block:: console
-
- git clone https://github.com/archlinux/archinstall
-
-You can either move the folder into your project and simply do
-
-.. code-block:: python
-
- import archinstall
-
-Or you can PyPa's `build <https://github.com/pypa/build>`_ and `installer <https://github.com/pypa/installer>`_ to install it into pythons module path.
-
-.. code-block:: console
-
- $ cd archinstall
- $ python -m build .
- $ python -m installer dist/*.whl \ No newline at end of file