mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-01 17:42:31 +00:00
30 lines
647 B
Plaintext
30 lines
647 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# minicom
|
|
|
|
> Communicate with the serial interface of a device.
|
|
> More information: <https://manned.org/minicom>.
|
|
|
|
- Open a given serial port:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}}`
|
|
|
|
- Open a given serial port with a given baud rate:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-b|--baudrate]}} {{115200}}`
|
|
|
|
- Enter the configuration menu before communicating with a given serial port:
|
|
|
|
`sudo minicom {{[-D|--device]}} {{/dev/ttyXYZ}} {{[-s|--setup]}}`
|
|
|
|
- Exit minicom:
|
|
|
|
`<Ctrl a><x><Enter>`
|
|
|
|
- Display help:
|
|
|
|
`minicom {{[-h|--help]}}`
|