Setup Raspberry Pi from scratch: Difference between revisions
No edit summary |
No edit summary |
||
Line 41: | Line 41: | ||
unmount the device before removing it: | unmount the device before removing it: | ||
sudo umount /dev/<device number> | sudo umount /dev/<device number> | ||
Now you can insert the SD card into your RPI, hook it up to a keyboard and monitor, and power it up. | |||
After it boots up log in by typing the following at the prompt | |||
pi | |||
The default password is: | |||
raspberry |
Revision as of 01:37, 19 November 2017
sudo apt-get install tree
To find the SD Card for you Raspberry Pi, Insert it into your computer and type:
lsblk
Assuming that you only have one similarly sized device inserted at this time it should be fairly easy to figure out which device you want based on size. If your using a Linux distro like Ubuntu, it will automaticly mount your SD Card, and you don't want that so umount it with:
sudo umount /dev/<device number>
Repeat this command adjusting the device number until all partitions are unmounted.
Next, we need to repartition the SD card with fdisk.
sudo fdisk /dev/<device number>
Delete all partitions using 'd'
Create a new partition using 'c'
Use the default options for everything except the endpoint (if the sd card is over 16g...use +8G for the endpoint)
Set partition with 't' and set to type 'b' (FAT 32)
Set bootable with 'a'
Write changes with 'w'
Create a new filesystem on the SD card. (format it)
sudo mkfs.vfat /dev/<device number>
Next I create a directory that I use for temporarily mounting devices:
sudo mkdir /media/temp
Mount the newly formatted SD Card:
sudo mount /dev/<device number> /media/temp/
Unzip NOOBS to the SD card:
sudo unzip Downloads/NOOBS_lite_v2_4.zip -d /media/temp/
unmount the device before removing it:
sudo umount /dev/<device number>
Now you can insert the SD card into your RPI, hook it up to a keyboard and monitor, and power it up.
After it boots up log in by typing the following at the prompt
pi
The default password is:
raspberry