More help is needed, please.
For example, when I use HyperTerminal, by typing "help", it will show a help list. How do I achieve this in Unix?
Main Topics
Browse All TopicsHI,
I have a device that configurable thru serial port and I can use Windows HyperTerminal to communicate it with my PC serial RS 232 port. Now I move this port to attach to an UNIX machine's serial port. What is the tty that I should use(ttys1?) and how do I configure(baud rate, etc) and access from unix? I moved this box to unix so that I can telnet it from any ip network.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
COM1-4 will be tty00-3 on OpenBSD.
For example, COM2 would be tty01 (/dev/tty01).
As yheffen says, you can use 'tip' or 'cu' as your client program. Each of them has a man page:
man tip
man cu
(actually it's the same man page on OpenBSD)
There's also an excellent terminal program called 'minicom' that has more features if you need it. It can be installed through the 'ports' system.
The man page describes how to configure the port; specifically, it looks for a definition in /etc/remote. That file also has its own man page:
man remote
Hi,
Thanks for everybody.
I tried these few commands and they did not work:
tip -9600 cua00
tip -9600 tty00
>>tip: unknown host tip9600
However, after adding the following line to the /etc/remote, then it worked:
console:dv=/dev/tty00:br#9
tip console
I guess it is because I am using NetBSD instead of Open BSD and a system name has to be defined in remote file?
tip(1) does support file transferes. See the,
~<
~>
~p
~f
~|
~$
~C
Escapes.
Feel free to use one of those ports of course, but the best thing about tip(1) is that "its always there." It's good to have a basic understanding of how to use it.
Glad you got it working. Yes, it would have been helpful to have known what *BSD or UNIX flavor you were using from the start. For tip(1), the "system" always needs to be in the remote(5) file, but we were giving you recommendations based on what is in the default remote(5) on OpenBSD. The default remote(5) varies between OSes.
Business Accounts
Answer for Membership
by: yheffenPosted on 2003-03-17 at 17:41:20ID: 8156132
You are looking for the tip(1) or cu(1) command. See
the manpage for details or post more specific queries.