Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If you want to install and maintain the YFS client yourself on your desktop, here are the steps which works for Ubuntu 18.04 "bionic" and 16.04 "xenial".
These commands need to be run as root (eg, get a root shell by doing 'sudo -i')

Code Block
languagetext
cd /tmp
apt install curl
curl -O -s https://www.auristor.com/filesystem/GPG/AURISTOR-GPG-KEY-v1
apt-key add ./AURISTOR-GPG-KEY-v1

source /etc/lsb-release
cat > /etc/apt/sources.list.d/auristor-client.list <<EOF
deb [arch=amd64] https://client-rpm-repo.auristor.com/filesystem/repo/recommended/$DISTRIB_CODENAME/ $DISTRIB_CODENAME client
EOF

apt-add-repository "deb http://archive.ubuntu.com/ubuntu $DISTRIB_CODENAME universe"   # for heimdal-clients package
apt update
apt-get install auristorfs-client auristorfs-modules3-`uname -r` heimdal-clients
depmod -a
systemctl is-active auristorfs-client || systemctl start auristorfs-client

...