in opensuse 11 w/ kde 3.5 I cannot access my external USB hard drive formatted in ntfs. It always worked fine in 10.3 and also worked in 11/kde4 (but I just didn’t care for 4). Anyway, I get this message:
mount: wrong fs type, bad option, bad superblock on /dev/sdb1, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so
The only advise I can find is to run dmesg, so I ran dmesg in konsole and all I got was a lot of crap about my wireless tcp/ip. Nothing useful.
I was careful to disconnect the drive in question before I installed the OS, so that’s not the problem. Has anyone found a solution to this?
I read that it sometimes has something to do with the “clean” parameter. So try rebooting to windows and running chkdsk. Or use the “force” parameter in the line you have infstab for the mount, like this:
I don’t have my external drives in the fstab. It looks like 11.0 was trying to hotplug auto-mount with the ntfs driver.
I may also try (I haven’t tried yet) to put a symbolic link in the /sbin directory with:
sudo ln -s mount.ntfs-3g mount.ntfs
… to force a mount with the ntfs-3g driver. If it doesn’t work, or if it makes things worse, I’ll remove it.
I did try running chkdsk in windows and everything was ok. But as far as changing anything in fstab, I wouldn’t know where to begin… time to start reading
As you have mentioned about your Seagate Free Agent drive, i want to ask a suggestion from you. Is is worth to format this drive with other linux file systems ? (to speed up the writing process)?
> I did try running chkdsk in windows and everything was ok. But as far
> as changing anything in fstab, I wouldn’t know where to begin… time
> to start reading
Forget about fstab, for removeable drives. It’s possible to add some
options, but the drive should be accessible without it.
Don’t know if it’ll help, but try getting it mounted with ntfs-3g, rather
than ntfs:
cd /sbin
sudo ln -s mount.ntfs-3g mount.ntfs
–
The sand remembers once there was beach and sunshine
but chip is warm too
– haiku from Effector Online, Volume 1, Number 6
same problem here with both the laptops where i installed 11 kde 3.5.9.
Two of my hard drives have a NTFS partition and a FAT32. The latter is mounted with no problems while the NTFS returns the error
mount: wrong fs type, bad option, bad superblock, missing codepage or helper program, or other error In some cases useful info is found in syslog - try dmesg | tail or so
As Oldcpu said, it can be accessed manually.
My “lazy solution” (which is not a real solution) so far has been only adding an alias in bashrc, with the following
alias mountusb='sudo mount -t ntfs -o umask=0 /dev/sdc1 /media/usb_ntfs/'
alias umountusb='sudo umount /dev/sdc1'
This wont work in case other devices are mounted first, as that partition wont be listed as device sdc1.
I had saved the fstab on the same machines for 10.3 and it is identical to the one in 11, so it is not a fstab problem, as pointed out here above in this thread.
Curious issue anyway, isnt it
to use ntfs-3g , there is a very easy configuration utility “ntfs-config”
It will allow you to mount internal and external ntfs partitions on the mode you specify i.e. either with write support or without write support.
its one the opensuse OSS repo:
here is the one-click install for opensuse11
I have the same problem on openSUSE 11 and it worked perfectly on 10.3.
Do openSUSE team have plans to correct this bug so we can mount usb ntfs hardrives automatically when it is plugged?
The openSUSE team have been trying to fix this properly, but thus they have not been completely successful.
I was told of a work around, and I applied to to my openSUSE-11.0 PC and it works well for me. In essence, it is setting up a symbolic link such that your external USB NTFS formated drive is mounted with the NTFS-3G driver and hence also has Read/Write permissions. If you wish to try the work around, then do the following in an xterm/konsole (with regular user permissions):
cd /sbin
sudo ln -s mount.ntfs-3g mount.ntfs
Thats it. Thats all. Now try hotplug mounting your NTFS formated hard drive. It works for me, …hopefully it will for you.