1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.ko/linux/cu.md
코드싸이 19c6841a9d
cryptsetup-luksformat: fix typo, linux/c*: add and update Korean translation (#14682)
* linux/c*: add and update Korean translation

* cryptsetup-luksformat: fix typo
2024-11-08 15:55:00 +09:00

809 B

cu

다른 시스템에 연결하여 다이얼인/직렬 터미널 역할을 하거나 오류 검사가 없는 파일 전송을 수행합니다. 더 많은 정보: https://manned.org/cu.

  • 주어진 직렬 포트 열기:

sudo cu --line {{/dev/ttyUSB0}}

  • 주어진 보율로 주어진 직렬 포트 열기:

sudo cu --line {{/dev/ttyUSB0}} --speed {{115200}}

  • 주어진 보율로 주어진 직렬 포트를 열고 문자를 로컬에서 에코(반이중 모드):

sudo cu --line {{/dev/ttyUSB0}} --speed {{115200}} --halfduplex

  • 주어진 보율, 패리티, 하드웨어 또는 소프트웨어 흐름 제어 없이 주어진 직렬 포트 열기:

sudo cu --line {{/dev/ttyUSB0}} --speed {{115200}} --parity={{even|odd|none}} --nortscts --nostop

  • 연결 중 cu 세션 종료:

~.