230

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?

Braiam
  • 69,112
Weboide
  • 10,783

4 Answers4

198

Apt doesn't support it directly, but there are ways to do it:

.deb Approach

apt-get download package_name  # replace `package_name` with the name of the package.

dpkg -x package.deb dir

If the deb isn't in the Ubuntu repositories, apt-get download package_name won't work, but you may be able to download it from a web site.

This will extract the .deb package to dir/. Then you can export the PATH where the binary is. As long as all dependencies of the binary are installed, it should run as normal.

schroot Approach

Another 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 Approach

Finally, 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:

apt-get source package
cd package
./configure --prefix=$HOME
make
make install

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 with dpkg into one's home directory.

dpkg -i package.deb --force-not-root --root=$HOME

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.

SavciSV
  • 153
jbowtie
  • 14,025
20

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:

  1. mkdir /tmp/jedit && cd /tmp/jedit -- Makes a new diretory in tmp and changes into it.
  2. wget http://mirrors.kernel.org/ubuntu/pool/universe/j/jedit/jedit_4.3.1.dfsg-0ubuntu1_all.deb -- Download package
  3. ar x jedit_4.3.1.dfsg-0ubuntu1_all.deb or, easy to type, ar x *.deb -- this extracts the file contents
  4. tar xvzf data.tar.gz -- the file data.tar.gz has all the stuff which you need for executing the software
  5. usr/bin/jedit opens the editor
  6. done :-)

You can move the files to some point in your home directory and execute them from there.

qbi
  • 19,515
17

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:

$>junest -f
(junest)$> pacman -S jedit
(junest)> jedit
knia
  • 103
1

I find the accepted answer lacks a concrete example. This is a full working example:

# - opam (snap, no sudo)
# ref: https://askubuntu.com/questions/339/how-can-i-install-a-package-without-root-access
apt-get download opam
#apt-get download opam_1.2.2-4_amd64
#ls | less
mkdir -p ~/.local
dpkg -x opam_1.2.2-4_amd64.deb ~/.local/bin
export PATH="$HOME/.local/bin:$PATH"
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc.user

tr ':' '\n' <<< "$PATH"

opam --version

in particular you need to be careful because apt-get download might now give you the .deb fine with the exact name you expect.

Note this one usually also works:

# - install the bin then put it in path and restart your bash
mkdir ~/.rbenv
cd ~/.rbenv
git clone https://github.com/rbenv/rbenv.git .

export PATH="$HOME/.rbenv/bin:$PATH" echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc echo 'eval "$(rbenv init -)"' >> ~/.bashrc

exec $SHELL

#bash

rbenv -v