October 13, 201312 yr I'm working to move transfer my Unraid data to a backup machine I setup (and testing) with FreeNas. I setup FreeNas cifs share with anonymous permissions, and I can access that share (map the drive/folder) via a window machine just fine. I made directory of /mnt/freenas but when I tried to mount the share using the below, I get a permission denied. The FreeNas share is set for anonymous, and I again I can connect just fine with no user/pass in windows. root@unraidserver:/mnt# ls disk1/ disk2/ disk3/ freenas/ user/ root@unraidserver:/mnt# mount -t cifs -o user=guest,password= //192.168.11.132/Public freenas mount error(13): Permission denied Refer to the mount.cifs( manual page (e.g. man mount.cifs) root@unraidserver:/mnt# Anyone see anything wrong with the above?
October 13, 201312 yr You seem to have omitted the parameter specifying the mount point in the local file system.
October 13, 201312 yr Author The mount point on the local unraid is system is the 'freenas' folder that resides in the /mnt directory. Since I am already in that directory, I only enter 'freenas' vs 'mnt/freenas'
October 13, 201312 yr Author Just to update after some searching I found that adding the following works "sec=ntlm" to your -o options root@unraidserver:/mnt/freenas# mount -t cifs -o sec=ntlm,user=guest,password=//192.168.11.132/Public freenas
Archived
This topic is now archived and is closed to further replies.