Views:
10,962β
Votes: 3β
Tags:
usb
uefi
serial-port
Link:
π See Original Answer on Ask Ubuntu β§ π
URL:
https://askubuntu.com/q/1170099
Title:
How to take a serial port connection via USB online?
ID:
/2019/09/01/How-to-take-a-serial-port-connection-via-USB-online_
Created:
September 1, 2019
Edited: September 1, 2019
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
Some good reading is available from Official Ubuntu Documentation:
Alternative serial client: screen
GNU screen actually is a very capable serial terminal.
To install:
sudo apt-get install screen
To start:
sudo screen /dev/ttyUSB0 n
Some additional tips:
- adjust the
n
to what you need:
- Start without a number on the first try; it might auto-negotiate flawlessly
- then use 115200, 57600, 38400, 19200, 9600, 4800, 2400, 1200 and stop when it starts working.
- If youβre a purist and donβt like using
sudo
for this or need to hand this out to users not having access tosudo
, add them to thedialout
group.
To end the session, use Ctrl-A or Shift-K.