-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
44 additions
and
17 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# First Steps | ||
Install Ubuntu latest version on raspberry pi | ||
|
||
## Wifi | ||
|
||
To add wifi: | ||
``` | ||
sudo nano /etc/netplan/50-cloud-init.yaml | ||
``` | ||
|
||
Now add: | ||
``` | ||
wifis: | ||
wlan0: | ||
optional: true | ||
access-points: | ||
"SSID": | ||
password: "password" | ||
dhcp4: true | ||
``` | ||
Run the following to debug the wifi file: | ||
``` | ||
sudo netplan -debug generate | ||
``` | ||
|
||
Run `sudo reboot` | ||
|
||
## SSH | ||
|
||
Run: | ||
``` | ||
sudo apt update | ||
sudo apt install openssh-server | ||
``` | ||
|
||
To check ssh: | ||
``` | ||
sudo systemctl status ssh | ||
``` | ||
|
||
To allow: | ||
``` | ||
sudo ufw allow ssh | ||
``` |