i want to install OS uninstaller i have its .deb file and the two other dependency files(.deb) required for it but when i try to install the dependency file in the liveUSB the software center opens and the install button is grayed out, is there any other way?
Asked
Active
Viewed 3,348 times
2 Answers
1
Try this :
Install GDebi
by running the following command on the terminal.
sudo apt-get install gdebi
After it is installed go to your .deb file, right-click and 'open with GDebi'.
or
cd /path/to/the/directoy/which/contains/.deb/file
sudo gdebi filename.deb
It will install the package along with it's dependencies.

Avinash Raj
- 78,556

comrademike
- 784
- 1
- 9
- 14
-
Thanks Avinish Raj. I will try to emulate that style in future. – comrademike Jan 15 '14 at 14:11
-
Will he be able to apt-get gdebi without an internet connection? – chili555 Jan 15 '14 at 14:32
0
you can do it via command line:
cd /path-to-directory-that-contains-the-deb-files
sudo dpkg -i XXX.deb

Maythux
- 84,289