Difference between revisions of "Cookbook of Raspberry Pi Commands"

From OpenCircuits
Jump to navigation Jump to search
(Created page with "I am going to try to summarize most of my other pages for controlling setting up the raspberry Pi. We will see how it goes. This is an article started by Russ Hensel, see ...")
 
Line 11: Line 11:
 
= WiFi =
 
= WiFi =
  
 +
Edit this:
 
<pre>
 
<pre>
 
 
 
     sudo leafpad /etc/wpa_supplicant/wpa_supplicant.conf
 
     sudo leafpad /etc/wpa_supplicant/wpa_supplicant.conf
 +
</pre>
 +
Find contents like:
 +
<pre>
 +
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
 +
update_config=1
 +
country=US
  
 +
network={
 +
ssid="upstairs"
 +
key_mgmt=NONE
 +
}
  
</pre>
+
network={
 
+
ssid="belkin.d3c"
<pre>
+
psk="secret"
code
+
key_mgmt=WPA-PSK
 +
}
 
</pre>
 
</pre>
  

Revision as of 13:56, 11 February 2018

I am going to try to summarize most of my other pages for controlling setting up the raspberry Pi. We will see how it goes.


This is an article started by Russ Hensel, see "http://www.opencircuits.com/index.php?title=Russ_hensel#About My Articles" About My Articles for a bit of info. The page is only partly finished.Link title


Update

WiFi

Edit this:

     sudo leafpad /etc/wpa_supplicant/wpa_supplicant.conf

Find contents like:

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

network={
	ssid="upstairs"
	key_mgmt=NONE
}

network={
	ssid="belkin.d3c"
	psk="secret"
	key_mgmt=WPA-PSK
}