Skip to content

Check available serial line

Zoltan Siki edited this page May 23, 2021 · 2 revisions

Serial port mini tutorial

Few of the computers have D shell 9 pin serial connector serial connctor

You need probably a USB to serial adapter

Windows

If you have no D shell 9 pin port on your computer, connect your USB to serial adapter to one of the USB ports of your computer and install the necessary driver for it. Mostly Windows will do it in the background if you have internet connection.

Check the available serial ports using Device Manager and locate Ports (COM & LPT). The name of the serial port is COMn, where n is an integer number. Use this port number in the instance of SerialIface.

Linux/Ubuntu

Connect your USB to serial adapter to one of the USB ports of your computer Use dmesg command to find the USB port assigned to the adapter.

dmesg | grep USB

You should see /dev/ttyUSBn in the output of the command above. n is an integer value mostly 0.

Clone this wiki locally