Linux USB/串行端口不会在/dev 中创建 tty 设备

Linux USB/串行端口不会在/dev 中创建 tty 设备

我正在将 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.4usbdev2.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

您使用的是什么发行版?内核是与发行版捆绑在一起的吗?还是您自己编译的?

相关内容