linux2019. 6. 12. 12:16

 

 

First, disconnect the USB device you’re querying. Then, open a terminal window and input the “list USB” command:

#lsusb

Make a note of the results, then connect the USB device, and run lsusb again.
This time, you should see an extra device listed, with a Bus ID, Device ID, USB ID, and a description. If you can’t work out what the extra device is (you may have an internal USB device, perhaps Ethernet), try a different command.

#dmesg | grep -i USB

The dmesg command will list the connected USB devices on your system. It will also include non-USB hardware, and unfortunately offers an overwhelming amount of information. To counter this, you can try

#dmesg | less

Finally, you could just rely on the more user-friendly

"usb-devices"


This is like a cross between the dmesg and lsusb commands, listing connected USB hardware with enough information to identify them.
So, is the USB you’ve connected listed here? If not, then perhaps the port is damaged or there is a problem with the device. Equally, the device may not be compatible with Linux.

 

 

Tip: kernel에서 hotplugging으로 인식되지 않는다면 usb device의 hardware나 또는 host의 usb port에 대한 이상으로 생각하고 접근.... 내 보드는 대체 왜 인식을 못하나

 

 

 

https://www.makeuseof.com/tag/fix-usb-device-port-linux/

 

 

5 Ways to Fix a Malfunctioning USB Device or Port on Linux

Can't get your USB devices to work properly in Linux? Try these troubleshooting tips to get things working again.

www.makeuseof.com

 

'linux' 카테고리의 다른 글

USB 버전 별 속도 및 전압/전류  (0) 2019.06.12
linux serial port (tty) 생존 확인  (0) 2019.06.12
find multiple command 입력 방법  (0) 2019.05.24
dd 명령어에 대한 고찰  (0) 2019.03.27
RAID의 종류  (0) 2019.03.04
Posted by easy16