Difference between revisions of "Setup:RPI"

From SingletonMillerWiki
Jump to: navigation, search
m (Change Default Password)
 
(2 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
== First Boot ==
 
== First Boot ==
  
Flash your RPi with a vanilla build of debian using the above resources as a direct guide.
+
Flash your RPi with a vanilla build of debian using the resources [http://www.raspberrypi.org/downloads] [http://elinux.org/RPi_Beginners] & [http://elinux.org/RPi_Easy_SD_Card_Setup#Copying_the_image_to_an_SD_Card_on_Windows].
  
 
Connect to your TV, net and apply power.
 
Connect to your TV, net and apply power.
Line 22: Line 22:
 
== Change Default Password ==
 
== Change Default Password ==
  
It important to change the default user password in order to procect your RPi security when connected to the Internet.
+
It important to change the default user password in order to protect your RPi security when connected to the Internet.
  
 
Enter the following command to change <code>pi</code>'s password.
 
Enter the following command to change <code>pi</code>'s password.
  
<pre> passwd </pre>
+
<pre> sudo passwd pi </pre>
  
 
The follow the instructions, note the programme will discourage the use of weak passswords, consider adding at least one capital leter and one number.
 
The follow the instructions, note the programme will discourage the use of weak passswords, consider adding at least one capital leter and one number.

Latest revision as of 08:30, 29 July 2012


First Boot

Flash your RPi with a vanilla build of debian using the resources [1] [2] & [3].

Connect to your TV, net and apply power. In order for the HDMI to detect my TV I needed to have the TV set to the correct channel before powering up the RPi.

Let the debian first boot setup run through, the on screen notes stated that the code may hang. I found that just leaving the process to run it will complete after about 5 minutes.

Login

Login for the first time.

username: pi

password: raspberry

Change Default Password

It important to change the default user password in order to protect your RPi security when connected to the Internet.

Enter the following command to change pi's password.

 sudo passwd pi 

The follow the instructions, note the programme will discourage the use of weak passswords, consider adding at least one capital leter and one number.

Reboot the RPi by cycling the power or using the code:

sudo shutdown -r now

When asked enter your new password to authorise your super user command.

sudo, is command that enables a user to assume super user privledges.

shutdown -r now, codes the shutdown command to restart at the time now.

References

  1. http://www.raspberrypi.org/downloads, get your first imager file here.
  2. http://elinux.org/RPi_Beginners
  3. http://elinux.org/RPi_Easy_SD_Card_Setup#Copying_the_image_to_an_SD_Card_on_Windows, follow these notes for burning your image to an SD card.