To access a device, it must be connected to a directory.
This is known as mounting the device.
Follow instructions in Connect External Storage To RHEL
Direct to mnt directory
cd /mnt
Show all currently unmounted devices
lsblk
Example: sdb1
Create an empty directory for mount device
sudo mkdir [Directory]
ls
/mnt is intended for temporary mounts.
Example: sudo mkdir /mnt/my_device
Mount the device
sudo mount /dev/[Device Name] /[Directory]
Example: sudo mount /dev/sdb1 /mnt/my_device
Verify mount
findmnt | grep [Directory]
Example: findmnt | grep /mnt/my_device
Access the data
ls [Directory]
Example: ls /mnt/my_device
Unmount the device
sudo umount [Directory]
Example: sudo umount /mnt/my_device
Delete the directory
sudo rmdir [Directory]
Example: sudo rmdir /mnt/my_device
Eject the external storage by click eject icon in Files in RHEL
Result
student@localhost:~$ cd /mnt
student@localhost:/mnt$ lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 25G 0 disk
├─sda1 8:1 0 1M 0 part
├─sda2 8:2 0 1G 0 part /boot
└─sda3 8:3 0 24G 0 part
├─rhel-root 253:0 0 21.5G 0 lvm /
└─rhel-swap 253:1 0 2.5G 0 lvm [SWAP]
sdb 8:16 1 29.3G 0 disk
└─sdb1 8:17 1 29.3G 0 part /run/media/student/LAWRENCE
sr0 11:0 1 1024M 0 rom
student@localhost:/mnt$ sudo mkdir /mnt/my_device
[sudo] password for student:
student@localhost:/mnt$ ls
my_device
student@localhost:/mnt$ sudo mount /dev/sdb1 /mnt/my_device
student@localhost:/mnt$ findmnt | grep /mnt/my_device
└─/mnt/my_device /dev/sdb1 vfat rw,relatime,uid=1000,gid=1000,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,showexec,utf8,flush,errors=remount-ro
student@localhost:/mnt$ ls /mnt/my_device
'student localhost cd.txt' 'System Volume Information'
student@localhost:/mnt$ sudo umount /mnt/my_device
student@localhost:/mnt$ sudo rmdir /mnt/my_device