Alcaudon wrote: 
> 
> 
> I'm a total noob to linux (this is the first time I use it), and all the
> knowledge I have comes from a few quick and dirty google searches done
> in 30 minutes but probably I can help you.
> 
> [snip]
> 
> Then I just did:
> > 
Code:
--------------------
  >   > 
  > [fedora@wandboard ~]$ sudo mount NASIPaddress:/volume/folder
  > 
--------------------
> > 
> 
> This worked for me (the music folder in my NAS was listed in the
> /storage folder), but as I said I have no clue of linux so all this
> might be totally wrong, but it could be of help until someone else
> with more knowledge than I gives you a better reply.
> 
> Good luck! ;)

That's fine and thanks for helping out a forum member.  Having edited
fstab, you could reduce typing a bit by just doing:

Code:
--------------------
    
  sudo mount -a
  
--------------------

This will mount anything in fstab that is not already mounted. Thus, if
you added a new line in /etc/fstab (or uncommented one), it will
incrementally execute just that line. To verify, use 

Code:
--------------------
    
  df -t nfs
  
--------------------

The newly mounted nfs filesystem and its usage stats will be displayed
assuming the mount succeeded.



----------------------
"Dreamer, easy in the chair that really fits you..."
------------------------------------------------------------------------
dsdreamer's Profile: http://forums.slimdevices.com/member.php?userid=12588
View this thread: http://forums.slimdevices.com/showthread.php?t=99395

_______________________________________________
unix mailing list
[email protected]
http://lists.slimdevices.com/mailman/listinfo/unix

Reply via email to