Linux system udev rule to disable write-cache for USB storage https://root.nix.dk/en/system-configuration/disable-write-cache-for-usb-devices
Find a file
2024-09-13 15:42:33 +02:00
.gitignore Initial commit 2023-03-05 05:57:39 +00:00
99-usb-sync.rules fix headers 2024-09-12 08:27:39 +02:00
LICENSE update rules - use auto calc for buffers based on hardware and speed 2024-09-11 16:14:01 +02:00
PKGBUILD fix kernel minor check 2024-09-13 15:42:33 +02:00
README.md update rules - use auto calc for buffers based on hardware and speed 2024-09-11 16:14:01 +02:00
udev-usb-sync fix kernel minor check 2024-09-13 15:42:33 +02:00
udev-usb-sync.conf update rules - use auto calc for buffers based on hardware and speed 2024-09-11 16:14:01 +02:00
udev-usb-sync.install update with config and script 2023-08-29 16:25:04 +02:00

Linux filesystem cache

Linux agressively caches files in order to improve overall performance.

When copying large amount of files to an USB storage this often results in some wait time until the device can be safely removed.

How long you have to wait depends on your system and the quality of the USB storage device.

Numerous issues regarding this has resulted in various suggestions involving sysctl tweaks and trim.

Examples:

udev rule to disable write-cache

In another place one user threw in an udev rule which would disable write-cache for devices when they were added and while it was just an idea - it triggered my curiosity.

I dug into the intricacies of udev and found a method to only target USB storage devices.

The rule has gotten a major overhaul and now consist of the rule, a config file and a script

https://gitlab.manjaro.org/fhdk/udev-usb-sync/-/blob/master/99-usb-sync.rules

https://gitlab.manjaro.org/fhdk/udev-usb-sync/-/blob/master/udev-usb-sync.conf

https://gitlab.manjaro.org/fhdk/udev-usb-sync/-/blob/master/udev-usb-sync

How it works

The rule activates when udev detects

  • add or change
  • kernel event for disk devices sd[a-z]
  • only if the device environment ID_USB_TYPE=='disk'
  • run
    • hdparm -W 0 /dev/%k (disable write cache if supported)
    • udev-usb-sync %k
      • applies defaults
      • read config and apply user values
      • if use_tweaks=0 the script exits
      • if use_tweaks=1 the applies the values (default or config)
      • set a max_bytes value based on device speed

How to setup manually

Create a file in /etc/udev/rules.d/99-usb-sync.rules and paste the rule into it. Create a file in /etc/udev-usb-sync/udev-usb-sync.conf and paste the default values. Create a file in /usr/bin/udev-usb-sync and paste the script content.

Install hdparm package.

sudo pacman -Syu hdparm

Reload udev

sudo udevadm control --reload

Then plug an usb device - open in your file manager - copy a huge amount of files to the device - when the copy is done - click eject in the file manager - note how quick the device is ejected.

For those preferring the package manager, I have created a PKGBUILD which will pull the hdparm dependency upon installation.

pamac build udev-usb-sync

Another fine utility script provided by @cscs fine-tunes a number of system parameters with the option to input your own values when the script is run

https://gitlab.com/cscs/maxperfwiz

https://gitlab.manjaro.org/fhdk/udev-usb-sync