summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorbreadcat2020-06-28 14:06:28 +0100
committerbreadcat2020-06-28 14:06:28 +0100
commit538e3d53bca62692adc482e1e5a795ddb5b0fd21 (patch)
tree2d486c28143e58188a3c511014d86b081a3aa32a /content
parentb6a7fc67438f632e99f09ec97bdcaad7472b26c2 (diff)
downloadblog.minskio.co.uk-538e3d53bca62692adc482e1e5a795ddb5b0fd21.tar.gz
blog.minskio.co.uk-538e3d53bca62692adc482e1e5a795ddb5b0fd21.tar.bz2
blog.minskio.co.uk-538e3d53bca62692adc482e1e5a795ddb5b0fd21.zip
Update arch install guide
Thanks Luke
Diffstat (limited to 'content')
-rw-r--r--content/posts/brief-archlinux-installation-guide.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/content/posts/brief-archlinux-installation-guide.md b/content/posts/brief-archlinux-installation-guide.md
index c1d1091..aaa97b1 100644
--- a/content/posts/brief-archlinux-installation-guide.md
+++ b/content/posts/brief-archlinux-installation-guide.md
@@ -1,6 +1,7 @@
---
title: "The briefest Arch Linux installation guide"
date: 2019-10-15T14:33:00
+lastmod: 2020-06-28T14:02:00
tags: ["Guides", "Linux", "Snippets", "Software"]
---
@@ -30,14 +31,12 @@ Well why didn't you say? Step aboard traveller..! Welcome to my personal guide (
* Now mount those partitions `mount /dev/sda2 /mnt && mkdir /mnt/boot && mount /dev/sda1 /mnt/boot`.
-* Install the base operating system `pacstrap /mnt/`.
+* Install the base operating system `pacstrap /mnt/ base base-devel dhcpcd linux linux-firmware neovim`.
* Create your `fstab` file using `genfstab -U /mnt > /mnt/etc/fstab`.
* Chroot into it `arch-chroot /mnt/`.
-* Install some necessary core applications `pacman -Syu base dhcpcd linux linux-firmware neovim sudo`.
-
* Enable DHCP `systemctl enable dhcpcd`.
* Now install and configure your (UEFI) bootloader `bootctl install`.
@@ -95,4 +94,6 @@ grub-mkconfig -o /boot/grub/grub.cfg
* **Edit 2020-06-03:** Added fstab instruction, seemingly missed.
-* **Edit 2020-06-17:** Replaced nano references with neovim. \ No newline at end of file
+* **Edit 2020-06-17:** Replaced nano references with neovim.
+
+* **Edit 2020-06-28:** Merge pacstrap and pacman commands.