The Computer Oracle

Extremely slow speed when writing to USB FAT32 drive in Linux

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Droplet of life

--

Chapters
00:00 Extremely Slow Speed When Writing To Usb Fat32 Drive In Linux
00:34 Accepted Answer Score 13
00:51 Thank you

--

Full question
https://superuser.com/questions/970594/e...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#linux #usb #performance

#avk47



ACCEPTED ANSWER

Score 13


The problem, as it turns out, was the sync option used to mount the filesystem, which appears to be performance-killer. Mounting it with flush option instead of sync solved the problem: sudo mount -o async,flush <device> <mountpoint>