Install the required packages
apt update
apt install ntfs-3g fuse
Find the device name of your USB drive
lsblk
Create the mount point and mount it
mkdir /mnt/usb_drive1
mount /dev/sda2 /mnt/usb_drive1
Note: Remember to replace /dev/sda2 with the actual device name of your USB drive.