SSHFS Error – No Such File or Directory

sshfs

I'm trying to mount a folder over ssh using sshfs. Evertime I do so I get the error

No such file or directory

My terminal:

user@computer:~$ sshfs admin@server.com:/volume1/somedir ~/mnt/somedir
admin@server.com's password: 
admin@server.com:/volume1/somedir: No such file or directory

It returns the directory listing, as expected if I try:

ssh admin@server.com ls /volume1/somedir

This is Ubuntu 12.04 connecting to a Synology NAS with DS4.1

What am I doing wrong here?

Best Answer

So aparently when connecting to sftp on a Synology, / is the list of shares. So I just have to do:

sshfs admin@server.com:/somedir ~/mnt/somedir