Difference between revisions of "Raspberry Pi"
Jump to navigation
Jump to search
Rafahsolis (talk | contribs) |
Rafahsolis (talk | contribs) |
||
| Line 37: | Line 37: | ||
== ssh rsa key setup == | == ssh rsa key setup == | ||
| − | If you don't have an rsa key generate one by runing: | + | 1. If you don't have an rsa key generate one by runing: |
<nowiki>ssh-keygen -t rsa -C user@domain</nowiki> | <nowiki>ssh-keygen -t rsa -C user@domain</nowiki> | ||
| + | 2. Upload the .pub rsa key to the raspberry | ||
| + | 3. Add the .pub key to ~/.ssh/authorized_keys | ||
| + | <nowiki>cat rsa_key.pub >> ~/.ssh/authorized_keys</nowiki> | ||
Revision as of 20:49, 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
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
Domain name setup
To change the domain server:
Edit /etc/hosts
Edit /etc/hostname
Commit changes by runing:
sudo /etc/init.d/hostname.sh
ssh rsa key setup
1. If you don't have an rsa key generate one by runing:
ssh-keygen -t rsa -C user@domain
2. Upload the .pub rsa key to the raspberry 3. Add the .pub key to ~/.ssh/authorized_keys
cat rsa_key.pub >> ~/.ssh/authorized_keys