NFS 和 NFS JAVA(/etc/exports)

发布于 2024-11-06 05:42:19 字数 394 浏览 0 评论 0原文

我正在尝试在 UNIX 上安装 PC。 我找到了一个名为“mount”的软件,并编辑了unix /etc/exports 文件来识别PC ip(或dns名称)。

我执行mount,没问题。我什至不需要指定密码。但是,有时安装会停止工作,我必须再次重新安装。

我想知道两件事:

  1. 我可以使用“net use”命令来挂载(无需指定 unix 的用户名和密码 - 鉴于 /etc/exports 可以识别挂载的 PC)吗?

  2. 无论我使用挂载还是“net use”,它们都要求我为 NFS 目录设置驱动器号。无论如何,有没有写一些java代码而不是“mount”/“net use”来访问我的远程目录(同样,考虑到/etc/exports识别运行java的PC)。

I am trying to mount a PC on unix.
I found a software called "mount" and I edited the unix /etc/exports file to recognize the PC ip (or dns name).

I perfrom mount, and it is ok. I don't even have to specify a password. But, occasionally the mount stops working and I have to re-mount again.

I was wondering two things:

  1. Can I use "net use" command to mount (without specifying the username and password for the unix - given the /etc/exports recognizes the mounting PC)?

  2. Whether I use the mount or "net use", they require me to set a drive letter for the NFS directory. Is there anyway instead to write some java code instead of both "mount"/"net use" to access my remote dir (again, given the /etc/exports recognizes the PC from which the java is run).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖个坑埋了你 2024-11-13 05:42:19

如果您使用的是 Microsoft 提供的 Windows NFS 客户端,它会处理 NFS 导出的 UNC 样式路径,即格式为 \\unix_server\export\path。这将允许您访问 NFS 文件而无需安装驱动器号。但是,此 NFS 客户端和 UNC 路径有一个限制,即不支持多部分导出。有关详细信息,请参阅此链接

If you are using the Microsoft-provided Windows NFS client it does handle UNC style paths to NFS exports, that is in the format \\unix_server\export\path. This would allow you to access the NFS files without mounting a drive letter. There is a limitation with this NFS client and UNC paths however, which is multipart exports are not supported. See this link for details.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文