Raspberry Pi: Difference between revisions

From wiki
Jump to navigation Jump to search
imported>Johayek
mNo edit summary
imported>Johayek
mNo edit summary
Line 1: Line 1:
== the regular commands for updating your Raspbian installation ==
* https://en.wikipedia.org/wiki/Raspberry_Pi#Software – Raspbian looks like THE Linux distribution for the Raspberry Pi
:$ sudo raspi-config
:…
: # the Debian [http://en.wikipedia.org/wiki/Advanced_Packaging_Tool APT = Advanced Packaging Tool]
: # [http://en.wikipedia.org/wiki/Advanced_Packaging_Tool#Update.2C_upgrade_and_dist-upgrade update and upgrade]
:$ sudo apt-get update  # update is used to resynchronize the package index files from their sources
:$ sudo apt-get upgrade # upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list


== books ==
== books ==
Line 15: Line 9:
* http://www.packtpub.com/raspberry-pi-media-center/book
* http://www.packtpub.com/raspberry-pi-media-center/book
* http://www.packtpub.com/raspberry-pi-server-essentials/book
* http://www.packtpub.com/raspberry-pi-server-essentials/book
== the regular commands for updating your Raspbian installation ==
:$ sudo raspi-config # this is apparently "standard Raspberry Pi"
:…
: # the Debian [http://en.wikipedia.org/wiki/Advanced_Packaging_Tool APT = Advanced Packaging Tool]
: # [http://en.wikipedia.org/wiki/Advanced_Packaging_Tool#Update.2C_upgrade_and_dist-upgrade update and upgrade]
:$ sudo apt-get update  # update is used to resynchronize the package index files from their sources
:$ sudo apt-get upgrade # upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list

Revision as of 00:20, 13 January 2015

books

the regular commands for updating your Raspbian installation

$ sudo raspi-config # this is apparently "standard Raspberry Pi"
# the Debian APT = Advanced Packaging Tool
# update and upgrade
$ sudo apt-get update # update is used to resynchronize the package index files from their sources
$ sudo apt-get upgrade # upgrade is used to install the newest versions of all packages currently installed on the system from the sources enumerated in /etc/apt/sources.list