Putty or Tera Term VT alternative for OS X

45,935

Solution 1

There are a couple of solutions available. My preference is the ZOC Terminal Emulator, it is commercial, but also available for Windows and MacOS alike. It does serial connections, also SSH and Telnet, rsh ... quite like Putty.

enter image description here

Other serial alternatives for the Mac would be zTerm and iTerm.

Solution 2

The best aqua app I've seen is CoolTerm. You can also do it with minicom or screen.

Solution 3

Mini tutorial for screen

screen is a command line app and distributed with macOS. You can use it in a Terminal window. Typical usage:

  • Launch Terminal.app
  • Using the command line, find the serial port for your device, e.g. ls /dev/cu*
  • Also using the command line, launch screen, e.g. screen /dev/cu.usbserial-DN06C8VG 115200

Of course, substitute in the correct serial device and baud rate for your needs. And to get out:

  • ^a^\ (that's Control-A Control-backslash)

Solution 4

I'm not familiar with serial ports, but you should be able use the built in Terminal app which is provided by Apple (search for it with spotlight).

It's a very good terminal client, my personal favourite by far on any platform.

You need to use the screen command inside Terminal, but beyond that I'm not sure how it's used.

Share:
45,935

Related videos on Youtube

Poorna
Author by

Poorna

I am currently working in Telecom domain on statistics side. Previously I worked for Automotive systems developing infotainment applications which are middleware applications.

Updated on September 18, 2022

Comments

  • Poorna
    Poorna almost 2 years

    I am currently using putty and Tera Term VT for connecting to external devices over serial port for bugging. Is there any alternative for OS X?

    • Abhi Beckert
      Abhi Beckert over 12 years
      MAC is a commonly used networking term, short for "Media Access Control". Perhaps you mean "Mac"?
  • HikeMike
    HikeMike almost 12 years
    Please consider adding more information, e.g. where you found this.
  • Vitaliy A
    Vitaliy A over 3 years
    Thank you! best solution without any external software :)