用 C 代码打开 NFS 文件
如果我使用转到 nfs 目录的路径名在 C/C++/Java 代码中打开一个文件,那么读写语法如何与无状态的 NFS 一起工作?我已经尝试过,但找不到访问 NFS 安装文件的示例代码。我目前的理解是 NFS 客户端的工作是保持状态(如读写指针),并且应用程序使用相同的语法。
一个相关的问题是关于 VFS 和 UFS 的。当前 UNIX 机器中的所有文件是否首先通过其 vnode 访问,然后(取决于本地与远程)inode 或 rnode 结构?
If I open a file in my C/C++/Java code using a pathname that goes to an nfs directory, how the does the read and write syntax work with NFS being stateless and all? I have tried but cant find an example code accessing NFS mounted files. My current understanding is that it is the job of the NFS client to keep state (like read and write pointer) and the application uses the same syntax.
A related question is regarding VFS and UFS. Are all files in a current unix machine accessed through their vnodes first and then (depending on local vs remote) inode or rnode structures?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NFS(缺少文件锁定)与用户级应用程序的本地存储没有什么不同。它可能会更慢,或者可能会意外丢失,但这也可能发生在本地存储上。这可能就是为什么您找不到特定的以 NFS 为中心的示例代码的原因。
NFS (short of file locking) is no different than local storage to user-level applications. It might be slower, or it might drop out unexpectedly, but that can happen to local storage too. That's probably why you can't find specific NFS-centric example code.