I've just gained full root access through SSH to my readyNAS which runs Debian and I am looking into ways of making network shares available directly on the readyNAS.

I guess my syntax is completely wrong, so how should I really map up the following drive to access it in my SSH terminal?

\\UBUNTU\www
link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Correct me if im wrong, but your trying to access a network share in debian?
or are you trying to make a network share accessible from other machines?

this is how to mount one in debian/ubuntu:
sudo smbmount //HOSTNAME/FOLER /mount/point -o user="username%password",uid=1000,mask=000

link|improve this answer
btw that command is one line – madmaze Dec 20 '10 at 16:08
1  
FYI, the preferred filesystem type is cifs, as in mount -t cifs //hostname/share /mount/point, and smbmount / smbfs are obsolete. – grawity Dec 20 '10 at 19:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.