Fixing numbering in readme

This commit is contained in:
Wyler McAninch-Ruenzi 2021-08-13 15:33:56 -07:00 committed by GitHub
parent 3592135de2
commit 165d7c813b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,8 +7,8 @@ Ever since moving off of ubuntu, network setup has been a pain, so here's a how-
# How To
0. If you don't have NetworkManager installed, either get it from your package manager, or transfer the source from a computer that has network access and go [here](http://www.linuxfromscratch.org/blfs/view/svn/basicnet/networkmanager.html) for instructions on how to install it.
1. Generate a UUID with `uuidgen`
1. Copy the base config from this repository into `/etc/NetworkManager/system-connections/[CONNECTION-NAME]` and edit in the connection id with your favorite text editor
1. Change the following fields:
2. Copy the base config from this repository into `/etc/NetworkManager/system-connections/[CONNECTION-NAME]` and edit in the connection id with your favorite text editor
3. Change the following fields:
- `uuid` (generated by `uuidgen`)
- `ssid`
@ -16,13 +16,13 @@ Ever since moving off of ubuntu, network setup has been a pain, so here's a how-
- `password`
- If you know that your network has different authentication methods, change those here as well.
1. Write and save the file, then run
4. Write and save the file, then run
```bash
chown root /etc/NetworkManager/system-connections/[CONNECTION-NAME] && \
chmod 600 /etc/NetworkManager/system-connections/[CONNECTION-NAME]
```
8. Restart the NetworkManager service with `sudo systemctl restart NetworkManager`
5. Restart the NetworkManager service with `sudo systemctl restart NetworkManager`
With that you should have a functioning wifi connection on WPA2-Enterprise!