我正在将 USB 转串行驱动器端口连接到我的系统,并且已经到达了我需要的一半。插入后dmesg
显示:
<6>usb 2-1: new full speed USB device using sl811-hcd and address 4
<6>usb 2-1: configuration #1 chosen from 1 choice
和lsusb
Bus 2 Device 4: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 2 Device 1: ID 0000:0000
Bus 1 Device 1: ID 0000:0000
我在 dev 中获得了一系列usbdev2.4
(usbdev2.4
、、usbdev2.4_ep00
等等)设备,但没有得到ttyUSB0
任何可以用 minicom 打开的东西。
如何让系统创建该/dev
设备?
谢谢
戴夫
答案1
<6>usb 2-1: new full speed USB device using sl811-hcd and address 4
<6>usb 2-1: configuration #1 chosen from 1 choice
上述消息仅表明您的内核已加载基本的 USB 支持。
我猜你没有usb 串行内核模块已加载。返回什么lsmod | grep serial
?
您使用的是什么发行版?内核是与发行版捆绑在一起的吗?还是您自己编译的?