Results 1 to 10 of 10

Thread: Who remembers "green screen" text terminals?

  1. #1
    Join Date
    Jul 2007
    Beans
    284
    Distro
    Ubuntu

    Who remembers "green screen" text terminals?

    Better yet, who remembers how to use them! I've got a nice old IBM InfoWindow 3153 which is working nicely with an Ubuntu Server 10.04 virtual machine (meaning yes, the serial port is tunneled through the host, with no issues). The only issue I'm having is the usage of "pages"; the built-in memory that the terminal has, which you can use to run different commands and "store" the output in various ways. My issue mostly lies in commands that produce results which are longer than one screen. The terminal has a mode where you can turn on "auto pages", which basically means if, for example, I do an "ls" command which produces more than one screen worth of results, it will start filling the other pages in its memory with the overflow automatically. It's pretty nice, but it doesn't seem to have a way to clear all the pages at once, and having data left over on various pages really messes with programs like lynx, as you see remnants of the stored buffers all over the web pages you're trying to view. If I turn off auto pages, I can obviously manually switch to other pages to run a command, but if the command goes over one page length, I lose the overflow -- it doesn't move onto another empty page. I'm sure there's some way to tell it to redirect output to multiple pages, but I'm not sure how to do it. (Or, at least I'm hopeful there's a way!)

    I'd really appreciate your help in figuring this out, and I'd also love to hear about your experiences with the green monsters!

    -Dan

  2. #2
    Join Date
    Feb 2008
    Beans
    1,145
    Distro
    Xubuntu

    Re: Who remembers "green screen" text terminals?

    Haven't used a monochrome since the 286 days. All I can remember from way back then is playing SimCity in Hercules mode.
    Help yourself: Ubuntu Docs - Ubuntu Packages

  3. #3
    Join Date
    Apr 2006
    Location
    N. Vancouver, BC, Canada
    Beans
    Hidden!
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Who remembers "green screen" text terminals?

    I used the IBM and Ann Arbour terminals at University in the late 70's and early 80's. We then moved to an original IBM PC running Kermit under MS DOS to emulate the IBM terminals. IBM still has support information for these terminals. https://www-304.ibm.com/support/docv...d=isg3T1000109. Something other tech companies need to learn.

  4. #4
    Join Date
    Oct 2008
    Location
    Wisconsin
    Beans
    Hidden!
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Who remembers "green screen" text terminals?

    My dad bought an Apple IIec around the time I was born, which had a color display. I still still saw quite a few monochrome displays around when I was little.

    Of course, everyone has seen them in the Matrix.

  5. #5
    Join Date
    May 2005
    Location
    Indiana
    Beans
    1,933
    Distro
    Hardy Heron (Ubuntu Development)

    Re: Who remembers "green screen" text terminals?

    My wife is a SQL developer, but some of the people where she works actually still use green screen as one of the main parts of their jobs. They're pretty set against giving it up, too. My wife even has to use it sometimes.

    When she told me that, I was amazed.
    Today you are You, that is truer than true. There is no one alive who is Youer than You. - Dr. Seuss

  6. #6
    Join Date
    Nov 2008
    Beans
    246
    Distro
    Ubuntu Development Release

    Re: Who remembers "green screen" text terminals?

    First time I ever talked to a computer it was on a teletype machine. Green screen terminals were a big step up.

  7. #7
    Join Date
    Jul 2007
    Beans
    284
    Distro
    Ubuntu

    Re: Who remembers "green screen" text terminals?

    Thanks for the link, Dr. C! I searched all over the web and never found that page before. Hopefully that has a better explanation of the page feature. Right now my main purpose on this thing is to play Zork (which is, believe it or not, tougher than it seems -- takes a different frame of mind than modern games), but hopefully I can find some other uses for it...or at least other games to play.

    forestcupp -- how do those SQL people use the terminals exactly? I've only had some vague and so far unsuccessful run-ins with SQL so far, so I don't exactly know why you would need a terminal for it.

    -Dan

  8. #8
    Join Date
    May 2005
    Location
    Indiana
    Beans
    1,933
    Distro
    Hardy Heron (Ubuntu Development)

    Re: Who remembers "green screen" text terminals?

    Quote Originally Posted by dbsoundman View Post
    Thanks for the link, Dr. C! I searched all over the web and never found that page before. Hopefully that has a better explanation of the page feature. Right now my main purpose on this thing is to play Zork (which is, believe it or not, tougher than it seems -- takes a different frame of mind than modern games), but hopefully I can find some other uses for it...or at least other games to play.
    I beat Zork a long time ago on the C64. Great game.

    Quote Originally Posted by dbsoundman View Post
    forestcupp -- how do those SQL people use the terminals exactly? I've only had some vague and so far unsuccessful run-ins with SQL so far, so I don't exactly know why you would need a terminal for it.

    -Dan
    The people who use green screen aren't SQL devs. That's for something completely different, and I don't know what it is.
    Today you are You, that is truer than true. There is no one alive who is Youer than You. - Dr. Seuss

  9. #9
    Join Date
    Jul 2007
    Beans
    284
    Distro
    Ubuntu

    Re: Who remembers "green screen" text terminals?

    I actually made some progress playing Zork, I'm starting to get the hang of it! Even figured out how to save/restore games.

    Back to the issue of "pages", I looked through the IBM materials, then through the big HOWTO site on terminal computing with linux, and finally noticed that linux applications generally don't support pages, which explains why they weren't being used before automatically. So, my question is, how do I handle terminal output that's longer than one page if I can't see it? For example, let's say I say "frotz --help" in the terminal. The help file is longer than 80 lines, so it overflows, and I'm left with only the last part of the readout. How can I stop the terminal, or somehow tell it to save the top part? Is there a linux command for this? I tried doing "frotz --help > help.txt", but that didn't work. Once I figure this out, I'm pretty much good to go on terminal computing. Thanks for the help!

    -Dan

  10. #10
    Join Date
    Feb 2008
    Beans
    1,145
    Distro
    Xubuntu

    Re: Who remembers "green screen" text terminals?

    Well, in Linux you can just pipe to more or less:

    Code:
    cat help.txt | less
    Help yourself: Ubuntu Docs - Ubuntu Packages

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •