Ten behoeve van het koppelen van cloud storage (argeweb databird) via de linux cli de volgende procedure: [[http://tomalison.com/reference/2010/04/03/webdav/|Webdav]] ====== Ubuntu ====== ===== Install davfs2: ===== sudo apt-get install davfs2 ===== To mount as a non-root user: ===== Note: Must run dpkg-reconfigure davfs2 according to /usr/share/doc/davfs2/README.Debian to get around “/sbin/mount.davfs: program is not setuid root” issue when trying to mount as non-root user. Note: Add ignore_home kernoops to /etc/davfs2/davfs2.conf to get around the “/sbin/mount.davfs: / is the home directory of user kernoops” error. ===== Add an entry in fstab: ===== http://example.org/dav /media/dav davfs noauto,user 0 0 ===== Add your user to the davfs group: ===== sudo adduser davfs Make sure WebDAV connection credentials are in ~/.davfs2/secrets with restrictive permissions (chmod 600): /media/dav webdav-username password ===== Perform mount/unmount: ===== mount /media/dav umount /media/dav References: man mount.davfs2