aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2019-11-28 18:04:56 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2019-11-28 18:04:56 +0100
commitcf49c515b1b7662697883b8dbcf398d780f5715a (patch)
treec34be4f90c2aea37a5a0f16a47ae7ff7feb1fb07
parentTable test (diff)
downloadarch-installer-cf49c515b1b7662697883b8dbcf398d780f5715a.tar.gz
arch-installer-cf49c515b1b7662697883b8dbcf398d780f5715a.tar.bz2
arch-installer-cf49c515b1b7662697883b8dbcf398d780f5715a.tar.xz
arch-installer-cf49c515b1b7662697883b8dbcf398d780f5715a.tar.zst
arch-installer-cf49c515b1b7662697883b8dbcf398d780f5715a.zip
Added partition tables
-rw-r--r--README.org13
1 files changed, 12 insertions, 1 deletions
diff --git a/README.org b/README.org
index 01a5692..b675568 100644
--- a/README.org
+++ b/README.org
@@ -47,7 +47,8 @@ chmod +x arch-installer.sh
Here's the partition scheme by the installer
*** UEFI mode
-In UEFI boot mode, a GPT partition table is being used is this way:
+In UEFI boot mode, a *GPT* partition table is being used is this way:
+
| partition | mountpoint | filesystem | size |
|-----------+------------+------------+--------------|
| /dev/sdx1 | /boot/efi | FAT 32 | 128M |
@@ -55,6 +56,16 @@ In UEFI boot mode, a GPT partition table is being used is this way:
| /dev/sdx3 | / | ext4 | user defined |
| /dev/sdx4 | /home | ext4 | what remains |
+*** BIOS Legacy mode
+In UEFI boot mode, a *DOS* partition table is being used is this way:
+
+| partition | mountpoint | filesystem | size |
+|-----------+------------+------------+--------------|
+| /dev/sdx1 | /boot | ext2 | 128M |
+| /dev/sdx2 | - | swap | user defined |
+| /dev/sdx3 | / | ext4 | user defined |
+| /dev/sdx4 | /home | ext4 | what remains |
+
** Disclaimers
While there is some basic error managements, *do not* try to break the script by inputting deliberately harmful stuff when prompted. As an *Arch Linux* installation can be complex and sensitive, it will most certainly work. This is meant to ease your life, it is not a skill test.