Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the nolock parameters required when NFS is mounted on the target board

2025-01-19 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

Today, I will talk to you about what nolock parameters are needed when mounting NFS on the target board, which may not be well understood by many people. in order to make you understand better, the editor has summarized the following contents for you. I hope you can get something according to this article.

one。 Check the nfs status:

# service nfs status

two。 Create a nfs shared folder on the host:

# mkdir / nfsroot

# echo "/ nfsroot 192.168.1.118 (rw,sync,no_root_squash)" > / etc/exports

# cat / etc/exports

/ nfsroot 192.168.1.118 (rw.sync,no_root_squash)

Here we create / nfsroot for nfs sharing, and set the sharing property IP to 192.168.1.118 (development board) in the / etc/exports file to be readable and writable for users, and no_root_squash specifies the trusted client.

three。 Start the host nfs service

# service nfs start

Fourth, in the development board mount

# mount 192.168.1.100:/nfsroot / mnt/

Without any prompt to indicate success, you can operate / mnt directory, cp, mv files, etc.

There is the following error message: / # mount-t nfs 192.168.1.249:/appdata / mnt

Portmap: server localhost not responding, timed out

RPC: failed to contact portmap (errno-5).

Portmap: server localhost not responding, timed out

RPC: failed to contact portmap (errno-5).

Lockd_up: makesock failed, error=-5

Portmap: server localhost not responding, timed out

RPC: failed to contact portmap (errno-5).

Mount: Mounting 192.168.1.249:/appdata on / mnt failed: Input/output error

Possible reasons:

Nfs mount default options include file locks, which depend on the dynamic port allocation feature provided by portmap

Simple solution: kill file lock (lockd) or mount-o nolock

What exactly is the reason for the file lock mentioned above? a better solution has not been found yet.

Note: when the host firewall is set, it may also cause the target board to be inaccessible.

Change to: mount-o

Nolock 192.168.1.100:/nfsroot / mnt can solve the problem.

After reading the above, do you have any further understanding of the nolock parameters required when the target board mounts NFS? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report