@serverlesslove, your mount options for the device might not be ideal. If the device is used as a multimedia server, then you can avoid, for example, updating file access times on each read, reducing disk writes and improving performance, using the `noatime` option. Also increase the file system journal commit interval to 120 seconds (instead of the default 5 seconds) using `commit=120`.
Check your current `mount` options for the device and try these:
```
defaults,noatime,commit=120,errors=remount-ro
```