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 -w
And 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?
/dev/ttyACM0
– joseto dominguez Mar 18 '19 at 21:18