Skip to content

Instantly share code, notes, and snippets.

@tarolandia
Created May 5, 2013 02:30
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarolandia/5519450 to your computer and use it in GitHub Desktop.
Save tarolandia/5519450 to your computer and use it in GitHub Desktop.
Disable sync flag when mounting an External HDD to your raspberry pi (xBian)
sudo vi /etc/usbnount/usbmount.conf
...
MOUNTOPTIONS="sync,noexec,nodev,noatime,nodiratime,rw"
...
remove sync flag and save the file
...
then:
sudo umount -l /media/usbx
sudo mount -tntfs -onoexec,nodev,noatime,nodiratime,rw,gid=xbian,uid=xbian,umask=0 /dev/sddx /media/usbx
Write speed increased from 300kb/s to 1,2mb/s after removing the flag
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment