Install Debian Package

Posted : admin On 29.08.2019
Install Debian Package Average ratng: 4,4/5 890 reviews

This tutorial will help you to install specific version of packages using apt-get. First of all, list all available version of the package. For example to find available version of firefox run the following command. Sudo apt policy firefox The above command shows two version’s of firefox. Now, run the below command to install firefox version 59.0.2. How do I install.deb package from the terminal using command line option in Ubuntu Linux or Debian Linux? You need to use the dpkg command, which is a package manager from shell/command prompt for Debian and Ubuntu Linux. If you still prefer to use ifconfig as part of your daily sys admin routine, you can easily install it as part of the net-tools package. Requirements Privileged access to your Debian Linux system is required.

  1. Install Debian Package Manager
  2. Kubuntu Install Debian Package

In any operating system we need to install applications to complete our day to day tasks. In the world of Windows, every program has a simple Setup.exe or a program.zip file. On a Mac a package is a program.dmg or a program.sit file. In both theoperating system you can simply click it and it will ask you some very basic configuration questions like, do you accept the licence agreement or the directory you want to install the software to. Although in Linux, It seems tough to install the programs/softwares but It’s not true.

Also read How To Install/Upgrade To Linux Kernel 3.18.1 In Ubuntu/Linux Mint
The second package manager format is DEB, stands for Debian. Debian packages and the APT (Advanced Packagin Tool) has made advanced features that are now commonly used, like, automatic dependency resolution and signed packages. Debian packages are used by Debian/Linux, and some of the most used Linux distributions, like, Ubuntu, Linux Mint, Mepis etc. The .deb/Debian files look like this program-version-other.deb

APT For Debian based distributions, like, Ubuntu, Linux Mint etc.

The APT is the tool, commonly used to install packages, remotely from the software repository. In short it’s a simple command based tool that you use to install files/softwares. Complete command is apt-get and it’s the easiest way to install files/Softwares packages. This easy tools informs you about packages that are currently being installed and also it informs you about the packages that are available in repositories.
To remove/uninstall any software, just use remove
The software packages are somewhere in the online repositoies, APT handles a local database on the user’s hard drive that contains informations about the available packages and where they are located. So when the types the command, apt-getinstall conky

Install Debian Package Manager

, the APT will start finding the package named conkyDebian in the database and will install conky once user types ‘y’ (yes). To get the all newly uploaded packages on the repositories, user need to update APT regularly.

To update APT database:

To update the APT database and also upgrade the security updates and patches that might be available for some installed softwares, users may do it at once just by using the commands like this:

And remember all of the package management tools I am discussing, will need user to be in root or superuser, for example to install software in debian based distributions you will use apt-get followed by sudo then It will ask you to enter password.

Swap magic ps2 disc. An.ISO file is just a CD/DVD image of the game. Sometimes the file you download from a torrent may be an.ISO file itself, and WinRar will recognize it as a possible archive. If not, then you may have just one rar file, which will be your.ISO file.

Kubuntu Install Debian Package

Debian
sudo apt-get install conky
sudo apt-get remove conky
sudo apt-get update

yum: For RPM based Linux distributions, like, Fedora, Red Hat

You will not have any trouble understanding yum because its same as apt-get. As ‘apt-get‘ installs software packages for Debian packages, like that ‘yum‘ installs software packages for RPM packages. It can also like apt-get download and install packages from a repository.
To remove software packages, just use remove
There is one thing to note that yum does not keep a local database by default in user’s hard disk. So there is no need to update it. But to install available security paches and bug fixes, use the following command:
If user wants to update any single package then do it in the following way:
You would remember in Windows you’ve Zip files .zip or in Mac .sit. The same way here in Linux you have Tar Balls (files) ending with extentions, like, .tar, .tar.gz, .tgz, or something else. To unpack a tar ball (file), use the following command:
The parameters are x to extract files, z to filter through gzip for decompression (leave this off if the file does not have a gz extension), v for verbose mode so you can tell what’s going on, f indicating there will be a filename to follow. You may want to create an alias called “untar” that feeds in these options if you have a hard time remembering command line options as I do.

The command will not install the software, but it will extract the archived files. After extracting files then you can install the extracted files by reading README file or INSTALL file (because there you can instructions for installing those particular files).

Afcourse there are many distributions, so the packaging managing tools. Like, SUSE uses RPM as its native package format, but has its own tool to manage softwares on system.

Yast is the packaging managing tool used in openSUSE Linux distribution, as well as SUSE’s derived commercial distributions. I’ll cover Yast in my other post.

I will cover some more majorly used packaging management tools like, ‘dpkg’ in my other post. The work and attributes of some other packaging management tools will be discussed in that post.

Also Read important article The Linux Permissions: An Introduction