Difference between revisions of "Raspberry Pi"

From RHS Wiki
Jump to navigation Jump to search
(Created page with "[https://cmanios.wordpress.com/2013/03/10/install-raspbian-wheezy-linux-to-raspberry-pi-using-linux/ Linux]")
 
Line 1: Line 1:
 +
== Installing Raspbian ==
 +
1. Download Raspbian image from [http://www.raspberrypi.org/downloads/ here].<br />
 +
2. Format SD card using FAT32.<br />
 +
<nowiki>sudo mkdosfs -F 32 -v /dev/mmcblk0</nowiki>
 +
3. Install squashed file sistem on SD card.
 +
<nowiki>sudo dd bs=4M if="/home/linux/2013-02-09-wheezy-raspbian.img" of=/dev/mmcblk0</nowiki>
 
[https://cmanios.wordpress.com/2013/03/10/install-raspbian-wheezy-linux-to-raspberry-pi-using-linux/ Linux]
 
[https://cmanios.wordpress.com/2013/03/10/install-raspbian-wheezy-linux-to-raspberry-pi-using-linux/ Linux]
 +
 +
== Raspbian default username & password ==
 +
By default the username and password are:<br />
 +
Username: pi<br />
 +
Passowrd:raspberry
 +
 +
== WiFi setup ==
 +
1. Scan wifi networks available:
 +
<nowiki>sudo iwlist wlan0 scan</nowiki>
 +
2. Write down the ESSID (wifi network name) and IE (authentication used)
 +
3. Edit /etc/wpa_supplicant/wpa_supplicant.conf, add the following at the bottom of the file.
 +
<nowiki>
 +
network={
 +
    ssid="The_ESSID_from_earlier"
 +
    psk="Your_wifi_password"
 +
}
 +
</nowiki>
 +
4. If after a few seconds the Raspberry WiFi isn't connected:
 +
<nowiki>
 +
sudo ifdown wlan0
 +
sudo ifup wlan0
 +
</nowiki>

Revision as of 17:14, 25 March 2015

Installing Raspbian

1. Download Raspbian image from here.
2. Format SD card using FAT32.

sudo mkdosfs -F 32 -v /dev/mmcblk0

3. Install squashed file sistem on SD card.

sudo dd bs=4M if="/home/linux/2013-02-09-wheezy-raspbian.img" of=/dev/mmcblk0

Linux

Raspbian default username & password

By default the username and password are:
Username: pi
Passowrd:raspberry

WiFi setup

1. Scan wifi networks available:

sudo iwlist wlan0 scan

2. Write down the ESSID (wifi network name) and IE (authentication used) 3. Edit /etc/wpa_supplicant/wpa_supplicant.conf, add the following at the bottom of the file.

network={
    ssid="The_ESSID_from_earlier"
    psk="Your_wifi_password"
}
 

4. If after a few seconds the Raspberry WiFi isn't connected:

sudo ifdown wlan0
sudo ifup wlan0