Difference between revisions of "Updating the RPi Software"

From SingletonMillerWiki
Jump to: navigation, search
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
[Category: RaspberryPi]
+
[[Category:RaspberryPi]]
  
Assuming you're using the debian image, updating to the latest version of all the software installed on your RPi can be achieved by running the following form the command line.
+
Assuming you're using the debian image, updating to the latest version of all the software installed on your RPi can be achieved by running the following from the command line.
 
<pre>
 
<pre>
 
sudo apt-get update
 
sudo apt-get update
Line 12: Line 12:
 
</pre>
 
</pre>
  
=== Related Articles ===
+
=== See Also ===
[[Updating RPi Firmware]]
+
*[[Updating RPi Firmware]]

Latest revision as of 14:00, 17 June 2012


Assuming you're using the debian image, updating to the latest version of all the software installed on your RPi can be achieved by running the following from the command line.

sudo apt-get update

This command updates the repository cache.

To install the lateest builds code:

sudo apt-get upgrade

See Also