0

I've been using arch for a while, and use udisks with udiskie to automount my usb drives. I have one usb drive that I store my code on, and often have to go to in the terminal. don't like having to type cd /run/media/bobsfriend12/usbdrive/... to use it. Is there a way to mount it to say /home/bobsfriend12/usbdrive instead? Based on the github page it doesn't seem possible to do this with udieskie. Is there some other software?

bobsfriend12
  • 271
  • 4
  • 14

1 Answers1

1

Too low to comment but my two cent would be to put a symlink to the automount directory under ~

ln -s /run/media/bobsfriend12/ /home/bobsfriend12/usbdrives

Most times best solutions are also the simplest.

Ofc. when it comes to mounting filesystems the plain old /etc/fstab is your friend, see this answer and perhaps this archwiki fstab page is worth reading over.

Hope this helps.

muthuh
  • 152