This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
user:jcavalu3:portfolio:hpcexperiment0 [2013/09/02 14:16] – jcavalu3 | user:jcavalu3:portfolio:hpcexperiment0 [2013/09/02 14:35] (current) – jcavalu3 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | The first project of this semester, I am installing the wheezy operating system onto one of the raspberry pis in the class. | ||
+ | 1. The raspberry pi is really neat! Putting the Pi together was simple: | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | These are all of the necessary components to put the raspberry pi together. | ||
+ | |||
+ | {{ : | ||
+ | |||
+ | This is the raspberry pi completely put together. | ||
+ | |||
+ | 2. Next, to install the operating system onto the sd card! | ||
+ | * First, I had to download the zip file containing the distro. | ||
+ | * I then extracted that image using **unzip** | ||
+ | * Just to check to see if the sd card was mounted, I ran df -h. It wasn' | ||
+ | * According to the tutorial, if the name of the mounted sd card ends in **p1** or a **1** (/ | ||
+ | * Next, I unmounted the sd card so that nothing can interfere with the sd card during the writing process using **umount** followed by the name of the sd card (/ | ||
+ | * The image is then written to the sd card using the **dd** command (REMEMBER TO REMOVE THE **P1** OR **1** FROM THE SD CARD'S NAME). | ||
+ | |||
+ | <cli> | ||
+ | josh-Aspire-5750Z ~ # dd bs=4M if=~/ | ||
+ | </ | ||
+ | |||
+ | * Lastly, run **sync** to flush the write cache and make it safe to unmount the sd card and we good! | ||
+ | |||
+ | 3. Finally, we can now set up the linux distro and set the correct settings. |