I want to get the location in /dev of a USB device connected to my machine.
Does anyone know how?
I want to get the location in /dev of a USB device connected to my machine.
Does anyone know how?
If you want to known the drive name in the /dev/ folder, I normally
dmesg -wAnd the kernel will show some messages including the name of your device. Other options are
lsblk
sudo blkid
sudo fdisk -l
And you may want to check this to mount it. How to access a usb flash drive from the terminal?