SquidGuard is a URL redirector used to use blacklists with the proxysoftware Squid. There are two big advantages to squidguard: it is fast and it is free.
WebDav Filesystem
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
- Log in to post comments