Sunday 4 November 2012

Install software using .deb and .bin package in Linux (Ubuntu)

For installing debian package in Ubuntu..

Debian package manager is used to install debian packages on Ubuntu. We have full software in the form of debian package.

dpkg is a tool to install, build, remove and manage packages. dpkg itself is controlled entirely via command line parameters. For example -i use to install .deb file.

                                      
                                $dpkg -i  filename.deb


Bin package installation in ubuntu

Simply make it executable
                              $chmod +x filename.bin

now the file is executable

                               $./filename.bin 

No comments:

Post a Comment