在Linux系统中,NFS(Network File System)是一种通过网络共享文件系统的协议,它允许不同的机器和操作系统通过网络共享彼此的文件,以下是关于Linux NFS开机挂载的详细步骤:
一、安装与配置NFS服务
1、检查是否安装nfs-utils:
rpm -q nfs-utils
如果没有安装,执行以下命令进行安装:
yum install nfs-utils -y
2、启动rpcbind和nfs服务:
systemctl start rpcbind systemctl start nfs-server
3、设置开机自启:
systemctl enable rpcbind systemctl enable nfs-server
4、编辑/etc/exports文件:
在文件中添加客户端访问权限,
/nfsdir 192.168.163.131(rw,no_root_squash)
然后重启nfs服务:
systemctl restart nfs-server
二、客户端操作
1、安装rpcbind:
客户端只需安装rpcbind服务即可:
yum install rpcbind -y
2、手动挂载NFS共享:
mkdir /mnt/nfsdir mount -t nfs 192.168.163.128:/nfsdir /mnt/nfsdir
3、验证挂载:
df -h
三、实现开机自动挂载
由于NFS需要网络启动后才能挂载,因此不能将挂载项写入/etc/fstab文件中,相反,可以将挂载命令写入到/etc/rc.d/rc.local文件中,具体步骤如下:
1、编辑/etc/rc.d/rc.local文件:
在文件末尾添加挂载命令:
echo "/bin/mount -t nfs 192.168.163.128:/nfsdir /mnt/nfsdir" >> /etc/rc.d/rc.local
2、赋予执行权限:
chmod +x /etc/rc.d/rc.local
3、重启系统以验证:
reboot
通过以上步骤,您可以实现Linux NFS的开机自动挂载,确保在系统启动时自动挂载指定的NFS共享目录。
以上就是关于“linux nfs开机挂载”的问题,朋友们可以点击主页了解更多内容,希望可以够帮助大家!
本文来源于互联网,如若侵权,请联系管理员删除,本文链接:https://www.9969.net/86652.html