The VT100 is a video terminal that was made by Digital Equipment Corporation (DEC). Its detailed attributes became the de facto standard for terminal emulators to emulate.

learn more… | top users | synonyms

1
vote
1answer
61 views

C - how to use vt100 code in windows

i try to move the cursor in console. and i find out that vt100 code could do this. #include<stdio.h> int main() { printf("123456789\n"); printf("\033A"); printf("abcdefghi\n"); ...
0
votes
1answer
27 views

AIX special keys

I connect to AIX 5.3 through ssh from Centos 6. Shells on AIX and Centos are bash. When I press "Home", "End", "PgUp", "PgDwn" in shell, bash typing tilde (~) and curson not moving to end or begin of ...
0
votes
1answer
96 views

How to create a console terminal?

From where I can start creating a console for my C++ programs ? I need a bare minimum console to launch and manage console applications, the reason why I need this it's because I need to pack ...
0
votes
1answer
80 views

Is it possible to create a GUI in c# to replace an existing virtual emulator user interface

There is a linux server that establishes a telnet session with a device. The device is using a vt100 terminal emulator to communicate with the server. I want to use a c# program that establishes a ...
0
votes
2answers
159 views

Does PuTTy work correctly with ANSI/VT100 escape sequences?

I'm writing a program for a class in HC12 Assembly for the Freescale MC9S12C32 processor. I'm using PuTTy as the terminal attached to the device via serial(-over-USB). For this assignment, we are ...
0
votes
5answers
172 views

Meaning of \r on linux systems

I'm looking at some linux specific code which is outputting the likes of: \r\x1b[J> to the std io. I understand that <ESC>[J represents deleting the contents of the screen from the ...
0
votes
0answers
106 views

Linux terminal emulator with configurable local printing

Our company runs a lot of physical terminals in our warehouse. They are "dumb" terminals with attached PS2 keyboards, monitors, and parallel printers. I'd like to replace these with a mini-ITX ...
1
vote
0answers
80 views

Using GNU screen, how do I exec a process in response to a string of input coming from the remote application?

I'm using GNU screen to connect to a VT100 terminal server (DOS running in DOSEMU). I want to configure escape sequences to exec a subprocess and quit a subprocess. This would be similar to ...
0
votes
0answers
32 views

Is top-left-corner for VT100 0,0 or 1,1?

I wrote/maintain a terminal emulator called ucon (http://www.umonfw.com/ucon). I suppose calling it an actual terminal emulator is sad because although it does a lot of good stuff, its not very good ...
0
votes
2answers
146 views

keyboard transmit mode in vt100 terminal emulator

I'm implementing a vt100 terminal emulator in javascript and the vt100 spec (from man terminfo and infocmp) tells me that smkx=\E[?1h\E= is the code to enter key-board transmit mode and ...
2
votes
0answers
67 views

Replace serial data, which has been sent out, by new data in 8051

I have a number counting program which transmits serial data ( three digits ) to hyper terminal. That program counts (increases / decreases) per second. Whenever it counts, it sends to serial out. ...
6
votes
1answer
892 views

Java terminal emulator

Does anyone knows of a library or a class that emulates the vt100 terminal (doesn't matter if graphical or not). What I want basically is a class that implements the logic of a vt100 terminal (like ...
0
votes
0answers
75 views

valid two character ANSI sequences?

According to http://ascii-table.com/ansi-escape-sequences-vt-100.php, Esc + = is a valid ANSI sequence. It means "Set alternate keypad mode". According to ...
2
votes
1answer
254 views

xterm/vt102 sequences to fill the terminal window, then exit on keypress, clearing whatever was on screen?

I'm trying to wrap my head around VT102 sequences and how such libraries as ncurses work. To give an example, when I open Emacs, it fills the terminal window. When I hit C-x C-c, the program exits ...
1
vote
1answer
393 views

understanding VT100/ANSI terminals

I'm working on a small server application in C# which should provide a VT100/ANSI terminal interface (either via telnet, or modem). I'm doing some research on VT100/ANSI and the more I read, the more ...
0
votes
1answer
328 views

Escape sequence <ESC>]0;

I am currently trying to write a script that uses expect to logon to SSH. Logging on to a server every prompt appears as [user@host]~/directory$ when I use a xterm color terminal. However, if I read ...
0
votes
1answer
80 views

How to check if DECCKM (Cursor Keys Mode) is set for the cursor sequences in vt100? (or any other terminals)

I would like to know if there is a way to know if DECCKM function (specifying whether or not to use ANSI cursor sequences) has been set or not. I'm connecting to a process via ptrace so I have no way ...
0
votes
3answers
200 views

Storing VT100 escape codes in an XML file

I'm writing a Python program that logs terminal interaction (similar to the script program), and I'd like to store the log in XML format. The problem is that the terminal interaction includes VT100 ...
6
votes
2answers
637 views

Python regex to match VT100 escape sequences

I'm writing a Python program that logs terminal interaction (similar to the script program), and I'd like to filter out the VT100 escape sequences before writing to disk. I'd like to use a function ...
3
votes
3answers
2k views

what is terminal escape sequence for ctrl + arrow (left, right,…) in TERM=linux

I am building a terminal window in a browser (sth. like ajaxterm) and don't know which escape sequence to send to ssh tunnel (opened via paramiko.SSHClient().invoke_shell(term='linux')). I have ...
2
votes
1answer
307 views

VT100 escape sequence to remove already printed newline?

Is there a combination of VT100 escape sequences that will allow my C program to print something like: Waiting...... to a console, in such a way that the dots appear one by one? Essentially, I ...
1
vote
1answer
1k views

vt100 terminal emulation with python / browser

I am trying to build a SSH client for the web browser (similar to ajaxterm). I have built a python backend that uses Paramiko's SSHClient.invoke_shell(term='vt100') and a web server which communicates ...
1
vote
0answers
195 views

How to output vt100 format text to unix socket from windows in Perl?

The text will be mis-aligned if displayed in windows prompt directly. Is there a module for converting vt100 format so that it can display normally in windows? UPDATE Environment: client: telnet ...
1
vote
1answer
397 views

VT Terminal - Disable local editing and echo

I am writing a console application that should run in VT compatible data collectors. After trying some emulators i found they have a different standard behavior. My concern is that most of the ...
4
votes
1answer
789 views

Send “C-(” to Emacs in VT100/xterm terminal (Mac OS X's Terminal)?

Is it possible in any way to send the key "C-(" to Emacs over a VT100/xterm terminal (Mac OS X Terminal)? Is there an escape sequence that could be sent to achieve the equivalent? I suspect the ...
2
votes
1answer
353 views

Can I determine if the terminal interprets the C1 control codes?

ISO/IEC 2022 defines the C0 and C1 control codes. The C0 set are the familiar codes between 0x00 and 0x1f in ASCII, ISO-8859-1 and UTF-8 (eg. ESC, CR, LF). Some VT100 terminal emulators (eg. ...
0
votes
2answers
631 views

Standard C header for ANSI VT100 escape sequences

Is there a standard C header containing ansi escape sequences for say vt100 ?
6
votes
4answers
3k views

VT100 Terminal Emulation in Windows WPF or Silverlight

I'm pondering creating a WPF or Silverlight app that acts just like a terminal window. Except, since it is in WPF/Silverlight, it will be able to 'enhance' the terminal experience with effects, ...
0
votes
1answer
377 views

Detect console prompt in VT100 SSH Session stream

I'm working on a wrapper library (in C#, but not really important to the issue here) to open an SSH connection and then allow for sending commands to the server and receiving the response. The main ...
2
votes
2answers
1k views

VT100 Emulation LIbrary in C# with SharpSSH

I'm messing around with Tamir.SharpSsh and wanted to see if it was possible to use it to implement a console SSH client fully in C#. I do not mean something like putty where it's actually running in ...
8
votes
2answers
437 views

Is there a Python equivalent for the Perl module Term::VT102?

In Perl there is a very handy module, Term::VT102, which allows you to create a screen in memory. This is very handy for scraping purposes since you can keep track of all the changes to portions of ...
3
votes
2answers
593 views

Java framework for text- & console-based forms?

Are there any Java-based frameworks for defining and managing text-, VT100- or console-based forms systems?
0
votes
3answers
3k views

Open source C# vt100 server

Does anyone know of an open source C# vt100 server? I'm looking to create a C# server that understands the escape sequences from a vt100 client.
7
votes
3answers
3k views

AJAX console window with ANSI/VT100 support?

I'm planning to write gateway web application, which would need "terminal window" with VT100/ANSI escape code support. Are there any AJAX based alternatives for such a task? I'm thinking something ...
2
votes
3answers
2k views

How does Telnet server communicate to the client?

I want to write a C# application where it connects to a telnet server and communicates to the server. I was wondering how a telnet server sends information to the client. I have looked (skimmed) over ...