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,405 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
- 80,446
comrademike
- 784
0
you can do it via command line:
cd /path-to-directory-that-contains-the-deb-files
sudo dpkg -i XXX.deb
Maythux
- 87,123