Difference between revisions of "Raspberry Pi"

From Tech
Jump to navigationJump to search
Line 5: Line 5:
 
To enable wlan0, as mentioned [http://www.raspberrypi.org/phpBB3/viewtopic.php?f=27&t=7592 here in a comment]:
 
To enable wlan0, as mentioned [http://www.raspberrypi.org/phpBB3/viewtopic.php?f=27&t=7592 here in a comment]:
   
<nowiki>cat > /etc/network/interfacecs <<EOF
+
<nowiki>cat > /etc/network/interfaces <<EOF
 
auto lo
 
auto lo
   

Revision as of 14:21, 27 March 2016

  • First Raspberry Pi, MAC=b8:27:eb:f5:5e:0b
  • Second: MAC=b8:27:eb:79:41:20 (hostname: tvu-s003)


To enable wlan0, as mentioned here in a comment:

<nowiki>cat > /etc/network/interfaces <<EOF

auto lo

iface lo inet loopback iface eth0 inet dhcp

auto wlan0 iface wlan0 inet dhcp wpa-ssid "SSID" wpa-psk "PASSWORD" EOF