Skip to content

Commit

Permalink
Update SETUP
Browse files Browse the repository at this point in the history
  • Loading branch information
Chi-EEE committed Oct 21, 2023
1 parent fb153d1 commit ccc7f3b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 17 deletions.
17 changes: 0 additions & 17 deletions raspberry_pi/GUIDE.md

This file was deleted.

44 changes: 44 additions & 0 deletions raspberry_pi/SETUP.md
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
```

0 comments on commit ccc7f3b

Please sign in to comment.