Little Girl's Mostly Linux Blog

InstallSoftware

Install Software

This page was last updated on March 06, 2014.

Table of Contents

Install software from the command line

  1. Let your package manager know what’s installed and what’s available in the repositories by opening a terminal window and typing:

    sudo apt-get update
  2. Download the package and its dependencies and install them by typing this command:

    sudo apt-get install foo
  3. To install many packages at once, add the names of the additional packages, separating each package name from the one before it with a space:

    sudo apt-get install foo1 foo2 foo3

Install software from a .deb file

When you manually install a .deb file, dependencies are not automatically resolved for you, but you’ll find out what they are so you can install them. Download the .deb file and then install the program from the GUI or from the command line:

  • Use the GUI:
    • Double-click the file and use the package installer that opens.

  • Use the command line:
    1. Open a terminal window.
    2. Change to the directory the .deb file is in by typing this command:

      cd /path/to/file
    3. Install the package by typing this command, replacing packagename with the name of the package:

      sudo dpkg -i packagename.deb

Install software from the GUI

You can search for packages by name and/or description, check which programs are installed, etc., by using the Muon Package Manager in Kubuntu:

  1. Open the K menu.
  2. Choose System
  3. Choose Muon Package Manager
  4. Use the Check for Updates button to update the list.
  5. Browse or search the packages.
  6. Mark the packages you wish to install or uninstall.
  7. Click the Apply Changes button at the top of the window to commit the changes.

Install software from .rpm

Before following these instructions, make sure the alien package is installed. This is not installed by default in Kubuntu. Use the command line or GUI to install it.

Sometimes you just won’t be able to find a .deb file for a program you’d like to install. You can use alien to install an .rpm file in Kubuntu or Ubuntu, but it will not resolve dependencies, so this method tends to be a bit messy, and isn’t for the faint of heart…

  1. To install an .rpm file, open a terminal window and change to the directory the file is in by typing this command:

    cd /path/to/directory
  2. Install the .rpm file by typing this command, replacing packagename with the name of the package:

    sudo alien packagename.rpm

Install software from source (compile)

Before following these instructions, make sure you have the build-essential package installed. This is not installed by default in Kubuntu. Use the command line or GUI to install it.

  1. To install from source, double-click the file and extract its contents to a directory.
  2. Open a terminal window and change to the directory you extracted the files into by typing this command:

    cd /path/to/directory
  3. Check whether the dependency requirements are met by your system by typing this command:

    ./configure
  4. Compile the source code by typing this command:

    make
  5. Install the program by typing this command:

    sudo make install
  6. Remove any temporary files created during the installation process by typing this command:

    clean install

List the dependencies of a package

Type this command in a terminal window, replacing packagename with the name of the package:
sudo apt-get build-dep packagename

Make a .deb file from source

Before following these instructions, make sure you have the checkinstall package installed. This is not installed by default in Kubuntu. Use the command line or GUI to install it.

  1. To create a .deb file from source, double-click the file and extract its contents to a directory.
  2. Open a terminal window and change to the directory you extracted the files into by typing this command:

    cd /path/to/directory
  3. Check whether the dependency requirements are met by your system by typing this command:

    ./configure
  4. Compile the source code by typing this command:

    make
  5. Create a .deb file by typing this command:

    sudo checkinstall -D
  6. Remove any temporary files created during the installation process by typing this command:

    clean install

Run a stand-alone binary file

This will run a stand-alone binary file that doesn’t need to be installed. These are often gotten from tarball or zip files.

  1. Extract the tarball or zip file to a directory.
  2. Open a terminal window and change to the directory the extracted file is in by typing:

    cd /path/to/file
  3. You can optionally change the permissions of the file to give read and execute access to everyone and also write access to the owner of the file by typing this command:

    chmod 755 filename
  4. Run the file with one of these methods:

    • If it’s on the system path:

      scriptname
    • If it’s not on the system path:

      ./filename

Uninstall software

  • Uninstall

    To uninstall a package and leave its configuration files in place in case you later wish to install it again, open a terminal window and type this command, replacing packagename with the name of the package:

    sudo apt-get remove packagename

  • Complete uninstall:

    To uninstall a package and remove all of its configuration files, open a terminal window and type this command, replacing packagename with the name of the package:

    sudo apt-get remove --purge packagename

See Also

See also the Psychocats page on installing software in Ubuntu.

Obligatory Happy Ending

And they all lived happily ever after. The end.

Leave a Comment »

No comments yet.

RSS feed for comments on this post. TrackBack URI

Comment:

Blog at WordPress.com.