diff options
Diffstat (limited to 'www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html')
| -rw-r--r-- | www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html b/www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html index d0ee2b3..2139e52 100644 --- a/www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html +++ b/www/posts/arch/2020-05-25/installing-arch-linux-on-a-thinkpad-x220/index.html @@ -18,7 +18,7 @@ <link href="/posts/php/atom.xml" type="application/atom+xml" rel="alternate" title="The Home of David T. Sadler - All Posts About PHP"/> </head> <body> - <section><h1>Installing Arch Linux on a Thinkpad X220</h1><blockquote>Mon 25th May 2020 By David T. Sadler.</blockquote><h2>Introduction</h2><p>So I purchased a used Thinkpad X220 for about £90 on eBay and decided to install Arch Linux onto it. This guide is the steps that I took to achieve this.</p><p>Now when it comes to Linux there is always more than one way of doing things and this guide is just my preferred way. Feel free to follow it for your own installation, just keep in mind that you may have to change some of the steps to suit your own circumstances. Also there is every chance that the information presented here will be out of date so I recommend that you at least read the through the official installation guide for the most up-to-date information.</p><h2>Download the Arch Linux ISO Image</h2><p>The Arch Linux download page provides direct download and torrent links. You should also download the PGP signature to the same location and use the gpg command to verify that the ISO has not been compromised.</p><pre><code class="shell">$ gpg --keyserver-options auto-key-retrieve --verify archlinux-2020.05.01-x86_64.iso.sig</code></pre><h2>Create a Live USB of Arch Linux</h2><p>Flash the image to a USB drive using Etcher. Alternatively you can use the dd command. Just ensure that /path/to/archlinux.iso is to where you have downloaded the image and that /dev/sdx is your USB drive.</p><pre><code class="shell">dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync</code></pre><h2>Boot the Live Environment</h2><p>I wanted to make sure that the Thinkpad was using UEFI as I would be using EFISTUB to load the Linux kernel as an EFI executable. This is done through the BIOS which can be gotten to by pressing the ThinkVantage button as the machine is booting before pressing F1 to get to the BIOS settings. From there navigate to Startup and changed the UEFI/Legacy Boot option to be UEFI Only. Press F10 to save and exit the BIOS and then power down the machine.</p><p>With the USB drive plugged in power the machine back on, all the while pressing F12 until the boot menu appears and select USB HDD: Mass Storage Device and wait for the installation image to boot. When prompted select Arch Linux archiso X86_64 UEFI CD where you will be take to the live environment's terminal. </p><h2>Set the Keyboard Layout</h2><p>The default console map is US which meant that for me pressing Shift+3 was displaying the hash symbol (#) instead of the pound symbol (£). So the UK keyboard layout needed to be loaded.</p><pre><code class="shell">$ loadkeys uk</code></pre><p>You can get a list of supported keyboard layouts if you need to load a different one.</p><pre><code class="shell">ls /usr/share/kbd/keymaps/**/*.map.gz</code></pre><h2>Verify the Boot Mode</h2><p>To verify that the Thinkpad has UEFI enabled check that the efivars directory exists.</p><pre><code class="shell">$ ls /sys/firmware/efi/efivars</code></pre><h2>Connect to the Internet</h2><p>Verify that the machine can connect to the internet with the ping command.</p><pre><code class="shell">$ ping -c3 davidtsadler.com</code></pre><p>Before booting the machine I plugged in an Ethernet cable that was connected directly to my home network's router. The installation environment detected the network connection and obtained an IP address via DHCP. </p><h2>Update the System Clock</h2><p>Ensure the system clock is correct.</p><pre><code class="shell">$ timedatectl set-ntp true</code></pre><h2>Partition the Disks</h2><p>Use the lsblk command to determine which disks and partitions exist on the system.</p><pre><code class="shell">$ lsblk + <section><h1>Installing Arch Linux on a Thinkpad X220</h1><blockquote>Mon 25th May 2020 By David T. Sadler.</blockquote><h2>Introduction</h2><p>So I purchased a used Thinkpad X220 for about £90 on eBay and decided to install Arch Linux onto it. This guide is the steps that I took to achieve this.</p><p>Now when it comes to Linux there is always more than one way of doing things and this guide is just my preferred way. Feel free to follow it for your own installation, just keep in mind that you may have to change some of the steps to suit your own circumstances. Also there is every chance that the information presented here will be out of date so I recommend that you at least read the through the official installation guide for the most up-to-date information.</p><h2>Download the Arch Linux ISO Image</h2><p>The Arch Linux download page provides direct download and torrent links. You should also download the PGP signature to the same location and use the gpg command to verify that the ISO has not been compromised.</p><pre><code class="shell">$ gpg --keyserver-options auto-key-retrieve --verify archlinux-2020.05.01-x86_64.iso.sig</code></pre><h2>Create a Live USB of Arch Linux</h2><p>Flash the image to a USB drive using Etcher. Alternatively you can use the dd command. Just ensure that /path/to/archlinux.iso is to where you have downloaded the image and that /dev/sdx is your USB drive.</p><pre><code class="shell">dd bs=4M if=/path/to/archlinux.iso of=/dev/sdx status=progress && sync</code></pre><h2>Boot the Live Environment</h2><p>I wanted to make sure that the Thinkpad was using UEFI as I would be using EFISTUB to load the Linux kernel as an EFI executable. This is done through the BIOS which can be gotten to by pressing the ThinkVantage button as the machine is booting before pressing F1 to get to the BIOS settings. From there navigate to Startup and changed the UEFI/Legacy Boot option to be UEFI Only. Press F10 to save and exit the BIOS and then power down the machine.</p><p>With the USB drive plugged in power the machine back on, all the while pressing F12 until the boot menu appears and select USB HDD: Mass Storage Device and wait for the installation image to boot. When prompted select Arch Linux archiso X86_64 UEFI CD where you will be take to the live environment's terminal. </p><h2>Set the Keyboard Layout</h2><p>The default console map is US which meant that for me pressing Shift+3 was displaying the hash symbol (#) instead of the pound symbol (£). So the UK keyboard layout needed to be loaded.</p><pre><code class="shell">$ loadkeys uk</code></pre><p>You can get a list of supported keyboard layouts if you need to load a different one.</p><pre><code class="shell">ls /usr/share/kbd/keymaps/**/*.map.gz</code></pre><h2>Verify the Boot Mode</h2><p>To verify that the Thinkpad has UEFI enabled check that the efivars directory exists.</p><pre><code class="shell">$ ls /sys/firmware/efi/efivars</code></pre><h2>Connect to the Internet</h2><p>Verify that the machine can connect to the internet with the ping command.</p><pre><code class="shell">$ ping -c3 davidtsadler.com</code></pre><p>Before booting the machine I plugged in an Ethernet cable that was connected directly to my home network's router. The installation environment detected the network connection and obtained an IP address via DHCP. </p><h2>Update the System Clock</h2><p>Ensure the system clock is correct.</p><pre><code class="shell">$ timedatectl set-ntp true</code></pre><h2>Partition the Disks</h2><p>Use the lsblk command to determine which disks and partitions exist on the system.</p><pre><code class="shell">$ lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT loop0 7:0 0 535M 1 loop /run/archiso/sfs/airootfs @@ -43,15 +43,15 @@ Partition number (1-128, default 1): 1 First sector (2048-625142414, default 2048): Last sector, +/-sectors or +/-size{K,M,G,T,P} (2048-625142414, default 625142414): +512M -Created a new partition 1 of type 'Linux filesystem' and of size 512 MiB.</code></pre><p>Enter t to change the partition type and enter 1 to make it an EFI System. You can also get a list of partition types by pressing L.</p><pre><code class="shell">Command (m for help): t +Created a new partition 1 of type 'Linux filesystem' and of size 512 MiB.</code></pre><p>Enter t to change the partition type and enter 1 to make it an EFI System. You can also get a list of partition types by pressing L.</p><pre><code class="shell">Command (m for help): t Selected partition 1 Partition type (type L to list all types): 1 -Changed type of partition 'Linux filesystem' to 'EFI System'.</code></pre><p>To create the second partition enter n again to add another partition, and then enter 2 to assign it as the second partition. Use the default values for both first and last sectors to allocate the remainder of the drive.</p><pre><code class="shell">Command (m for help): n +Changed type of partition 'Linux filesystem' to 'EFI System'.</code></pre><p>To create the second partition enter n again to add another partition, and then enter 2 to assign it as the second partition. Use the default values for both first and last sectors to allocate the remainder of the drive.</p><pre><code class="shell">Command (m for help): n Partition number (2-128, default 2): 2 First sector (1050624-625142414, default 1050624): Last sector, +/-sectors or +/-size{K,M,G,T,P} (1050624-625142414, default 625142414): -Created a new partition 2 of type 'Linux filesystem' and of size 297.6 GiB.</code></pre><p>Enter w to write the changes and quit.</p><pre><code class="shell">Command (m for help): w +Created a new partition 2 of type 'Linux filesystem' and of size 297.6 GiB.</code></pre><p>Enter w to write the changes and quit.</p><pre><code class="shell">Command (m for help): w The partition table has been altered. Calling ioctl() to re-read partition table. Syncing disks.</code></pre><p>Use lsblk to confirm that two partitions have been created.</p><pre><code class="shell">$ lsblk /dev/sda @@ -63,7 +63,7 @@ sda 8:0 0 298.1G 0 disk ======== This will overwrite data on /dev/sda2 irrevocably. -Are you sure? (Type 'yes' in capital letters): YES</code></pre><p>Enter and verify a passphrase. Whenever the machine is now booted you will be prompted to enter this passphrase in order for the partition to be decrypted.</p><pre><code class="shell">Enter passphrase for /dev/sda2: +Are you sure? (Type 'yes' in capital letters): YES</code></pre><p>Enter and verify a passphrase. Whenever the machine is now booted you will be prompted to enter this passphrase in order for the partition to be decrypted.</p><pre><code class="shell">Enter passphrase for /dev/sda2: Verify passphrase: cryptsetup luksFormat /dev/sda2 17.01s user 1.05s system 105% cpu 17.106 total</code></pre><h2>LVM on LUKS</h2><p>Before setting up LVM decrypt the partition.</p><pre><code class="shell">$ cryptsetup open /dev/sda2 cryptlvm</code></pre><p>You will be prompted to enter the passphrase that you set up earlier.</p><pre><code class="shell">Enter passphrase for /dev/sda2: cryptsetup open /dev/sda2 cryptlvm 6.48s user 0.36s system 92% cpu 7.436 total</code></pre><p>Create a physical volume.</p><pre><code class="shell">$ pvcreate /dev/mapper/cryptlvm</code></pre><p>Create a volume group called vg0.</p><pre><code class="shell">$ vgcreate vg0 /dev/mapper/cryptlvm</code></pre><p>Create three logical volumes for the root, swap and home partitions.</p><pre><code class="shell">$ lvcreate -L 50G vg0 -n root @@ -81,7 +81,7 @@ sda 8:0 0 298.1G 0 disk $ mkfs.ext4 /dev/vg0/home</code></pre><p>Initialise the swap partition.</p><pre><code class="shell">$ mkswap /dev/vg0/swap $ swapon /dev/vg0/swap</code></pre><h2>Mount the File Systems</h2><p>Mount the root partition into /mnt.</p><pre><code class="shell">$ mount /dev/vg0/root /mnt</code></pre><p>Mount the boot partition into /mnt/boot. </p><pre><code class="shell">$ mkdir /mnt/boot $ mount /dev/sda1 /mnt/boot</code></pre><p>Finally mount the home partition into /mnt/home.</p><pre><code class="shell">$ mkdir /mnt/home -$ mount /dev/vg0/home /mnt/home</code></pre><h2>Select the Mirrors</h2><p>All mirror servers defined in /etc/pacman.d/mirrorlist where done at the time the installation image was built. Since it's ideal to try and use servers that are close to your location you can rebuild the list using the rankmirrors utility. This is not included by default on the live environment so you will need to download it.</p><p>First sync the pacman repository.</p><pre><code class="shell">pacman -Syy</code></pre><p>Then download the pacmain-contrib package which contains the rankmirrors utility.</p><pre><code class="shell">$ pacman -S pacman-contrib</code></pre><p>The official Pacman Mirrorlist Generator can be used to get an up-to-date list of servers for your country. The below command obtains a list of UK servers that support https and pass it to rankmirrors to obtain the 5 fastest.</p><pre><code class="shell">$ curl -s "https://www.archlinux.org/mirrorlist/?country=GB&protocol=https&use_mirror_status=on" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 5 - > /etc/pacman.d/mirrorlist</code></pre><h2>Install Essential Packages</h2><p>The pacstrap script is used to install the base package, Linux kernel and firmware.</p><pre><code class="shell">$ pacstrap /mnt base linux linux-firmware neovim wpa_supplicant dhcpcd cryptsetup lvm2 efibootmgr intel-ucode</code></pre><p>I also installed a few other packages that I knew I was going to need.</p><ul><li>neovim. Allows you to edit files instead of using nano.</li><li>wpa_supplicant. Provides tools for connecting to a WPA2 protected wireless network.</li><li>dhcpcd. Needed so that you machine can obtain an IP address from your home router via dhcp.</li><li>cryptsetup. Since the partition is encrypted this package is required in order for it to be decrypted during booting. </li><li>lvm2. Provides the LVM tools to manage the LVM partition.</li><li>efibootmgr. Needed to configure the system to boot via UEFI.</li><li>intel-ucode. Enables microcode updates during boot.</li></ul><h2>Fstab</h2><p>Create a fstab file on the new system.</p><pre><code class="shell">$ genfstab -U /mnt >> /mnt/etc/fstab</code></pre><h2>Chroot</h2><p>Use arch-chroot to enter the new system as the root user. From now on you will be configuring the new system.</p><pre><code class="shell">$ arch-chroot /mnt</code></pre><h2>Time Zone</h2><p>Setup the timezone. Replace Europe/London with your timezone.</p><pre><code class="shell">$ ln -sf /usr/share/zoneinfo/Europe/London /etc/localtime</code></pre><p>Update the hardware clock.</p><pre><code class="shell">$ hwclock --systohc</code></pre><h2>Localization</h2><p>Use nvim to edit /etc/locale.gen.</p><pre><code class="shell">$ nvim /etc/locale.gen</code></pre><p>Uncomment your preferred language. For me this meant en_GB.UTF-8 UTF-8. Save the file and exit before generating the locales.</p><pre><code class="shell">$ locale-gen</code></pre><p>Edit /etc/locale.conf.</p><pre><code class="shell">$ nvim /etc/locale.conf</code></pre><p>Add the below line. Replace en_GB.UTF-8 with the language that you chose earlier.</p><pre>LANG=en_GB.UTF-8</pre><p>If you used loadkeys earlier you will need to edit /etc/vconsole.conf and add your chosen keymap.</p><pre><code class="shell">$ nvim /etc/vconsole.conf</code></pre><p>For me this meant adding the UK keymap.</p><pre>KEYMAP=uk</pre><h2>Network Configuration</h2><p>Create the file /etc/hostname and add an entry to it. This hostname will be the name of the machine on your network. I tend to name by devices after characters from the book Howl's Moving Castle https://en.wikipedia.org/wiki/Howl%27s_Moving_Castle).</p><pre><code class="shell">$ echo suliman > /etc/hostname</code></pre><p>You then need to edit the /etc/hosts file.</p><pre><code class="shell">$ nvim /etc/hosts</code></pre><p>Add the following lines to this file. Replace suliman with the hostname you set up earlier.</p><pre><code class="shell">127.0.0.1 localhost +$ mount /dev/vg0/home /mnt/home</code></pre><h2>Select the Mirrors</h2><p>All mirror servers defined in /etc/pacman.d/mirrorlist where done at the time the installation image was built. Since it's ideal to try and use servers that are close to your location you can rebuild the list using the rankmirrors utility. This is not included by default on the live environment so you will need to download it.</p><p>First sync the pacman repository.</p><pre><code class="shell">pacman -Syy</code></pre><p>Then download the pacmain-contrib package which contains the rankmirrors utility.</p><pre><code class="shell">$ pacman -S pacman-contrib</code></pre><p>The official Pacman Mirrorlist Generator can be used to get an up-to-date list of servers for your country. The below command obtains a list of UK servers that support https and pass it to rankmirrors to obtain the 5 fastest.</p><pre><code class="shell">$ curl -s "https://www.archlinux.org/mirrorlist/?country=GB&protocol=https&use_mirror_status=on" | sed -e 's/^#Server/Server/' -e '/^#/d' | rankmirrors -n 5 - > /etc/pacman.d/mirrorlist</code></pre><h2>Install Essential Packages</h2><p>The pacstrap script is used to install the base package, Linux kernel and firmware.</p><pre><code class="shell">$ pacstrap /mnt base linux linux-firmware neovim wpa_supplicant dhcpcd cryptsetup lvm2 efibootmgr intel-ucode</code></pre><p>I also installed a few other packages that I knew I was going to need.</p><ul><li>neovim. Allows you to edit files instead of using nano.</li><li>wpa_supplicant. Provides tools for connecting to a WPA2 protected wireless network.</li><li>dhcpcd. Needed so that you machine can obtain an IP address from your home router via dhcp.</li><li>cryptsetup. Since the partition is encrypted this package is required in order for it to be decrypted during booting. </li><li>lvm2. Provides the LVM tools to manage the LVM partition.</li><li>efibootmgr. Needed to configure the system to boot via UEFI.</li><li>intel-ucode. Enables microcode updates during boot.</li></ul><h2>Fstab</h2><p>Create a fstab file on the new system.</p><pre><code class="shell">$ genfstab -U /mnt >> /mnt/etc/fstab</code></pre><h2>Chroot</h2><p>Use arch-chroot to enter the new system as the root user. From now on you will be configuring the new system.</p><pre><code class="shell">$ arch-chroot /mnt</code></pre><h2>Time Zone</h2><p>Setup the timezone. Replace Europe/London with your timezone.</p><pre><code class="shell">$ ln -sf /usr/share/zoneinfo/Europe/London /etc/localtime</code></pre><p>Update the hardware clock.</p><pre><code class="shell">$ hwclock --systohc</code></pre><h2>Localization</h2><p>Use nvim to edit /etc/locale.gen.</p><pre><code class="shell">$ nvim /etc/locale.gen</code></pre><p>Uncomment your preferred language. For me this meant en_GB.UTF-8 UTF-8. Save the file and exit before generating the locales.</p><pre><code class="shell">$ locale-gen</code></pre><p>Edit /etc/locale.conf.</p><pre><code class="shell">$ nvim /etc/locale.conf</code></pre><p>Add the below line. Replace en_GB.UTF-8 with the language that you chose earlier.</p><pre>LANG=en_GB.UTF-8</pre><p>If you used loadkeys earlier you will need to edit /etc/vconsole.conf and add your chosen keymap.</p><pre><code class="shell">$ nvim /etc/vconsole.conf</code></pre><p>For me this meant adding the UK keymap.</p><pre>KEYMAP=uk</pre><h2>Network Configuration</h2><p>Create the file /etc/hostname and add an entry to it. This hostname will be the name of the machine on your network. I tend to name by devices after characters from the book Howl's Moving Castle https://en.wikipedia.org/wiki/Howl%27s_Moving_Castle).</p><pre><code class="shell">$ echo suliman > /etc/hostname</code></pre><p>You then need to edit the /etc/hosts file.</p><pre><code class="shell">$ nvim /etc/hosts</code></pre><p>Add the following lines to this file. Replace suliman with the hostname you set up earlier.</p><pre><code class="shell">127.0.0.1 localhost ::1 localhost 127.0.0.1 suliman.localdomain suliman</code></pre><h2>Wireless</h2><p>Use the ip command to determine the name of the wireless network interface.</p><pre><code class="shell">$ip link @@ -98,7 +98,7 @@ Load module index Parsed configuration file /usr/lib/systemd/network/99-default.link Parsed configuration file /usr/lib/systemd/network/80-iwd.link Created link configuration context. -Using default interface naming scheme 'v245'. +Using default interface naming scheme 'v245'. ID_NET_NAMING_SCHEME=v245 ID_NET_NAME_MAC=wlx0811960210ac ID_OUI_FROM_DATABASE=Intel Corporate @@ -113,8 +113,8 @@ efibootmgr \ --disk /dev/sda --part 1 \ --create --label "Arch Linux" \ --loader /vmlinuz-linux \ - --unicode 'cryptdevice=PARTUUID='$PARTUUID':cryptlvm root=/dev/vg0/root rw initrd=\intel-ucode.img initrd=\initramfs-linux.img' \ - --verbose </pre><p>The --unicode argument is where the kernel parameters are specified. This tells the system that the partition identified by PARTUUID is encrypted and that the root filesystem to mount is the logical volume called root that is part of the volume group vg0. The microcode is also loaded with initrd=\intel-ucode.img.</p><p>Make this script executable.</p><pre><code class="shell">chmod u+x /usr/local/sbin/mkefibootentry</code></pre><p>Run the script to add to the motherboard boot entries.</p><pre><code class="shell">$ mkefibootentry</code></pre><h2>Root Password</h2><p>Create a secure password for the root user.</p><pre><code class="shell">$ passwd</code></pre><h2>Reboot</h2><p>Return to the Arch live installation environment.</p><pre><code class="shell">$ exit</code></pre><p>Unmount the partitions.</p><pre><code class="shell">$ umount -R /mnt</code></pre><p>Restart the machine with reboot. Remember to remove any installation media such as a USB drive.</p><pre><code class="shell">$ reboot</code></pre><p>Provided nothing has gone wrong your machine will boot into a fresh installation of Arch Linux. Don't forget that during the boot you will be prompted to enter the passphrase to decrypt the system partition. </p><p>Following this guide will leave you with a very minimal system where you can login as the root user. From this point how you configure the system is up to you as it will be very different to how I configure my own. If you interested in seeing how I do it then see my other posts on the subject. </p><h3>Links</h3><a href="https://www.archlinux.org/Installation_guide/">Offical Arch Installation Guide.</a><a href="https://www.archlinux.org/download/">Arch Linux Download Page.</a><a href="https://www.balena.io/etcher/">Etcher.</a><a href="https://www.archlinux.org/mirrorlist/">Pacman Mirrorlist Generator.</a><a href="https://en.wikipedia.org/wiki/Howl%27s_Moving_Castle/">Wikipedia Entry for Howl's Moving Castle.</a><a href="/posts/arch/">Arch - Read More Posts.</a><p>I don't have comments as I don't want to manage them. You can however contact me at the below address if you want to.</p><a href="mailto:david@davidtsadler.com">Email david@davidtsadler.com</a><h3>License</h3><a href="https://creativecommons.org/licenses/by-sa/4.0/">The contents of this site is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</a><p>Copyright © 2021 David T. Sadler.</p><a href="/">Return to Homepage.</a></section> + --unicode 'cryptdevice=PARTUUID='$PARTUUID':cryptlvm root=/dev/vg0/root rw initrd=\intel-ucode.img initrd=\initramfs-linux.img' \ + --verbose </pre><p>The --unicode argument is where the kernel parameters are specified. This tells the system that the partition identified by PARTUUID is encrypted and that the root filesystem to mount is the logical volume called root that is part of the volume group vg0. The microcode is also loaded with initrd=\intel-ucode.img.</p><p>Make this script executable.</p><pre><code class="shell">chmod u+x /usr/local/sbin/mkefibootentry</code></pre><p>Run the script to add to the motherboard boot entries.</p><pre><code class="shell">$ mkefibootentry</code></pre><h2>Root Password</h2><p>Create a secure password for the root user.</p><pre><code class="shell">$ passwd</code></pre><h2>Reboot</h2><p>Return to the Arch live installation environment.</p><pre><code class="shell">$ exit</code></pre><p>Unmount the partitions.</p><pre><code class="shell">$ umount -R /mnt</code></pre><p>Restart the machine with reboot. Remember to remove any installation media such as a USB drive.</p><pre><code class="shell">$ reboot</code></pre><p>Provided nothing has gone wrong your machine will boot into a fresh installation of Arch Linux. Don't forget that during the boot you will be prompted to enter the passphrase to decrypt the system partition. </p><p>Following this guide will leave you with a very minimal system where you can login as the root user. From this point how you configure the system is up to you as it will be very different to how I configure my own. If you interested in seeing how I do it then see my other posts on the subject. </p><h3>Links</h3><a href="https://www.archlinux.org/Installation_guide/">Offical Arch Installation Guide.</a><a href="https://www.archlinux.org/download/">Arch Linux Download Page.</a><a href="https://www.balena.io/etcher/">Etcher.</a><a href="https://www.archlinux.org/mirrorlist/">Pacman Mirrorlist Generator.</a><a href="https://en.wikipedia.org/wiki/Howl%27s_Moving_Castle/">Wikipedia Entry for Howl's Moving Castle.</a><a href="/posts/arch/">Arch - Read More Posts.</a><p>I don't have comments as I don't want to manage them. You can however contact me at the below address if you want to.</p><a href="mailto:david@davidtsadler.com">Email david@davidtsadler.com</a><h3>License</h3><a href="https://creativecommons.org/licenses/by-sa/4.0/">The contents of this site is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.</a><p>Copyright © 2021 David T. Sadler.</p><a href="/">Return to Homepage.</a></section> <script defer src="/js/highlight.min.js"></script> <script defer src="/js/site.js"></script> </body> |
