From 16747e3295ddb1f2f4ff070343c86178d5b0967e Mon Sep 17 00:00:00 2001 From: John Hammond Date: Tue, 1 Oct 2019 08:41:02 -0400 Subject: [PATCH] Added things to get set up on my VM --- README.md | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eba51ba..04d8d18 100644 --- a/README.md +++ b/README.md @@ -168,15 +168,51 @@ Install GRUB ``` pacman -Sy grub os-prober - ``` -> This section is incomplete -- I still need to deal with it. +**When I was installing via virtual machine, I just needed to:** + +``` +grub-install /dev/sda +grub-mkconfig -o /boot/grub/grub.cfg +``` + +**When I was installing on my hard drive I did:** + +``` +grub-install /dev/nvmen1p3 +grub-mkconfig -o /boot/grub/grub.cfg +``` **DO NOT forget to copy over a network profile for `netctl` and install `netctl` and `network-manager` so you still have internet access when you reboot into the real system** +Adding a new user +--------------------- + +``` +mkdir /home/john +useradd john +passwd john +``` + +Getting Internet +---------------- + +When I was on a virtual machine, I needed to run these commands to get an IP address. + +``` +dhcpcd +dhcpcd -4 +``` + +Installing Sudo +---------------- + +``` +pacman -Sy sudo +``` Installing Audio Drivers --------------------