win10 映射ubuntu共享盘为网络驱动器

时间:2024-05-20 14:48:15

如果你以前没有装过nfs服务的话那么首先要下载几个包,在Ubuntu下面很简单,输入命令:
#apt-get install nfs-kernel-server
#apt-get install nfs-common

安装结束后,开始配置nfs,配置文件是/etc/exports,主要是设置服务器的共享目录以及权限的,
#sudo vim /etc/exports
在后面加上你的共享目录即可。我的配置文件如下:
# /etc/exports: the access control list for filesystems which may be exported
#        to NFS clients.  See exports(5).
#
# Example for NFSv2 and NFSv3:
# /srv/homes       hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
#
# Example for NFSv4:
# /srv/nfs4        gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
# /srv/nfs4/homes  gss/krb5i(rw,sync,no_subtree_check)
#

/home/casy/linux_work *(rw,sync,no_root_squash)
/media/data/rootfs/ *(rw,sync,no_root_squash)

然后重启nfs服务,执行下面命令
#sudo /etc/init.d/nfs-kernel-server restart

成功启动后,执行
#showmount -e
可以查看共享了那些目录。

再去win10环境下映射网络驱动器即可。

win10 映射ubuntu共享盘为网络驱动器