Skip to content

Instantly share code, notes, and snippets.

@clintonhalpin
Created December 19, 2014 04:55
Show Gist options
  • Save clintonhalpin/46e5802b965ef6af889a to your computer and use it in GitHub Desktop.
Save clintonhalpin/46e5802b965ef6af889a to your computer and use it in GitHub Desktop.
Setting up a Rasberry PI

Connect WIFI

# Check for networks
sudo iwlist wlan0 scan

# Edit Config
sudo vi /etc/wpa_supplicant/wpa_supplicant.conf

Change config file to

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1

network={
        ssid="YourSSID"
        psk="password"
        key_mgmt=WPA-PSK
}

sudo reboot

Update vim

sudo apt-get install vim

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment