ubuntu下编译nfs-ganesha
Ubuntu 下没有专门的源,因此需要手动编译
步骤如下
# clone 本地
git clone --recursive -b V2.7-stable https://github.com/nfs-ganesha/nfs-ganesha.git
# 安装相关依赖
apt install gcc git cmake make libtool flex g++ uuid-dev nfs-kernel-server bison libkrb5-dev libgss-dev
# 编译
cd nfs-ganesha
mkdir build
cd build
cmake ../src
make && make install
# 挂载
Centos下编译
# clone 本地
git clone --recursive -b V2.7-stable https://github.com/nfs-ganesha/nfs-ganesha.git
# 安装相关依赖
yum install gcc git cmake autoconf libtool bison flex doxygen openssl-devel gcc-c++ libuuid-devel nfs-utils krb5-devel gcc-c++ make -y
# 编译
cd nfs-ganesha
mkdir build
cd build
cmake ../src
make && make install
本文详细介绍了如何在Ubuntu和CentOS系统中从源代码编译NFS-Ganesha,包括必要的依赖安装和编译步骤。适用于希望在不同Linux发行版上部署NFS-Ganesha的系统管理员和技术人员。
7053

被折叠的 条评论
为什么被折叠?



