I have no root access on this machine.
I would like to know if there is a way I can download Ubuntu packages and install them as non-root?
Probably in my ~/bin
or ~/usr/share
or something like that? Would that work?
I have no root access on this machine.
I would like to know if there is a way I can download Ubuntu packages and install them as non-root?
Probably in my ~/bin
or ~/usr/share
or something like that? Would that work?
Apt doesn't support it directly, but there are ways to do it:
.deb
ApproachIf the
deb
isn't in the Ubuntu repositories,apt-get package_name
won't work, but you may be able to download it from a web site.This will extract the
.deb
package todir/
. Then you can export thePATH
where the binary is. As long as all dependencies of the binary are installed, it should run as normal.schroot
ApproachAnother approach is to use
schroot
to create a non-root chroot. This is a somewhat involved process, but one you should be able find community help for as many developers set up chroot environments for compiling code.apt-get source
ApproachFinally, you could use the
apt-get source
command to fetch the source of the package and configure it to install locally. Usually this looks something like:The disadvantage to this approach is that you need the development environment available for this approach to work at all, and you might find yourself compiling dozens of packages in order to resolve all the dependencies.
Historical Approach
It used to be possible to install
package.deb
withdpkg
into one's home directory.The disadvantage to using
dpkg
like this is that error messages are likely to be cryptic; dpkg doesn't automatically resolve dependencies or create the directory structure it expects.I assume you want to install jedit. First you have to find the package and download it. I just take the deb file from some mirror and open a console/terminal:
mkdir /tmp/jedit && cd /tmp/jedit
-- Makes a new diretory intmp
and changes into it.wget http://mirrors.kernel.org/ubuntu/pool/universe/j/jedit/jedit_4.3.1.dfsg-0ubuntu1_all.deb
-- Download packagear x jedit_4.3.1.dfsg-0ubuntu1_all.deb
or, easy to type,ar x *.deb
-- this extracts the file contentstar xvzf data.tar.gz
-- the filedata.tar.gz
has all the stuff which you need for executing the softwareusr/bin/jedit
opens the editorYou can move the files to some point in your home directory and execute them from there.
I wrote a program called JuNest which basically allows to have a really tiny Linux distribution (containing just the package manager) inside your $HOME/.junest directory.
It allows you to have your custom system inside the home directory accessible via proot and, therefore, you can install any packages without root privileges. It will run properly under all the major Linux distributions, the only limitation is that JuNest can run on Linux kernel with minimum recommended version 2.6.32.
For instance, after installing JuNest, to install jedit: