Installing a wifi stick on the PR2100 with Ubuntu Server
DO THIS WHILE YOUR MACHINE IS STILL CONNECTED TO THE NETWORK VIA CABLE
To enable your PR2100 to connect to wifi, you'll need a wifi stick that works with linux. Once you have one, follow these steps:
- ssh into your PR2100
- run
sudo apt install wpasupplicant - plug in your wifi stick
- run
lshw -C networkand look for a*-network-entry with the descriptionWireless interface - copy the
logical nameof the entry, e.g.wlan0or something more cryptic likewlx801f02cd1234 - run
sudo nano /etc/netplan/01-network-config.yamland add the following lines:
yaml
wifis:
YOUR_LOGICAL_NAME_HERE:
dhcp4: true
access-points:
"YOUR_WIFI_SSID":
password: "YOUR_WIFI_PASSWORD"Replace YOUR_LOGICAL_NAME_HERE with logical name you acquired in step 5, YOUR_WIFI_SSID with your wifi's SSID and YOUR_WIFI_PASSWORD with your wifi's password.
Keep in mind that the indentation is important, so make sure to copy the spaces correctly. Also make sure that the indentation of the wifis-line is the same as the ethernets-line above it.
If you're using a 5GHz wifi, make sure that your wifi stick supports it. If it doesn't, you'll have to use a 2.4GHz wifi.
- run
sudo netplan apply -debugto apply the changes - now run
ip addressand look for an entry with your stick's logical name, e.g.wlan0orwlx801f02cd1234. It should includestate upandinetwith an IP address. - power down your PR2100, remove the network cable and boot it up again
You should now be able to ssh into your PR2100 via wifi.
Clicking this button loads third-party content from utteranc.es and github.com