Everything Linux 101

Install Deb Programs Manually

Some times your disto’s repository may not have a program you want to install or the newest version of one you have installed. So how to install Deb programs manually with dpkg from a command terminal.

Example: To install the Google Chrome web browser. Open Firefox and go to www.google.com. In the search box type in Chrome. Click on the Download button and select the version you need. Either the 32 bit or the 64 bit for deb. Save to your Home directory or move to there after the download is complete. Now once the downloaded file is in your Home directory, (Example: /home/bob) copy this into a Terminal Window and hit enter. sudo dpkg -i *.deb This command will run any deb package in your home directory. So you can install multiple deb packages at one time.

Debian packages are standard Unix ar archives that include two tar archives optionally compressed with gzip(zlib), Bzip2, lzma, or xz (lzma2): one archive holds the control information and another contains the program data.

The accepted program for handling these packages is dpkg, most commonly via other programs such as apt/aptitude, the Ubuntu Software Center, Synaptic or Gdebi.

Debian packages can be converted into other packages and vice versa using alien, and created from source code using CheckInstall or Debian Package Maker.

Some core Debian packages are available as udebs (“micro debs”), and are typically used only for bootstrapping a Debian installation. Although these files use theudeb filename extension, they adhere to the same structure specification as ordinary deb files. However, unlike their deb counterparts, udeb packages contain only essential functional files.[2] In particular, documentation files are normally omitted. udeb packages are not installable on a standard Debian system.

Reference Link for Deb

Reference Link for dpkg