You are not logged in.
Pages: 1
Since I installed the latest kernel (2.6.25-arch) and rebooted, cifs no longer works.
Before that it worked perfectly.
It fails with the following:
willie ~ > sudo mount /mnt/mntpoint
mount error 20 = Not a directory
Refer to the mount.cifs(8) manual page (e.g.man mount.cifs)
I have this entry in fstab: (among others)
//ip/share /mnt/mntpoint cifs credentials=/home/willie/.smbpassword,uid=1000,gid=1000,noauto 0 0
.smbpassword contains:
username=xxx
password=xxx
...what's up?
Last edited by WiLLiE (2008-05-27 02:58:13)
Offline
Fixed.
For some reason I now have to disable LinuxExtensionsEnabled.
Any tips on a good place to execute this on startup?
echo 0 > /proc/fs/cifs/LinuxExtensionsEnabled
Last edited by WiLLiE (2008-05-27 12:27:01)
Offline
/etc/rc.local would be a good place.
Offline
Other solution: Add "nounix" to the mount options:
//ip/share /mnt/mntpoint cifs credentials=/home/willie/.smbpassword,uid=1000,gid=1000,noauto,nounix 0 0
Offline
Pages: 1