Great. It sounds like we have found the problem. How do I fix it? I am very new to linux.
Type the command "sudo blkid" That will return a series of lines one for each device and partition. You want to find the line that starts with "/dev/sdb1" and then copy the long alphanumeric value following "UUID" on that line. Also make a note of what the "TYPE" value is for that line.
Then open your /etc/fstab for editing by typing "sudo nano /etc/fstab"
Add a new line at the bottom being careful not to change any of the previous lines. On that new line you need to add something like the below, but replacing the placeholders below with the correct information for your system:
UUID=placeholder-for-your-UUID-from-blkid /placeholder/for/desired/mount/path/ placeholder-for-TYPE-from-BLKID defaults 0 1
As an example, a line from my fstab looks like this (do not copy and paste this you need to use the correct data for your system instead of what I have below!):
UUID=a18c7092-a223-40dd-a4c3-4ced0ac1fdfe /mnt/media ext4 defaults 0 1
Once you have added the correct line for your system, make sure everything is correct and then press CTRL+S and then CTRL+X. Then test the mount by typing the following and making sure to enter the path you put in the fstab as the place to mount the drive:
sudo systemctl daemon-reload
sudo mount /placeholder/for/desired/mount/path
If it mounts correctly and you can see the files, you should be safe to reboot. If not, go back and check your fstab to make sure it's correct.
Assuming it's all correct, on your next boot, the drive at /dev/sdb1 should be mounted automatically at the path you included in the fstab.