Results 11 to 14 of 14
I also have problems with CIFS. After a linux(!) reboot I can mount to the windows share no problem. but if I dare try to connect a second time thats ...
- 11-21-2006 #11Just Joined!
- Join Date
- Oct 2006
- Posts
- 5
I also have problems with CIFS. After a linux(!) reboot I can mount to the windows share no problem. but if I dare try to connect a second time thats when all hell breaks loose.
I can't figure out what is going wrong but mount and mount.cifs remain in active processes and I have to kill them manually. But it still doesn't work just the same... I think I may be that CIFs is not properly closing the connection or something.
I can't even umount either. everything just freezes.
- 11-22-2006 #12Just Joined!
- Join Date
- Nov 2006
- Posts
- 1
This may not be your problem but I had to add the workgroup=domain.yourdomain argument to all of my fstab entries after switching to CIFS.
- 01-04-2007 #13Just Joined!
- Join Date
- Jan 2007
- Posts
- 1
I also had the same errors from CIFS using the following syntax :
Code:mount -t cifs //server/share /mnt/dir -o credentials=/path/to/file
The problem came from my credential file which was :Code:mount error 13 = Permission denied Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
In my password I had a "&" and using the following credential file did work :Code:username=xxxxx password=yyyyy
Code:username=xxxxx password="yyyyy"
- 06-27-2007 #14Just Joined!
- Join Date
- Jun 2007
- Posts
- 1
I also had the
error.Code:mount error 13 = Permission denied Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
After changing my credentials file from
toCode:username=user password=passwd
it worked!Code:username=DOMAIN\user password=passwd
Hope this helps


