Dies ist eine alte Version des Dokuments!
Fuse
apt-get install linux-headers-`uname -r`Installieren:
cd /opt wget ftp://ftp.zresearch.com/pub/gluster/glusterfs/fuse/fuse-2.7.4glfs11.tar.gz tar -zxvf fuse-2.7.4glfs11.tar.gz cd fuse-2.7.4glfs11 ./configure --enable-kernel-module make make install
GlusterFS
# Bison Installieren
cd /usr/ports/devel/bison/ && make install clean
Alloca.h Hack vor FreeBSD
echo "#include <stdlib.h>" > /usr/include/alloca.h
# Installieren
mkdir /opt cd /opt wget http://ftp.gluster.com/pub/gluster/glusterfs/2.0/LATEST/glusterfs-2.0.4.tar.gz tar xvzf glusterfs-2.0.4.tar.gz cd glusterfs-2.0.4 # Hack configure so it assumes fuse is installed In ./configure, change: BUILD_FUSE_CLIENT=no **to** BUILD_FUSE_CLIENT=yes ac_cv_lib_fuse_fuse_req_interrupt_func=no **to** ac_cv_lib_fuse_fuse_req_interrupt_func=yes # Manually set proper paths export LDFLAGS="-L/usr/local/lib -liconv" export CFLAGS="-I/usr/local/include/" # Build and install ./configure –enable-fuse-client make make install
