Automatic mounts with systemd · Blog | Tomáš Tomeček
https://blog.tomecek.net/post/automount-with-systemd
#udisks2 #autofs #systemd
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
https://blog.tomecek.net/post/automount-with-systemd
#udisks2 #autofs #systemd
You shouldn't just automount external drives. That's a recipe for trouble.
What's wrong with manually mounting them? Pretty sure the desktop environments also require you to push a button (eg, select the drive in file manager) to mount external USB drives.
DEs dont use mount
and fstab, they use udisks2
which works with polkit, GUI prompts or rootless.
Using udisksctl
prevents a ton of breakages.
I dont know about how autostart files work anymore, I always thought just place stuff in ~/.config/autostart
but now those dont work anymore on KDE, sometimes.
I think you use your init system for that. If you go fully rootless, you can create a user systemd service that mounts the drive.
mkdir -p ~/flashdrive
cat < ~/.config/systemd/user/flashdrive-mount.service
[Unit]
Description=Mount flash drive on /dev/sda
#After=multi-user.target
[Service]
Type=oneshot
ExecStart=/usr/bin/udisksctl mount --block-device /dev/sda --mount-point /home/$USER/flashdrive
RemainAfterExit=true
[Install]
WantedBy=multi-user.target
EOF
systemctl --user enable --now flashdrive-mount.service
Not sure if After=multi-user.target
and WantedBy=multi-user.target
twists the space time continuum or something.
I am always kinda confused by those targets, as you must state one.
You can use udev rules and systemd mount or AutoFs.
https://wiki.archlinux.org/title/Udev
https://wiki.archlinux.org/title/Systemd#systemd.mount_-_mounting