People, When I try to mount a network share with the following command, using kubuntu 5.10: sudo mount -t smbfs -o username=myusername,passwork=myuserpassword //esotericVAIO/Downloads /mnt/vaioDownloads I get to following error message mount: wrong fs type, bad option, bad superblock on //esotericVAIO/Downloads, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so I see the following error message in dmesg smbfs: mount_data version 1919251317 is not supported What does the dmesg mean? Thanks for your time. Chuck Downing Leadville, Colorado, USA
My error, I fat-fingered in the message only. The command should be as below. People, When I try to mount a network share with the following command, using kubuntu 5.10: sudo mount -t smbfs -o username=myusername,password=myuserpassword //esotericVAIO/Downloads /mnt/vaioDownloads I get to following error message mount: wrong fs type, bad option, bad superblock on //esotericVAIO/Downloads, missing codepage or other error In some cases useful info is found in syslog - try dmesg | tail or so I see the following error message in dmesg smbfs: mount_data version 1919251317 is not supported What does the dmesg mean? Thanks for your time. Chuck Downing Leadville, Colorado, USA
Em Ter?a 22 Novembro 2005 19:42, Chuck Downing escreveu:> sudo mount -t smbfs -o >username=myusername,passwork=myuserpassword //esotericVAIO/Downloads /mnt/vaioDownloads> > I get to following error message > > mount: wrong fs type, bad option, bad superblock > on //esotericVAIO/Downloads, > missing codepage or other error > In some cases useful info is found in syslog - try > dmesg | tail or so > > > I see the following error message in dmesg > > smbfs: mount_data version 1919251317 is not supported > > What does the dmesg mean?I saw this same type of error message when the user in question had a high uidnumber (like a few million). I switched to CIFS and never looked back.
> missing codepage or other errorThat rings a bell - there's a kernel option related to codepages: ------------------------------- Use a default NLS (SMB_NLS_DEFAULT) ... The nls settings can be changed at mount time, if your smbmount supports that, using the codepage and iocharset parameters. ------------------------------- I'm not sure if it'll help, but you could try looking into this codepage option and see if that helps.> CIFS VFS: cifs_mount failed w/return code = -22-22 rings a bell, are you 100% sure you've got permission to mount this share? What happens if you run "smbclient -L esotericVAIO" or even "smbclient //esotericVAIO/Downloads"? Cheers, Adam.