Author |
Need Help getting EVE editor? |
vmsfreak01
Member
Posts: 41
Joined: 19.06.08 |
Posted on August 02 2008 06:49 |
|
|
Hi,
I am running VMS/VAX on SIMH but I dont have EVE installed. How can I get EVE installed as my editor?
Or..VI??
I did this command:
$ edit/tpu
%TPU-E-NONANSICRT, SYS$INPUT must be supported CRT
Thx. |
|
Author |
RE: Need Help getting EVE editor? |
martinv2
Member
Posts: 107
Location: Goslar, Germany
Joined: 02.10.07 |
Posted on August 02 2008 12:55 |
|
|
$ edit/tpu
%TPU-E-NONANSICRT, SYS$INPUT must be supported CRT
EVE is a screen-oriented editor. As such, it must be able to control the screen, which it only can do for VT200-class terminals and up (or emulations of these).
I'd guess a $ SHOW TERMINAL shows the device type as VT100 or UNKNOWN. That's what EVE is complaining about.
Use a decent VT200 emulation, e.g. PuTTY, and EVE will work.
HTH,
Martin
http://de.openvms.org/martinv/ |
|
Author |
RE: SIMH and terminal emulation |
brad
Member
Posts: 134
Location: Hopedale, MA USA
Joined: 15.12.05 |
Posted on August 02 2008 15:05 |
|
|
I'm asking here, because I don't have SIMH set up.
If someone is running SIMH, when they log on to the "system", are they connected to the "console port"? Does SIMH allow them to log in via TELNET or SSH through some kind of "virtual terminal" mechanism? Or are they restricted to booting the system, and then accessing it from another system on the same network, via TELNET or SSH? |
|
Author |
RE: Need Help getting EVE editor? |
martinv2
Member
Posts: 107
Location: Goslar, Germany
Joined: 02.10.07 |
Posted on August 02 2008 19:44 |
|
|
Brad,
If someone is running SIMH, when they log on to the "system", are they connected to the "console port"? Does SIMH allow them to log in via TELNET or SSH through some kind of "virtual terminal" mechanism? Or are they restricted to booting the system, and then accessing it from another system on the same network, via TELNET or SSH?
SIMH's console port is either the same DOS box it's started in (bad - no terminal emulation), or a Telnet port you can connect to using a terminal emulation (recommended).
cu,
Martin
http://de.openvms.org/martinv/ |
|
Author |
RE: Need Help getting EVE editor? |
brad
Member
Posts: 134
Location: Hopedale, MA USA
Joined: 15.12.05 |
Posted on August 03 2008 14:46 |
|
|
martinv2 wrote:
Brad,
[...]
SIMH's console port is either the same DOS box it's started in (bad - no terminal emulation), or a Telnet port you can connect to using a terminal emulation (recommended).
cu,
Martin
Thanks - one of the reasons I was asking was that it seemed to me that the OP in this thread might have been trying to user the "console port" rather than the "telnet port" to do his editing. If this was the case, then he could solve his problem by using the "telnet port" and decent terminal emulation. |
|
Author |
RE: Need Help getting EVE editor? |
martinv2
Member
Posts: 107
Location: Goslar, Germany
Joined: 02.10.07 |
Posted on August 04 2008 00:49 |
|
|
I have to make a few corrections to my previous post:
EVE is a screen-oriented editor. As such, it must be able to control the screen, which it only can do for VT200-class terminals and up (or emulations of these).
In fact, EVE works with VT100 and up.
I'd guess a $ SHOW TERMINAL shows the device type as VT100 or UNKNOWN. That's what EVE is complaining about.
Use a decent VT200 emulation, e.g. PuTTY, and EVE will work.
PuTTY does VT102 emulation - but that'll suffice. VMS must know about the terminal type, though: a $ SET TERMINAL /INQUIRE will let VMS ask the terminal.
cu,
Martin
http://de.openvms.org/martinv/ |
|
Author |
RE: Need Help getting EVE editor? |
brad
Member
Posts: 134
Location: Hopedale, MA USA
Joined: 15.12.05 |
Posted on August 04 2008 13:19 |
|
|
Stephen Hoffman wrote:
Thanks - one of the reasons I was asking was that it seemed to me that the OP in this thread might have been trying to user the "console port" rather than the "telnet port" to do his editing. If this was the case, then he could solve his problem by using the "telnet port" and decent terminal emulation.
Oops, that's right, y'all are still using Microsoft Windows here. The local environment has full emulation at the shell. My bad.
I'm not sure what the OP is using, but I've found it's much easier and nicer to use PuTTY on my Linux laptop, rather than Xterm (or whatever comes standard with XWindows).
I'm not sure if you remember the flurry of posts on EISNER:: shortly after the recent OS upgrade; there were a number of users who had problems using XTerm on various flavors of MacOS X.
The point being that some terminal emulation software is good enough to be used, almost regardless of platform. |
|
Author |
RE: Need Help getting EVE editor? |
vmsfreak01
Member
Posts: 41
Joined: 19.06.08 |
Posted on August 13 2008 01:50 |
|
|
Ok, is there any way I can install EVE even with SIMH??
Is this impossible to do under SIMH?
Any ideas..??
Thx. |
|
Author |
RE: Need Help getting EVE editor? |
SYSMGR
Member
Posts: 18
Location: Leusden, Netherlands
Joined: 14.03.06 |
Posted on August 13 2008 08:48 |
|
|
Just try this (dont know if it works, but it won't break anything):
$ SET TERM/DEC_CRT [=2[,3[,4]]]
and perhaps other settings. see $ HELP SET TERM for details (uopy can do so on a non-VT terminal (like the console).
If set, EVE may be happy |
|
Author |
RE: Need Help getting EVE editor? |
vmsfreak01
Member
Posts: 41
Joined: 19.06.08 |
Posted on August 13 2008 20:21 |
|
|
Ok, I will try it..
But what do these mean??
[=2[,3[,4]]]
|
|
Author |
RE: Need Help getting EVE editor? |
martinv2
Member
Posts: 107
Location: Goslar, Germany
Joined: 02.10.07 |
Posted on August 13 2008 23:16 |
|
|
Ok, I will try it..
But what do these mean??
[=2[,3[,4]]]
You may enter a list of DEC_CRT characteristic sets (should be put in parenthesis).
It could be easier to just $ SET TERMINAL /INQUIRE
and then look in $ SHOW TERMINAL
whether it set the terminal device type to VT-something.
Or you could just set it using $ SET TERMINAL /DEVICE=VT100
and test whether this works out for your terminal emulation.
HTH,
Martin
http://de.openvms.org/martinv/ |
|
Author |
RE: Need Help getting EVE editor? |
vmsfreak01
Member
Posts: 41
Joined: 19.06.08 |
Posted on August 15 2008 10:15 |
|
|
I did this
$ SET TERMINAL /DEVICE=VT100
And Im almost there, but still seems disorganized as below.
$ edit/tpu
u92;\¢0m¢20lu920a88;u92;*<u92;}¢m¢2J¢?3l¢;24r¢4lu92;=¢?6l¢?7l¢?8h¢1;2'z¢1;3'{¢24;H¢J¢K¢21;80Hu92;[1
J¢;H[End of file]¢K¢22;H¢;7m Buffer: MAIN
| Write | Insert | Forward ¢m |
|