English (change)

As we install many packages from a clean install, let's compare the 4 methods for this and software removal, 2 of which are new, included by default.
The first two methods, apt-get and aptitude, are used in conjunction with the terminal. The other two, the Synaptic Package Manager and Karmic's new Software Center are the GUI (graphical user interface) equivalents.
To delve deeper ..
In simple copy/paste steps .. from zero to hero.
Scroll down for the full series index.
Wake up and smell the Ubuntu! Hope it helps. the_guv
apt-get An installation/removal method. As well as installing/removing packages, it installs any dependency files, such as relevant libraries, and removes conflicting software.
aptitude Ditto apt-get. Except. When you remove with apt-get, it doesn't remember, and so doesn't remove, any dependency files. Aptitude remembers your installations, so when you remove something, it removes the dependencies too. There is a proviso to this advantage, and that is that any required dependencies are known by your machine prior to installation. To be safe, before installing with aptitude, run a quick "update".
.. So, the long and short of that is, of apt-get and aptitude, I only ever use aptitude which, BTW, is installed by default with Karmic Koala (it had to be manually installed with prior versions). If anyone can tell me why I should ever use apt-get, I'm all ears. There are those that say you should use either one or the other. Hmmn, just use aptitude then!
Synaptic The GUI equivalent of aptitude or apt-get, and includes other useful tools like the repository manager. I don't use it in this guide for installations. Why? Other than because it does the same thing, here are the steps involved:-
*** This can be very handy, particularly with the resulting package description.
Software Center Essentially the now-deprecated Add/Remove procedure rewrapped for user-friendliness. It's a method not dissimilar to Synaptic. Again, it takes too long. Then again, it's pretty, and I for one like pretty .. but generally I prefer speed!
Using aptitude, on the other hand:-
.. and this can be simplified even further, with a one-time edit to the bashrc file. Read the next section Terminal Alias Shortcuts with bashrc for more on this (and lots lots lots more) ..
.. but, basically, all I ever type is install [some package] or remove [another]. In this guide though, I'll use the full syntax except in the bashrc section.
Result: As well as its great dependency file memory feature, aptitude = more time down the pub.
Linux. Built for speed .. and beer drinkers.
Set up Koala .. tweak it to perfection .. & maximize productivity .. for work & play.
That's what the Karmic Koala Bible does, stepped out in easy copy/paste guides.
From Linux initiates to intermediates, here's what you need.
Ben December 3rd, 2009 at 4:17 pm
No sign of Jig here? I'm getting into using both Jig, and sometimes I use apt-fast which is also very cool. Give them a whirl
Ben December 3rd, 2009 at 4:23 pm
Double posting now - just some edits for your .bashrc
alias install='sudo aptitude install'
alias remove='sudo aptitude remove'
alias autoremove='sudo apt-get autoclean && sudo apt-get autoremove && sudo apt-get clean && sudo apt-get remove && orphand'
alias repo='sudo add-apt-repository'
alias update='sudo aptitude update && sudo aptitude safe-upgrade'
I guess you could say I prefer aptitude also
the_guv December 7th, 2009 at 9:51 am
@Ben .. tx for tips