PDA

View Full Version : [SOLVED] Install software in Ubuntu without checking for dependencies



h66m9d
September 15th, 2012, 08:08 PM
How can i install software in terminal without checking for dependencies?:?
I use Ubuntu 12.4 LTS

snowpine
September 15th, 2012, 08:38 PM
Welcome to the forums!

What is the software you are trying to install?

The typical command would be something like:


sudo apt-get install firefox

Does that work for you?

h66m9d
September 15th, 2012, 09:43 PM
Welcome to the forums!

What is the software you are trying to install?

The typical command would be something like:


sudo apt-get install firefox

Does that work for you?

Thanks for welcome message;)
I want install many softwares (.deb) in offline mode from a folder
and I want be sure installed all my ".deb" files
some software wasn't install in offline mode because they have dependencies
I need install them and ignore their dependencies

snowpine
September 15th, 2012, 09:45 PM
Some applications won't work without their dependencies. That is what "dependency" means.

Neoracu
September 15th, 2012, 10:52 PM
My suggestion is to install and use APTOnCD.
This will allow you to create a disc image with the packages you have in the folder, it will auto select the dependencies(only if you have the packages).
Then you just need to burn the image to a CD, CD's or DVD(I think a rewritable one would be better).
When you insert the disc it will ask you if you want to add the CD to the sources.
After that you can install whatever is in the CD.

Best Regards

h66m9d
September 16th, 2012, 10:51 AM
My suggestion is to install and use APTOnCD.
This will allow you to create a disc image with the packages you have in the folder, it will auto select the dependencies(only if you have the packages).
Then you just need to burn the image to a CD, CD's or DVD(I think a rewritable one would be better).
When you insert the disc it will ask you if you want to add the CD to the sources.
After that you can install whatever is in the CD.

Best Regards

Thanks a lot!
Why my ATPonCD can't load iso file in ubuntu 12.4?
"Load..." butom doesn't work.
even I was install k3b and drasero & Gdebi

tienlbhoc
September 16th, 2012, 11:06 AM
sudo dpkg -i --force-depends *.deb (if you got deb main and dependences in a folder)

or use local repositories
http://ubuntuofflineinstall.blogspot.com/2012/09/how-to-build-local-apt-repositories.html

h66m9d
September 16th, 2012, 11:35 AM
sudo dpkg -i --force-depends *.deb (if you got deb main and dependences in a folder)

or use local repositories
http://ubuntuofflineinstall.blogspot.com/2012/09/how-to-build-local-apt-repositories.html
Thank you.
your answer is excellent

Neoracu
September 16th, 2012, 01:44 PM
sudo dpkg -i --force-depends *.deb (if you got deb main and dependences in a folder)

or use local repositories
http://ubuntuofflineinstall.blogspot.com/2012/09/how-to-build-local-apt-repositories.html

This is a good one, If only I knew it 4 years ago...