English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Linux cu command

Linux Command大全

The Linux cu command is used to connect to another system host.

The cu (call up) command can connect to another host and operate with an interface similar to that of a dial-up terminal, and can also perform simple file transfer tasks.

Syntax

cu [dehnotv][-a<communication port>][-c<phone number>][-E<escape character>][-I<configuration file>][-l<peripheral device code>][-s<connection speed>][-x<error correction mode>][-z<system host>][--help][-nostop][--parity=none][<system host>/<phone number>]

Parameter Description:

  • -a<communication port> or-p<communication port> or--port<communication port> Use the specified communication port for the connection.
  • -c<phone number> or--phone<phone number> Dial the specified phone number.
  • -d Enter debug mode.
  • -e or--parity=even Use even parity check.
  • -E<escape character> or--escape<escape character> Set the escape character.
  • -h or--halfduple Use half-duplex mode.
  • -I<configuration file> or--config<configuration file> Specify the configuration file to use.
  • -l<peripheral device code> or--line<peripheral device code> Specify a peripheral device as the connection device.
  • -n or--prompt Wait for user input phone number during dial-up.
  • -o or--parity=odd Use odd parity check.
  • -s<connection speed> or--speed<connection speed> or--baud<connection speed> or-<connection speed> Set the connection speed, measured in baud rate.
  • -t or--maper Replace CR character with LF+CR character.
  • -v or--version Display version information.
  • -x<debug mode> or--debug<debug mode> Use debug mode.
  • -z<system host> or--system<system host> Connect to the specified system host.
  • --help Online help.
  • --nostop Close Xon/Xoff software flow control.
  • --parity=none Do not use parity check.

Online Examples

Connect to the remote host

# cu -c 0102377765

Linux Command大全