mcdead
Posts: 4
Joined: Sun Jul 22, 2012 6:57 am

updating

Sun Jul 22, 2012 7:26 am

what is the update it. Find a list of what packages are for raspbian. A program that has a gui for updating? I just got my pi on Wednesday and i do understand the basics just not really used to linux yet. which is why i bought the pi.

thurgold
Posts: 2
Joined: Sun Jul 22, 2012 7:31 am

Re: updating

Sun Jul 22, 2012 7:35 am

I use dselect, it is not a gui, but it is a bit more friendly than apt-get

sudo apt-get install dselect
sudo dselect

It just go through the stages in order.
+ <-- mark a package to be installed
- <-- mark a package to be removed
return <-- proceed to next step.

chrispiduc
Posts: 4
Joined: Tue Jul 17, 2012 6:45 am

Re: updating

Sun Jul 22, 2012 8:17 am

Hi mcdead,

You may wish to read the wiki: http://elinux.org/RaspberryPiBoard#Beginners_Guide

Specifically the beginners guide: http://elinux.org/RPi_Beginners#Adding_ ... spberry_Pi and the troubleshooting section (http://elinux.org/R-Pi_Troubleshooting) for fine-tuning your pi to your display.

With regards to updating, while using the command line, (assuming Debian Wheezy or Raspbian O/S) type:

Code: Select all

Sudo apt-get update -y && sudo apt-get upgrade -y
This will update your O/S.
Best,
chrispiduc

User avatar
williamhbell
Posts: 291
Joined: Mon Dec 26, 2011 5:13 pm
Contact: Website Twitter

Re: updating

Sun Jul 22, 2012 8:19 am

Hi,

Additional packages can be added using apt-get, which is a command line tool. The synaptic package manager is the GUI wrapper around this, but I am not sure how well it runs on the PI. To update your Raspbian installation, open a command window and type

sudo apt-get update
sudo apt-get upgrade

To install more packages, type

sudo apt-get install package-name

where package-name should be replaced with the package you are interested in. The full package list for Wheezy can be found at,

http://packages.debian.org/testing/

The other apt-get commands are documented in the apt-get manual page,
man apt-get
(type q to quit the manual page).

Regards, Will

mcdead
Posts: 4
Joined: Sun Jul 22, 2012 6:57 am

Re: updating

Sun Jul 22, 2012 8:22 am

thanks

itsonlyme
Posts: 131
Joined: Sun Feb 12, 2012 12:43 pm

Re: updating

Sun Jul 22, 2012 8:23 am

Synaptic appears to run well on Rasbian.

Return to “Raspberry Pi OS”