![](https://ccc72111d9.cbaul-cdnwnd.com/f951a4aa49571d2fcffb5ed9217f5e14/200000042-d6829d8791/200000062.jpg?ph=ccc72111d9)
Always with the passion...
Picocom is a minimal dumb-terminal emulation program that is great for accessing a serial port based Linux console; which is typical done when developing an embedded Linux based product.
Installing picocom
On Ubunt, you can simply
sudo apt-get install picocom
Running picocom
You need to know the name of the serial port. Also, you should have read/write permissions to the serial port. Typical serial port names are/dev/ttyS0 for PCs with a built-in serial port and /dev/ttyUSB0 if you are using a USB to serial dongle.
picocom is wonderful in that you can specify all the serial port setting as parameters on the command line. For 115,200 baud (-b 115200), 8 bits (default setting), no parity (default setting), no flow control (default setting), and with no port reset (-r) and no port locking (-l), use:
picocom -b 115200 -r -l /dev/ttyUSB0
To exit picocom, use CNTL-A followed by CNTL-X.