Installing packages without sudo access

aptitudedpkginstallationpackages

Is there an easy way to install packages with a large dependency tree, provided that you don't have superuser access? For instance, say I wanted to install firefox. Firefox has a ton of dependencies, each of which have their own dependencies, etc. Installing these the "./configure; make; make install" way would take forever.

Is there an option I can give apt-get to make it install in a personal directory? Or is there a way to hack it to do all the heavy lifting for me?

Best Answer

You can install individual .deb files in your home directory with:

dpkg-deb -x /path/to/some.deb $HOME

But this does not take care of the dependencies like aptitude or apt-get does.

Related Question