Last active
September 26, 2024 03:17
-
-
Save sant123/6faeac0045e414dc6fdb923052975543 to your computer and use it in GitHub Desktop.
Automount usb devices with systemd and udisks2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Allow "your_user" to mount drives without authentication | |
polkit.addRule(function (action, subject) { | |
const isAction = action.id == "org.freedesktop.udisks2.filesystem-mount" || | |
action.id == "org.freedesktop.udisks2.filesystem-unmount" || | |
action.id == "org.freedesktop.udisks2.filesystem-mount-other-seat"; | |
if (isAction && subject.user == "your_user") { | |
return polkit.Result.YES; | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Mount usb devices with systemd and udisks2 | |
ENV{ID_FS_USAGE}=="filesystem", ENV{UDISKS_FILESYSTEM_SHARED}="1" | |
ACTION=="add", SUBSYSTEMS=="usb", SUBSYSTEM=="block", ENV{ID_FS_USAGE}=="filesystem",\ | |
RUN+="/usr/bin/systemctl --no-block start automount-usb@%k.service" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Automount USB devices | |
[Service] | |
Type=oneshot | |
ExecStart=/usr/bin/udisksctl mount -b /dev/%i | |
User=your_user | |
Group=your_user |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put the contents of 98-automount-usb.rules under /etc/udev/rules.d -> /etc/udev/rules.d/98-automount-usb.rules | |
# Put the contents of [email protected] under /etc/systemd/system -> /etc/systemd/system/[email protected] | |
# Put the contents of 51-udisks2.rules under /etc/polkit-1/rules.d -> /etc/polkit-1/rules.d/51-udisks2.rules | |
# In shell execute the following commands | |
sudo udevadm control --reload | |
sudo udevadm trigger | |
sudo systemctl daemon-reload | |
Use "51-udisks2.rules" for mounting with your current user without authentication, you can skip this however for NTFS file systems the files will be mounted with root ownership. If you still want this remove User and Group from [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sources:
https://wiki.archlinux.org/title/udev#Tips_and_tricks
https://wiki.archlinux.org/title/Udisks#Mount_to_/media