XiT v2.2 for OS/2 serial key or number

XiT v2.2 for OS/2 serial key or number

XiT v2.2 for OS/2 serial key or number

XiT v2.2 for OS/2 serial key or number

nano Command Manual

This manual documents GNU , a small and friendly text editor.

1 Introduction

GNU is a small and friendly text editor. Besides basic text editing, offers many extra features like an interactive search and replace, go to line and column number, auto-indentation, feature toggles, internationalization support, and filename tab completion.

1.1 Overview

The original goal for was a complete bug-for-bug compatible emulation of Pico, but 's current goal is to be as compatible as possible while offering a superset of Pico's functionality. See See Pico Compatibility, for more info.

The usual way to invoke is:

But it is also possible to edit several files in a row. Additionally, the cursor can be put on a desired line number by adding this number with a plus sign before any filename, and even in a desired column by adding it with a comma. So the complete synopsis is:

Email bug reports to nano@nano-editor.org.

1.2 Command Line Options

takes the following options from the command line:

Start at line number LINE and column number COLUMN (at least one of which must be specified) instead of the default of line 1, column 1.
Same as .
Make the Home key smarter. When Home is pressed anywhere but at the very beginning of non-whitespace characters on a line, the cursor will jump to that beginning (either forwards or backwards). If the cursor is already at that position, it will jump to the true beginning of the line.
When saving a file, back up the previous version of it to the current filename suffixed with a ~.
Set the directory where puts unique backup files if file backups are enabled.
Use bold text instead of reverse video text.
Convert typed tabs to spaces.
Enable multiple file buffers, if available.
Log search and replace strings to ~/.nano_history, so they can be retrieved in later sessions, if nanorc support is available.
Don't look at SYSCONFDIR/nanorc or ~/.nanorc, if nanorc support is available.
Interpret the numeric keypad keys so that they all work properly. You should only need to use this option if they don't, as mouse support won't work properly with this option enabled.
Don't add newlines to the ends of files.
Don't convert files from DOS/Mac format.
Use the blank line below the titlebar as extra editing space.
Set the quoting string for justifying. The default value is

if extended regular expression support is available, or "> " otherwise. Note that above stands for a literal Tab character.

Restricted mode: don't read or write to any file not specified on the command line; read any nanorc files; allow suspending; allow a file to be appended to, prepended to, or saved under a different name if it already has one; or use backup files or spell checking. Also accessible by invoking with any name beginning with 'r' (e.g. "rnano").
Enable smooth scrolling. Text will scroll line-by-line, instead of the usual chunk-by-chunk behavior.
Set the displayed tab length to #cols columns. The value of #cols must be greater than 0. The default value is 8.
Do quick statusbar blanking. Statusbar messages will disappear after 1 keystroke instead of 25. Note that -c overrides this.
Show the current version number and exit.
Detect word boundaries more accurately by treating punctuation characters as parts of words.
Specify a specific syntax highlighting from the nanorc to use, if available. See See Nanorc Files, for more info.
Constantly display the cursor position and line number on the statusbar. Note that this overrides -U.
Interpret the Delete key differently so that both Backspace and Delete work properly. You should only need to use this option if Backspace acts like Delete on your system.
Show a summary of command line options and exit.
Automatically indent new lines to the same number of spaces and tabs as the previous line.
Cut from the current cursor position to the end of the current line.
When writing files, if the given file is a symbolic link, it is removed and a new file is created.
Enable mouse support, if available for your system. When enabled, mouse clicks can be used to place the cursor, set the mark (with a double click), and execute shortcuts. The mouse will work in the X Window System, and on the console when gpm is running.
Set operating directory. Makes set up something similar to a chroot.
Preserve the ^Q (XON) and ^S (XOFF) sequences so data being sent to the editor can be can be stopped and started.
Do not report errors in the nanorc file and ask them to be acknowledged by pressing Enter at startup.
Wrap lines at column #cols. If this value is 0 or less, wrapping will occur at the width of the screen less #cols, allowing it to vary along with the width of the screen if the screen is resized. The default value is -8.
Invoke the given program as the spell checker. By default, uses the command specified in the SPELL environment variable, or, if SPELL is not set, its own interactive spell checker that requires the program to be installed on your system.
Don't ask whether or not to save the current contents of the file when exiting, assume yes. This is most useful when using as the composer of a mailer program.
Enable experimental generic-purpose undo code. By default, the undo and redo shortcuts are Meta-U and Meta-E, respectively.
Don't allow the contents of the file to be altered. Note that this option should NOT be used in place of correct file permissions to implement a read-only file.
Don't wrap long lines at any length. This option overrides any value for -r.


Expert Mode: don't show the Shortcut Lists at the bottom of the screen. This affects the location of the statusbar as well, as in Expert Mode it is located at the very bottom of the editor.

Note: When accessing the help system, Expert Mode is temporarily disabled to display the help system navigation keys.

Enable 's suspend ability using the system's suspend keystroke (usually ^Z).
Enable 'soft wrapping'. will attempt to display the entire contents of a line, even if it is longer than the screen width. Since '$' normally refers to a variable in the Unix shell, you should specify this option last when using other options (e.g. 'nano -wS$') or pass it separately (e.g. 'nano -wS -$').
Ignored, for compatibility with Pico.

2 Editor Basics

2.1 Entering Text

All key sequences in are entered using the keyboard. is a "modeless" editor. All keys, with the exception of Control and Meta key sequences, will enter text into the file being edited.

2.2 Special Functions

Special functions use the Control (Ctrl) key, displayed in the help and shortcut lists as ^; the Meta key, displayed as M; or the Escape (Esc) key.

  • Control key sequences are entered by holding down the Ctrl key and pressing the desired key, or by pressing the Esc key twice and pressing the desired key.
  • Pressing Esc twice and then typing a three-digit number from 000 to 255 will enter the character with the corresponding value.
  • Meta key sequences are entered by holding down the Meta key (normally the Alt key) and pressing the desired key, or by pressing the Esc key once and pressing the desired key. Certain operating systems "swallow" the Alt key so that it never reaches the application; if your operating system does this, you should use the Esc key to generate Meta key sequences.

2.3 The Titlebar

The titlebar is the line displayed at the top of the editor. There are three sections: left, center and right. The section on the left displays the version of being used. The center section displays the current filename, or "New Buffer" if the file has not yet been named. The section on the right will display "Modified" if the file has been modified since it was last saved or opened.

Special modes: When is in "File browser" mode, the center section will display the current directory instead of the filename. See See The File Browser, for more info.

2.4 The Statusbar

The statusbar is the third line from the bottom of the screen, or the bottom line in Expert Mode. See See Expert Mode, for more info. It shows important and informational messages. Any error messages that occur from using the editor will appear on the statusbar. Any questions that are asked of the user will be asked on the statusbar, and any user input (search strings, filenames, etc.) will be input on the statusbar.

2.5 Shortcut Lists

The Shortcut Lists are the two lines at the bottom of the screen which show some of the more commonly used functions in the editor.

2.6 Using the Mouse

When mouse support has been configured and enabled, a single mouse click places the cursor at the indicated position. Clicking a second time in the same position toggles the mark. Clicking in the shortcut list executes the selected shortcut.

The mouse will work in the X Window System, and on the console when gpm is running.

3 Online Help

The online help system in is available by pressing ^G. It is fairly self explanatory, documenting the various parts of the editor and available keystrokes. Navigation is via the ^Y (Page Up) and ^V (Page Down) keys. ^X exits the help system.

4 Feature Toggles

Toggles allow you to change certain aspects of the editor that would normally be done via command line options. They are invoked via Meta key sequences. See See Special Functions, for more info. The following global toggles are available:

toggles the -B () command line option.
toggles the -c () command line option.
toggles the -F () command line option.
toggles the -A () command line option.
toggles the -i () command line option.
toggles the -k () command line option.
toggles the -w () command line option.
toggles the -m () command line option.
toggles the -N () command line option.
toggles the -O () command line option.
toggles whitespace display mode if you have a "whitespace" option in your nanorc. See See Nanorc Files, for more info.
toggles the -E () command line option.
toggles the -S () command line option.
toggles the -x () command line option.
toggles color syntax highlighting if you have color syntaxes in your nanorc. See See Nanorc Files, for more info.
toggles the -z () command line option.
toggles the -$ () command line option.

5 Nanorc Files

The nanorc files contain the default settings for . They should not be in DOS or Mac format. During startup, will first read its system-wide settings from SYSCONFDIR/nanorc, and then user-specific settings from ~/.nanorc.

A nanorc file accepts a series of "set" and "unset" commands, which can be used to configure on startup without using the command line options. Additionally, the "syntax", "color", and "icolor" keywords are used to define syntax highlighting rules for different text patterns. will read one command per line.

Options in nanorc files take precedence over 's defaults, and command line options override nanorc settings. Options are also unset by default, except for those that take arguments.

Quotes inside string parameters don't have to be escaped with backslashes. The last double quote in the string will be treated as its end. For example, for the "brackets" option,

will match , , , , , and .

The supported commands and arguments are:

Use auto-indentation.
Create backup files in "filename~".
Set the directory where puts unique backup files if file backups are enabled.
Do backwards searches by default.
Use bold text instead of reverse video text.
Set the characters treated as closing brackets when justifying paragraphs. They cannot contain blank characters. Only closing punctuation, optionally followed by closing brackets, can end sentences. The default value is
Do case sensitive searches by default.
Constantly display the cursor position in the status bar.
Use cut to end of line by default, instead of cutting the whole line.
Wrap lines at column number "n". If "n" is 0 or less, the maximum line length will be the screen width less "n" columns. The default value is -8.
Enable ~/.nano_history for saving and reading search/replace strings.
Set the opening and closing brackets that can be found by bracket searches. They cannot contain blank characters. The former set must come before the latter set, and both must be in the same order. The default value is
Use the blank line below the titlebar as extra editing space.
Enable mouse support, so that mouse clicks can be used to place the cursor, set the mark (with a double click), or execute shortcuts.
Allow inserting files into their own buffers.
Don't convert files from DOS/Mac format.
Don't follow symlinks when writing files.
Don't display the help lists at the bottom of the screen.
Don't add newlines to the ends of files.
Don't wrap text at all.
will only read and write files inside "directory" and its subdirectories. Also, the current directory is changed to here, so files are inserted from this directory. By default, the operating directory feature is turned off.
Preserve the XON and XOFF keys (^Q and ^S).
Set the characters treated as closing punctuation when justifying paragraphs. They cannot contain blank characters. Only closing punctuation, optionally followed by closing brackets, can end sentences. The default value is .
Do quick statusbar blanking. Statusbar messages will disappear after 1 keystroke instead of 25.
The email-quote string, used to justify email-quoted paragraphs. This is an extended regular expression if your system supports them, otherwise a literal string. The default value is

if you have extended regular expression support, or "> " otherwise. Note that '\\t' stands for a literal Tab character.

Interpret the Delete key differently so that both Backspace and Delete work properly. You should only need to use this option if Backspace acts like Delete on your system.
Interpret the numeric keypad keys so that they all work properly. You should only need to use this option if they don't, as mouse support won't work properly with this option enabled.
Do extended regular expression searches by default.
Make the Home key smarter. When Home is pressed anywhere but at the very beginning of non-whitespace characters on a line, the cursor will jump to that beginning (either forwards or backwards). If the cursor is already at that position, it will jump to the true beginning of the line.
Use smooth scrolling by default.
Use soft wrapping by default.
Use spelling checker "spellprog" instead of the built-in one, which calls "spell".
Allow to be suspended.
If is allowed to be suspended, allow the suspend key (usually ^Z) to actually suspend it.
Use a tab size of "n" columns. The value of "n" must be greater than 0. The default value is 8.
Convert typed tabs to spaces.
Save automatically on exit, don't prompt.
Enable experimental generic-purpose undo code.
Disallow file modification.
Set the two characters used to display the first characters of tabs and spaces. They must be single-column characters.
Detect word boundaries more accurately by treating punctuation characters as part of a word.
Defines a syntax named "str" which can be activated via the -Y/–syntax command line option, or will be automatically activated if the current filename matches the extended regular expression "fileregex". All following "color" and "icolor" statements will apply to "syntax" until a new syntax is defined.

The "none" syntax is reserved; specifying it on the command line is the same as not having a syntax at all. The "default" syntax is special: it takes no "fileregex", and applies to files that don't match any other syntax's "fileregex".

For the currently defined syntax, display all expressions matching the extended regular expression "regex" with foreground color "fgcolor" and background color "bgcolor", at least one of which must be specified. Legal colors for foreground and background color are: white, black, red, blue, green, yellow, magenta, and cyan. You may use the prefix "bright" to force a stronger color highlight for the foreground. If your terminal supports transparency, not specifying a "bgcolor" tells "nano" to attempt to use a transparent background.
Same as above, except that the expression matching is case insensitive.
Display expressions which start with the extended regular expression "sr" and end with the extended regular expression "er" with foreground color "fgcolor" and background color "bgcolor", at least one of which must be specified. This allows syntax highlighting to span multiple lines. Note that all subsequent instances of "sr" after an initial "sr" is found will be highlighted until the first instance of "er".
Same as above, except that the expression matching is case insensitive.
Read in self-contained color syntaxes from "syntaxfile". Note that "syntaxfile" can only contain "syntax", "color", and "icolor" commands.

6 The File Browser

When reading or writing files, pressing ^T will invoke the file browser. Here, one can navigate directories in a graphical manner in order to find the desired file.

Basic movement in the file browser is accomplished with the arrow keys, page up, and page down. More advanced movement is accomplished by searching via ^W (or 'w') and changing directories via ^_ (or 'g'). The behavior of the Enter (or 's') key varies by what is currently selected. If the currently selected object is a directory, the file browser will enter and display the contents of the directory. If the object is a file, this filename and path are copied to the statusbar, and the file browser exits.

7 Pico Compatibility

attempts to emulate Pico as closely as possible, but there are certain differences between the editors:

As of version 1.1.99pre1 of , text entered as search or replace strings will be stored and can be accessed with the up/down arrow keys. Previously, offered a more consistent, but incompatible with Pico, method for entering search and replace strings. In the old method, previous entries would be displayed by default as editable text in front of the cursor, as opposed to being bracketed and uneditable as it is in Pico. The old behavior could be made compatible with Pico via the option, but recent versions of Pico use the option to preserve the XON and XOFF sequences within the editor. Since, with the new method, search and replace strings can still be edited by simply hitting the up arrow key once, the old method was removed completely.
Text selected using the marking key (^^) can be written out, appended, or prepended to a new or existing file using the WriteOut key (^O).
Many options which alter the functionality of the program can be "toggled" on or off using Meta key sequences, meaning the program does not have to be restarted to turn a particular feature of the editor on or off. Please see the internal help function (^G) for a list of what functions can be toggled for a particular version of . See See Feature Toggles, for more info.
The output of the "Display Cursor Position" in displays the given column position, as well as the row and total character position of the cursor.
It is worth noting that 's replace function is interactive, i.e. it does not stop after one search string is found and automatically replace it. The implementation will pause at each search string found and query whether to replace this instance or not. The internal spell checker operates similarly. Note that there is no way to force these functions to behave in the Pico fashion. As of version 1.1.99pre1, misspelled words are sorted and trimmed for uniqueness in the internal spell checker such that the words 'apple' and 'Apple' will be prompted for correction separately.

8 Building and Configure Options

Building from source is fairly straightforward if you are familiar with compiling programs with autoconf support:

  • tar xvfz nano-x.y.z.tar.gz (where x.y.z is the version of )
  • cd nano-x.y.z/
  • ./configure
  • make
  • make install

The possible options to are:

Disable the mini file browser when reading or writing files.
Disable the help function. Doing this makes the binary much smaller, but makes it difficult for new users to learn more than very basic things about using the editor.
Disable the justify and unjustify functions.
Disable all mouse functionality. This also disables the -m command line option, which enables the mouse functionality.
Disable setting the operating directory. This also disables the -o command line option, which sets the operating directory.
Disable use of the spell checker. This also disables the -s command line option, which allows specifying an alternate spell checker.
Disable the tab completion code when reading or writing files.
Disable all long line wrapping. This also eliminates the -w command line option, which enables long line wrapping.
This option disables all the above. It also disables some of the larger internals of the editor, like the marking code and the cut to end of line code. It also disables the function toggles.
Enable support for runtime debug output. This can get pretty messy, so chances are you only want this feature to work on the nano source.
Enable extra features. At the moment, this is just easter egg-type stuff.
Enable support for syntax coloring of files using the nanorc file. This enables nanorc support as well.
Enable support for opening multiple files at a time and switching between them on the fly.
Enable support for reading the nanorc file at startup. You can store custom settings in the nanorc file rather than having to pass command line options to get desired behavior. See See Nanorc Files, for more info.
Shortcut for enabling the above four features (extra, color, multibuffer, and nanorc).
Disables Native Language support. This will disable use of the available GNU translations.
Disable long line wrapping by default when nano is run as root.
Enable support for reading and writing Unicode files. This will require either a wide version of curses, or a UTF-8-enabled version of Slang.
Disable support for reading and writing Unicode files.
Compiling with Slang is supported, and will make the binary notably smaller than if compiled with ncurses or other curses libraries.
Источник: [https://torrent-igruha.org/3551-portal.html]
, XiT v2.2 for OS/2 serial key or number
Seriál number 3 

!POZOR!

Použití sériových čísel uvedených na těchto stránkách je nelegální a pokud je použijete, odpovědnost padá pouze na Vás!
Já zde pouze uvádím prostředky, které můžete Vy použít podle vlastního uvážení, tedy buď legálně nebo nelegálně. Příklad legálního použití je čtení těchto čísel, nelegální je použít tato čísla k registraci některého programu. Pokud se však rozhodnete tak učinit, já za toto Vaše rozhodnutí nepřijímám jakoukoliv odpovědnost!

 

All information located under current site placed for private purposes and will not be downloaded, viewed or used whatsoever. So current site webmaster or organization hosting this site takes no responsibility for the way you will use information from this site. If you`re member of any anti-piracy or related group or organization you cannot enter this site and view any of site contents. If you enter this site and do not agree with current terms you can not provide any treatment of our hosting ISPs, organization or any persons storing this site information because your actions will be estimated as violation code no. 431.322.12 of the Internet Privacy Act from 1995

  386 Max v7.0: #: 40090206002386 Max v8.0: #: 820604030043 or 8206040330043D KeyBoard v2.4 (Win95): #: 3DK-W31-200024D Runtime 2.01: #: T-3020925060514DOS v5.00: #: 111209: code: 8VS2PGCK4D Runtime 2.01: #: S-342590516249: #: T-302092516051: #: U-302191537161: #: V-3022905272734Files v3.30: name: TwinHead: #: 634599957564th Dimension 2.0.11: #: D-205200607255: #: D-225490055617: #: H-243178434494: #: X-2420649606944th Right: #: V-3022905272738 Ball Deluxe: #: ZJLFDN5TMAJ8Leg Web Studio: name: LordByte in 1996: organisation: #cracking: #: 145E6063   A Smaller GIF v1.06 16/32: name: Fatigued: #: YYYVDC7CUYY6C5AA Smaller Gif v1.07 : name: RAGGER/CORE: #: YYY9W27Y!UYYY9MTA3E v1.x: (edit A3E.KEY): line1: REGNAME=The Bozo Construction Company: line2: BDA665A818566AB141A665B537566A29Abacus Law Office Calendar System: #: F4904ABC Flowcharter v3.0 (Win3): #: 0601001053909501ABC Toolkit v1.0 (Win3): #: 01103158901ABC Toolkit v1.1 (Win3): #: 1001001103158901Above Disk+ v4.0a: #: 506824Abuser v0.8b: name: me: #: 14644Accent (Win3): #: 042807358902273Accent v2.0 Final Beta (Win3): #: 12345678900012Accent Express (Win95): #: 064201130459806Accent Pro v2.0 (Win95): #: 062202100002277Accounting Works (one write plus): #: 20.11A1111ACCPAC Simply Acounting v2.0a (Win3): #: 1021602-48016ACDsee16 v1.25b4: name: Kermu: #: 2067038799ACDsee16 1.3x Beta: name: mARQUIS: #: 142441610ACDsee16 1.3x Release: name: mARQUIS: #: 120530089ACDsee16 2.1: name: letis: #: +tHE riDDLER [uCF] 213111ACDsee32 All Versions: name: Letis: #: +tHE rIDLLER [uCF] 213111ACDsee32: name: aemca: #: MDS00122213333Aces of the Deep: #: 8563441101743Action Workflow Analyst (Win3): #: AA200013001W1001823Adaptec EZ-SCSI v3.03 (DOS/Win3): #: 492848-01Addepth v1.0 (Win3): #: AW-100-1-2716-52987Addepth v1.1 (Win3): #: AW-110-1-1701-30232Add Impact: #: 3009034001Address Mate v2.12 (Win3): #: AM212101704Adept BBS v1.07 (OS/2): name: Creeping Death: reg: 3599887846: #: 808001375Adobe Acrobat distiler v1.0 (Win3): #: DEE100R3001172-010-496Adobe Acrobat reader v1.0 (Win3): #: ARW100R3100000-500-574Adobe Acrobat reader v1.2 (Win3): #: ARM100R3100034-100-397Adobe Acrobat v1.0 (Win3): #: ARW100R3100230-826Adobe Acrobat v2.0 (Win3): #: WVW200R3100221-398Adobe Illustrator v4.0 (Win3): #: ABW400R3101335-714Adobe Illustrator v4.01 (Win3): #: ABE400R3001625-858Adobe PhotoShop: #: PCA 100000100-953Adobe Photoshop v2.5 (Win3): #: PWW250R3000000-880Adobe Photoshop v2.5.1 (Win3): #: PWW250R3104501-684Adobe Photoshop v3.0 (Win3): #: PWW300R3000011-926Adobe Premiere v1.0 (Win3): #: MBW100X3100970-389Adobe Premiere v1.1 (Win3): #: MBW100D3100371-512Adobe Premiere v4.0 (Win3): #: MBW400R1109394-244Adobe Premiere 4.2 (Win3): #: MBW100J3100384-488Adobe Streamline v3.0 (Win3): #: SBW3001110706-297Adobe Streamline v3.01 (Win3): #: SBW300S1100640-184Adobe Wild Type: #: FHW251R31003373Address Book v1.5: #: JLJ4EVRAddress Wijzer v3.10 from Davilex: #: AD38170After Dark - Disney Edition: #: DSW-93093-5071After Dark - Loony Toons Edition: #: ZQA-35600-2587After Dark - Marvel Comics Edition: #: MVW-92958-1201After Dark - Star Trek Edition: #: BSN-90011-7479After Dark - Star Trek: StarDate: #: ESW-83838-9710After Dark - Star Trek: TNG: #: BSW-35600-2587After Dark - Simpsons Edition: #: ZQW-33671-7329After Dark - Totally Twisted Edition: #: BII-00670-6681After Dark - X-Men Edition: #: AD3-00670-6681After Dark v3.0 (Win3): #: AD3-00670-6681: #: ADW-33671-7329After Dark v3.2 (Win95): #: ADC-32659-7016Agency Database v1.12c (Win3): #: ADW00195Agent .99e: #: wh6w8375-kl49rk8c-h2b583sh-6hs7r58h-c8lz55f6-wg3edwrkAgfa Fotoflow: #: 410210021-086Agsi v1.1.4 for DOS: name: You!: #: HVHUIFOQAlbatross CD-Player (OS/2): name: Doh Enterprises: #: 3013757502Aldus Freehand v4.0 (Win3): #: 05-4002-202558479Aldus Freehand v5.0 (Win3): #: 10350-0276-0089-83911Aldus Gallery effect v1.5 (Win3): #: 36-1500-040049293Aldus Persuasion v2.1a (Win3): #: 09-2101-200613117Aldus Persuasion v3.0b (Win3): #: 09-3003-202849134Aldus Photostyler v2.0 (Win3): #: 15-2000-000000000Aldus Photostyler v2.0a (Win3): #: 15-0208-202570921Aldus Photostyler v2.0SE (Win3): #: 15-0201-201632890Aldus Type Twister v1.0 (Win3): #: 46-1000-000031664Aldus/Adobe Pagemaker v4.0: #: 02-3008-000036469Aldus/Adobe Pagemaker ENG v5.0 (Win3) : #: 03-4005-200136599Aldus/Adobe Pagemaker NL v5.0 (Win3): #: 02-50C8-100094310Aldus/Adobe Pagemaker v5.0a: #: 03-5025-303224614Aldus/Adobe Pagemaker v6.0 (Win95): #: 03W600R1124621-479Allfix v4.16: name: Me!: #: AEA94F395097FD5A87343C030Alliance ScreenSaver (Win3 & MAC): #: 09-980943Almanac 3.5c (Win95)/NT: name: TwinHead [TWH/UCF]: #: A9261579 or B1775915Almanac 3.x: name: THE RIDDLER [EOD]: #: B9068287Alone in the Dark I CD: #: 11 0831 3461Alpha Five (Win3): #: 368443Alpha Five Home/Business v1.0 (Win3): #: Z50HBEV1-1019144Altamira Composer v1.1 Pro: #: 644 043 060 0036Altos System Diagnostic v1.0SO: #: DIAG7K_9K00004Altos system ECU setup v1.1SO: #: A_ECU00246American Heretic Dictionary: #: 38321584AM Workflow v3.1: #: 001169America Online v1.0 (Win3): #: 69-2815-4880: pw: LARKED-MASSESAmerica Online v1.15 (Win3): #: 48-5004-6750: pw: AMBLED-ANIONAmerica Online v2.0 (Win3): #: 79-0519-3782: pw: SWIMS-TAGGERAmerica Online v2.5 beta 4: #: 10-5932-0206: pw: GOBLET-MEDIANAmerica Online v3.0 for Windows: #: 3s-8319-7222: password: FEVER-DRAMASAmerica Online Ver 3.0 50 hrs.: #: 3E-4835-8961: password: GLEEM-TUNERSAniMagic GIF v1.03: name: mISTER fANATIC: #: C72DA8B7AniMagic GIF v1.03c: name: Paid Copy: comp: Paid Copy: #: 5388C5D1Animagic GIF Animator v1.00-1.05C: name: delphic: company: dng: #: 88DB6CDFAnimagic GIF Animator v1.05-1.06b: name: Registered: company: version: #: B18CCF53Animation Works Interactiv v2.0: #: 3001162627AnsiPaint v2.3: name: DIR&MIR: #: 1216Answering Machine/2 (OS/2): name: DoH Enterprises: #: 28585135Any Folder Shell Extension: name: Steve Hsu: #: 1403017Any Folder Shell Extension: name: Reveal: #: 1378371Anytime v3.0 (Win3): #: YX0550011976Anyview v1.00a (Win3): #: AVR-100-4201975Apple Media Tool v1.2 (Win3): #: AMT00-00000-2155073Application Control v2.??: name: THE RIDDLER: #: 628872953Approach v3.0 (Win3): #: 1F00028-01104360ArcServe v5.01 (Win3)(10 users): #: 10AS 1163609ArcServe v5.01g Windows (Netware): #: 0392181ArcServe/386 v3.0b for DOS: #: 23014Arcsolo v3.02 (Win3): #: EVSO 1231464Archive Converter v3.x: #: 1317660001: #: 1317669999ArcTest v2.3a: name: TwinHead [TWH/UCF]: #: 18624809ARJ v2.50a: name: mARQUIS [uCF]: #: 91919191-0xACE93251ARJ v2.60: name: PC Forever!: #: 0000001-0x8DF64AEF/KGArt Apart Collectors Edition: #: 2311-0021-3285AskSam Pro v3.0 (Win95): #: 300-64646-96012Asset DocParts v1.0: #: ADP010-200-0000Astound v1.5 (Win3): #: 3031620659Astound v2.1 (Win3): #: 3044507372Astro World (Win3): name: Crack da WareZ: #: @JTJ66BHNWAsymetrix 3D F/X (Win3): #: 2011-009713Asymetrix Multimedia Toolbook v3.0: #: 0740-002379Ataman TCP Remote Logon Service v1.6: name: Misha [UCF]: #: i4b364652Authorware Pro v2.0 (Win3): #: 8205-2072-3071Authorware Pro v2.01 (Win3): #: 8217-4072-0086AutoCAD v12.0: #: 110-10061620AutoCAD v13.0: #: 70FEE2FDAutoCAD lite v2.0 (Win3): #: 167-10001908AutoCD v1.7.4 (Win95): name: Misha: company: [UCF]: #: 66VVOSJGAutodesk Animator Pro: #: 4930-P4-PH-1Autodesk Animator Pro v1.0: #: 01603-010203-2520Autodesk Animator Pro v3.05: #: 655-10000088Autodesk Autocad data extension: #: 130-10083217Autodesk Designer learning resources: #: 07301-010203-4520Autodesk Designer new fund. tools: #: 07300-010203-3310Autodesk Designer training guide: #: 07300-010203-3010Automanager v1.1 (Win3): #: 001454Automap Pro v1.06 (Win3): #: 2028038Automap v1.0 (Win3): #: W 12391Automap Road Atlas v4.0 (Win3): #: 34584-068-0102477Automenu v1.0 for kids: #: 501G4-UHPMH-PCG53-SAutoscribe v2.5: bbs: ABC: #: 5804Autosketch v2.0 (Win3): #: 123-12345678Autosketch v2.10 beta (Win3): #: 190-00028490Autosketch v2.x (Win3): #: 190-00028490Autovision v2.0 (Win3): #: 5B35AE2BAutowinnet v1.3 (Win3): #: AWN348CASLT101Autowinnet v1.4 (Win3): #: AWN348INWUA102AutoWorks: #: G037825AVM-ISDN-IBTX v3.0: #: 2001507AAWARD v4.50pg (BIOS): password: AWARD_SWAxialis AX CD-Player 1.0: name: ALIENSOFT: #: Y500J7-F07X-1MFKAxialis AX Icons 4.0: name: Free Registered Version: #: R8JG9M-LUZG-1NN7Axis (game cheater) from QuarterDeck: #: 001-17D-67933   BackUp Exec Enterprise Edition: #: 0-5-343-0-000-6-031689BackUp Exec Enterprise Edition v6.1: #: 0-5-425-5-000-0-010207BackUp Exec Enterprise Edition v7.01: #: 0-1-362-9-000-9-010101Ballade v1.0 (Win3)dows: #: 2004100460Banner 3: #: 507230300326BarClock: name: ED!SON '96: #: KRXSD-ZDCURBatch converter: 130-0001302-265500Batch It! 1.0: 53060xxxxx (x=3DAny Char)BBS Bowl v1.7: name: Me!: #: 17577BBS Drag Racing v2.39: sysop: Me!: bbs: G.!.$: #: @?0Beame and WhiteSide BW-Connect NFS: #: 015-005345BestWeb v1.0 (Win3): #: 01000100101BGfax v1.55: name: Me: #: 201258: pop: DFCA99E0Bicycle v1.3 Bike'alog on Disk: #: WWUXPQVYPBitcom v5.4c: #: A271113Bitfax v3.09c: #: A248258Bitfax/SR v4.06g and Bitcom v5.6d: #: A006844633Bitfax/SR v4.06h and Bitcom v5.6d: #: 1200420015594Bitfax Pro v3.02 (Win3): #: 1 5104902939BitWare Fax v3.24 (Win95): #: 0900020083526Bitware Fax v3.30 (DOS/Win): #: 1600011096038Blackboard: name: Me: bbs: ABC: key: ?G49(Blade Runner (Win3): #: KD921A10007637Blastermaster v6.x: (add to AUTOEXEC.BAT): SET SBMASTER=798-3240Blocks Door v1.00: bbsname: G.!.$: bbsphone: 031000000: name: Me!: #: 48366BlueLine E-Z Invoice v1.2 (Win95): #: 00064923Bluewave v2.12: name: Me: #: 77384318: name: TwinHead: #: 44738166Bluewave v2.30 (DOS): name: BLaCK SQuaDRoN: #: XB48ALBBBluewave v2.30 (386): name: BLaCK SQuaDRoN: #: CMKA94CBBluewave v2.30 (OS2): name: BLaCK SQuaDRoN: #: XG7691CBBluewave Mail Door v3.2x: name: Me!: name mail packet: Bwave: #: 14917189Bolo CD-version: #: 7000465510-LNKBookie Bookworm: All stories: #: 1-900-903-2665BookMaker IPF Authoring Tool (OS/2): #: 549732655482Boot Commander v1.27: #: R302582-TTHYBoot'R v2.11: name: "Your own": #: RH-004001-000Boot'R v2.1x: name: TwinHead: #: EWG58RN5QH3DFBoot'R v2.17: #: BOOTR-14306-0004-000Borland C++ v2.0 (OS/2): #: BCP1420WW10180Borland Office v2.0 (Win3): #: IA332A10046950Bridge manager v0.33 (Win3): #: 373-0111-03Bright Work LAN center inventory: #: LAI-100-11522: pass: P18-QXAOBusinessCard: name: ED!SON '96: company: [UCf/Xf]: #: 02054536BusinessCards (Win3) v3.x: name: TwinHead: company: United Cracking Force: #: 62404691Business Vision II Delta v2.13: #: 7416-1775-1331Business Works Accounting v8.0: #: 80-32493Buromanager Pro v3.1: #: 0E01188472020By Design v2.0: #: 637040360By Design (WordPerfect): #: W20FE06314   C.B.S.O v2.6: #: SYSTEMCA Clipper v5.30: #: 085511-432164: name: MarQuiS De SoiR‚e: company: UCFCA Simply Accounting v3.0a (Win3): #: 1021602-52559CA Simply Accounting v4.0b (Win3): #: 1020602-212703CAD Easy Electrical Symbols: #: 11301-001403-0120Cable Management Systems v2.01: #: CMS94DA0066Caere Image Assistant: #: 3304B-D00-999999Calendar v3.0 Enterprises: #: 61001234: key: 191715Calera Wordscan v3.0: #: BB3921343Calera Wordscan v3.1 (Win3): #: HP3102305Caligari Truespace v1.1 (Win3): #: 3 10 001 026188cANDI Realmode NDIS-2 Driver: #: 561E00800000Cantax for '95 v1.0 (Win3): #: 134-950128-0374079Canvas (Win3): #: 5035430458Canvas v3.52 (Win3): #: 485110842Captain Kirk v2.00: name: MarQuiS De SoiR‚e: #:CK2-L7R:IYD:KM1:LLGCapture Pro v1.1: name: >>> BILL HATES <<<: company: United Cracking Force: #: Y6792ih6t##fCarbon Copy v3.0: #: W30104791Carbon Copy v6.0: #: 21566Carbon Copy+ v6.0: #: 10588Carbon Copy (Guest & Utils): #: 760835Carbon Copy (Host): #: 805335CardGames I v2.7 (OS/2): name: DoH RuLeZ!: #: RG42277Cardshop Plus (Win3): #: 0729CaseLinr 5.9: name: Me!: #: w42q6GcQLnCaseLinr 5.93: name: afdad [SpX]: #: P7GXQ7Nu8YCatdisk v7.xx: (AUTOEXEC.BAT) SET CATDISK=XYZZYCatdisk v9.xx: name: Maroon #: G445000QIRCCGrep V96.7.25: #: CYBERGREPCD-Gen v4.1: #: GEN-W-9507-008CD-Player v3.xx: name: THE RiDDLER [E0D/P0W]: #: 79FBCD-Quick Cache v1.30: name: Me: #: DF92CD-QuickShare v1.0: #: 1021-0656-3338-4191CD-ROM Update v0.3 beta: name: Me: bbs: G.!.$: #: 4760422CD Spectrum Pro v2.1: #: 51095CD-Wizard v3.10: firstname: MaC: initial: uCF: lastname: Thunderbyte: key: 20517: #: 12349CD-Write v1.1: #: 111010065995601Chameleon NFS Morpher v4.01: #: 34649640121147 S3,D7D0Chameleon NFS v3.14 (Win3): #: 3433223117197 P3 C4EDChameleon NFS v4.5: #: 34768840199594I3 2FA2Chameleon NFS v5.0 NetManage: #: 34933445047297 S3: key: B27EChameleon v4.x: #: 34059131041712 S3: key: A224Chameleon v4.5 (Win95): #: 34866345049070 I3: key: 464BCheat Master (all versions): Make a empty file "A FOREST.SIG"Check It v4.0 and v5.0: #: 000-237032Checkit Pro Analyst (Win3): #: A7-100163Checkit Pro Analyst v1.0 (Win3): #: A7-100163Checkit Pro Sysinfo v1.0: #: A1-001725Checkit Pro v1.04 (Win3): #: A3-062402Checkit Pro v1.06 or 4.0+ Windows: #: A4-115796Checkit v4.0+: #: A7-100163Check List by TouchStone: #: D2-002587Chicago Beta Build 177: betasite id: 101907: pw: 999670C9ECICS v2.01 (OS/2) Multi User: #: UN74786CICS v2.01 (OS/2) Single User: #: UN74802CIDMan v1.28: name: Pr0metheus: Tel#: 555-000-9999: #: ?421253GK@Cindi v2.0: #: 555000D20000CiPA: #: 562200000000CiTrix Multi-User Link: #: 9112600197Clarion v1.002: #: 407457Clarion v1.5: #: 40734XCleansweep v1.02 (Win3): #: 115-25C-22620Cleansweep v2.03 (Win95): #: 001-16C-26703Clickette: name: Compu Terror: company: (Anything you Like): expiry date: (Leave Blank): #: 050YPQE8YLARYLH2JW6WClinical Pharmacy (Win3): #: 9412345Clinical Pharmacology v1.2: #: 6015526Clipper v5.01a: #: CDX 232393Clipper 5.3+: name: MarQuiS De Soir‚e: company: UCF: #: 085511-432164Clipmate: name: Pr0metheus [Db0/BS96]: #: F0113042612Clipmate v4.0: name: Registered: #: F0110717988Closeup Host: Remote v6.0 (Win3): #: 31B57D-1121111Closeup v5.0 (Win3): #: IBB463-852875ClysBar: name: ED!SON '96: #: 142782CMed 1.08b: name: Crack da WareZ: #: BMBKEJANEJCMP QWk-reader v1.42: name: Me!: #: 33333: kry: 68354CM-Textfind v2.5: name: TwinHead [TWH/BDC]: #: 377197731CM Viewer v3.10: #: 44718494P31Coach & Coach Pro: #: 1552467Colorado TapeBackup v2.5: #: 80-0151-250Color View v3.10: name: Twinhead [TWH/BDC]: #: 378839Color View v3.20: name: MaRooN: #:147250Comma Net Mail v2.50 (Win3): #: 19211134581-6CommandLine95: name: ED!SON '96: #: 901324Comment: #: 1897867Communique v2.20: firstname: Me!: lastname: G.!.$: #: ??4B044C46??????Compact Disc Master v3.4: name: THE RiDDLER [E0D/P0W]: #: 79FBCompel PE: #: ASYM10288Complete Program Deleter v1.4 (Win3): #: 728679Complete Writers Toolkit: #: WT51191850Computer Works (Win3): #: F16881Compupic v1.20b17: name: Me: phone: 999999: #: BBWKBBVEPCConDiz v1.20B: name: TwinHead [TWH/BDC]: #: 29944150ConferenceRoom v1.1: #: 1154-1154-2154-1154Config v8.xx: (config.reg): REGNAM=THE RiDDLER [E0D/P0W]: REGKEY=2048149648: DEMOKE=1358645280Config v8.02: (config.reg): regname: RENEGADE /XADi: regkey: 60262Connect2SMTP Gateway for Novell: #: 00000744Context v2.0 Online Dictionary(Win3): #: 04.4101.20Conversions Plus (Win3): #: 904954-2539Conversions Plus v2.0 (Win3): #: 11111111Conversions Plus v3.50a (Win3): #: 983798-0308Cool Edit v1.50 (Win3): name: You!: #: BMJZCPUXCool Edit -v1.51 (Win3): name: Misha [DOD/RAZOR/UCF]: #:LJLEOAJACool Edit v1.51 (Win3): name: COOL MAN: #: XJMINCLECool Edit +v1.51 (Win3): name: tHE riDDLER [uCF]: #: CMFRQENHCool Edit (Win95): name: Crack by Mustang: #: GWTDCQZZCorel Draw v4.0 NL (Win3): #: CD4-114-654-454: #: CD4-234-345-567Corel Draw v5.0 (Win3): #: CD5-123-456789Corel Draw v5.0 rev. E2 (Win3): #: CD5-050-118034Corel Flow v2.0 (Win3): #: SW-Q023-CF-E: #: CF2-123-456789Corel Gallery v2.0 (Win3): #: CG2-020-123456Corel Photopaint v5.0+ (Win3): #: PP5-2522-97100Corel Ventura 5 (Win3): #: CD5-123-456789CO/Session v5.0 Host: #: TT122335CO/Session v6.1: #: TT122337CO/Session v6.1: #: T500600845Corstream Dedicated Server v1.0: #: CBA 0009432CPIC v1.20b17: name: Me: phone: 999999: #: BBWKBBVEPCCPU Monitor Plus v2.30 (OS/2) v2.1: #: CPUP-V230-512073Cross Communications v2.1: #: 01159Cross Ties (Win3): #: USA-101-00779084Crazy Bytes 3 CD-ROM RAR files: #: $@642 kalimero246@$CreateIt (Win3): #: IFSD-CI1.0-177Crosseye 1 (Sausage Software): name: Daniel Barfie: company: (Anything you Like): Expiry Date: (Leave Blank): #: 0N8FVA60WC9N6JA2P5ZXCrosspoint v3.1: #: C54321- 1379929Crystal Caliburn Pinball: #: 9525CCW102365-U1Crystal Graphics Flying Fonts (Win3): #: RB10-0140-1022CSE3310 HTML Validator v2.5: name: Saltine [PC]: #: KLc7TpC3l3a7CSE3310 HTML Validator v2.5: name: LOMAX [DSI]: #: V87mMQZOWWV8CStar v1.0 (Win3): #: 4690289681360CuneiForm OCR v1.20: #: 230494CLC31LCuneiForm OCR v1.22: #: CRE075122-NETCyberCom v1.00: name: TwinHead [TWH/UCF]: #: 170169191160190187183186CyberCom v1.60: name: LURKER/REBELS: #: 57897220672956204756672967294756   Dabbler v1.0 (Win3): #: 5011380-8195DacEasy EIS v5.0 (Win3): #: EI50X101175DacEasy (Win3): #: WA1IB111835DacEasy Accounting v4.1: #: PR4IB246893DaGesh v2.0: #: 334 804 020 072 125Dana v1.02 (Win95): name: DjPaul [uCF]: #: 0912-2349-A818Dan's Demo-It v1.0c: #: DIWO-50200977Data Access tools v2.0a (Win3): #: 1F00028-01104360DataBoss "C": #: 93-1207-000398DataBoss v1.01 (Win3) : #: 94-0202-000361DataCAD Estimator v4.2: #: 5401-1092DataCAD Professional v5.05 (update): #: DC50C-8298Data Highway Light v1.81: #: 6737169,142Data Junction v5.0 (Win3): #: W103100217DataLink v2.05: #: 25-400874885DataMaker v2.0 (Win3): #: 104010201F6Davinci E-mail v2.52: #: 52XVD-GBEUP-6BP3ADayByDay v1.3: hold (SHIFT-F10) note number: hold (SHIFT-Fx): (x= curent day: 1 Sunday, 2 Monday etc): enter numberDayTimer Organizer v1.0 (Win3): #: 710000000DayTimer Organizer v2.0: #: 720100000Dazzle plus v2.1 (Win3): #: DP940235Dazzle plus v2.1b (Win3): #: 1234567Dbase III plus: #: 3745331-26Dbase IV: #: KD712AA0000005Dbase IV v1.5: #: WA711C10152190Dbase IV v2.0 beta 2: #: KD712AA0000005Dbase IV v2.0 NL: #: WA712C50000000Dbase IV v2.02: #: IA 712A10518133Dbase IV (Win3): #: DA712A1047458Dbase IV v1.0 (Win3): #: DA712A1047458D.B. Express v1.50 (Win3): #: PE15003-1194DbWeb v1.0: #: 02-96-98DCC Pro v3.02: #: 267109015DCC v4.x: #: 245801539DCLW: name: Me!: bbs: G.!.$: #: 5012Death Masters: bbs: Me!: #: 0082263134248005Deleter v2.2: name: TwinHead [uCF] !96: #: 46203Delrina CommSuite 95: #: 7020-2175-6499Delrina Cyberjack 7.0: #: 7000-7166-2080Delrina Preform v1.0 (Win3): #: 2201-8201-1029Delrina Wincom Pro v1.1 (Win3): #: 37Z59JDelta Graph Pro v3.5: #: MUU35-0827-3837184026Deluxe Property Manager: #: 52630Demo Maker v1.55: (DEMOMAKE.KEY): line1: 30-1123: line2: 182220: line3: (Your Name)Demo Maker v2.0: #: 32-1123: key: 2412Demo Workshop: name: Okware: #: 0AQ6M5RBRATPN8HN64K05IDeneba's Canvas (Win3): #: 450059719Designer CAD v5.0: #: 1005-1684-7282Designer CAD v7.0: #: 3502-0557-8148Design Estimator: #: 5055-2897DeskTop v4.0: #: 06412Desqview/X v2.0: #: 000-15X-011980Desqview/X Network Manager v1.1: #: 003-V1-3616Desqview/X OSF/Motif: #: 002-R1-1583Desqview 386 & QEMM 386: #: 001-32H-72414Desqview 386 v2.61 & QEMM 386 v7.02: #: 001-32H-72414Desqview 386 v2.70 & QEMM 386 v7.50: #: 114-22H-28256Digigrabber: #: 6776-3647-1143-4455Dilbert Screensaver Collection: #: 4556-3654-5640Director v4.0 (Win): #: DRW400-1895-9074-2077Driector Academic v4.0 (Win95): #: DRW404-0429-1085-7007Disc-At-Once: name: ED!SON '96: company: [UCf/Xf]: #: 601071078Dial Up Magic v1.0 (Win95): name: Me: #: 0447911024Disk Management System v6.10: #: 64232312Disk Manager v6.03.05 Maxtor HD: #: 18002629867Disk Optimizer v1.01 (Win3): #: 11111111Disc Player v2.00: pass: V2.0REGEON: #: DP2-U123Disk Access: #: name: Intergraph Evaluation Software: #: Egymaq43003051DCF 5.1: (CONFIG.DCF): line1: $REGISTER: line2: (Your Name) Regis,tered: line3: $NOMSGDiskdupe Pro v7.x: #: 200-468-710Disktop 4.0: #: 06412Dispatch v1.0 : #: 100 3520 10180Distinct TCP/IP v3.21 (Win3): #: AD00081094 key: 78-17-DFDizCat v1.00: name: TwinHead [TWH/UCF]: #: DC29039743938-709Diz-it v1.60: name: TwinHead [TWH/BDC]: #: 156024Diz-it v1.60 Pro: name: TwinHead [TWH/UCF]: #: 159864DizMan v1.20: name: A SiN Supporter: bbs: A SiN BBS: #: FC97B1D63C2BC984DocMan v1.6 WIN95: #: IFNRUXDogz: name: mold: #: 20735329DoKo for Omnis 5 runtime: #: DOKODoorway v2.30: name: Me: #: 57604Dos Command Centre v4.0: name: me: #: 41141613DosFax Lite: #: ZOO 1057109DosMenu v7.5: #: SKIPBREMERDos Modem Server: #: 1101-4806-8272Dos Navigator II: (DN.KEY): line1: ;Register key fur DOS-Navigator: line2: 0E084725: line3: Registered looser: line4: XXX: line5: XXX: line6:: line7: FFFF97BEDos Navigator II: (edit DN.KEY): line #1: Register key fur DOS-Navigator: line #2: 0768E22B: line #3: Registered looser: line #4: Batman: line #5: Gotham: line #6:: line #7: FFFF97BEDoubleColor v1.6a: #: 039482-XDDraftChoice v2.15a: name: SaLaMAnDeR: #: 23-4234-9999DraftChoice+ v3.00e: name: DOD: #: 30-8003-3124Dragon's Castle: bbs: G.!.$
Источник: [https://torrent-igruha.org/3551-portal.html]
XiT v2.2 for OS/2 serial key or number

OS/2

Operating system from IBM
"CP/DOS" redirects here. For the similarly named Digital Research operating system, see CP/M.
OS/2 Warp 4 desktop. This version was released on 25 September 1996.[1]
DeveloperIBM
Microsoft (1.0–1.3)
Written inC, C++ and assembly language
Working stateHistorical, now developed as ArcaOS
Source modelClosed source
Initial releaseDecember 1987; 32 years ago (1987-12)
Latest release4.52 / December 2001; 18 years ago (2001-12)
Marketing targetProfessionals, servers
Available inEnglish, French, German, Italian, Spanish, Portuguese, Russian
Platformsx86, PowerPC
Kernel typeHybrid kernel
Default user interfaceWorkplace ShellGraphical user interface
LicenseProprietary
Succeeded byFirst by eComStation, then ArcaOS
Official websitewww-01.ibm.com

OS/2 is a series of computer operating systems, initially created by Microsoft and IBM under the leadership of IBM software designer Ed Iacobucci.[2] As a result of a feud between the two companies over how to position OS/2 relative to Microsoft's new Windows 3.1 operating environment,[3] the two companies severed the relationship in 1992 and OS/2 development fell to IBM exclusively.[4] The name stands for "Operating System/2", because it was introduced as part of the same generation change release as IBM's "Personal System/2 (PS/2)" line of second-generation personal computers. The first version of OS/2 was released in December 1987 and newer versions were released until December 2001.

OS/2 was intended as a protected-mode successor of PC DOS. Notably, basic system calls were modeled after MS-DOS calls; their names even started with "Dos" and it was possible to create "Family Mode" applications – text mode applications that could work on both systems.[5] Because of this heritage, OS/2 shares similarities with Unix, Xenix, and Windows NT.

IBM discontinued its support for OS/2 on 31 December 2006.[6] Since then, OS/2 has been developed and supported under license from IBM by two different third-party vendors, who have marketed OS/2 under different names - first by Serenity Systems as eComStation since 2001,[7] and later by Arca Noae LLC as ArcaOS since 2017.[8][9][10]

Development history[edit]

1985–1989: Joint development[edit]

OS/2 1.0 featured a text mode interface similar to MS-DOS

The development of OS/2 began when IBM and Microsoft signed the "Joint Development Agreement" in August 1985.[11][12] It was code-named "CP/DOS" and it took two years for the first product to be delivered.

OS/2 1.0 was announced in April 1987 and released in December. The original release is textmode-only, and a GUI was introduced with OS/2 1.1 about a year later. OS/2 features an API for controlling the video display (VIO) and handling keyboard and mouse events so that programmers writing for protected-mode need not call the BIOS or access hardware directly. Other development tools included a subset of the video and keyboard APIs as linkable libraries so that family mode programs are able to run under MS-DOS,[citation needed] and, in the OS/2 Extended Edition v1.0, a database engine called Database Manager or DBM (this was related to DB2, and should not be confused with the DBM family of database engines for Unix and Unix-like operating systems).[13] A task-switcher named Program Selector was available through the Ctrl-Esc hotkey combination, allowing the user to select among multitasked text-mode sessions (or screen groups; each can run multiple programs).[14]

Communications and database-oriented extensions were delivered in 1988, as part of OS/2 1.0 Extended Edition: SNA, X.25/APPC/LU 6.2, LAN Manager, Query Manager, SQL.

OS/2 1.1 was the first version to feature the Presentation Manager GUI

The promised user interface, Presentation Manager, was introduced with OS/2 1.1 in October 1988.[15] It had a similar user interface to Windows 2.1, which was released in May of that year. (The interface was replaced in versions 1.2 and 1.3 by a look closer in appearance to Windows 3.0).

The Extended Edition of 1.1, sold only through IBM sales channels, introduced distributed database support to IBM database systems and SNA communications support to IBM mainframe networks.

In 1989, Version 1.2 introduced Installable Filesystems and, notably, the HPFSfilesystem. HPFS provided a number of improvements over the older FAT file system, including long filenames and a form of alternate data streams called Extended Attributes.[16] In addition, extended attributes were also added to the FAT file system.[17]

Installation Disk A of Microsoft OS/2 1.3 (3½-inch floppy disk)

The Extended Edition of 1.2 introduced TCP/IP and Ethernet support.

OS/2- and Windows-related books of the late 1980s acknowledged the existence of both systems and promoted OS/2 as the system of the future.[18]

1990: Breakup[edit]

The collaboration between IBM and Microsoft unravelled in 1990, between the releases of Windows 3.0 and OS/2 1.3. During this time, Windows 3.0 became a tremendous success, selling millions of copies in its first year.[19] Much of its success was because Windows 3.0 (along with MS-DOS) was bundled with most new computers.[20] OS/2, on the other hand, was available only as an additional stand-alone software package. In addition, OS/2 lacked device drivers for many common devices such as printers, particularly non-IBM hardware.[21] Windows, on the other hand, supported a much larger variety of hardware. The increasing popularity of Windows prompted Microsoft to shift its development focus from cooperating on OS/2 with IBM to building its own business based on Windows.[22]

Several technical and practical reasons contributed to this breakup.

The two companies had significant differences in culture and vision. Microsoft favored the open hardware system approach that contributed to its success on the PC; IBM sought to use OS/2 to drive sales of its own hardware, including systems that could not support the features Microsoft wanted. Microsoft programmers also became frustrated with IBM's bureaucracy and its use of lines of code to measure programmer productivity.[23] IBM developers complained about the terseness and lack of comments in Microsoft's code, while Microsoft developers complained that IBM's code was bloated.[24]

The two products have significant differences in API. OS/2 was announced when Windows 2.0 was near completion, and the Windows API already defined. However, IBM requested that this API be significantly changed for OS/2.[25] Therefore, issues surrounding application compatibility appeared immediately. OS/2 designers hoped for source code conversion tools, allowing complete migration of Windows application source code to OS/2 at some point. However, OS/2 1.x did not gain enough momentum to allow vendors to avoid developing for both OS/2 and Windows in parallel.

OS/2 1.3 was the final 16-bit only version of OS/2, and the last to be sold by Microsoft

OS/2 1.x targets the Intel 80286 processor and DOS fundamentally doesn't. IBM insisted on supporting the 80286 processor, with its 16-bit segmented memory mode, because of commitments made to customers who had purchased many 80286-based PS/2s as a result of IBM's promises surrounding OS/2.[26] Until release 2.0 in April 1992, OS/2 ran in 16-bit protected mode and therefore could not benefit from the Intel 80386's much simpler 32-bitflat memory model and virtual 8086 mode features. This was especially painful in providing support for DOS applications. While, in 1988, Windows/386 2.1 could run several cooperatively multitasked DOS applications, including expanded memory (EMS) emulation, OS/2 1.3, released in 1991, was still limited to one 640 kB "DOS box".

Given these issues, Microsoft started to work in parallel on a version of Windows which was more future-oriented and more portable. The hiring of Dave Cutler, former VMS architect, in 1988 created an immediate competition with the OS/2 team, as Cutler did not think much of the OS/2 technology and wanted to build on his work on the Mica project at Digital rather than creating a "DOS plus". His "NT OS/2" was a completely new architecture.[27]

IBM grew concerned about the delays in development of OS/2 2.0. Initially, the companies agreed that IBM would take over maintenance of OS/2 1.0 and development of OS/2 2.0, while Microsoft would continue development of OS/2 3.0. In the end, Microsoft decided to recast NT OS/2 3.0 as Windows NT, leaving all future OS/2 development to IBM. From a business perspective, it was logical to concentrate on a consumer line of operating systems based on DOS and Windows, and to prepare a new high-end system in such a way as to keep good compatibility with existing Windows applications. While it waited for this new high-end system to develop, Microsoft would still receive licensing money from Xenix and OS/2 sales. Windows NT's OS/2 heritage can be seen in its initial support for the HPFS filesystem, text mode OS/2 1.x applications, and OS/2 LAN Manager network support. Some early NT materials even included OS/2 copyright notices embedded in the software.[citation needed] One example of NT OS/2 1.x support is in the WIN2K resource kit. Windows NT could also support OS/2 1.x Presentation Manager and AVIO applications with the addition of the Windows NT Add-On Subsystem for Presentation Manager.[28]

1992: 32-bit era[edit]

OS/2 2.0 was the first 32-bit release of OS/2, and the first to feature the Workplace Shell

OS/2 2.0 was released in April 1992. At the time, the suggested retail price was U.S. $195, while Windows retailed for $150.[29]

OS/2 2.0 provided a 32-bit API for native programs, though the OS itself still contained some 16-bit code and drivers. It also included a new OOUI (object-oriented user interface) called the Workplace Shell. This was a fully object-oriented interface that was a significant departure from the previous GUI. Rather than merely providing an environment for program windows (such as the Program Manager), the Workplace Shell provided an environment in which the user could manage programs, files and devices by manipulating objects on the screen. With the Workplace Shell, everything in the system is an "object" to be manipulated.

DOS compatibility[edit]

OS/2 2.0 was touted by IBM as "a better DOS than DOS and a better Windows than Windows".[30] It managed this by including the fully-licensed MS-DOS 5.0, which had been patched and improved upon. For the first time, OS/2 was able to run more than one DOS application at a time. This was so effective, that it allowed OS/2 to run a modified copy of Windows 3.0, itself a DOS extender, including Windows 3.0 applications.

Because of the limitations of the Intel 80286 processor, OS/2 1.x could run only one DOS program at a time, and did this in a way that allowed the DOS program to have total control over the computer. A problem in DOS mode could crash the entire computer. In contrast, OS/2 2.0 could leverage the virtual 8086 mode of the Intel 80386 processor to create a much safer virtual machine in which to run DOS programs. This included an extensive set of configuration options to optimize the performance and capabilities given to each DOS program. Any real-mode operating system (such as 8086 Xenix) could also be made to run using OS/2's virtual machine capabilities, subject to certain direct hardware access limitations.

Like most 32-bit environments, OS/2 could not run protected-mode DOS programs using the older VCPI interface, unlike the Standard mode of Windows 3.1; it only supported programs written according to DPMI. (Microsoft discouraged the use of VCPI under Windows 3.1, however, due to performance degradation.)[31]

Unlike Windows NT, OS/2 always allowed DOS programs the possibility of masking real hardware interrupts, so any DOS program could deadlock the machine in this way. OS/2 could, however, use a hardware watchdog on selected machines (notably IBM machines) to break out of such a deadlock. Later, release 3.0 leveraged the enhancements of newer Intel 80486 and Intel Pentium processors—the Virtual Interrupt Flag (VIF), which was part of the Virtual Mode Extensions (VME)—to solve this problem.

Windows 3.x compatibility[edit]

Compatibility with Windows 3.0 (and later Windows 3.1) was achieved by adapting Windows user-mode code components to run inside a virtual DOS machine (VDM). Originally, a nearly complete version of Windows code was included with OS/2 itself: Windows 3.0 in OS/2 2.0, and Windows 3.1 in OS/2 2.1. Later, IBM developed versions of OS/2 that would use whatever Windows version the user had installed previously, patching it on the fly, and sparing the cost of an additional Windows license.[32] It could either run full-screen, using its own set of video drivers, or "seamlessly," where Windows programs would appear directly on the OS/2 desktop. The process containing Windows was given fairly extensive access to hardware, especially video, and the result was that switching between a full-screen WinOS/2 session and the Workplace Shell could occasionally cause issues.[33]

Because OS/2 only runs the user-mode system components of Windows, it is incompatible with Windows device drivers (VxDs) and applications that require them.

Multiple Windows applications run by default in a single Windows session – multitasking cooperatively and without memory protection – just as they would under native Windows 3.x. However, to achieve true isolation between Windows 3.x programs, OS/2 can also run multiple copies of Windows in parallel, with each copy residing in a separate VDM. The user can then optionally place each program either in its own Windows session – with preemptive multitasking and full memory protection between sessions, though not within them – or allow some applications to run together cooperatively in a shared Windows session while isolating other applications in one or more separate Windows sessions. At the cost of additional hardware resources, this approach can protect each program in any given Windows session (and each instance of Windows itself) from every other program running in any separate Windows session (though not from other programs running in the same Windows session).

Whether Windows applications are running in full-screen or windowed mode, and in one Windows session or several, it is possible to use DDE between OS/2 and Windows applications, and OLE between Windows applications only.[34]

1994–1996: The "Warp" years[edit]

OS/2 Warp Connect 3.0, showing the Windows 3.1 Program Manager, QBASIC in a DOS window, and the LaunchPad (bottom center)

Released in 1994, OS/2 version 3.0 was labelled as OS/2 Warp to highlight the new performance benefits, and generally to freshen the product image. "Warp" had originally been the internal IBM name for the release: IBM claimed that it had used Star Trek terms as internal names for prior OS/2 releases, and that this one seemed appropriate for external use as well. At the launch of OS/2 Warp in 1994, Patrick Stewart was to be the Master of Ceremonies; however Kate Mulgrew[35] of the then-upcoming series Star Trek: Voyager was substituted at the last minute.[36][37]:p. 108

OS/2 Warp offers a host of benefits over OS/2 2.1, notably broader hardware support, greater multimedia capabilities, Internet-compatible networking, and it includes a basic office application suite known as IBM Works. It was released in two versions: the less expensive "Red Spine" and the more expensive "Blue Spine" (named for the color of their boxes). "Red Spine" was designed to support Microsoft Windows applications by utilizing any existing installation of Windows on the computer's hard drive. "Blue Spine" includes Windows support in its own installation, and so can support Windows applications without a Windows installation. As most computers were sold with Microsoft Windows pre-installed and the price was less, "Red Spine" was the more popular product.[citation needed] OS/2 Warp Connect—which has full LAN client support built-in—followed in mid-1995. Warp Connect was nicknamed "Grape".[15]

Firefox 3.5.4 for OS/2 Warp 4
OS/2 Warp 4 desktop after installation

In OS/2 2.0, most performance-sensitive subsystems, including the graphics (Gre) and multimedia (MMPM/2) systems, were updated to 32-bit code in a fixpack, and included as part of OS/2 2.1. Warp 3 brought about a fully 32-bit windowing system, while Warp 4 introduced the object-oriented 32-bit GRADD display driver model.

In 1996, Warp 4 added Java and speech recognition software. IBM also released server editions of Warp 3 and Warp 4 which bundled IBM's LAN Server product directly into the operating system installation. A personal version of Lotus Notes was also included, with a number of template databases for contact management, brainstorming, and so forth. The UK-distributed free demo CD-ROM of OS/2 Warp essentially contained the entire OS and was easily, even accidentally, cracked[clarification needed], meaning that even people who liked it did not have to buy it. This was seen as a backdoor tactic to increase the number of OS/2 users, in the belief that this would increase sales and demand for third-party applications, and thus strengthen OS/2's desktop numbers.[citation needed] This suggestion was bolstered by the fact that this demo version had replaced another which was not so easily cracked, but which had been released with trial versions of various applications.[citation needed] In 2000, the July edition of Australian Personal Computer magazine bundled software CD-ROMs, included a full version of Warp 4 that required no activation and was essentially a free release. Special versions of OS/2 2.11 and Warp 4 also included symmetric multiprocessing (SMP) support.

OS/2 sales were largely concentrated in networked computing used by corporate professionals; however, by the early 1990s, it was overtaken by Microsoft Windows NT. While OS/2 was arguably technically superior to Microsoft Windows 95, OS/2 failed to develop much penetration in the consumer and stand-alone desktop PC segments; there were reports that it could not be installed properly on IBM's own Aptiva series of home PCs.[38] Microsoft made an offer in 1994 where IBM would receive the same terms as Compaq (the largest PC manufacturer at the time) for a license of Windows 95, if IBM ended development of OS/2 completely. IBM refused and instead went with an "IBM First" strategy of promoting OS/2 Warp and disparaging Windows, as IBM aimed to drive sales of its own software as well as hardware. By 1995, Windows 95 negotiations between IBM and Microsoft, which were already difficult, stalled when IBM purchased Lotus SmartSuite, which would have directly competed with Microsoft Office. As a result of the dispute, IBM signed the license agreement 15 minutes before Microsoft's Windows 95 launch event, which was later than their competitors and this badly hurt sales of IBM PCs. IBM officials later conceded that OS/2 would not have been a viable operating system to keep them in the PC business.[39][40]

Workplace OS[edit]

In 1991 IBM started development on an intended replacement for OS/2 called Workplace OS. This was an entirely new product, brand new code, that borrowed only a few sections of code from both the existing OS/2 and AIX products. It used an entirely new microkernel code base, intended (eventually) to host several of IBM's operating systems (including OS/2) as microkernel "personalities". It also included major new architectural features including a system registry, JFS, support for UNIX graphics libraries, and a new driver model.[41]

Workplace OS was developed solely for POWER platforms, and IBM intended to market a full line of PowerPCs in an effort to take over the market from Intel. A mission was formed to create prototypes of these machines and they were disclosed to several Corporate customers, all of whom raised issues with the idea of dropping Intel.

Advanced plans for the new code base would eventually include replacement of the OS/400 operating system by Workplace OS, as well as a microkernel product that would have been used in industries such as telecommunications and set-top television receivers.

A partially functional pre-alpha version of Workplace OS was demonstrated at Comdex, where a bemused Bill Gates stopped by the booth. The second and last time it would be shown in public was at an OS/2 user group in Phoenix, Arizona; the pre-alpha code refused to boot.

It was released in 1995. But with $990 million being spent per year on development of this as well as Workplace OS, and no possible profit or widespread adoption, the end of the entire Workplace OS and OS/2 product line was near.

Downsizing[edit]

A project was launched internally by IBM to evaluate the looming competitive situation with Microsoft Windows 95. Primary concerns included the major code quality issues in the existing OS/2 product (resulting in over 20 service packs, each requiring more diskettes than the original installation), and the ineffective and heavily matrixed development organization in Boca Raton (where the consultants reported that "basically, everybody reports to everybody") and Austin.

That study, tightly classified as "Registered Confidential" and printed only in numbered copies, identified untenable weaknesses and failures across the board in the Personal Systems Division as well as across IBM as a whole. This resulted in a decision being made at a level above the Division to cut over 95% of the overall budget for the entire product line, end all new development (including Workplace OS), eliminate the Boca Raton development lab, end all sales and marketing efforts of the product, and lay off over 1,300 development individuals (as well as sales and support personnel). $990 million had been spent in the last full year. Warp 4 became the last distributed version of OS/2.

2001: Fading out[edit]

A small and dedicated community remained faithful to OS/2 for many years after its final mainstream release,[42] but overall, OS/2 failed to catch on in the mass market and is little used outside certain niches where IBM traditionally had a stronghold. For example, many bank installations, especially automated teller machines, run OS/2 with a customized user interface; French SNCF national railways used OS/2 1.x in thousands of ticket selling machines.[citation needed] Telecom companies such as Nortel use OS/2 in some voicemail systems. Also, OS/2 was used for the host PC used to control the Satellite Operations Support System equipment installed at NPR member stations from 1994 to 2007, and used to receive the network's programming via satellite.[citation needed]

Although IBM began indicating shortly after the release of Warp 4 that OS/2 would eventually be withdrawn, the company did not end support until December 31, 2006.[43] Sales of OS/2 stopped on December 23, 2005. The latest IBM version is 4.52, which was released for both desktop and server systems in December 2001.

IBM is still delivering defect support for a fee.[43][44] IBM urges customers to migrate their often highly complex applications to e-business technologies such as Java in a platform-neutral manner. Once application migration is completed, IBM recommends migration to a different operating system, suggesting Linux as an alternative.[45][46][47]

Third party development[edit]

ArcaOS is the most recent OS/2-based operating system developed outside of IBM

After IBM discontinued development of OS/2, various third parties approached IBM to take over future development of the operating system. The OS/2 software vendor Stardock made such a proposal to IBM in 1999, but it was not followed through by the company.[48] Serenity Systems succeeded in negotiating a license with IBM, and began reselling OS/2 as eComStation in 2001.[49] eComStation is now sold by XEU.com, the most recent version (2.1) was released in 2011.[50] In 2015, Arca Noae, LLC announced that they had secured an agreement with IBM to resell OS/2.[8] They released the first version of their OS/2-based operating system in 2017 as ArcaOS.[10] As of 2020, there have been multiple releases, and the operating system remains under active development.[51]

Petitions for open source[edit]

Many people hoped that IBM would release OS/2 or a significant part of it as open source. Petitions were held in 2005 and 2007, but IBM refused them, citing legal and technical reasons.[52] It is unlikely that the entire OS will be open at any point in the future because it contains third-party code to which IBM does not have copyright, and much of this code is from Microsoft. IBM also once engaged in a technology transfer with Commodore, licensing Amiga technology for OS/2 2.0 and above, in exchange for the REXX scripting language.[53] This means that OS/2 may have some code that was not written by IBM, which can therefore prevent the OS from being re-announced as open-sourced in the future.[54][55] On the other hand, IBM donated Object REXX for Windows and OS/2 to the Open Object REXX project maintained by the REXX Language Association on SourceForge.[56]

There was a petition, arranged by OS2World, to open parts of the OS. Open source operating systems such as Linux have already profited from OS/2 indirectly through IBM's release of the improved JFSfile system, which was ported from the OS/2 code base. As IBM didn't release the source of the OS/2 JFS driver, developers ported the Linux driver back to eComStation and added the functionality to boot from a JFS partition. This new JFS driver has been integrated into eComStation v2.0, the successor of OS/2.

Summary of releases[edit]

Release dates refer to the US English editions unless otherwise noted.[57][58]

DateVersion
December 1987OS/2 1.0
November 1988OS/2 1.1
October 1989OS/2 1.2
December 1990OS/2 1.3
October 1991OS/2 2.0 LA (Limited Availability)
April 1992OS/2 2.0
October 1992OS/2 2.00.1
November 1993OS/2 for Windows
February 1994OS/2 2.11
July 1994OS/2 2.11 SMP
October 1994OS/2 Warp 3
May 1995OS/2 Warp Connect
December 1995OS/2 Warp, PowerPC Edition
February 1996OS/2 Warp Server 4
September 1996OS/2 Warp 4
September 1996OS/2 Warp Server Advanced SMP
November 1997WorkSpace On-Demand 1.0
October 1998WorkSpace On-Demand 2.0
April 1999OS/2 Warp Server for e-Business (version 4.50)
November 2000OS/2 Convenience Pack 1 (version 4.51)
November 2001OS/2 Convenience Pack 2 (version 4.52)

Features and technology[edit]

User interface[edit]

The graphic system has a layer named Presentation Manager that manages windows, fonts, and icons. This is similar in functionality to a non-networked version of X11 or the Windows GDI. On top of this lies the Workplace Shell (WPS) introduced in OS/2 2.0. WPS is an object-orientedshell allowing the user to perform traditional computing tasks such as accessing files, printers, launching legacy programs, and advanced object oriented tasks using built-in and third-party application objects that extended the shell in an integrated fashion not available on any other mainstream operating system. WPS follows IBM's Common User Access user interface standards.

WPS represents objects such as disks, folders, files, program objects, and printers using the System Object Model (SOM), which allows code to be shared among applications, possibly written in different programming languages. A distributed version called DSOM allowed objects on different computers to communicate. DSOM is based on CORBA. The object oriented aspect of SOM is similar to, and a direct competitor to, Microsoft's Component Object Model, though it is implemented in a radically different manner; for instance, one of the most notable differences between SOM and COM is SOM's support for inheritance (one of the most fundamental concepts of OO programming)—COM does not have such support. SOM and DSOM are no longer being developed.

The multimedia capabilities of OS/2 are accessible through Media Control Interface commands. The last update (bundled with the IBM version of Netscape Navigator plugins) added support for MPEG files. Support for newer formats such as PNG, progressive JPEG, DivX, Ogg, and MP3 comes from third parties. Sometimes it is integrated with the multimedia system, but in other offers it comes as standalone applications.

Commands[edit]

The following list of commands is supported by cmd.exe on OS/2.[59][60]

Application development[edit]

This section needs expansion. You can help by adding to it.(April 2019)

OS/2 also includes a radical advancement in application development with compound document technology called OpenDoc, which was developed with Apple. OpenDoc proved interesting as a technology, but was not widely used or accepted by users or developers. OpenDoc is also no longer being developed.

Networking[edit]

This section needs expansion. You can help by adding to it.(April 2019)

The TCP/IP stack is based on the open sourceBSD stack as visible with SCCSwhat compatible tools.

Drivers[edit]

Hardware vendors were reluctant to support device drivers for alternative operating systems including OS/2 and Linux, leaving users with few choices from a select few vendors. To relieve this issue for video cards, IBM licensed a reduced version of the Scitech display drivers, allowing users to choose from a wide selection of cards supported through Scitech's modular driver design.[61]

Virtualization[edit]

This section needs to be updated. Please update this article to reflect recent events or newly available information.(March 2016)

As of 2008[update], support for running OS/2 under virtualization appears to be improving in several third-party products. OS/2 has historically been more difficult to run in a virtual machine than most other legacy x86 operating systems because of its extensive reliance on the full set of features of the x86 CPU; in particular, OS/2's use of ring 2 prevented it from running in VMware.[62] Emulators such as QEMU and Bochs don't suffer from this problem and can run OS/2.[citation needed] A beta of VMware Workstation 2.0 released in January 2000 was the first hypervisor that could run OS/2 at all. Later, the company decided to drop official OS/2 support.

VirtualPC from Microsoft (originally Connectix) has been able to run OS/2 without hardware virtualization support for many years. It also provided "additions" code which greatly improves host–guest OS interactions in OS/2. The additions are not provided with the current version of VirtualPC, but the version last included with a release may still be used with current releases. At one point, OS/2 was a supported host for VirtualPC in addition to a guest. Note that OS/2 runs only as a guest on those versions of VirtualPC that use virtualization (x86 based hosts) and not those doing full emulation (VirtualPC for Mac).

VirtualBox from Oracle Corporation (originally InnoTek, later Sun) supports OS/2 1.x, Warp 3 through 4.5, and eComStation as well as "Other OS/2" as guests. However, attempting to run OS/2 and eComStation can still be difficult, if not impossible, because of the strict requirements of VT-x/AMD-V hardware-enabled virtualization and only ACP2/MCP2 is reported to work in a reliable manner.[63]

The difficulties in efficiently running OS/2 have, at least once, created an opportunity for a new virtualization company. A large bank in Moscow needed a way to use OS/2 on newer hardware that OS/2 did not support. As virtualization software is an easy way around this, the company desired to run OS/2 under a hypervisor. Once it was determined that VMware was not a possibility, it hired a group of Russian software developers to write a host-based hypervisor that would officially support OS/2. Thus, the Parallels, Inc. company and their Parallels Workstation product was born.[64]

Security niche[edit]

OS/2 has few native computer viruses;[65] while it is not invulnerable by design, its reduced market share appears to have discouraged virus writers. There are, however, OS/2-based antivirus programs, dealing with DOS viruses and Windows viruses that could pass through an OS/2 server.[66]

Problems[edit]

Some problems were classic subjects of comparison with other operating systems:

  • Synchronous input queue (SIQ): if a GUI application was not servicing its window messages, the entire GUI system could get stuck and a reboot was required. This problem was considerably reduced with later Warp 3 fixpacks and refined by Warp 4, by taking control over the application after it had not responded for several seconds.[67]
  • No unified object handles (OS/2 v2.11 and earlier): The availability of threads probably led system designers to overlook mechanisms which allow a single thread to wait for different types of asynchronous events at the same time, for example the keyboard and the mouse in a "console" program. Even though select was added later, it only worked on network sockets. In case of a console program, dedicating a separate thread for waiting on each source of events made it difficult to properly release all the input devices before starting other programs in the same "session". As a result, console programs usually polled the keyboard and the mouse alternately, which resulted in wasted CPU and a characteristic "jerky" reactivity to user input. In OS/2 3.0 IBM introduced a new call for this specific problem.[68]

Historical uses[edit]

OS/2 has been widely used in Iran Export Bank (Bank Saderat Iran) in their teller machines, ATMs and local servers (over 30,000 working stations). As of 2011, the bank moved to virtualize and renew their infrastructure by moving OS/2 to Virtual Machines running over Windows.

OS/2 was widely used in Brazilian banks. Banco do Brasil had a peak 10,000 machines running OS/2 Warp in the 1990s. OS/2 was used in automated teller machines until 2006. The workstations and automated teller machines and attendant computers have been migrated to Linux.[69]

An ATM in Australia revealing during a reboot that it is based on OS/2 Warp

OS/2 has been used in the banking industry. Suncorp bank in Australia still ran its ATM network on OS/2 as late as 2002. ATMs at Perisher Blue used OS/2 as late as 2009, and even the turn of the decade.[70]

OS/2 was widely adopted by accounting professionals and auditing companies. In mid-1990s native 32-bit accounting software were well developed and serving corporate markets.

OS/2 ran the faulty baggage handling system at Denver International Airport. The OS was eventually scrapped, but the software written for the system led to massive delays in the opening of the new airport. The OS itself was not at fault, but the software written to run on the OS was. The baggage handling system was eventually removed.

OS/2 was used by radio personality Howard Stern. He once had a 10-minute on-air rant about OS/2 versus Windows 95 and recommended OS/2. He also used OS/2 on his IBM 760CD laptop.

OS/2 was used as part of the Satellite Operations Support System (SOSS) for NPR's Public Radio Satellite System. SOSS was a computer-controlled system using OS/2 that NPR member stations used to receive programming feeds via satellite. SOSS was introduced in 1994 using OS/2 3.0, and was retired in 2007, when NPR switched over to its successor, the ContentDepot.

OS/2 was used to control the SkyTrain automated light rail system in Vancouver, Canada until the late 2000s when it was replaced by Windows XP.

OS/2 was used in the London UndergroundJubilee Line Extension Signals Control System (JLESCS) in London, England. This control system delivered by Alcatel was in use from 1999 to 2011 i.e. between abandonment before opening of the line's unimplemented original automatic train control system and the present SelTrac system. JLESCS did not provide automatic train operation only manual train supervision. Six OS/2 local site computers were distributed along the railway between Stratford and Westminster, the shunting tower at Stratford Market Depot, and several formed the central equipment located at Neasden Depot. It was once intended to cover the rest of the line between Green Park and Stanmore but this was never introduced.

OS/2 has been used by The Co-operative Bank

Источник: [https://torrent-igruha.org/3551-portal.html]
.

What’s New in the XiT v2.2 for OS/2 serial key or number?

Screen Shot

System Requirements for XiT v2.2 for OS/2 serial key or number

Add a Comment

Your email address will not be published. Required fields are marked *