Raspberry Pi: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
mNo edit summary |
mNo edit summary |
||
| Line 13: | Line 13: | ||
<br>Then, better to renew SSH server keys, see [http://elinux.org/RPi_Remote_Access RPi remote access] |
<br>Then, better to renew SSH server keys, see [http://elinux.org/RPi_Remote_Access RPi remote access] |
||
sudo rm /etc/ssh/ssh_host_* && sudo dpkg-reconfigure openssh-server |
sudo rm /etc/ssh/ssh_host_* && sudo dpkg-reconfigure openssh-server |
||
==Wi-Fi== |
|||
Using [http://www.element14.com/community/docs/DOC-48541/l/wi-pi-wlan-usb-module-for-the-raspberry-pi Wi-Pi] |
|||
<br>See [http://www.element14.com/community/servlet/JiveServlet/downloadBody/49107-102-1-257014/Wi_Pi.User_Manual.pdf user manual] for Raspbian. |
|||
<br>Edit /etc/network/interfaces and add wlan0 section similar to: |
|||
auto wlan0 |
|||
iface wlan0 inet dhcp |
|||
wpa-ssid <name of your WiFi network> |
|||
wpa-psk <password of your WiFi network> |
|||
Then |
|||
sudo /etc/init.d/networking restart |
|||
Revision as of 19:52, 18 March 2013
Links
- Raspberry Pi on Wikipedia
- Raspbian on Wikipedia
- http://www.raspberrypi.org/
- http://www.raspbian.org/
- http://elinux.org/RaspberryPiBoard
- http://www.element14.com/community/groups/raspberry-pi
Startup
Remotely: provide DHCP over Ethernet
Access via ssh, Username: pi Password: raspberry
First time, the device propose to run raspi-config
sudo raspi-config
Then, better to renew SSH server keys, see RPi remote access
sudo rm /etc/ssh/ssh_host_* && sudo dpkg-reconfigure openssh-server
Wi-Fi
Using Wi-Pi
See user manual for Raspbian.
Edit /etc/network/interfaces and add wlan0 section similar to:
auto wlan0 iface wlan0 inet dhcp wpa-ssid <name of your WiFi network> wpa-psk <password of your WiFi network>
Then
sudo /etc/init.d/networking restart