In ubuntu 22.04.2 I am trying to read the data coming from a serial port. To find the correct port I do
sudo dmesg | grep tty
which gives
[ 0.117304] printk: console [tty0] enabled
[ 0.793135] 0000:00:16.3: ttyS4 at I/O 0x3060 (irq = 19, base_baud = 115200) is a 16550A
[ 4.136977] usb 3-6.3.2: FTDI USB Serial Device converter now attached to ttyUSB0
[27184.158691] ftdi_sio ttyUSB0: FTDI USB Serial Device converter now disconnected from ttyUSB0
[27190.409672] usb 3-6.3.2: FTDI USB Serial Device converter now attached to ttyUSB0
after disconnecting and reconnecting the USB device (around time 28180). Then according to this suggestion I do
screen /dev/ttyUSB0 115200
but all I get is
[screen is terminating]
So how to do it AS SIMPLE AS POSSIBLE without setting up configuration, clicking through menues or navigating on the command line through complex setup stuff? I just want to listen to some information that comes from this serial connection (which is connected to the laptop via USB).
On windows I could use
- hterm
- putty
- MOBA xterm
But what to use on ubuntu?
dialout
group? maybe this will help – kyrlon Oct 27 '23 at 15:39