You are not logged in.

Dear visitor, welcome to KDE-Forum.org. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

1

Sunday, October 28th 2007, 3:47pm

ntfs-3g locale / kde automount?

Hi there! If I plug in my external usb ntfs hdd, an icon shows up and it is automounted.

I can read and write, but can not see or create files with special characters (e.g. äöü).

If I set "Filesystem specific mount options" to "UTF8" in dolphin the problem persists.

My internal ntfs drives (that are mounted by fstab even without the locale=... mount option) work fine.

What can I do to change that? Am using Kubuntu Gutsy.

And what automounts my drive in KDE? Ist ist the Media Manager, HAL, ...?

2

Tuesday, November 6th 2007, 8:06pm

RE: ntfs-3g locale / kde automount?

Is there no way to set a locale=de_DE.utf8 option in KDEs auomount System?

slot(where's my pass?)

Unregistered

3

Wednesday, July 9th 2008, 9:27pm

same problem

I have the same problem with the Italians characters.

Please, fix this! ;(

4

Tuesday, August 19th 2008, 10:00am

The following solution from the archlinux wiki works great:

Quoted

1) Remove the "/sbin/mount.ntfs-3g" which is a symlink. code: rm /sbin/mount.ntfs-3g
2) Replace it with a new bash script containing

Source code

1
2
#!/bin/bash
/bin/ntfs-3g $1 "$2" -o locale=en_US.UTF-8,$4 #put your own locale here

3) Make it executable: chmod +x /sbin/mount.ntfs-3g