Added things to get set up on my VM

pull/1/head
John Hammond 2019-10-01 08:41:02 -04:00 committed by GitHub
parent 0e380cb5ae
commit 16747e3295
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 38 additions and 2 deletions

View File

@ -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
--------------------