Difference between revisions of "NFS mount on EA board"

From Klaus' wiki
Jump to: navigation, search
Line 7: Line 7:
 
</source>
 
</source>
  
where directory is the '''directory''' you want to export to the net and the '''hostname''' is for instance an IP address of your EA board. The options can be '''rw, sync'''.
+
where directory is the '''directory''' you want to export to the net and the '''hostname''' is for instance an IP address of your EA board. The options can be '''rw,sync'''.
 +
 
 +
<source lang="bash">
 +
/home/emb/uClinuxDist  10.1.18.73(rw,sync)
 +
</source>

Revision as of 08:37, 22 February 2011

Exporting a directory from the development host and mounting this directory eases the development process.

In /etc/exports add this line

directory hostname(options)

where directory is the directory you want to export to the net and the hostname is for instance an IP address of your EA board. The options can be rw,sync.

/home/emb/uClinuxDist   10.1.18.73(rw,sync)