terminal-emulator

Free or open source IBM 3151 or aixterm emulators?

Does anyone know of any free or open source terminal emulators that will emulate an IBM 3151 terminal or an HFT terminal (aixterm)? We have some offshore contractors that need access to some of our systems that need a 3151 or hft emulation, but are having issues transferring licenses of Hummingbird HostExplorer to India. For that mat...

Home/End keys in zsh don't work with putty

I'm running zsh as the default shell on a Ubuntu box, and everything works fine using gnome-terminal (which as far as I know emulates xterm). When I login from a windows box via ssh and putty (which also emulates xterm) suddendly the home/end keys no longer work. I've been able to solve that adding these lines to my zshrc file... bind...

Why vim doesn't work correctly into a telnet session ?

Hello, I use vim (7.1) on OpenVMS V7.3-2. I connect to VMS trough a telnet session with SmartTerm, a terminal emulator. It works fine. But when I start a telnet session from a VMS session (connected via SmartTerm) to another VMS session, some keys doesn't work properly. |--------------| telnet |-------------| telnet |-----------...

Telnet / Terminal commands

Got a problem with a proxy telnet server that I am trying to debug, it appears that a set of characters being sent are causing it a problem .... does anybody know where I can get a list of teminal commands (Along the lines of [40m)? ...

Reflection Terminal Emulator - Integration with IE

I'm trying to implement some integration between a legacy app running in the Reflection Terminal Emulator and a browser-based app running in IE. I'm using Host Initiated Scripts so that maintenance and deployment issues are isolated to the legacy app. All scripts will be generated in the legacy app and transmitted to Reflection using e...

Scriptable terminal program for modem testing

I have to use AT commands to setup my dial up modem (modulation seleccion, speed, etc), and dial other modem. Once the connection is stablished I have to transfer/receive files via zmodem, xmodem... I have to run a batch of tests with different speeds, modulations (v.92, v.90, v.34...) so i need a scriptable terminal program (hyperterm...

How to switch split screen emacs where one screen is the editor while the other is terminal emulator?

I have ssh'ed to a remote machine and started emacs. I opened one small python application, and then split the screen into two, and M-x terminal-emulator in the other. I would like to edit the script in one section, then press C-x o and run it on the other section. Unfortunately, I can't seem to C-x o away from the terminal emulator and ...

How to parse links in bash output

Let assume that we have this output in bash console: $ findgrep RAILS_ENV ./script/munin_stats:7:RAILS_ENV = ENV['RAILS_ENV'] || "development" ./script/munin_stats:12: dbconfig = dbhash[RAILS_ENV] ./lib/tasks/juggernaut.rake:4: @rails_env = ENV["RAILS_ENV"] || "development" ...

Can one highlight tab characters in the terminal?

Using terminal sequences, I can colour text in a terminal emulator: $ echo -e '\e[37;41m--this is white on red--\e[0m' And this works. The following prints a red rectangle, i.e. space characters have a red background and an empty foreground: $ echo -e '\e[37;41m \e[0m ' But the following prints two red rectangles separated by ...

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. ...

Ericsson f3507g WWAN (3G Broadband) and AT commands

I have a lenovo x200t tablet with WWAN built into it. I'm trying to connect to the internet using AT commands and a C# program which I am making so that the program can connect to the net and upload information on demand. I don't want to use Lenovo's "Access Connections" as it is too complicated for the end user. So far I have been ab...

What's a good browser-based terminal emulator?

We have several curses style applications which we'd like to provide access to through a browser-based interface. We have an application from another vendor which ostensibly provides this based on an old version of the JTA (Java Telnet App) but that applet doesn't handle things like resizing well, and has relatively poor support for sc...

A terminal-like window for wxWidgets?

I'm looking to add an element to my wxWidgets GUI that behaves like a terminal emulator. Not in terms of a shell which executes commands, but just the input-output setup of an application running in a terminal. Basically, the requirements are: Streaming input/output: When you enter a character, it is added to an input stream, and when...

Coding a Mac OS X terminal emulator?

Hi, I'd like to create a terminal emulator for Mac OS X. The problem is: I have no idea where to start. Can I just use a whole bunch of NSTasks? Or do I have to read through tons of source code for programs like xterm, urxvt, etc? I don't want a lot of customizability (= no config file parsing), nor complex features, and I'm only gonna ...

Terminal Emulator - compare contrast KERMIT and Reflection by attachmate?

Can someone compare and contrast Reflection and KERMIT? Do they do the same thing? Which is better? Why? We may need to use one of these at my business and we are looking for input. Thanks W ...

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 thing, however, is that I want to have the command call buffer the response stream and then return it all as one string to the user once the...