|
Try using telent to connect to your Dreambox and type the command "mount" (with no parameters). This will list all mounted devices. If your NFS mount is not shown then you need to resolve why mounting failed. (The best way to do this is probably to issue the mount command manually - see below.)
If the mount is shown, then firstly check they there are files in the directory on the PC! Can you create files in the directory using the Dreambox that can be seen on the PC? (Telnet to the Dreambox, use the cd command to go to the mounted directory and type a command like "touch test.tmp" to create a dummy file.)
A typical mount command for NFS would be:
mount -t nfs -o wsize=4096,rsize=4096,rw,nolock 192.168.0.6:/home/chris/sat/movie /hdd/movie
You will need to change the IP address and directory (the text on the left and right of the colon respectively) to match your configuration.
|