# nfs-ganesha **Repository Path**: breeze_cool/nfs-ganesha ## Basic Information - **Project Name**: nfs-ganesha - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: 1.5.x - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-11 - **Last Updated**: 2025-05-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README NFS-GANESHA is packaged with the autotools products, it follows the classical './configure && make && make install' schema. But, NFS-GANESHA is coming with different Namespaces' backends called FSAL (which stands for File System Abstraction Layer). The selection of the FSAL to be compiled with is done at './configure' time, via the --with-fsal option Compiling NFS-GANESHA with POSIX FSAL: ./configure --with-fsal=POSIX && make && make install Compiling NFS-GANESHA with LUSTRE FSAL: ./configure --with-fsal=LUSTRE && make && make install Compiling NFS-GANESHA with PROXY FSAL ./configure --with-fsal=PROXY && make && make install Compiling NFS-GANESHA for a "FUSE-like" binding ./configure --with-fsal=FUSE && make && make install Note: if no '--with-fsal=' is provided, the PROXY FSAL will be used. /!\ : If you got the source tree via git (git clone for example), you do not have the autotools specific stuff. You have to install those from your machine. This is done by running "autoreconf --install" from src/ . This will as well generate the related ./configure script.