1. ホーム
  2. linux

Ubuntu 10.10 (Maverick Meerkat)でシリアル-USBデバイスにターミナルを接続するにはどうすればよいですか?

2023-10-30 06:59:12

質問

私は、USB-to-serial アダプタを介して接続されているシリアル デバイスに minicom を接続しようとしています。これは PL2303 で、私が読んだ限りでは、追加のドライバは必要ありません。デバイスは PL2303 として認識されます。

私はminicomの初心者です。実行するコマンドはこれでよいのでしょうか?それとも何か設定が必要なのでしょうか?

$ sudo minicom --device /dev/ttyUSB0
minicom: cannot open /dev/ttyUSB0: No such file or directory

$ sudo lsusb -v

Bus 002 Device 006: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Device Descriptor:
  bLength                18
  bDescriptorType         1

$ tail /var/log/syslog  #then removed and attached the device.
Mar 13 23:31:49 ubuntu kernel: [807996.786805] usb 2-1: pl2303 converter now attached to ttyUSB0
Mar 13 23:34:44 ubuntu kernel: [808172.155129] usb 2-1: USB disconnect, address 7
Mar 13 23:34:44 ubuntu kernel: [808172.156321] pl2303 ttyUSB0: pl2303 converter now disconnected from ttyUSB0
Mar 13 23:34:44 ubuntu kernel: [808172.156374] pl2303 2-1:1.0: device disconnected
Mar 13 23:34:52 ubuntu kernel: [808179.497856] usb 2-1: new full speed USB device using uhci_hcd and address 8
Mar 13 23:34:52 ubuntu kernel: [808179.785845] pl2303 2-1:1.0: pl2303 converter detected
Mar 13 23:34:52 ubuntu kernel: [808179.872309] usb 2-1: pl2303 converter now attached to ttyUSB0

どのように解決するのですか?

まず dmesg | grep tty で、システムがあなたのアダプタを認識しているかどうかを確認します。 次に、minicom を sudo minicom -s で起動し、quot;Serial port setup"に行って、最初の行を /dev/ttyUSB0 .

"Save setup as dfl"で設定をデフォルトとして保存するのを忘れないでください。これは、VirtualBox上のUbuntu 11.04で動作します。