Logo 
Search:

Unix / Linux / Ubuntu Forum

Ask Question   UnAnswered
Home » Forum » Unix / Linux / Ubuntu       RSS Feeds

Terminal and Updates/Installs

  Date: Dec 14    Category: Unix / Linux / Ubuntu    Views: 294
  

Does one need to do all their updates and installs from the command
line or can one do them through Ubuntu's GUI interface?

Share: 

 

3 Answers Found

 
Answer #1    Answered On: Dec 14    

The GUI interface is better to actually do them, and the command line
is better for "documenting" them.

By "GUI" I'm referring to Synaptic because it makes the task much
easier than the "Add/Remove..." program (which is also a GUI).

As to why I wrote the command line is better for "documenting them",
here's an example of what I needed to do to setup a complete compile
and development system (so I could build my astronomy programs):

sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo apt-get install build-essential
sudo apt-get install manpages-dev
sudo apt-get install manpages-posix-dev
sudo apt-get install manpages-posix
sudo apt-get install libc6-dev
sudo apt-get install gcc-doc
sudo apt-get install libx11-dev
sudo apt-get install xorg-dev
sudo apt-get install x11proto-print-dev
sudo apt-get install libxp-dev
sudo apt-get install apt-file
sudo apt-get install devscripts fakeroot

A few weeks ago when I wanted to install the penguin-command program
(a Linux version of the missile-command arcade game), I had to install
some sound packages. Synaptic didn't provide much help determining
exactly what I needed, so each time I attempted to rebuild the game
I found something else missing, and eventually ended up doing this:

sudo apt-get install libsdl1.2debian
sudo apt-get install libsdl1.2debian-all
sudo apt-get install libsdl1.2-dev
sudo apt-get install libsdl1.2-image1.2
sudo apt-get install libsdl1.2-image1.2-dev
sudo apt-get install libsdl1.2-mixer1.2
sudo apt-get install libsdl1.2-mixer1.2-dev

and the game now works great. :-)

So, the real answer to your question is: it depends. :-)

 
Answer #2    Answered On: Dec 14    

updates should come through the gui Update manager which will indicate
critical updates with a red arrow in the tray and others with an orange
sun.

many installs can be done through the add/remove dialogue on the
applications tab but many more are available through synaptic which is
in the system > administration menu.

 
Answer #3    Answered On: Dec 14    

I've already used the update manager a couple times. I
check it whenever its icon shows up in the bar at the top of the screen.

 
Didn't find what you were looking for? Find more on Terminal and Updates/Installs Or get search suggestion and latest updates.