By default, Bugzilla does not search the list of RESOLVED bugs.You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release.
| Summary: |
Hald NTFS mount options in Magiea prevent mounting of USB drives |
| Product: |
TDE
|
Reporter: |
Tim Williams <tim> |
| Component: |
other (any) | Assignee: |
Timothy Pearson <kb9vqf> |
| Status: |
RESOLVED
NOTOURPROBLEM
|
|
|
| Severity: |
normal
|
CC: |
bugwatch, michele.calgaro
|
| Priority: |
P5
|
|
|
| Version: |
R14.0.x [Trinity] | |
|
| Hardware: |
Other | |
|
| OS: |
Linux | |
|
|
Compiler Version:
|
|
TDE Version String:
|
|
|
Application Version:
|
|
Application Name:
|
|
When trying to mount any NTFS formatted USB drive on Mageia 3 and 4 using the latest Mageia packages, I get the following error: locale='en_GB.UTF-8' is not allowed for uid=500 This can be fixed by editing /usr/share/hal/fdi/policy/10osvendor/20-storage-methods.fdi and adding locale as ab allowed option to the ntfs mount options thus: <!-- allow these mount options for ntfs --> <match key="volume.fstype" string="ntfs"> <match key="/org/freedesktop/Hal/devices/computer:system.kernel.name" string="Linux"> <append key="volume.mount.valid_options" type="strlist">uid=</append> <append key="volume.mount.valid_options" type="strlist">gid=</append> <append key="volume.mount.valid_options" type="strlist">umask=</append> <append key="volume.mount.valid_options" type="strlist">utf8</append> <!-- Added by tmw --> <append key="volume.mount.valid_options" type="strlist">locale=</append> </match> This problem may also apply to other rpm based distros, but I'm not in a position to test this (so I haven't filed this bug against fedora).