How to Install Anything in Ubuntu Condensed

This is a very condensed excerpt of the excellent article How to install ANYTHING in Ubuntu.

Search, install, remove available packages (preferred method)

sudo aptitude search ABC
sudo aptitude install ABC
sudo aptitude remove ABC

.deb (you have to take care of dependencies on your own)

sudo dpkg -i ABC.deb

.rpm (requires sudo aptitude install alien)

sudo alien -i *.rpm

.tar.gz (requires sudo aptitude install checkinstall)

tar xzvf ABC.tar.gz
cd ABC
./configure
make
sudo checkinstall

.package, .sh, .bin (Just download and execute)

chmod +x ABC
./ABC

.exe (requires sudo aptitude install wine)

wine ABC.exe

Related posts

  1. How To Make Firefox Over 40% Faster
  2. e – Extract Any Archive
  3. Pimp My MPlayer

6 thoughts on “How to Install Anything in Ubuntu Condensed

  1. Pingback: Bibo Blog

  2. Pingback: How to Install Anithing in Ubuntu! « ahlan wa sahlan

  3. These commands are to be used in an application called Terminal: u access : Application/Accessories/Terminal :
    (it would look something like this)

    @-desktop:~$

    user@user-desktop:~$ sudo aptitude search (what?)
    sudo aptitude install (what?)
    sudo aptitude remove (what?)
    there are so many commands that if you need to learn what they are suggest:
    https://help.ubuntu.com/community/UsingTheTerminal
    great place to start….if u get the chance to you should register and u can get help from community. For myself I am still learning..Good luck everyone;)

  4. You can use * to install some ‘package’ with many .deb files.
    For example i was download openoffice3 package for my Kubuntu Intrepid Ibex. I choose OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz from openoffice.org. After download finish and after extract that package i get many .deb files. So i used this command :

    sudo dpkg -i *.deb

    Better than install that many .deb files one by one.

    Sorry for my “broken” English. I hope you understand what i mean.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>