Have you tried usbmount
?
This automatically mounts usb drives if they're vfat, ext4, or hfsplus. Options: sync,noexec,nodev,noatime,nodiratime
I believe it puts them in /media/run/DEVICE_NAME or something like that
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
Have you tried usbmount
?
This automatically mounts usb drives if they're vfat, ext4, or hfsplus. Options: sync,noexec,nodev,noatime,nodiratime
I believe it puts them in /media/run/DEVICE_NAME or something like that
Thanks for your response. But the Debian package is not maintained. Do you know of any other way?
udisksctl mount -b /dev/yourdisk
Probably already installed. If not, it's udisks2. Needs D-bus.
Is it just me that dislikes when packages are mentioned instead of a series of terminal commands? I don't want to install a package. Why would I want to rely on a package and it's maintainer when I could write a shell script using the tools native to my OS?
Is this unreasonable or just unpopular?
That and every command preceded by sudo.
Just..
$ sudo su
..bam, no more sudo. And likely no more system within a few sessions 🫣
Solution? Just don't make mistakes. Ezpz. /s
I know you're joking anyways, but I always cringe when I see that. There's no need to invoke su
there. If you want a root shell, use sudo -s
or sudo -i
depending on what kind of shell you want.