sorry for delay.
I don't use any option when i mount manually the card just an
mount /dev/sdb1 /media/usb0
My /proc/mounts looks like that
rootfs / rootfs rw 0 0
ubi0:rootfs / ubifs rw,relatime 0 0
tmpfs /lib/init/rw tmpfs rw,nosuid,relatime,mode=755 0 0
proc /proc proc rw,nosuid,nodev,noexec,relatime 0 0
sysfs /sys sysfs rw,nosuid,nodev,noexec,relatime 0 0
usbfs /proc/bus/usb usbfs rw,nosuid,nodev,noexec,relatime 0 0
tmpfs /dev tmpfs rw,relatime,size=10240k,mode=755 0 0
tmpfs /dev/shm tmpfs rw,nosuid,nodev,relatime 0 0
devpts /dev/pts devpts rw,nosuid,noexec,relatime,gid=5,mode=620 0 0
tmpfs /var/cache/apt tmpfs rw,nosuid,noexec,relatime 0 0
/dev/sdb1 /media/usb0 ext3 rw,sync,nodev,noexec,noatime,errors=continue,data=writeback 0 0
When the card is mounted automaticaly i have
sheevaplug-debian:~# mount
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
rootfs on / type rootfs (rw)
tmpfs on /var/cache/apt type tmpfs (rw,noexec,nosuid)
/dev/sdb1 on /media/usb0 type ext3 (rw,noexec,nodev,sync,noatime)
and manually :
...
/dev/sdb1 on /media/usb0 type ext3 (rw)
So when i mount manually with options
mount /dev/sdb1 /media/usb0 -o noexec,nodev,noatime, sync # same speed problem
mount /dev/sdb1 /media/usb0 -o noexec,nodev,noatime # no problem
Now How can i delete the "sync" option by default
