I know the way to install software on Linux i.e.
apt-get install
or
yum install
These methods will only works until we have internet connection. Is there any way, so that I can download the software from one PC with internet, then take that software to the other PC without internet & install the software there, as we can do it in Windows OS?
I tried manually downloading firefox browser from its website & then I extracted it, I got a single firefox. When I clicked on it, firefox directly open, but not installed.
apt-get
as you're used to. Example from the man page:deb file:/home/jason/debian stable main
Or you can usedpkg -i <package>
to install. This doesn't automatically resolve dependencies, though. – Marco Oct 14 '15 at 06:25