tiny210 出现 nfs:server is not responding,still trying 原因与解决方案

#This line cannot be removed. by FriendlyARM(www.arm9.net)

CheckOneButton=No
Action = Install
OS =Linux

LCD-Mode = No
LCD-Type = S70

LowFormat = No
VerifyNandWrite = No
CheckCRC32=No

StatusType = Beeper | LED

################### Linux ####################
Linux-BootLoader = Superboot210.bin
Linux-Kernel = Linux/zImage
Linux-CommandLine = console=ttySAC0 root=/dev/nfs nfsroot=192.168.1.100:/home/ZP1015/Desktop/tiny210/rootfs ip=192.168.1.125:192.168.1.100:192.168.1.100:255.255.255.0:linux.arm9.net:eth0:off skipcali=yes ctp=2
上面是tiny210 SD卡设置的启动参数

但是会出现nfs:server is not responding,still trying
错误

1、原因

NFS 的默认传输协议是 UDP,而PC机与嵌入式系统通过UPD交互时就会出现严重的网卡丢包现象。在目标板上通过NFS复制PC机上较大文件到目标板上的时候会遇到这种问题。 本来还以为是nfs出了故障,但是google了一下发现原来不是nfs的原因,而是由于传送的数据太大,出现数据包丢失现象。

2、方案一

mount -t nfs -o intr,nolock,rsize=1024,wsize=1024 192.168.1.100:/主机nfs目录 /挂载路径
<pre name="code" class="cpp">Linux-CommandLine = console=ttySAC0 root=/dev/nfs nfsroot=192.168.1.100:/home/ZP1015/Desktop/tiny210/rootfs flags=intr,rsize=1024,wsize=1024,ip=192.168.1.125:192.168.1.100:192.168.1.100:255.255.255.0:linux.arm9.net:eth0:off skipcali=yes ctp=2

3、方案二


<span style="font-family: Arial; font-size: 14px; line-height: 26px;">修改etc/eth0-setting 下的IP ,将其改成自己板子的IP即可</span>
时间: 2024-08-03 13:59:07

tiny210 出现 nfs:server is not responding,still trying 原因与解决方案的相关文章

nfs:server is not responding, still trying

问题描述:我使用目标机挂在nfs后,读写较大的文件就会出现server is not responding, still trying问题,google了一下,有人是这么解决的,如下 ************************************************************************* 在mini2440开发板上挂载主机上的nfs文件系统后传送较大文件时会出现下面的提示: nfs:server is not responding, still tryi

树莓派上启动nfs server

1. nfs 是什么 (略)http://vbird.dic.ksu.edu.tw/linux_server/linux_redhat9/0330nfs.php 2. 安装 nfs-kernel-server 和 rpcbind(替代portmap), 并启动rpcbind和nfs-kernel-server服务. apt-get install nfs-common nfs-kernel-server sudo apt-get install portmap [email protected]

Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.【转】

今天碰到了一个查询异常问题,上网查了一下,感谢原创和译者 如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Class , 你在执行一个很费时的SQL 操作时候,可能就会碰到下面的超时异常. --------------------------- ---------------------------Timeout expired.  The timeout period elapsed

Setting Up An NFS Server And Client On OpenSUSE 12.2

1 Preliminary Note I'm using two OpenSUSE systems here: NFS Server: server.example.com, IP address: 192.168.0.100 NFS Client: client.example.com, IP address: 192.168.0.101 2 Installing NFS server: On the NFS server we run: zypper install nfs-kernel-s

Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.

今天碰到了一个查询异常问题,上网查了一下,感谢原创和译者 如果你使用的数据库连接类是 the Data Access Application Blocks "SqlHelper" 或者 SqlClient Class , 你在执行一个很费时的SQL 操作时候,可能就会碰到下面的超时异常. --------------------------- ---------------------------Timeout expired.  The timeout period elapsed

【翻译自mos文章】当NFS server 宕机后,Oracle 数据库 冻结并且alert 文件里没有任何错误

当NFS server 宕机后,Oracle 数据库 冻结并且alert 文件里没有任何错误 翻译自mos文章:When NFS Server Is Down, Oracle Server Freezes With No Errors In Alert Log File (文档 ID 1316251.1) 适用于: Oracle Server - Enterprise Edition - Version: 10.2.0.4 and later   [Release: 10.2 and later

NFS server 搭建

一.NFS server 主要用户linux与unix间的文件共享服务器 1.NFS又名网络文件协议:专门用来让linux或unix间进行文件共享 2.NFS是基于RPC协议之一,由多个进程共同构成 3.客户端与服务器端同时得使用Rpc协议 4.RPC=>开启端口不固定,大于1024 二.安装NFS Serve 1.首先需要安装RPC包 一般名为rpcbind软件包 2.安装NFS包 NFS包名==>nfs-utils ==>需要先启动exportfs[rpcbind],再启动NFS 三

NFS Server端的防火墙控制(十一)

NFS Server端的防火墙控制 真正企业生产环境的存储服务器都属于内网环境,都无需防火墙,因此,此处可以不配置,如果要配置的话就有两种方法: 方法一: 1.      仅允许IP段访问 iptables -AINPUT -s 192.168.221.1/24 -j ACCEPT 2.      允许IP段加端口访问 iptables -AINPUT -i ech1 -p tcp -s 192.168.221.1/24 --dport 111 -j ACCEPT iptables -AINPU

windows nfs server for linux

摘要 在开发嵌入式系统的过程中,为了方便调试与文件共享,需要使用到nfs,即网络文件系统,这位板子的调试测试带来了很大的方便.之前在linux系统下开发,与ARM11核心板 linux系统对接共享也比较方便,近期因为个别原因,将开发转移到了windows平台,因此需要windows下的nfs server.即整体解决方案就是windows nfs server for linux. NFS,是Network File System的简写,即网络文件系统.网络文件系统是FreeBSD支持的文件系统