Putty or Tera Term VT alternative for OS X

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?

1

5 Answers

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.

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

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.

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)
1

There is picocom. A quick google found binary for 10.6

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like