How to install and mount XtreemFS in Linux
What is XtreemFS? XtreemFS is a fault-tolerant distributed file system adapted for different storage needs. It is characterized by it’s: Versatility : XtreemFS is an open-source technology that do not require special hardware of kernel modules. It is easy to maintain and deploy on Linux, Windows and OS X. Reliability : What makes XtreemFS among the best fault-tolerant file systems is it’s capability to handel automatically faillures modes (even network split’s). Fault-tolerant replication keeps your data safe and gives you peace of mind. Scalability : Scalability is granted with XtreemFS according to your needs, simply by adding new standard hardware. You can start with a single server, grow to a cluster and even replicate across datacenters. Installation Debian/Ubuntu On Debian or Ubuntu add XtreemFS repository by editingf the file /etc/apt/sources.list as below: deb <URL to repository> ./ Replace with the URL of the repository for your distribution. For example 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...
Read More