NO fstab, just plain ol systemd. (systemd.mount systemd.automount features)
Note, if your USB is formatted with FAT32 and NTFS then everything will be locked to root, chown and chmod will not work. Format the USB with Ext4 otherwise to play nicely with linux users.
lsblk
Now you know the name , we need to get the UUID of the USB , which doesn't change unless re-formatted.
blkid
This filename MUST match the location you specify for it in the "Where=" bit. Don't ask me why.
e.g name the file mnt-rrdusb.mount if you are mounting to /mnt/rrdusb
Insert your UUID into the file below.
/etc/systemd/system/mnt-rrdusb.mount
[Unit]
Description=Mount RRDusb
[Mount]
What=/dev/disk/by-uuid/PASTE-YOUR-UUID-HERE
Where=/mnt/rrdusb
Type=auto
Options=defaults
[Install]
WantedBy=multi-user.target
/etc/systemd/system/mnt-rrdusb.automount
[Unit]
Description=Automount usb
[Automount]
Where=/mnt/rrdusb
[Install]
WantedBy=multi-user.target
systemctl daemon-reload
systemctl enable --now mnt-rrdusb.mount mnt-rrdusb.automount