|
Add the XtreemFS repository to your system
The easiest way to install XtreemFS on Debian or Ubuntu is to add our repository by following these steps:
- Add a line with the following format to the file /etc/apt/sources.list.
deb <URL to repository> ./
Replace <URL to repository> with the URL of the repository for your distribution. You can find it in the "Download" column above.
For instance, the packet source for the "Ubuntu 16.04" repository is
deb http://download.opensuse.org/repositories/home:/xtreemfs/xUbuntu_16.04 ./
Note appending ./ to the URL is necessary.
- Add the package signing key of our repository to your system. As the key is currently the same for all distributions, you don't have to change the URL to your distribution's repository.
> wget -q http://download.opensuse.org/repositories/home:/xtreemfs/xUbuntu_16.04/Release.key -O - | sudo apt-key add -
- Update the package lists:
> sudo apt-get update
- Install the client or server package:
> sudo apt-get install xtreemfs-client
> sudo apt-get install xtreemfs-server
|