On Linux, all connected disks have ambiguous mountpoint names to user.
For example, if I connect a USB then Linux (udev?) mounts it to a directory like this:
/media/username/78128SDGHJ23G
But I want to mount block devices to a directory which is named with their /dev/ names.
For /dev/sdb1 it should be like this:
/media/username/sdb1
So users can access the mounted blocks easily without looking for which random numbers points which devices.
How can I do that, should I need to write an udev rule? If so, is there any example how to do this?
Thanks!
/etc/fstab. I'll delete my answer.