Isti problem sam i ja imao. Ovo sam nasao na netu i naravno uspelo je.
1.
Create the directory /usr/share/hal/fdi/policy/95userpolicy:
#mkdir -p /usr/share/hal/fdi/policy/95userpolicy/
2.
Create a file with the name nosync.fdi and the following contents:
<?xml version="1.0" encoding="UTF-8"?>
<deviceinfo version="0.2">
<device>
<!-- disable sync for mount -->
<match key="block.is_volume" bool="true">
<match key="volume.fsusage" string="filesystem">
<match key="volume.uuid" string="==UUID==">
<merge key="volume.policy.mount_option.sync"
type="bool">false</merge>
</match>
</match>
</match>
</device>
</deviceinfo>
3.
Adjust the line <match key="volume.uuid" string="==UUID=="> according to
your hardware. Run 'lshal' to retrieve the "volume.uuid" and enter this id
instead of ==UUID==
umesto te linije stavite ovu:
<match key="@info.parent:storage.bus" string="usb">
4.
Finally restart the HAL service with
#rchal restart
|