diff options
author | breadcat | 2024-07-10 12:08:03 +0100 |
---|---|---|
committer | breadcat | 2024-07-10 12:08:03 +0100 |
commit | 79170e2d2878364f513e17fc56923a4558a2596a (patch) | |
tree | 5ca889a182a9ec1a8e6eac310413379091be3ebf /content/posts/brief-archlinux-installation-guide.md | |
parent | 873c72ccf12a583e3e7eac14946f372f6dad09c3 (diff) | |
download | blog.minskio.co.uk-79170e2d2878364f513e17fc56923a4558a2596a.tar.gz blog.minskio.co.uk-79170e2d2878364f513e17fc56923a4558a2596a.tar.bz2 blog.minskio.co.uk-79170e2d2878364f513e17fc56923a4558a2596a.zip |
Add openssh to pacstrap
Diffstat (limited to 'content/posts/brief-archlinux-installation-guide.md')
-rw-r--r-- | content/posts/brief-archlinux-installation-guide.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/content/posts/brief-archlinux-installation-guide.md b/content/posts/brief-archlinux-installation-guide.md index a006abc..b1240be 100644 --- a/content/posts/brief-archlinux-installation-guide.md +++ b/content/posts/brief-archlinux-installation-guide.md @@ -1,7 +1,7 @@ --- title: "The briefest Arch Linux installation guide" date: 2019-10-15T14:33:00 -lastmod: 2020-06-28T14:02:00 +lastmod: 2024-07-10T12:07:00 tags: ["Guides", "Linux", "Snippets", "Software"] --- @@ -31,7 +31,7 @@ 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/ base base-devel dhcpcd linux linux-firmware neovim`. +* Install the base operating system `pacstrap /mnt/ base base-devel dhcpcd linux linux-firmware neovim openssh`. * Create your `fstab` file using `genfstab -U /mnt > /mnt/etc/fstab`. @@ -97,3 +97,5 @@ grub-mkconfig -o /boot/grub/grub.cfg * **Edit 2020-06-17:** Replaced nano references with neovim. * **Edit 2020-06-28:** Merge pacstrap and pacman commands. + +* **Edit 2024-07-10:** Add openssh to initial pacstrap. |