Forum
[PROBLEM] Can't mount remote file system? - Printable Version

+- Forum (http://forum.xbian.org)
+-- Forum: Hardware (/forum-7.html)
+--- Forum: Network (/forum-25.html)
+--- Thread: [PROBLEM] Can't mount remote file system? (/thread-1224.html)



Can't mount remote file system? - dennis_k85 - 13th Aug, 2013 02:14 AM

I am trying to mount a linux file system on another linux machine, This is the
error I get. The exact command I am using works from another machine.

This is the command and error:
root@xbian:~# mount -t cifs //192.168.249.71/music /media/SS -o username=root,password=froboz
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)



Any suggestions?


Re: RE: Can't mount remote file system? - f1vefour - 13th Aug, 2013 03:51 AM

(13th Aug, 2013 02:14 AM)dennis_k85 Wrote:  I am trying to mount a linux file system on another linux machine, This is the
error I get. The exact command I am using works from another machine.

This is the command and error:
root@xbian:~# mount -t cifs //192.168.249.71/music /media/SS -o username=root,password=froboz
mount error(13): Permission denied
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)



Any suggestions?

Try this:

Terminal

mkdir /home/xbian/mymount
mount -t cifs -o username=root,password=froboz //192.168.249.71/music /home/xbian/mymount



RE: Can't mount remote file system? - dennis_k85 - 13th Aug, 2013 04:08 AM

mount -t cifs //192.168.249.71/music /media/SS -o username=root,password=froboz


Yes /media/SS is the directory to mount to.