Gebruikershulpmiddelen

Site-hulpmiddelen


li_webdav

Ten behoeve van het koppelen van cloud storage (argeweb databird) via de linux cli de volgende procedure:

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 <user> 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

li_webdav.txt · Laatst gewijzigd: 2019/07/24 18:14 (Externe bewerking)