RaspberryPi/July 2020: Difference between revisions
From charlesreid1
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
Wipe | ==Wipe SD Cards== | ||
Wipe SD cards and install raspbian | |||
==Mount SD Cards== | |||
Mount the SD cards as a local filesystem on a Linux box | |||
Now, if you want to modify the file <code>/foo/bar</code>, you can edit the file on the SD card at <code>/media/ubuntu/rootfs/foo/bar</code> | |||
==Wifi== | |||
Set up wpa supplicant config file for your local wifi network | |||
https://charlesreid1.com/wiki/Ubuntu/Bespin#Configure_WPA_Supplicant | |||
<pre> | <pre> | ||
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |||
update_config=1 | |||
network={ | |||
ssid="YOURWIFINETWORK" | |||
proto=RSN | |||
key_mgmt=WPA-PSK | |||
pairwise=CCMP TKIP | |||
group=CCMP TKIP | |||
psk="YOURWIFIPASSWORD" | |||
} | |||
</pre> | </pre> | ||
to | ==Network Interfaces== | ||
Next set up the WPA supplicant service to automatically start for our wifi device | |||
Update the contents of your network interfaces file to look like this: | |||
<code>/etc/network/interfaces</code> | |||
<pre> | <pre> | ||
source-directory /etc/network/interfaces.d | |||
allow-hotplug lo | |||
iface lo inet loopback | |||
allow-hotplug wlan0 | |||
iface wlan0 inet manual | |||
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | |||
</pre> | </pre> | ||
Revision as of 23:46, 15 July 2020
Wipe SD Cards
Wipe SD cards and install raspbian
Mount SD Cards
Mount the SD cards as a local filesystem on a Linux box
Now, if you want to modify the file /foo/bar, you can edit the file on the SD card at /media/ubuntu/rootfs/foo/bar
Wifi
Set up wpa supplicant config file for your local wifi network
https://charlesreid1.com/wiki/Ubuntu/Bespin#Configure_WPA_Supplicant
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="YOURWIFINETWORK"
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk="YOURWIFIPASSWORD"
}
Network Interfaces
Next set up the WPA supplicant service to automatically start for our wifi device
Update the contents of your network interfaces file to look like this:
/etc/network/interfaces
source-directory /etc/network/interfaces.d
allow-hotplug lo
iface lo inet loopback
allow-hotplug wlan0
iface wlan0 inet manual
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf