top of page

Install .deb File in Ubuntu

.deb file can be install directly in Ubuntu.

It just need special command or tools to run .deb file :)

Using Command Line Method

1. Before installation
$ sudo dpkg -i filename.deb

 

2. After installation
$ sudo apt-get install -f
/usr/bin/ruby2.1

 

Using gdebi Method

1. Installation gdebi

$ sudo apt-get install gdebi

2. Use gdebi
Right click .deb file --> open With --> GDebi Package Installer

Done. You can now install many .deb file :D.

bottom of page