发布网友 发布时间:2022-04-26 18:48
共4个回答
热心网友 时间:2023-10-13 16:45
1、首先要开启portmap和nfs服务。
service portmap start
service nfs start
2、查看服务是否开启。
netstat -ntpl
3、修改
/etc/exports
vi /etc/exports
#/home/temp *(rw,sync,no_root_squash,all_squash)
#/home/temp *(ro,sync,no_root_squash,all_squash)
(/home/temp
4、exportfs -a
(导出所有共享的目录)
5、
showmount -e
127.0.0.1 (查被共享的目录)
Export list for 127.0.0.1:
/mnt/inst *
/home/temp *
热心网友 时间:2023-10-13 16:45
vi /etc/fstab 在最后一行输入如下内容:
192.168.0.121:/nfs4 /nfs nfs defaults 0 0
NFS服务器IP地址:服务器共享出的分区挂载点 本机挂载点 文件类型
热心网友 时间:2023-10-13 16:46
在linux客户端挂接(mount)NFS磁盘共享之前,必须先配置好NFS服务端。
1、Solaris系统NFS服务端配置方法如下:
(1)修改 /etc/dfs/dfstab, 增加共享目录
share -F nfs -o rw /export/home/sunky
(2)启动nfs服务
# /etc/init.d/nfs.server start
(3)NFS服务启动以后,也可以使用下面的命令增加新的共享
# share /export/home/sunky1
# share /export/home/sunky2
注:/export/home/sunky和/export/home/sunky1是准备共享的目录
热心网友 时间:2023-10-13 16:46
把你挂在的内容,文件类型,读写等属性,按/etc/fstab里面的格式输入进去就行。追问多谢高手指定!!!
里面的东西不是很清楚,可不可以给给个解释???
追答打关键字 "nfs 挂载 fstab 配置" 会有很详细的介绍。