WebDav Filesystem

davfs2" is a Linux file system driver that allows you to mount a WebDAV server as a local file system, like a disk drive. This way applications can access resources on a Web server without knowing anything about HTTP or WebDAV.

Installation

yum install neon neon-devel

Install Fuse:

yum install kernel-source
cd /extra/src
wget http://voxel.dl.sourceforge.net/sourceforge/fuse/fuse-2.7.4.tar.gz
tar zxf fuse-2.7.4.tar.gz
cd fuse-2.7.4
./configure
make
make install

Download the latest version:

cd /extra/src
wget http://internap.dl.sourceforge.net/sourceforge/dav/davfs2-1.3.3.tar.gz
tar zxf davfs2-1.3.3.tar.gz
cd davfs2-1.3.3

Configure:

./configure

Build and install:

make
make install
groupadd davfs2
useradd -g davfs2 -s /bin/false -c "davfs2 User" davfs2

<strong>Create a mount point

Create the mount point:

mkdir /mnt/dav
Create an entry in <code>/etc/fstab

:

http://webdav.org/dav /mnt/dav davfs noauto,user 0 0

Recent Updates

  • 2 years 2 days ago
  • 2 years 2 days ago
  • 2 years 5 days ago
    php 8.x
  • 2 years 6 days ago
    10.6.7
  • 2 years 1 week ago
    Drop Centos 5/6 stuff