Difference between revisions of "LeapFrog Pollux Platform: Mount NFS Directory"
From eLinux.org
(Blanked the page) |
|||
| Line 1: | Line 1: | ||
| + | == Summary == | ||
| + | This is a tutorial to setup an NFS folder on your host PC for your explorer to boot from. NFS mounting of a directory will enable you to test applications and scripts without having to copy anything to your Leapster or LeapPad Explorer. | ||
| + | == Prerequisites == | ||
| + | [[LeapFrog_Pollux_Platform:_Networking| Networking Setup]] | ||
| + | |||
| + | [https://help.ubuntu.com/8.04/serverguide/C/network-file-system.html NFS Host Setup] | ||
| + | |||
| + | |||
| + | == Software Needed == | ||
| + | Linux host PC | ||
| + | nfs-kernel-server | ||
| + | nfs-commonon | ||
| + | |||
| + | |||
| + | == Configure Server and Client == | ||
| + | '' On Device '' | ||
| + | |||
| + | You'll need to edit /usr/bin/mountnfs, change: | ||
| + | mount -o nolock `get-ip host`:/home/lfu/nfsroot/LF /LF | ||
| + | to: | ||
| + | mount -o nolock 10.0.0.1:/home/ /mnt | ||
| + | |||
| + | Start the server and client: | ||
| + | '' On Host '' | ||
| + | $ sudo /etc/init.d/nfs-kernel-server start | ||
| + | |||
| + | |||
| + | '' On Device '' | ||
| + | # modprobe nfs | ||
| + | # mountnfs | ||
| + | # cd /mnt/home | ||
| + | # ls | ||
| + | |||
| + | At this point should see the contents of your /home dir | ||
Revision as of 04:22, 12 July 2011
Contents |
Summary
This is a tutorial to setup an NFS folder on your host PC for your explorer to boot from. NFS mounting of a directory will enable you to test applications and scripts without having to copy anything to your Leapster or LeapPad Explorer.
Prerequisites
Software Needed
Linux host PC nfs-kernel-server nfs-commonon
Configure Server and Client
On Device
You'll need to edit /usr/bin/mountnfs, change:
mount -o nolock `get-ip host`:/home/lfu/nfsroot/LF /LF
to:
mount -o nolock 10.0.0.1:/home/ /mnt
Start the server and client: On Host
$ sudo /etc/init.d/nfs-kernel-server start
On Device
# modprobe nfs # mountnfs # cd /mnt/home # ls
At this point should see the contents of your /home dir