发新话题
打印

Win10 Home安装使用nekodrive NFS客户端软件

Win10 Home安装使用nekodrive NFS客户端软件

更新:只能查看远程NFS服务器的共享目录,无法mount
正常情况下,使用命令mount:
mount  \\1.2.3.4\home\ssh1 g:
umount g:

Win10 Home或其它没有内置NFS Client的OS可以安装nekodrive作为NFS客户端软件

https://code.google.com/archive/p/nekodrive/
https://github.com/nekoni/nekodrive

参考:http://www.multigesture.net/articles/how-to-mount-nfs-on-windows-7-and-mac-os-x/

查看windows版本:
wmic os get caption
Caption
Microsoft Windows 10 家庭中文版
-----------
ls: cannot open directory '/nfsshare/': Input/output error
可以显示 /nfsshare目录(showmount -e xxx),但因为Windows NFS Server权限问题,不能挂载的解决方法
参考:https://serverfault.com/questions/761071/input-output-error-when-attempting-to-mount-a-windows-nfs-share
-----------
You can use umount -f -l /mnt/myfolder , and that will fix the problem.
-f – Force unmount (in case of an unreachable NFS system). (Requires kernel 2.1. ...
-l – Lazy unmount. Detach the filesystem from the filesystem hierarchy now, and cleanup all references to the filesystem as soon as it is not busy anymore.
参考:https://askubuntu.com/questions/292043/how-to-unmount-nfs-when-server-is-gone

[ 本帖最后由 linda 于 2020-7-30 11:21 编辑 ]

TOP

发新话题