<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://gunkies.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rayrayemu</id>
		<title>Computer History Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://gunkies.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rayrayemu"/>
		<link rel="alternate" type="text/html" href="https://gunkies.org/wiki/Special:Contributions/Rayrayemu"/>
		<updated>2026-05-27T12:58:17Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.30.1</generator>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Installing_Ultrix_4.5_on_SIMH&amp;diff=31672</id>
		<title>Installing Ultrix 4.5 on SIMH</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Installing_Ultrix_4.5_on_SIMH&amp;diff=31672"/>
				<updated>2023-09-29T07:30:05Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Fixed error in ed command note.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This WORK-IN-PROGRESS guide will be a simple guide to installing [[ULTRIX]] 4.5 for VAX on [[SIMH]].&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
The following is a list of things required for installation&lt;br /&gt;
*A recent version of the SIMH emulator&lt;br /&gt;
**Make sure the binary you're using includes [[Ethernet]] support&lt;br /&gt;
**I'm using a self-compiled version (git revision 0e8c0aea)&lt;br /&gt;
*An ISO image of ULTRIX 4.5 for [[VAX]]&lt;br /&gt;
**See the &amp;quot;Resources&amp;quot; section for a download link&lt;br /&gt;
**It's probably also possible to install it from tape, although I don't know if any installation tapes for ULTRIX 4.5 exist&lt;br /&gt;
*Optional stuff (might get added to the guide later):&lt;br /&gt;
**Starfish Ultrix Freeware CDs from [http://musall.de/mirrors/ultrix/freeware/ here]&lt;br /&gt;
&lt;br /&gt;
==SimH configuration==&lt;br /&gt;
The machine I'm using to run ULTRIX has the following configuration&lt;br /&gt;
*[[DEC]] [[MicroVAX 3800/3900|MicroVAX 3800]]&lt;br /&gt;
*64mb memory&lt;br /&gt;
*[[DELQA]] network card (XQ0)&lt;br /&gt;
*Two [[RA90]] disk drives (with 1.2gb each) attached to an [[RQDX3 MFM Disk &amp;amp; Floppy QBUS Controller|RQDX3]] controller (RQ0 and RQ1)&lt;br /&gt;
*CD ROM drive attached to the same RQDX3 controller as unit 2 (RQ2)&lt;br /&gt;
*[[TK50]] tape attached as unit 0 on the first [[TQK50]] controller (TQ0)&lt;br /&gt;
*[[DZV11]] terminal multiplexer with 16 lines, attached to telnet port 1005 (DZ)&lt;br /&gt;
*[[LPT]] line printer attached to text file &amp;lt;code&amp;gt;printer_output.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here's my config file (I called it &amp;lt;code&amp;gt;simh.conf&amp;lt;/code&amp;gt;)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
;&lt;br /&gt;
; SimH 4.0 Configuration file for MicroVAX 3800&lt;br /&gt;
;&lt;br /&gt;
; Host System      : DEC MicroVAX 3800&lt;br /&gt;
; Operating System : DEC Ultrix v4.5&lt;br /&gt;
; Memory           : 64mb&lt;br /&gt;
; Network config   : XQ: Ethernet, 08:00:2b:04:14:02&lt;br /&gt;
; Disks            : RQ0: RA90, 1.2gb&lt;br /&gt;
;                    RQ1: RA90, 1.2gb&lt;br /&gt;
; CDROMs           : RQ2: iso file&lt;br /&gt;
; Tape config      : TQ0: TK50, 94mb&lt;br /&gt;
;&lt;br /&gt;
&lt;br /&gt;
load -r ka655x.bin&lt;br /&gt;
&lt;br /&gt;
; NVRAM&lt;br /&gt;
attach NVR nvram.bin&lt;br /&gt;
&lt;br /&gt;
; CPU config&lt;br /&gt;
set CPU 64m&lt;br /&gt;
set CPU conhalt&lt;br /&gt;
set CPU idle=all&lt;br /&gt;
&lt;br /&gt;
; configure console to 7-bit only&lt;br /&gt;
set TTO 7b&lt;br /&gt;
set TTI 7b&lt;br /&gt;
&lt;br /&gt;
; Disk drives&lt;br /&gt;
set RQ0 ra90&lt;br /&gt;
attach RQ0 rq0-ra90.dsk&lt;br /&gt;
set RQ1 ra90&lt;br /&gt;
attach RQ1 rq1-ra90.dsk&lt;br /&gt;
set RQ2 CDROM&lt;br /&gt;
attach -r RQ2 ultrix-vax-os-v4.5.mode1.ufs.iso&lt;br /&gt;
; MD5 sum: 19df0753c27f195e9f1d2f139a3b4629 *ultrix-vax-os-v4.5.mode1.ufs.iso&lt;br /&gt;
set RQ3 dis&lt;br /&gt;
&lt;br /&gt;
; Tape&lt;br /&gt;
set TQ tk50&lt;br /&gt;
;attach tq0 filename-to-tape-file&lt;br /&gt;
set TQ1 dis&lt;br /&gt;
set TQ2 dis&lt;br /&gt;
set TQ3 dis&lt;br /&gt;
&lt;br /&gt;
; serial port, simulated by Telnet to port 1005&lt;br /&gt;
set DZ LINES=16&lt;br /&gt;
set DZ 8B&lt;br /&gt;
attach DZ 1005 NoBuffer&lt;br /&gt;
&lt;br /&gt;
; printer&lt;br /&gt;
set LPT enable&lt;br /&gt;
attach LPT printer_output.txt&lt;br /&gt;
&lt;br /&gt;
; Disable unused peripherals&lt;br /&gt;
set CR dis&lt;br /&gt;
set RL dis&lt;br /&gt;
set TS dis&lt;br /&gt;
&lt;br /&gt;
; Network interface (08-00-2b is the DEC prefix, the 04-14-02 part is arbitrary)&lt;br /&gt;
set XQ MAC=08-00-2b-04-14-02&lt;br /&gt;
attach XQ0 eth0&lt;br /&gt;
&lt;br /&gt;
; serial console (launch directly after booting CPU)&lt;br /&gt;
set console telnet=1001&lt;br /&gt;
&lt;br /&gt;
; experimental&lt;br /&gt;
;set QVSS en&lt;br /&gt;
&lt;br /&gt;
; boot the system&lt;br /&gt;
;boot CPU&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that I'm using a telnet console (for easier copy/paste on Windows), which means that directly after running this config file (via &amp;lt;code&amp;gt;do simh.conf&amp;lt;/code&amp;gt; from Simh) you will need to connect via telnet to localhost:1001 or the boot will abort. If you are on Linux, or just don't want that, remove the &amp;lt;code&amp;gt;set console telnet=1001&amp;lt;/code&amp;gt; line.&lt;br /&gt;
&lt;br /&gt;
Also note that you might need to attach XQ0 to a different ethernet device. Use &amp;quot;show ether&amp;quot; in SimH to list all available devices on your system and modify the &amp;lt;code&amp;gt;attach XQ0 eth0&amp;lt;/code&amp;gt; line accordingly.&lt;br /&gt;
&lt;br /&gt;
==Running the Emulator==&lt;br /&gt;
Either run &amp;lt;code&amp;gt;vax.exe simh.conf&amp;lt;/code&amp;gt; from the Windows command line, or just double-click the VAX.EXE executable and type &amp;lt;code&amp;gt;do simh.conf&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
On the first launch it might take some time because SimH has to create the disk images (~2.5 gb total). It should look something like this&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
MicroVAX 3900 simulator V4.0-0 Beta        git commit id: 0e8c0aea&lt;br /&gt;
NVR: buffering file in memory&lt;br /&gt;
RQ2: unit is read only&lt;br /&gt;
Listening on port 1005&lt;br /&gt;
WinPcap version 4.1.2 (packet.dll version 4.1.0.2001), based on libpcap version 1.0 branch 1_0_rel0b (20091008)&lt;br /&gt;
Eth: opened OS device \Device\NPF_{A41A1651-DD4D-4735-A4E0-88353165C2EC}&lt;br /&gt;
Listening on port 1001&lt;br /&gt;
sim&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Type the following to start the emulation (note: you can also uncomment that line from the end of the config file to have the emulation start right away)&lt;br /&gt;
 sim&amp;gt; boot cpu&lt;br /&gt;
 Waiting for console Telnet connection&lt;br /&gt;
&lt;br /&gt;
Now would be a good time to connect your telnet session (I use a batch file for this), otherwise the boot process will timeout.&lt;br /&gt;
&lt;br /&gt;
On your console, you should see something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Connected to the MicroVAX 3900 simulator CON-TEL device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
KA655-B V5.3, VMB 2.7&lt;br /&gt;
Performing normal system tests.&lt;br /&gt;
40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25..&lt;br /&gt;
24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09..&lt;br /&gt;
08..07..06..05..04..03..&lt;br /&gt;
Tests completed.&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the VAX's boot prompt. Normally you just type&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot &amp;lt;device&amp;gt;&lt;br /&gt;
where &amp;lt;device&amp;gt; is one of the following&lt;br /&gt;
*MUA&amp;lt;num&amp;gt;: TK tape device number &amp;lt;num&amp;gt; (1 to 4)&lt;br /&gt;
*DUA&amp;lt;num&amp;gt;: RQ disk device number &amp;lt;num&amp;gt; (1 to 4)&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;show device&amp;lt;/code&amp;gt; to see the installed (and detected) devices you can boot from, and &amp;lt;code&amp;gt;show boot&amp;lt;/code&amp;gt; to see which device will be the default if you just type &amp;lt;code&amp;gt;boot&amp;lt;/code&amp;gt; (or &amp;lt;code&amp;gt;b&amp;lt;/code&amp;gt; for short):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;show device&lt;br /&gt;
UQSSP Disk Controller 0 (772150)&lt;br /&gt;
-DUA0 (RA90)&lt;br /&gt;
-DUA1 (RA90)&lt;br /&gt;
-DUA2 (RRD40)&lt;br /&gt;
&lt;br /&gt;
UQSSP Tape Controller 0 (774500)&lt;br /&gt;
-MUA0 (TK50)&lt;br /&gt;
&lt;br /&gt;
Ethernet Adapter 0 (774440)&lt;br /&gt;
-XQA0 (08-00-2B-04-14-02)&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;show boot&lt;br /&gt;
MUA0&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since we want to boot from CDROM, which is unit 2, we can use&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot DUA2&lt;br /&gt;
&lt;br /&gt;
Note: You can add flags to boot into single user mode, or to boot in interactive mode (so-called ''conversational boot'', where the system prompts you for a kernel file name to load). For details see the Guide to ULTRIX-32 System Startup and Shutdown, linked to in the ''References'' section. To use it, add the &amp;lt;code&amp;gt;/R5:&amp;lt;flags&amp;gt;&amp;lt;/code&amp;gt; option to the &amp;lt;code&amp;gt;boot&amp;lt;/code&amp;gt; command, where flags is 0 (default multi-user), 1 (conversational multi-user), 2 (single-user) or 3 (conversational single-user). For example&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot/r5:3 dua0&lt;br /&gt;
&lt;br /&gt;
Note: You can also boot from ethernet (&amp;lt;code&amp;gt;boot XQA0&amp;lt;/code&amp;gt;) but this requires a DEC-specific boot server in your network (the protocol is called ''MOP'' for ''Maintenance Operations Protocol''), which is beyond the scope of this document. I did get it to work a few years ago though, but it was a bit difficult to set up.&lt;br /&gt;
&lt;br /&gt;
For a list and description of all commands available in the bootloader (hint: there are lots), see the ''KA655 CPU System Maintenance'' guide mentioned in the ''References'' section..&lt;br /&gt;
&lt;br /&gt;
==Bootstrapping ULTRIX==&lt;br /&gt;
You will see the following output on the first boot.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;boot dua2&lt;br /&gt;
(BOOT/R5:0 DUA2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA2&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 945424&lt;br /&gt;
data = 1290240&lt;br /&gt;
bss  = 757940&lt;br /&gt;
Starting at 0x5219&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #2: Wed Oct 18 12:06:55 EDT 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 61517824&lt;br /&gt;
Buffer configuration adjusted to run with small system page table&lt;br /&gt;
using 123 buffers containing 1007616 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
WARNING: clock gained 47 days -- CHECK AND RESET THE DATE!&lt;br /&gt;
&lt;br /&gt;
*** STANDALONE ULTRIX ENVIRONMENT ***&lt;br /&gt;
&lt;br /&gt;
If you select the BASIC Installation option from the list that follows,&lt;br /&gt;
the installation software creates file systems on default partitions on&lt;br /&gt;
your system disk and loads the mandatory ULTRIX software subsets.&lt;br /&gt;
&lt;br /&gt;
If you require additional installation choices, select the ADVANCED&lt;br /&gt;
Installation option.&lt;br /&gt;
&lt;br /&gt;
Select one of the following options:&lt;br /&gt;
&lt;br /&gt;
        1) BASIC Installation&lt;br /&gt;
        2) ADVANCED Installation&lt;br /&gt;
        3) System management&lt;br /&gt;
&lt;br /&gt;
Enter your choice:&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Now we want to do an ''ADVANCED Installation'', but when we try to, it will take a few seconds until the installation program dumps us to a prompt because it couldn't find a valid device to install from and to:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Enter your choice: 2&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE DISTRIBUTION DEVICE SELECTION ***&lt;br /&gt;
&lt;br /&gt;
The 'Guide to Installing ULTRIX' explains the following table&lt;br /&gt;
of software distribution devices and which installation media you should&lt;br /&gt;
load on it:&lt;br /&gt;
&lt;br /&gt;
No valid device is found.&lt;br /&gt;
Contact a DIGITAL field service representative.&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The problem seems to be that the hardware SimH emulates is not fully supported by ULTRIX (or is misdetected -- I'm not entirely sure myself). The good thing is that the internet has the correct solution, which is to fix some lines in the installation shell script. The fact that the basic system that is running at this point doesn't have ''vi'', or even ''cat'', makes this a bit harder ;-)&lt;br /&gt;
&lt;br /&gt;
The only option you have is ''ed'', the old UNIX editor. For a quick introduction, see [http://blog.sanctum.geek.nz/actually-using-ed/ here].&lt;br /&gt;
&lt;br /&gt;
To load the file in the editor, use&lt;br /&gt;
 # '''ed install.1'''&lt;br /&gt;
 16763&lt;br /&gt;
&lt;br /&gt;
You can see the entire file with&lt;br /&gt;
 1,$l&lt;br /&gt;
but be warned, the output is quite long and it'll take some time to print it all out.&lt;br /&gt;
&lt;br /&gt;
To fix it, use the following commands (the lines in '''bold''' is what you type, everything else is the response from ed)&lt;br /&gt;
 # '''ed install.1'''&lt;br /&gt;
 16763&lt;br /&gt;
 '''173l'''&lt;br /&gt;
 BTD=`btd`&lt;br /&gt;
 '''173s/`btd`/ra2/'''&lt;br /&gt;
 '''173l'''&lt;br /&gt;
 BTD=ra2&lt;br /&gt;
 '''193l'''&lt;br /&gt;
 rz* )&lt;br /&gt;
 '''193s/rz/ra/'''&lt;br /&gt;
 '''193l'''&lt;br /&gt;
 ra* )&lt;br /&gt;
 '''w'''&lt;br /&gt;
 16761&lt;br /&gt;
 '''q'''&lt;br /&gt;
 #&lt;br /&gt;
&lt;br /&gt;
First, we list line 173, then we change it from &amp;lt;code&amp;gt;BTD=`btd`&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;BTD=ra2&amp;lt;/code&amp;gt;, which happens to be the CDROM device and unit number we're installing from (if you changed that in your config, use the correct name here!)&lt;br /&gt;
&lt;br /&gt;
Then we change line 193 from &amp;lt;code&amp;gt;rz* )&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;ra* )&amp;lt;/code&amp;gt; since we're trying to install on an RA type disk which was apparently not supported in ULTRIX out of the box.&lt;br /&gt;
&lt;br /&gt;
Note: These changes also work for Ultrix 4.3 and 4.4. If you would like to try 4.2, use 164 instead of 173 and 184 instead of 193.&lt;br /&gt;
&lt;br /&gt;
After writing the file with &amp;lt;code&amp;gt;w&amp;lt;/code&amp;gt; and quitting ed with &amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt;, we're back at the prompt, at which point we can use CTRL+D to retry the installation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ^D&lt;br /&gt;
*** STANDALONE ULTRIX ENVIRONMENT ***&lt;br /&gt;
&lt;br /&gt;
If you select the BASIC Installation option from the list that follows,&lt;br /&gt;
the installation software creates file systems on default partitions on&lt;br /&gt;
your system disk and loads the mandatory ULTRIX software subsets.&lt;br /&gt;
&lt;br /&gt;
If you require additional installation choices, select the ADVANCED&lt;br /&gt;
Installation option.&lt;br /&gt;
&lt;br /&gt;
Select one of the following options:&lt;br /&gt;
&lt;br /&gt;
        1) BASIC Installation&lt;br /&gt;
        2) ADVANCED Installation&lt;br /&gt;
        3) System management&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 2&lt;br /&gt;
&lt;br /&gt;
*** SYSTEM DISK SELECTION ***&lt;br /&gt;
&lt;br /&gt;
The 'Guide to Installing ULTRIX' explains the following table&lt;br /&gt;
of system disk drives.  Select one of the devices below to contain the&lt;br /&gt;
root file system:&lt;br /&gt;
&lt;br /&gt;
SYSTEM DISK TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0. Make sure this disk drive&lt;br /&gt;
is on line and write-enabled (if applicable to your disk drive), then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0, for your system disk? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The installation procedure now allocates the root file system on&lt;br /&gt;
partition 'a' of the system disk, ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
Making the root file system on ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
The installation procedure is now restoring the root file system to&lt;br /&gt;
partition 'a' of the system disk, ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
The installation procedure now checks the root file system on partition 'a'&lt;br /&gt;
of the system disk, ra0  RA90.&lt;br /&gt;
** /dev/rra0a&lt;br /&gt;
** Last Mounted on /mnt&lt;br /&gt;
** Phase 1 - Check Blocks and Sizes&lt;br /&gt;
** Phase 2 - Check Pathnames&lt;br /&gt;
** Phase 3 - Check Connectivity&lt;br /&gt;
** Phase 4 - Check Reference Counts&lt;br /&gt;
** Phase 5 - Check Cyl groups&lt;br /&gt;
226 files, 4547 used, 11004 free (20 frags, 1373 blocks, 1.0% fragmentation)&lt;br /&gt;
&lt;br /&gt;
 *** BOOTSTRAP COMMAND SEQUENCE ***&lt;br /&gt;
&lt;br /&gt;
Enter the following boot sequence at the console mode prompt&lt;br /&gt;
after the installation software halts the processor:&lt;br /&gt;
&lt;br /&gt;
        &amp;gt;&amp;gt;&amp;gt; b dua0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 8007F799&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
After this, you will be back at the VAX boot prompt (if you used &amp;lt;code&amp;gt;set CPU CONHALT&amp;lt;/code&amp;gt; in your config) or at the SimH emulator prompt (if you used &amp;lt;code&amp;gt;set CPU SIMHALT&amp;lt;/code&amp;gt;, which is the default). In the latter case you will have to do &amp;lt;code&amp;gt;boot cpu&amp;lt;/code&amp;gt; again to get to the VAX boot prompt.&lt;br /&gt;
&lt;br /&gt;
==First boot==&lt;br /&gt;
Now we can boot the installed system from harddisk for the first time.&lt;br /&gt;
&lt;br /&gt;
If you want to, now would be a good time to take a backup copy of your disk files (or just create a btrfs snapshot or something if you have the possibility ;-)&lt;br /&gt;
&lt;br /&gt;
Okay, then let's boot from DUA0&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;boot dua0&lt;br /&gt;
(BOOT/R5:0 DUA0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA0&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 1153664&lt;br /&gt;
data = 281088&lt;br /&gt;
bss  = 1043548&lt;br /&gt;
Starting at 0x5219&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #3: Wed Oct 18 11:49:00 EDT 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 62008320&lt;br /&gt;
Buffer configuration adjusted to run with small system page table&lt;br /&gt;
using 121 buffers containing 991232 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
qe0 at uba0 csr 174440 vec 764, ipl 17&lt;br /&gt;
qe0: DEC DELQA Ethernet Interface DEQNA-lock Mode, hardware address 08:00:2b:04:14:02&lt;br /&gt;
lp0 at uba0 csr 177514 vec 200, ipl 17&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Here, it will seem to hang for a loooong time. A few minutes. Don't worry, it will eventually continue to boot. I guess it's probing for other devices which are not present.&lt;br /&gt;
&lt;br /&gt;
You ''might'' be able to speed this up a bit by interrupting SimH (press CTRL+E in the SimH console window) and then using &amp;lt;code&amp;gt;set CPU noidle&amp;lt;/code&amp;gt; followed by &amp;lt;code&amp;gt;go&amp;lt;/code&amp;gt; to resume emulation.&lt;br /&gt;
&lt;br /&gt;
Eventually, you will have to decide on a hostname. Note that if you want to play around with [[DECnet]] at some point, your hostname should be no longer than 6 characters.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
&lt;br /&gt;
 *** SYSTEM NAME SPECIFICATION ***&lt;br /&gt;
&lt;br /&gt;
Select the name of your system using alphanumeric characters.&lt;br /&gt;
The first character must be a letter.   For example, tinker.&lt;br /&gt;
&lt;br /&gt;
Enter your system name:  yuki&lt;br /&gt;
&lt;br /&gt;
You selected yuki as the name of your system.&lt;br /&gt;
Is this correct? (y/n) [y]: y&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the time configuration. Since Ultrix 4.5 is not Y2k compliant (AFAIK), I decided to set the clock back a whopping 20 years. Note that the timezone and daylight saving settings are for my location (Germany) and will probably vary for you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** DATE AND TIME SPECIFICATION ***&lt;br /&gt;
&lt;br /&gt;
The current date and time should be specified using the following&lt;br /&gt;
format:&lt;br /&gt;
&lt;br /&gt;
        yymmddhhmm&lt;br /&gt;
&lt;br /&gt;
Use two digits for year (yy), month (mm), day (dd), hour (hh), and&lt;br /&gt;
minute (mm).  Enter the time in 24-hour format.  For example, 02:54&lt;br /&gt;
p.m. on Feb 2, 1993 would be entered as:&lt;br /&gt;
&lt;br /&gt;
        9302021454&lt;br /&gt;
&lt;br /&gt;
Enter the date and time: 9512052336&lt;br /&gt;
&lt;br /&gt;
*** TIME ZONE SELECTION ***&lt;br /&gt;
&lt;br /&gt;
Select the time zone for your area, using the options listed in the&lt;br /&gt;
table below.  You can also enter the number of hours (-12 to 12) in&lt;br /&gt;
time east of Greenwich.&lt;br /&gt;
&lt;br /&gt;
  Selection     Time Zone&lt;br /&gt;
---------------------------------&lt;br /&gt;
      e         Eastern&lt;br /&gt;
      c         Central&lt;br /&gt;
      m         Mountain&lt;br /&gt;
      p         Pacific&lt;br /&gt;
      g         Greenwich&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
Does your area alternate between Daylight Savings and Standard&lt;br /&gt;
time? (y/n) [y]: y&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select your geographic area for Daylight Savings Time, using the&lt;br /&gt;
options in the table below.&lt;br /&gt;
&lt;br /&gt;
  Selection     Geographic Area&lt;br /&gt;
--------------------------------&lt;br /&gt;
      u         USA&lt;br /&gt;
      a         Australia&lt;br /&gt;
      e         Eastern Europe&lt;br /&gt;
      c         Central Europe&lt;br /&gt;
      w         Western Europe&lt;br /&gt;
--------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice [u]: c&lt;br /&gt;
&lt;br /&gt;
The current date and time is Tue Dec  5 23:36:46 EST 1995&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the root password. Note that Ultrix will not echo anything here, I added the asterisks just for this guide :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** SPECIFY THE SUPERUSER PASSWORD ***&lt;br /&gt;
The Guide to Installing ULTRIX instructs you on how to enter&lt;br /&gt;
the superuser password.&lt;br /&gt;
Changing password for root&lt;br /&gt;
Enter new password: ******&lt;br /&gt;
Verify: ******&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the filesystem layout, which is a bit more involved than what you know from more modern systems like MS DOS ;-)&lt;br /&gt;
&lt;br /&gt;
In ULTRIX, partitions are defined for each disk type in a file called &amp;lt;code&amp;gt;/etc/disktab&amp;lt;/code&amp;gt;. Note that the partitions overlap, so you shouldn't use them all at the same time. The setup script actually takes care of that for you, but if you later create a new filesystem on the wrong partition you ''WILL'' lose data!&lt;br /&gt;
&lt;br /&gt;
Normally, partition '''c''' is the whole disk, which is useful for add-on disk drives for example. Partitions '''a''' and '''b''' are always available and are traditionally used for the system and the swap-space respectively. The swap partition is also used for crashdumps if no separate crash-dump partition is created. The rest of the disk can be used either as a single partition (which is usually '''g''') or as 3 individual partitions ('''d''' to '''f'''). If the disk is larger than 1 gigabyte, you will get another partition, '''h''', after the g partition, probably because the filesystem cannot cope with partitions &amp;gt;1gig&lt;br /&gt;
&lt;br /&gt;
In our case, we will have the following partitions on the first disk (RA0):&lt;br /&gt;
*Partition '''a''' of 32 mb for /root&lt;br /&gt;
*Partition '''b''' of 64 mb for swap+crashdump&lt;br /&gt;
*Partition '''c''' of 1.2 gig (whole-disk, not used on our setup)&lt;br /&gt;
*Partition '''d''' and '''e''' of 200 mb each (not used)&lt;br /&gt;
*Partition '''f''' of 400 mb (not used)&lt;br /&gt;
*Partition '''g''' of 800 mb (overlaps with d, e and f; will become /usr)&lt;br /&gt;
*Partition '''h''' of 256 mb (will become /usr/var)&lt;br /&gt;
This way we still have the whole second disk available for later use.&lt;br /&gt;
&lt;br /&gt;
So here it goes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** FILE SYSTEM DEFAULT OPTION ***&lt;br /&gt;
&lt;br /&gt;
The following table shows the default file system layout on RA90, ra0:&lt;br /&gt;
&lt;br /&gt;
partition     bottom        top       size    overlap       default&lt;br /&gt;
    a              0      32767      32768    c             root&lt;br /&gt;
    b          32768     159839     127072    c             swap, dump&lt;br /&gt;
    d         159840     580036     420197    c,g           /usr&lt;br /&gt;
&lt;br /&gt;
If you choose the defaults, the var area will be allocated to /usr/var.&lt;br /&gt;
&lt;br /&gt;
Do you want to choose the default file system layout? (y/n): n&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No, we do not want to use the defaults...&lt;br /&gt;
&lt;br /&gt;
First, we select disk 1, partition '''g''', for the /usr file system:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** /usr FILE SYSTEM ALLOCATION ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the /usr file system to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
/usr FILE SYSTEM ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for /usr file system? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the /usr file system:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    d     ---      210098       c,g&lt;br /&gt;
    e     ---      210098       c,g&lt;br /&gt;
    f     ---      420196       c,g&lt;br /&gt;
    g     ---      840393       c,d,e,f&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the /usr file system [d]: g&lt;br /&gt;
&lt;br /&gt;
Making the new file system for /usr on /dev/rra0g RA90&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we select disk 1, partition '''b''' for swap (only 1 swap partition) and for crashdumps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** ALLOCATE THE SWAP1 SPACE ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the swap1 space to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
SWAP1 SPACE ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for swap1 space? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the swap1 space:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    b     ---       63536       c&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the swap1 space [b]: b&lt;br /&gt;
&lt;br /&gt;
*** ALLOCATE THE SWAP2 SPACE ***&lt;br /&gt;
&lt;br /&gt;
Do you want to allocate a second swap space? (y/n) [n]: n&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** ALLOCATE THE CRASH DUMP SPACE ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the crash dump space to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
CRASH DUMP SPACE ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for crash dump space? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the crash dump space:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
    b     ---       63536       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the crash dump space [b]: b&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally we select partiton '''h''' for the /var file system. This might not be large enough later on but then we can always migrate the data away if we need to...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** ALLOCATE THE var FILE SYSTEM ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the var file system to one of the disks listed in the&lt;br /&gt;
table below. See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
var FILE SYSTEM ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for var file system? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the var file system:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
    g     ---      840393       c,d,e,f&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the var file system [no default]: h&lt;br /&gt;
&lt;br /&gt;
Making the new file system for var on /dev/rra0h RA90&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing the distribution files==&lt;br /&gt;
&lt;br /&gt;
Next up we have to decide what ''packages'' we want to install (yes, ULTRIX already had its own package format and corresponding installer called ''setld''. It is very basic, probably most similar to ''pkg_add'' on NetBSD). We simply install everything, since we have enough space :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
This distribution media includes subsets for ULTRIX Worksystem&lt;br /&gt;
Software (UWS).  A UWS license (on a workstation) or a UWS Server&lt;br /&gt;
License (on a timesharing machine or server) is required to install&lt;br /&gt;
these subsets.&lt;br /&gt;
&lt;br /&gt;
Do you want to install ULTRIX Worksystem Software? y/n []: y&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** SUPPORTED SOFTWARE INSTALLATION ***&lt;br /&gt;
&lt;br /&gt;
*** Select the DECwindows User Interface ***&lt;br /&gt;
&lt;br /&gt;
1) DECwindows for OSF/Motif&lt;br /&gt;
2) X11/DECwindows (XUI)&lt;br /&gt;
&lt;br /&gt;
Enter your choice [1]: 2&lt;br /&gt;
&lt;br /&gt;
*** Enter Subset Selections ***&lt;br /&gt;
&lt;br /&gt;
The following subsets are mandatory and will be installed automatically:&lt;br /&gt;
 * Base System                           * Kernel Config Files&lt;br /&gt;
 * TCP/IP Networking Utilities           * Network File System Utilities&lt;br /&gt;
 * Extended (Berkeley) Mailer            * X11/DECwindows Servers&lt;br /&gt;
 * X11/DECwindows User Environment       * X11/DECwindows 75dpi Fonts&lt;br /&gt;
&lt;br /&gt;
The subsets listed below are optional:&lt;br /&gt;
 1) Printer Support Environment          2) RAND Mail Handler&lt;br /&gt;
 3) Sys. Config. Mgmt. Program (SCAMP)   4) Communications Utilities&lt;br /&gt;
 5) Unix-to-Unix Copy Facility           6) Maintenance Operations Protocol&lt;br /&gt;
 7) Accounting Software                  8) Kerberos Network Authentication&lt;br /&gt;
 9) Enhanced Security Features          10) Prestoserve Utilities&lt;br /&gt;
11) System Exerciser Package            12) Bisynchronous Communications&lt;br /&gt;
13) Doc. Preparation for Ref. Pages     14) Doc. Preparation Extensions&lt;br /&gt;
15) Adobe Font Metric Files             16) Software Development Utilities&lt;br /&gt;
17) Source Code Control System          18) Internationalization Runtime Env.&lt;br /&gt;
19) Internationalization Dev. Env.      20) CDA Base System&lt;br /&gt;
21) CDA Software Dev Libraries          22) RPC Runtime Environment&lt;br /&gt;
23) RPC Development Environment         24) Pascal Development Package&lt;br /&gt;
25) VAX C/ULTRIX                        26) Ref. Pages for Sys. Admin. &amp;amp; Users&lt;br /&gt;
27) Reference Pages for Programers      28) Programming Examples&lt;br /&gt;
29) Ultrix SPDS                         30) X11/DECwindows 100dpi Fonts&lt;br /&gt;
31) VS35XX X11/DECwindows Fonts         32) Additional DECwindows Applications&lt;br /&gt;
33) DECwindows Mail Application         34) Worksystem Development Environment&lt;br /&gt;
35) X11/DECwindows System Management T  36) UWS Runtime Reference Pages&lt;br /&gt;
37) UWS Development Reference Pages&lt;br /&gt;
&lt;br /&gt;
38) All mandatory and all optional subsets&lt;br /&gt;
39) Mandatory subsets only&lt;br /&gt;
40) Exit without installing subsets&lt;br /&gt;
&lt;br /&gt;
Enter your choice(s): 38&lt;br /&gt;
        Working....Wed Dec  6 00:14:12 EST 1995&lt;br /&gt;
&lt;br /&gt;
You are installing the following subsets:&lt;br /&gt;
   Base System                             Kernel Config Files&lt;br /&gt;
   TCP/IP Networking Utilities             Network File System Utilities&lt;br /&gt;
   Extended (Berkeley) Mailer              X11/DECwindows Servers&lt;br /&gt;
   X11/DECwindows User Environment         X11/DECwindows 75dpi Fonts&lt;br /&gt;
   Printer Support Environment             RAND Mail Handler&lt;br /&gt;
   Sys. Config. Mgmt. Program (SCAMP)      Communications Utilities&lt;br /&gt;
   Unix-to-Unix Copy Facility              Maintenance Operations Protocol&lt;br /&gt;
   Accounting Software                     Kerberos Network Authentication&lt;br /&gt;
   Enhanced Security Features              Prestoserve Utilities&lt;br /&gt;
   System Exerciser Package                Bisynchronous Communications&lt;br /&gt;
   Doc. Preparation for Ref. Pages         Doc. Preparation Extensions&lt;br /&gt;
   Adobe Font Metric Files                 Software Development Utilities&lt;br /&gt;
   Source Code Control System              Internationalization Runtime Env.&lt;br /&gt;
   Internationalization Dev. Env.          CDA Base System&lt;br /&gt;
   CDA Software Dev Libraries              RPC Runtime Environment&lt;br /&gt;
   RPC Development Environment             Pascal Development Package&lt;br /&gt;
   VAX C/ULTRIX                            Ref. Pages for Sys. Admin. &amp;amp; Users&lt;br /&gt;
   Reference Pages for Programers          Programming Examples&lt;br /&gt;
   Ultrix SPDS                             X11/DECwindows 100dpi Fonts&lt;br /&gt;
   VS35XX X11/DECwindows Fonts             Additional DECwindows Applications&lt;br /&gt;
   DECwindows Mail Application             Worksystem Development Environment&lt;br /&gt;
   X11/DECwindows System Management To     UWS Runtime Reference Pages&lt;br /&gt;
   UWS Development Reference Pages&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n): y&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installation will take a while (around 15-30 minutes for me), so feel free to let it run in the background for a while now. The installer will periodically print its status so you can see that it's still running...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Base System  (ULTBASE450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
        Working....Wed Dec  6 00:14:43 EST 1995&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
Kernel Config Files  (ULTBIN450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
        Working....Wed Dec  6 00:15:28 EST 1995&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At some point you will have to confirm installing the generic kernel and the X11 subsystem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
UWS Runtime Reference Pages (UWSMAN450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
UWS Development Reference Pages (UWSMANPGMR450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
The installation software has successfully installed the software&lt;br /&gt;
subsets.&lt;br /&gt;
Installing Upgrade subsets&lt;br /&gt;
The following subsets will be installed:&lt;br /&gt;
 * X11/DECwindows Servers Upgrade        * Generic Kernel&lt;br /&gt;
Do you wish to continue? (y/n): y&lt;br /&gt;
&lt;br /&gt;
X11/DECwindows Servers Upgrade (UWSSER451)&lt;br /&gt;
   Copying from /mnt/VAX/BASE_UPGRADE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
Generic Kernel  (ULTGENVMUNIX451)&lt;br /&gt;
   Copying from /mnt/VAX/BASE_UPGRADE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
The installation procedure has successfully installed the Upgrade&lt;br /&gt;
subsets&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it for the base installation, now we configure our kernel...&lt;br /&gt;
&lt;br /&gt;
==Kernel configuration==&lt;br /&gt;
We have to select what features will be in the kernel. For anyone who has ever done a &amp;quot;make menuconfig&amp;quot; on Linux, this is ''slightly'' easier here ;-)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** CONFIGURATION FILE KERNEL OPTION SELECTION ***&lt;br /&gt;
&lt;br /&gt;
    Selection   Kernel Option&lt;br /&gt;
---------------------------------------------------------------&lt;br /&gt;
        1       Local Area Transport (LAT)&lt;br /&gt;
        2       Bisynchronous Communication protocol (VAX only)&lt;br /&gt;
        3       Computer Interconnect (CI) network&lt;br /&gt;
        4       Diagnostic/Utilities Protocol (DUP)&lt;br /&gt;
        5       ISO9660 File System Support (CDFS)&lt;br /&gt;
        6       Ethernet Packet Filter&lt;br /&gt;
        7       Enhanced Security Features&lt;br /&gt;
        8       All of the above&lt;br /&gt;
        9       None of the above&lt;br /&gt;
----------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter the selection number for each kernel option you want.&lt;br /&gt;
For example, 1 3 :&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In our case, we don't need 2 (it is for 2780/3780 remote terminals), 3 (SimH doesn't emulate any cluster hardware) or 6 (it might cause problems with DECwindows/Motif). Everything else (&amp;lt;code&amp;gt;1 4 5 7&amp;lt;/code&amp;gt;) is probably safe. This lets us play around with LAT (maybe connect an emulated Cisco router with LAT routing to it?) and DUP.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Enter the selection number for each kernel option you want.&lt;br /&gt;
For example, 1 3 :  1 4 5 7&lt;br /&gt;
&lt;br /&gt;
You specified the following kernel options:&lt;br /&gt;
&lt;br /&gt;
        Local Area Transport (LAT)&lt;br /&gt;
        Diagnostic/Utilities Protocol (DUP)&lt;br /&gt;
        ISO9660 File System Support (CDFS)&lt;br /&gt;
        Enhanced Security Features&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n) [n]: y&lt;br /&gt;
&lt;br /&gt;
*** SYSTEM CONFIGURATION PROCEDURE ***&lt;br /&gt;
The installation software found these devices in the floating&lt;br /&gt;
address space:&lt;br /&gt;
&lt;br /&gt;
        dz0             on uba0         at 0160100&lt;br /&gt;
        dz1             on uba0         at 0160110&lt;br /&gt;
        dz2             on uba0         at 0160120&lt;br /&gt;
        dz3             on uba0         at 0160130&lt;br /&gt;
&lt;br /&gt;
Configuration file complete.&lt;br /&gt;
&lt;br /&gt;
Do you want to edit the configuration file? (y/n) [n]: n&lt;br /&gt;
&lt;br /&gt;
*** PERFORMING SYSTEM CONFIGURATION ***&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    working ..... Wed Dec  6 02:29:10 EST 1995&lt;br /&gt;
&lt;br /&gt;
*** DEVICE SPECIAL FILE CREATION ***&lt;br /&gt;
    working ..... Wed Dec  6 02:29:53 EST 1995&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE INSTALLATION PROCEDURE COMPLETE ***&lt;br /&gt;
&lt;br /&gt;
The following files were created during the installation procedure:&lt;br /&gt;
&lt;br /&gt;
/vmunix                         - customized kernel&lt;br /&gt;
/genvmunix                      - generic kernel&lt;br /&gt;
/usr/adm/install.log            - installation log file&lt;br /&gt;
/usr/adm/install.FS.log         - file systems log file&lt;br /&gt;
/usr/adm/install.DEV.log        - special device log file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter the following boot sequence at the console mode prompt&lt;br /&gt;
after the installation software halts the processor:&lt;br /&gt;
&lt;br /&gt;
        &amp;gt;&amp;gt;&amp;gt; b dua0&lt;br /&gt;
&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 800985B5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you might want to take another backup of your disk images, since the ULTRIX installation is now basically complete.&lt;br /&gt;
&lt;br /&gt;
==Adding the unsupported sets==&lt;br /&gt;
Now there are some more pieces of software in the CDROM, in a directory called ''unsupported''. We want to install these as well. First, let's boot our system again&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;b dua0&lt;br /&gt;
(BOOT/R5:0 DUA0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA0&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 747376&lt;br /&gt;
data = 125952&lt;br /&gt;
bss  = 918192&lt;br /&gt;
Starting at 0x2c19&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #1: Wed Dec  6 02:29:50 EST 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 56455168&lt;br /&gt;
using 1638 buffers containing 6712320 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
qe0 at uba0 csr 174440 vec 764, ipl 17&lt;br /&gt;
qe0: DEC DELQA Ethernet Interface DEQNA-lock Mode, hardware address 08:00:2b:04:14:02&lt;br /&gt;
lp0 at uba0 csr 177514 vec 200, ipl 17&lt;br /&gt;
dz0 at uba0 csr 160100 vec 300, ipl 17&lt;br /&gt;
dz1 at uba0 csr 160110 vec 310, ipl 17&lt;br /&gt;
dz2 at uba0 csr 160120 vec 320, ipl 17&lt;br /&gt;
dz3 at uba0 csr 160130 vec 330, ipl 17&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
Wed Dec  6 11:25:29 MET 1995&lt;br /&gt;
Automatic reboot in progress...&lt;br /&gt;
/dev/ra0a: 644 files, 6161 used, 9390 free (166 frags, 1153 blocks, 5.0% fragmentation)&lt;br /&gt;
/dev/rra0g: umounted cleanly&lt;br /&gt;
/dev/rra0h: umounted cleanly&lt;br /&gt;
Warning Creating new license database&lt;br /&gt;
Warning creating new history file&lt;br /&gt;
check quotas: done.&lt;br /&gt;
savecore: checking for dump...dump does not exist&lt;br /&gt;
local daemons: syslog sendmail.&lt;br /&gt;
Removing remnant Opser files&lt;br /&gt;
preserving editor files&lt;br /&gt;
clearing /tmp&lt;br /&gt;
standard daemons: update cron accounting network snmpd printer.&lt;br /&gt;
start errlog daemon - elcsd&lt;br /&gt;
Wed Dec  6 11:25:48 MET 1995&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #1: Wed Dec  6 02:29:50 EST 1995&lt;br /&gt;
UWS V4.5 (Rev. 6)&lt;br /&gt;
&lt;br /&gt;
                Digital Equipment Corporation&lt;br /&gt;
                Nashua, New Hampshire&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE INSTALLATION PROCEDURE COMPLETE ***&lt;br /&gt;
&lt;br /&gt;
The following files were created during the installation procedure:&lt;br /&gt;
&lt;br /&gt;
/vmunix                         - customized kernel&lt;br /&gt;
/genvmunix                      - generic kernel&lt;br /&gt;
/usr/adm/install.log            - installation log file&lt;br /&gt;
/usr/adm/install.FS.log         - file systems log file&lt;br /&gt;
/usr/adm/install.DEV.log        - special device log file&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
now, we mount the CDROM and use &amp;lt;code&amp;gt;setld&amp;lt;/code&amp;gt; to install the unsupported packages. For simplicity's sake, we just (again) install everything.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# mount -r /dev/ra2c /mnt&lt;br /&gt;
# cd /mnt/VAX/UNSUPPORTED&lt;br /&gt;
# ls&lt;br /&gt;
DXVUNDEMO450    ULXDOC450       ULXINGRES450    ULXRCS450       ULXUNMAN450&lt;br /&gt;
ULXAPL450       ULXEDIT450      ULXLEARN450     ULXSHELLS450    ULXUNMIT450&lt;br /&gt;
ULXBASE450      ULXF77450       ULXLISP450      ULXSPMS450      ULXVARIAN450&lt;br /&gt;
ULXBIB450       ULXGAMES450     ULXMAN450       ULXTERM450      instctrl&lt;br /&gt;
ULXCOURIER450   ULXHYPER450     ULXMOD2450      ULXTOOLS450&lt;br /&gt;
ULXCPM450       ULXICON450      ULXNEWS450      ULXUNEXAMP450&lt;br /&gt;
ULXDCMT450      ULXINET450      ULXNOTES450     ULXUNFONTS450&lt;br /&gt;
# setld -l .&lt;br /&gt;
&lt;br /&gt;
*** Enter Subset Selections ***&lt;br /&gt;
&lt;br /&gt;
The subsets listed below are optional:&lt;br /&gt;
 1) Base Extension                       2) GNU Emacs&lt;br /&gt;
 3) TCP/IP Networking Util Extension     4) Additional Terminal Drivers&lt;br /&gt;
 5) Document Preparation Software        6) Games and Diversions&lt;br /&gt;
 7) Supplementary Documentation          8) Bibliographic Utilities&lt;br /&gt;
 9) Remote Procedure Call Compiler      10) Aux. Command Line Interpreters&lt;br /&gt;
11) USENET News Interface Software      12) Notesfiles Package&lt;br /&gt;
13) Revision Control System             14) Misc. User-Contributed Utilities&lt;br /&gt;
15) Computer Aided System Tutor         16) Franz Lisp Development Package&lt;br /&gt;
17) Modula-2 Development Package        18) Raster Plotter Package&lt;br /&gt;
19) APL Development Package             20) CP/M 8in Diskette Utility&lt;br /&gt;
21) Hyperchannel Utilities              22) ICON (Language) Development Packag&lt;br /&gt;
23) University Ingres QUEL DBMS         24) Software Project Management System&lt;br /&gt;
25) Unsupported Fortran Utilities       26) Unsupported On-Line Documentation&lt;br /&gt;
27) Unsupported X11 Components          28) Unsupported DECwindows Examples&lt;br /&gt;
29) Unsupported MIT Fonts               30) Unsupported X11 Reference Pages&lt;br /&gt;
31) Unsupported OSF/Motif Demos&lt;br /&gt;
&lt;br /&gt;
32) All mandatory and all optional subsets&lt;br /&gt;
33) Mandatory subsets only&lt;br /&gt;
34) Exit without installing subsets&lt;br /&gt;
&lt;br /&gt;
Enter your choice(s): 32&lt;br /&gt;
        Working....Wed Dec  6 11:29:48 MET 1995&lt;br /&gt;
         Wed Dec 6 11:30:00 MET 1995&lt;br /&gt;
&lt;br /&gt;
You are installing the following subsets:&lt;br /&gt;
   Base Extension                          GNU Emacs&lt;br /&gt;
   TCP/IP Networking Util Extension        Additional Terminal Drivers&lt;br /&gt;
   Document Preparation Software           Games and Diversions&lt;br /&gt;
   Supplementary Documentation             Bibliographic Utilities&lt;br /&gt;
   Remote Procedure Call Compiler          Aux. Command Line Interpreters&lt;br /&gt;
   USENET News Interface Software          Notesfiles Package&lt;br /&gt;
   Revision Control System                 Misc. User-Contributed Utilities&lt;br /&gt;
   Computer Aided System Tutor             Franz Lisp Development Package&lt;br /&gt;
   Modula-2 Development Package            Raster Plotter Package&lt;br /&gt;
   APL Development Package                 CP/M 8in Diskette Utility&lt;br /&gt;
   Hyperchannel Utilities                  ICON (Language) Development Package&lt;br /&gt;
   University Ingres QUEL DBMS             Software Project Management System&lt;br /&gt;
   Unsupported Fortran Utilities           Unsupported On-Line Documentation&lt;br /&gt;
   Unsupported X11 Components              Unsupported DECwindows Examples&lt;br /&gt;
   Unsupported MIT Fonts                   Unsupported X11 Reference Pages&lt;br /&gt;
   Unsupported OSF/Motif Demos&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n): y&lt;br /&gt;
&lt;br /&gt;
Base Extension (ULXBASE450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
GNU Emacs (ULXEDIT450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
TCP/IP Networking Util Extension (ULXINET450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that you could also quickly install only a single package by using for example&lt;br /&gt;
 # setld -l . ULXINET450&lt;br /&gt;
&lt;br /&gt;
After a few minutes, installation will be completed and we should unmount the CDROM&lt;br /&gt;
 # cd /&lt;br /&gt;
 # umount /mnt&lt;br /&gt;
&lt;br /&gt;
==Network configuration==&lt;br /&gt;
To configure the network, you have to use a static IPv4 address and put that into the beginning of /etc/rc.local. Note that there is no &amp;lt;code&amp;gt;ifconfig -a&amp;lt;/code&amp;gt; in ULTRIX, you have to use &amp;lt;code&amp;gt;netstat -i&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# netstat -i&lt;br /&gt;
Name   Mtu   Network     Address            Ipkts Ierrs    Opkts Oerrs  Coll&lt;br /&gt;
qe0*   1500  none        none                   0     0        0     0     0&lt;br /&gt;
lo0    1536  loop        localhost              1     0        1     0     0&lt;br /&gt;
# ifconfig qe0 192.168.1.44 netmask 255.255.255.0 up&lt;br /&gt;
# route add default 192.168.1.1 1&lt;br /&gt;
add net default: gateway 192.168.1.1&lt;br /&gt;
# ping 192.168.1.1&lt;br /&gt;
192.168.1.1 is alive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that it might actually take a while until packets are getting through. I don't know why but in my case it helped to ping ULTRIX from the outside first, e.g. from Windows, and then re-try the ping from the VM. Then it worked. I'm guessing this is some SimH/Windows issue with PCAP or something.&lt;br /&gt;
&lt;br /&gt;
Then put these 2 commands at the start of &amp;lt;code&amp;gt;/etc/rc.local&amp;lt;/code&amp;gt; (you'll see where). Note that you can use &amp;lt;code&amp;gt;vi&amp;lt;/code&amp;gt; now!&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# @(#)rc.local  9.4     (ULTRIX)        9/21/95&lt;br /&gt;
/bin/hostname yuki&lt;br /&gt;
#/etc/ifconfig HDWR `/bin/hostname` broadcast NETNUM.0 netmask 255.0&lt;br /&gt;
/etc/ifconfig qe0 192.168.1.44 netmask 255.255.255.0&lt;br /&gt;
route add default 192.168.1.1 1&lt;br /&gt;
/etc/ifconfig lo0 localhost&lt;br /&gt;
#/etc/bscconfig dup0 bsc 1&lt;br /&gt;
#/etc/bscconfig dpv0 bsc 1&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that DNS lookups normally don't work out of the box. Create a basic &amp;lt;code&amp;gt;/etc/resolv.conf&amp;lt;/code&amp;gt; file with the following content (or whatever is correct in your environment)&lt;br /&gt;
 domain lan.local&lt;br /&gt;
 nameserver 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
However, if you then try to do an nslookup query, you will get an error message&lt;br /&gt;
 # nslookup www.google.com&lt;br /&gt;
 *** Can't find server name for address 192.168.1.1: Not implemented&lt;br /&gt;
 *** Default servers are not available&lt;br /&gt;
The problem is that ULTRIX sends so-called ''inverse queries'' (not to be confused with the well-known ''reverse lookups'', which are actually just regular forward lookups to a specific TLD) to map IP addresses to hostnames. Most DNS servers don't support these inverse queries anymore. Apparently, BIND8 still included an option &amp;quot;fake-iquery&amp;quot; which might be used to support these queries. Versions before BIND8 (4.x) supported IQUERY natively. I have yet to test both variants to see which (if any) of them work.&lt;br /&gt;
&lt;br /&gt;
==Shutting down cleanly==&lt;br /&gt;
As you'd expect, you can use &amp;lt;code&amp;gt;shutdown&amp;lt;/code&amp;gt; to shut the system down&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# shutdown -h now&lt;br /&gt;
Shutdown at 11:15 (in 0 minutes) [pid 1500]&lt;br /&gt;
#&lt;br /&gt;
System shutdown time has arrived&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 80094CDD&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Enabling outside access==&lt;br /&gt;
The SimH config above includes a 16-line serial multiplexer. If you connect via TELNET to port 1005, you are given the first free serial line of the emulated DZ device. However, serial login is disabled by default, so it has to be enabled first. That's what the &amp;lt;code&amp;gt;/etc/ttys&amp;lt;/code&amp;gt; file is for. Edit the file and change the ''off'' to ''on'' in the lines for tty00 to tty07, as shown below&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# @(#)ttys      9.1 (ULTRIX) 4/26/94&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
# name  getty           type            status          comments&lt;br /&gt;
#&lt;br /&gt;
console &amp;quot;/etc/getty std.9600&amp;quot; vt100     on secure       # console terminal&lt;br /&gt;
tty00   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty01   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty02   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty03   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty04   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty05   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty06   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty07   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
ttyd0   &amp;quot;/etc/getty std.9600&amp;quot; vt100     off shared secure # modem line&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to be able to login as root on these terminals, you can also add the &amp;lt;code&amp;gt;secure&amp;lt;/code&amp;gt; flag as well. Also note that while it seems tempting to increase the line speed to 19200 or even higher, from my experience that will cause massive lags and emulation hangs in SimH, so do that on your own risk.&lt;br /&gt;
&lt;br /&gt;
After editing the file and saving it, you have to reload init:&lt;br /&gt;
 # kill -HUP 1&lt;br /&gt;
&lt;br /&gt;
Now try logging in to port 1005 via telnet, and you should be greeted with this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Connected to the MicroVAX 3900 simulator DZ device, line 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
Requires secure terminal&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that SimH will print out the serial line to which you are connected, in this case line 0 which is /dev/tty00.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, if your inetd is running (which it should be, if you followed this guide), you will also already be able to login remotely using telnet.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
Requires secure terminal&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To enable root access for all telnet sessions, you will have to edit the /etc/ttys file and change every line that starts with &amp;quot;ttyp&amp;quot; to include the secure flag:&lt;br /&gt;
 ttyp0   none            network&lt;br /&gt;
will become&lt;br /&gt;
 ttyp0   none            network secure&lt;br /&gt;
and so on...&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
Some of the resources I used for creating this guide:&lt;br /&gt;
*ULTRIX 4.5 installation ISO [http://musall.de/mirrors/ultrix/ultrix_os/vax/]&lt;br /&gt;
*ULTRIX-32 startup and shutdown guide [http://bitsavers.trailing-edge.com/pdf/dec/vax/ultrix-32/3.0/AA-ME91A-TE_ULTRIX-32_Guide_to_System_Shutdown_and_Startup.pdf]&lt;br /&gt;
*CERN guide to installing ULTRIX [https://web-docs.gsi.de/~kraemer/COLLECTION/ULTRIX/wwwpdp.web.cern.ch/wwwpdp/as/file/doc/ultrix/ultrix.pdf]&lt;br /&gt;
*My old guide for installing ULTRIX [https://docs.google.com/document/d/1ULRhzE0R1twarB5hfJm85yqOdTeoFCGgyPr5AxYEIbE]&lt;br /&gt;
*DEC KA655 CPU System Maintenance [http://bitsavers.trailing-edge.com/pdf/dec/vax/655/EK-306A-MG-001_655Mnt_Mar89.pdf]&lt;br /&gt;
*Some notes and links to more ULTRIX information [https://web-docs.gsi.de/~kraemer/COLLECTION/ULTRIX/docs.html]&lt;br /&gt;
*Ultrix Guide to Disk Maintenance [http://www.carelife.com/manuals/Ultrix_Guide_Disk_Maint.PDF]&lt;br /&gt;
*Some random notes about ULTRIX 4.0 (some also apply to 4.5) [http://apfelboymchen.net/gnu/UNIX/vax-ultrix.html]&lt;br /&gt;
&lt;br /&gt;
[[Category:SIMH Tutorials]]&lt;br /&gt;
[[Category: ULTRIX]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Installing_Ultrix_4.5_on_SIMH&amp;diff=31671</id>
		<title>Installing Ultrix 4.5 on SIMH</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Installing_Ultrix_4.5_on_SIMH&amp;diff=31671"/>
				<updated>2023-09-29T07:10:03Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added instructions for other versions of Ultrix.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This WORK-IN-PROGRESS guide will be a simple guide to installing [[ULTRIX]] 4.5 for VAX on [[SIMH]].&lt;br /&gt;
&lt;br /&gt;
==Requirements==&lt;br /&gt;
The following is a list of things required for installation&lt;br /&gt;
*A recent version of the SIMH emulator&lt;br /&gt;
**Make sure the binary you're using includes [[Ethernet]] support&lt;br /&gt;
**I'm using a self-compiled version (git revision 0e8c0aea)&lt;br /&gt;
*An ISO image of ULTRIX 4.5 for [[VAX]]&lt;br /&gt;
**See the &amp;quot;Resources&amp;quot; section for a download link&lt;br /&gt;
**It's probably also possible to install it from tape, although I don't know if any installation tapes for ULTRIX 4.5 exist&lt;br /&gt;
*Optional stuff (might get added to the guide later):&lt;br /&gt;
**Starfish Ultrix Freeware CDs from [http://musall.de/mirrors/ultrix/freeware/ here]&lt;br /&gt;
&lt;br /&gt;
==SimH configuration==&lt;br /&gt;
The machine I'm using to run ULTRIX has the following configuration&lt;br /&gt;
*[[DEC]] [[MicroVAX 3800/3900|MicroVAX 3800]]&lt;br /&gt;
*64mb memory&lt;br /&gt;
*[[DELQA]] network card (XQ0)&lt;br /&gt;
*Two [[RA90]] disk drives (with 1.2gb each) attached to an [[RQDX3 MFM Disk &amp;amp; Floppy QBUS Controller|RQDX3]] controller (RQ0 and RQ1)&lt;br /&gt;
*CD ROM drive attached to the same RQDX3 controller as unit 2 (RQ2)&lt;br /&gt;
*[[TK50]] tape attached as unit 0 on the first [[TQK50]] controller (TQ0)&lt;br /&gt;
*[[DZV11]] terminal multiplexer with 16 lines, attached to telnet port 1005 (DZ)&lt;br /&gt;
*[[LPT]] line printer attached to text file &amp;lt;code&amp;gt;printer_output.txt&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here's my config file (I called it &amp;lt;code&amp;gt;simh.conf&amp;lt;/code&amp;gt;)&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
;&lt;br /&gt;
; SimH 4.0 Configuration file for MicroVAX 3800&lt;br /&gt;
;&lt;br /&gt;
; Host System      : DEC MicroVAX 3800&lt;br /&gt;
; Operating System : DEC Ultrix v4.5&lt;br /&gt;
; Memory           : 64mb&lt;br /&gt;
; Network config   : XQ: Ethernet, 08:00:2b:04:14:02&lt;br /&gt;
; Disks            : RQ0: RA90, 1.2gb&lt;br /&gt;
;                    RQ1: RA90, 1.2gb&lt;br /&gt;
; CDROMs           : RQ2: iso file&lt;br /&gt;
; Tape config      : TQ0: TK50, 94mb&lt;br /&gt;
;&lt;br /&gt;
&lt;br /&gt;
load -r ka655x.bin&lt;br /&gt;
&lt;br /&gt;
; NVRAM&lt;br /&gt;
attach NVR nvram.bin&lt;br /&gt;
&lt;br /&gt;
; CPU config&lt;br /&gt;
set CPU 64m&lt;br /&gt;
set CPU conhalt&lt;br /&gt;
set CPU idle=all&lt;br /&gt;
&lt;br /&gt;
; configure console to 7-bit only&lt;br /&gt;
set TTO 7b&lt;br /&gt;
set TTI 7b&lt;br /&gt;
&lt;br /&gt;
; Disk drives&lt;br /&gt;
set RQ0 ra90&lt;br /&gt;
attach RQ0 rq0-ra90.dsk&lt;br /&gt;
set RQ1 ra90&lt;br /&gt;
attach RQ1 rq1-ra90.dsk&lt;br /&gt;
set RQ2 CDROM&lt;br /&gt;
attach -r RQ2 ultrix-vax-os-v4.5.mode1.ufs.iso&lt;br /&gt;
; MD5 sum: 19df0753c27f195e9f1d2f139a3b4629 *ultrix-vax-os-v4.5.mode1.ufs.iso&lt;br /&gt;
set RQ3 dis&lt;br /&gt;
&lt;br /&gt;
; Tape&lt;br /&gt;
set TQ tk50&lt;br /&gt;
;attach tq0 filename-to-tape-file&lt;br /&gt;
set TQ1 dis&lt;br /&gt;
set TQ2 dis&lt;br /&gt;
set TQ3 dis&lt;br /&gt;
&lt;br /&gt;
; serial port, simulated by Telnet to port 1005&lt;br /&gt;
set DZ LINES=16&lt;br /&gt;
set DZ 8B&lt;br /&gt;
attach DZ 1005 NoBuffer&lt;br /&gt;
&lt;br /&gt;
; printer&lt;br /&gt;
set LPT enable&lt;br /&gt;
attach LPT printer_output.txt&lt;br /&gt;
&lt;br /&gt;
; Disable unused peripherals&lt;br /&gt;
set CR dis&lt;br /&gt;
set RL dis&lt;br /&gt;
set TS dis&lt;br /&gt;
&lt;br /&gt;
; Network interface (08-00-2b is the DEC prefix, the 04-14-02 part is arbitrary)&lt;br /&gt;
set XQ MAC=08-00-2b-04-14-02&lt;br /&gt;
attach XQ0 eth0&lt;br /&gt;
&lt;br /&gt;
; serial console (launch directly after booting CPU)&lt;br /&gt;
set console telnet=1001&lt;br /&gt;
&lt;br /&gt;
; experimental&lt;br /&gt;
;set QVSS en&lt;br /&gt;
&lt;br /&gt;
; boot the system&lt;br /&gt;
;boot CPU&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that I'm using a telnet console (for easier copy/paste on Windows), which means that directly after running this config file (via &amp;lt;code&amp;gt;do simh.conf&amp;lt;/code&amp;gt; from Simh) you will need to connect via telnet to localhost:1001 or the boot will abort. If you are on Linux, or just don't want that, remove the &amp;lt;code&amp;gt;set console telnet=1001&amp;lt;/code&amp;gt; line.&lt;br /&gt;
&lt;br /&gt;
Also note that you might need to attach XQ0 to a different ethernet device. Use &amp;quot;show ether&amp;quot; in SimH to list all available devices on your system and modify the &amp;lt;code&amp;gt;attach XQ0 eth0&amp;lt;/code&amp;gt; line accordingly.&lt;br /&gt;
&lt;br /&gt;
==Running the Emulator==&lt;br /&gt;
Either run &amp;lt;code&amp;gt;vax.exe simh.conf&amp;lt;/code&amp;gt; from the Windows command line, or just double-click the VAX.EXE executable and type &amp;lt;code&amp;gt;do simh.conf&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
On the first launch it might take some time because SimH has to create the disk images (~2.5 gb total). It should look something like this&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
MicroVAX 3900 simulator V4.0-0 Beta        git commit id: 0e8c0aea&lt;br /&gt;
NVR: buffering file in memory&lt;br /&gt;
RQ2: unit is read only&lt;br /&gt;
Listening on port 1005&lt;br /&gt;
WinPcap version 4.1.2 (packet.dll version 4.1.0.2001), based on libpcap version 1.0 branch 1_0_rel0b (20091008)&lt;br /&gt;
Eth: opened OS device \Device\NPF_{A41A1651-DD4D-4735-A4E0-88353165C2EC}&lt;br /&gt;
Listening on port 1001&lt;br /&gt;
sim&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Type the following to start the emulation (note: you can also uncomment that line from the end of the config file to have the emulation start right away)&lt;br /&gt;
 sim&amp;gt; boot cpu&lt;br /&gt;
 Waiting for console Telnet connection&lt;br /&gt;
&lt;br /&gt;
Now would be a good time to connect your telnet session (I use a batch file for this), otherwise the boot process will timeout.&lt;br /&gt;
&lt;br /&gt;
On your console, you should see something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Connected to the MicroVAX 3900 simulator CON-TEL device&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
KA655-B V5.3, VMB 2.7&lt;br /&gt;
Performing normal system tests.&lt;br /&gt;
40..39..38..37..36..35..34..33..32..31..30..29..28..27..26..25..&lt;br /&gt;
24..23..22..21..20..19..18..17..16..15..14..13..12..11..10..09..&lt;br /&gt;
08..07..06..05..04..03..&lt;br /&gt;
Tests completed.&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This is the VAX's boot prompt. Normally you just type&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot &amp;lt;device&amp;gt;&lt;br /&gt;
where &amp;lt;device&amp;gt; is one of the following&lt;br /&gt;
*MUA&amp;lt;num&amp;gt;: TK tape device number &amp;lt;num&amp;gt; (1 to 4)&lt;br /&gt;
*DUA&amp;lt;num&amp;gt;: RQ disk device number &amp;lt;num&amp;gt; (1 to 4)&lt;br /&gt;
&lt;br /&gt;
You can use &amp;lt;code&amp;gt;show device&amp;lt;/code&amp;gt; to see the installed (and detected) devices you can boot from, and &amp;lt;code&amp;gt;show boot&amp;lt;/code&amp;gt; to see which device will be the default if you just type &amp;lt;code&amp;gt;boot&amp;lt;/code&amp;gt; (or &amp;lt;code&amp;gt;b&amp;lt;/code&amp;gt; for short):&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;show device&lt;br /&gt;
UQSSP Disk Controller 0 (772150)&lt;br /&gt;
-DUA0 (RA90)&lt;br /&gt;
-DUA1 (RA90)&lt;br /&gt;
-DUA2 (RRD40)&lt;br /&gt;
&lt;br /&gt;
UQSSP Tape Controller 0 (774500)&lt;br /&gt;
-MUA0 (TK50)&lt;br /&gt;
&lt;br /&gt;
Ethernet Adapter 0 (774440)&lt;br /&gt;
-XQA0 (08-00-2B-04-14-02)&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;show boot&lt;br /&gt;
MUA0&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Since we want to boot from CDROM, which is unit 2, we can use&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot DUA2&lt;br /&gt;
&lt;br /&gt;
Note: You can add flags to boot into single user mode, or to boot in interactive mode (so-called ''conversational boot'', where the system prompts you for a kernel file name to load). For details see the Guide to ULTRIX-32 System Startup and Shutdown, linked to in the ''References'' section. To use it, add the &amp;lt;code&amp;gt;/R5:&amp;lt;flags&amp;gt;&amp;lt;/code&amp;gt; option to the &amp;lt;code&amp;gt;boot&amp;lt;/code&amp;gt; command, where flags is 0 (default multi-user), 1 (conversational multi-user), 2 (single-user) or 3 (conversational single-user). For example&lt;br /&gt;
 &amp;gt;&amp;gt;&amp;gt;boot/r5:3 dua0&lt;br /&gt;
&lt;br /&gt;
Note: You can also boot from ethernet (&amp;lt;code&amp;gt;boot XQA0&amp;lt;/code&amp;gt;) but this requires a DEC-specific boot server in your network (the protocol is called ''MOP'' for ''Maintenance Operations Protocol''), which is beyond the scope of this document. I did get it to work a few years ago though, but it was a bit difficult to set up.&lt;br /&gt;
&lt;br /&gt;
For a list and description of all commands available in the bootloader (hint: there are lots), see the ''KA655 CPU System Maintenance'' guide mentioned in the ''References'' section..&lt;br /&gt;
&lt;br /&gt;
==Bootstrapping ULTRIX==&lt;br /&gt;
You will see the following output on the first boot.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;boot dua2&lt;br /&gt;
(BOOT/R5:0 DUA2&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA2&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 945424&lt;br /&gt;
data = 1290240&lt;br /&gt;
bss  = 757940&lt;br /&gt;
Starting at 0x5219&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #2: Wed Oct 18 12:06:55 EDT 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 61517824&lt;br /&gt;
Buffer configuration adjusted to run with small system page table&lt;br /&gt;
using 123 buffers containing 1007616 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
WARNING: clock gained 47 days -- CHECK AND RESET THE DATE!&lt;br /&gt;
&lt;br /&gt;
*** STANDALONE ULTRIX ENVIRONMENT ***&lt;br /&gt;
&lt;br /&gt;
If you select the BASIC Installation option from the list that follows,&lt;br /&gt;
the installation software creates file systems on default partitions on&lt;br /&gt;
your system disk and loads the mandatory ULTRIX software subsets.&lt;br /&gt;
&lt;br /&gt;
If you require additional installation choices, select the ADVANCED&lt;br /&gt;
Installation option.&lt;br /&gt;
&lt;br /&gt;
Select one of the following options:&lt;br /&gt;
&lt;br /&gt;
        1) BASIC Installation&lt;br /&gt;
        2) ADVANCED Installation&lt;br /&gt;
        3) System management&lt;br /&gt;
&lt;br /&gt;
Enter your choice:&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Now we want to do an ''ADVANCED Installation'', but when we try to, it will take a few seconds until the installation program dumps us to a prompt because it couldn't find a valid device to install from and to:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Enter your choice: 2&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE DISTRIBUTION DEVICE SELECTION ***&lt;br /&gt;
&lt;br /&gt;
The 'Guide to Installing ULTRIX' explains the following table&lt;br /&gt;
of software distribution devices and which installation media you should&lt;br /&gt;
load on it:&lt;br /&gt;
&lt;br /&gt;
No valid device is found.&lt;br /&gt;
Contact a DIGITAL field service representative.&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The problem seems to be that the hardware SimH emulates is not fully supported by ULTRIX (or is misdetected -- I'm not entirely sure myself). The good thing is that the internet has the correct solution, which is to fix some lines in the installation shell script. The fact that the basic system that is running at this point doesn't have ''vi'', or even ''cat'', makes this a bit harder ;-)&lt;br /&gt;
&lt;br /&gt;
The only option you have is ''ed'', the old UNIX editor. For a quick introduction, see [http://blog.sanctum.geek.nz/actually-using-ed/ here].&lt;br /&gt;
&lt;br /&gt;
To load the file in the editor, use&lt;br /&gt;
 # '''ed install.1'''&lt;br /&gt;
 16763&lt;br /&gt;
&lt;br /&gt;
You can see the entire file with&lt;br /&gt;
 1,$l&lt;br /&gt;
but be warned, the output is quite long and it'll take some time to print it all out.&lt;br /&gt;
&lt;br /&gt;
To fix it, use the following commands (the lines in '''bold''' is what you type, everything else is the response from ed)&lt;br /&gt;
 # '''ed install.1'''&lt;br /&gt;
 16763&lt;br /&gt;
 '''173l'''&lt;br /&gt;
 BTD=`btd`&lt;br /&gt;
 '''173s/`btd`/ra2/'''&lt;br /&gt;
 '''173l'''&lt;br /&gt;
 BTD=ra2&lt;br /&gt;
 '''193l'''&lt;br /&gt;
 rz* )&lt;br /&gt;
 '''193s/rz/ra/'''&lt;br /&gt;
 '''193l'''&lt;br /&gt;
 ra* )&lt;br /&gt;
 '''w'''&lt;br /&gt;
 16761&lt;br /&gt;
 '''q'''&lt;br /&gt;
 #&lt;br /&gt;
&lt;br /&gt;
First, we list line 173, then we change it from &amp;lt;code&amp;gt;BTD=`btd`&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;BTD=ra2&amp;lt;/code&amp;gt;, which happens to be the CDROM device and unit number we're installing from (if you changed that in your config, use the correct name here!)&lt;br /&gt;
&lt;br /&gt;
Then we change line 193 from &amp;lt;code&amp;gt;rz* )&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;ra* )&amp;lt;/code&amp;gt; since we're trying to install on an RA type disk which was apparently not supported in ULTRIX out of the box.&lt;br /&gt;
&lt;br /&gt;
Note: These changes also work for Ultrix 4.4. If you would like to try 4.2 or 4.3, use 164 instead of 173 and 184 instead of 193.&lt;br /&gt;
&lt;br /&gt;
After writing the file with &amp;lt;code&amp;gt;w&amp;lt;/code&amp;gt; and quitting ed with &amp;lt;code&amp;gt;q&amp;lt;/code&amp;gt;, we're back at the prompt, at which point we can use CTRL+D to retry the installation:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# ^D&lt;br /&gt;
*** STANDALONE ULTRIX ENVIRONMENT ***&lt;br /&gt;
&lt;br /&gt;
If you select the BASIC Installation option from the list that follows,&lt;br /&gt;
the installation software creates file systems on default partitions on&lt;br /&gt;
your system disk and loads the mandatory ULTRIX software subsets.&lt;br /&gt;
&lt;br /&gt;
If you require additional installation choices, select the ADVANCED&lt;br /&gt;
Installation option.&lt;br /&gt;
&lt;br /&gt;
Select one of the following options:&lt;br /&gt;
&lt;br /&gt;
        1) BASIC Installation&lt;br /&gt;
        2) ADVANCED Installation&lt;br /&gt;
        3) System management&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 2&lt;br /&gt;
&lt;br /&gt;
*** SYSTEM DISK SELECTION ***&lt;br /&gt;
&lt;br /&gt;
The 'Guide to Installing ULTRIX' explains the following table&lt;br /&gt;
of system disk drives.  Select one of the devices below to contain the&lt;br /&gt;
root file system:&lt;br /&gt;
&lt;br /&gt;
SYSTEM DISK TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0. Make sure this disk drive&lt;br /&gt;
is on line and write-enabled (if applicable to your disk drive), then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0, for your system disk? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The installation procedure now allocates the root file system on&lt;br /&gt;
partition 'a' of the system disk, ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
Making the root file system on ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
The installation procedure is now restoring the root file system to&lt;br /&gt;
partition 'a' of the system disk, ra0 RA90.&lt;br /&gt;
&lt;br /&gt;
The installation procedure now checks the root file system on partition 'a'&lt;br /&gt;
of the system disk, ra0  RA90.&lt;br /&gt;
** /dev/rra0a&lt;br /&gt;
** Last Mounted on /mnt&lt;br /&gt;
** Phase 1 - Check Blocks and Sizes&lt;br /&gt;
** Phase 2 - Check Pathnames&lt;br /&gt;
** Phase 3 - Check Connectivity&lt;br /&gt;
** Phase 4 - Check Reference Counts&lt;br /&gt;
** Phase 5 - Check Cyl groups&lt;br /&gt;
226 files, 4547 used, 11004 free (20 frags, 1373 blocks, 1.0% fragmentation)&lt;br /&gt;
&lt;br /&gt;
 *** BOOTSTRAP COMMAND SEQUENCE ***&lt;br /&gt;
&lt;br /&gt;
Enter the following boot sequence at the console mode prompt&lt;br /&gt;
after the installation software halts the processor:&lt;br /&gt;
&lt;br /&gt;
        &amp;gt;&amp;gt;&amp;gt; b dua0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 8007F799&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
After this, you will be back at the VAX boot prompt (if you used &amp;lt;code&amp;gt;set CPU CONHALT&amp;lt;/code&amp;gt; in your config) or at the SimH emulator prompt (if you used &amp;lt;code&amp;gt;set CPU SIMHALT&amp;lt;/code&amp;gt;, which is the default). In the latter case you will have to do &amp;lt;code&amp;gt;boot cpu&amp;lt;/code&amp;gt; again to get to the VAX boot prompt.&lt;br /&gt;
&lt;br /&gt;
==First boot==&lt;br /&gt;
Now we can boot the installed system from harddisk for the first time.&lt;br /&gt;
&lt;br /&gt;
If you want to, now would be a good time to take a backup copy of your disk files (or just create a btrfs snapshot or something if you have the possibility ;-)&lt;br /&gt;
&lt;br /&gt;
Okay, then let's boot from DUA0&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;boot dua0&lt;br /&gt;
(BOOT/R5:0 DUA0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA0&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 1153664&lt;br /&gt;
data = 281088&lt;br /&gt;
bss  = 1043548&lt;br /&gt;
Starting at 0x5219&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #3: Wed Oct 18 11:49:00 EDT 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 62008320&lt;br /&gt;
Buffer configuration adjusted to run with small system page table&lt;br /&gt;
using 121 buffers containing 991232 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
qe0 at uba0 csr 174440 vec 764, ipl 17&lt;br /&gt;
qe0: DEC DELQA Ethernet Interface DEQNA-lock Mode, hardware address 08:00:2b:04:14:02&lt;br /&gt;
lp0 at uba0 csr 177514 vec 200, ipl 17&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Here, it will seem to hang for a loooong time. A few minutes. Don't worry, it will eventually continue to boot. I guess it's probing for other devices which are not present.&lt;br /&gt;
&lt;br /&gt;
You ''might'' be able to speed this up a bit by interrupting SimH (press CTRL+E in the SimH console window) and then using &amp;lt;code&amp;gt;set CPU noidle&amp;lt;/code&amp;gt; followed by &amp;lt;code&amp;gt;go&amp;lt;/code&amp;gt; to resume emulation.&lt;br /&gt;
&lt;br /&gt;
Eventually, you will have to decide on a hostname. Note that if you want to play around with [[DECnet]] at some point, your hostname should be no longer than 6 characters.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
&lt;br /&gt;
 *** SYSTEM NAME SPECIFICATION ***&lt;br /&gt;
&lt;br /&gt;
Select the name of your system using alphanumeric characters.&lt;br /&gt;
The first character must be a letter.   For example, tinker.&lt;br /&gt;
&lt;br /&gt;
Enter your system name:  yuki&lt;br /&gt;
&lt;br /&gt;
You selected yuki as the name of your system.&lt;br /&gt;
Is this correct? (y/n) [y]: y&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the time configuration. Since Ultrix 4.5 is not Y2k compliant (AFAIK), I decided to set the clock back a whopping 20 years. Note that the timezone and daylight saving settings are for my location (Germany) and will probably vary for you.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** DATE AND TIME SPECIFICATION ***&lt;br /&gt;
&lt;br /&gt;
The current date and time should be specified using the following&lt;br /&gt;
format:&lt;br /&gt;
&lt;br /&gt;
        yymmddhhmm&lt;br /&gt;
&lt;br /&gt;
Use two digits for year (yy), month (mm), day (dd), hour (hh), and&lt;br /&gt;
minute (mm).  Enter the time in 24-hour format.  For example, 02:54&lt;br /&gt;
p.m. on Feb 2, 1993 would be entered as:&lt;br /&gt;
&lt;br /&gt;
        9302021454&lt;br /&gt;
&lt;br /&gt;
Enter the date and time: 9512052336&lt;br /&gt;
&lt;br /&gt;
*** TIME ZONE SELECTION ***&lt;br /&gt;
&lt;br /&gt;
Select the time zone for your area, using the options listed in the&lt;br /&gt;
table below.  You can also enter the number of hours (-12 to 12) in&lt;br /&gt;
time east of Greenwich.&lt;br /&gt;
&lt;br /&gt;
  Selection     Time Zone&lt;br /&gt;
---------------------------------&lt;br /&gt;
      e         Eastern&lt;br /&gt;
      c         Central&lt;br /&gt;
      m         Mountain&lt;br /&gt;
      p         Pacific&lt;br /&gt;
      g         Greenwich&lt;br /&gt;
---------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
Does your area alternate between Daylight Savings and Standard&lt;br /&gt;
time? (y/n) [y]: y&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select your geographic area for Daylight Savings Time, using the&lt;br /&gt;
options in the table below.&lt;br /&gt;
&lt;br /&gt;
  Selection     Geographic Area&lt;br /&gt;
--------------------------------&lt;br /&gt;
      u         USA&lt;br /&gt;
      a         Australia&lt;br /&gt;
      e         Eastern Europe&lt;br /&gt;
      c         Central Europe&lt;br /&gt;
      w         Western Europe&lt;br /&gt;
--------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice [u]: c&lt;br /&gt;
&lt;br /&gt;
The current date and time is Tue Dec  5 23:36:46 EST 1995&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the root password. Note that Ultrix will not echo anything here, I added the asterisks just for this guide :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** SPECIFY THE SUPERUSER PASSWORD ***&lt;br /&gt;
The Guide to Installing ULTRIX instructs you on how to enter&lt;br /&gt;
the superuser password.&lt;br /&gt;
Changing password for root&lt;br /&gt;
Enter new password: ******&lt;br /&gt;
Verify: ******&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next up is the filesystem layout, which is a bit more involved than what you know from more modern systems like MS DOS ;-)&lt;br /&gt;
&lt;br /&gt;
In ULTRIX, partitions are defined for each disk type in a file called &amp;lt;code&amp;gt;/etc/disktab&amp;lt;/code&amp;gt;. Note that the partitions overlap, so you shouldn't use them all at the same time. The setup script actually takes care of that for you, but if you later create a new filesystem on the wrong partition you ''WILL'' lose data!&lt;br /&gt;
&lt;br /&gt;
Normally, partition '''c''' is the whole disk, which is useful for add-on disk drives for example. Partitions '''a''' and '''b''' are always available and are traditionally used for the system and the swap-space respectively. The swap partition is also used for crashdumps if no separate crash-dump partition is created. The rest of the disk can be used either as a single partition (which is usually '''g''') or as 3 individual partitions ('''d''' to '''f'''). If the disk is larger than 1 gigabyte, you will get another partition, '''h''', after the g partition, probably because the filesystem cannot cope with partitions &amp;gt;1gig&lt;br /&gt;
&lt;br /&gt;
In our case, we will have the following partitions on the first disk (RA0):&lt;br /&gt;
*Partition '''a''' of 32 mb for /root&lt;br /&gt;
*Partition '''b''' of 64 mb for swap+crashdump&lt;br /&gt;
*Partition '''c''' of 1.2 gig (whole-disk, not used on our setup)&lt;br /&gt;
*Partition '''d''' and '''e''' of 200 mb each (not used)&lt;br /&gt;
*Partition '''f''' of 400 mb (not used)&lt;br /&gt;
*Partition '''g''' of 800 mb (overlaps with d, e and f; will become /usr)&lt;br /&gt;
*Partition '''h''' of 256 mb (will become /usr/var)&lt;br /&gt;
This way we still have the whole second disk available for later use.&lt;br /&gt;
&lt;br /&gt;
So here it goes:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** FILE SYSTEM DEFAULT OPTION ***&lt;br /&gt;
&lt;br /&gt;
The following table shows the default file system layout on RA90, ra0:&lt;br /&gt;
&lt;br /&gt;
partition     bottom        top       size    overlap       default&lt;br /&gt;
    a              0      32767      32768    c             root&lt;br /&gt;
    b          32768     159839     127072    c             swap, dump&lt;br /&gt;
    d         159840     580036     420197    c,g           /usr&lt;br /&gt;
&lt;br /&gt;
If you choose the defaults, the var area will be allocated to /usr/var.&lt;br /&gt;
&lt;br /&gt;
Do you want to choose the default file system layout? (y/n): n&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No, we do not want to use the defaults...&lt;br /&gt;
&lt;br /&gt;
First, we select disk 1, partition '''g''', for the /usr file system:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** /usr FILE SYSTEM ALLOCATION ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the /usr file system to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
/usr FILE SYSTEM ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for /usr file system? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the /usr file system:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    d     ---      210098       c,g&lt;br /&gt;
    e     ---      210098       c,g&lt;br /&gt;
    f     ---      420196       c,g&lt;br /&gt;
    g     ---      840393       c,d,e,f&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the /usr file system [d]: g&lt;br /&gt;
&lt;br /&gt;
Making the new file system for /usr on /dev/rra0g RA90&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Next, we select disk 1, partition '''b''' for swap (only 1 swap partition) and for crashdumps:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** ALLOCATE THE SWAP1 SPACE ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the swap1 space to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
SWAP1 SPACE ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for swap1 space? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the swap1 space:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    b     ---       63536       c&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the swap1 space [b]: b&lt;br /&gt;
&lt;br /&gt;
*** ALLOCATE THE SWAP2 SPACE ***&lt;br /&gt;
&lt;br /&gt;
Do you want to allocate a second swap space? (y/n) [n]: n&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** ALLOCATE THE CRASH DUMP SPACE ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the crash dump space to one of the disks listed in the&lt;br /&gt;
table below.  See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
CRASH DUMP SPACE ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for crash dump space? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the crash dump space:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
    b     ---       63536       c&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the crash dump space [b]: b&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally we select partiton '''h''' for the /var file system. This might not be large enough later on but then we can always migrate the data away if we need to...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** ALLOCATE THE var FILE SYSTEM ***&lt;br /&gt;
&lt;br /&gt;
You can allocate the var file system to one of the disks listed in the&lt;br /&gt;
table below. See the Guide to Installing ULTRIX for an explanation of&lt;br /&gt;
this table:&lt;br /&gt;
&lt;br /&gt;
var FILE SYSTEM ALLOCATION TABLE&lt;br /&gt;
&lt;br /&gt;
Selection   Device     ULTRIX     Device       Controller   Controller&lt;br /&gt;
            Name       Name       Number       Name         Number&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
    1       RA90        ra0          0         RQDX3          0&lt;br /&gt;
    2       RA90        ra1          1         RQDX3          0&lt;br /&gt;
----------------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter your choice: 1&lt;br /&gt;
&lt;br /&gt;
You selected RA90, device number 0.  Make sure this disk is&lt;br /&gt;
on line and write-enabled (if applicable to this drive) and then&lt;br /&gt;
confirm your choice.&lt;br /&gt;
&lt;br /&gt;
Use RA90, ra0 for var file system? (y/n) []: y&lt;br /&gt;
&lt;br /&gt;
The disk ra0 you selected from the previous table has the following&lt;br /&gt;
partitions available, on which you can allocate the var file system:&lt;br /&gt;
&lt;br /&gt;
partition      size (Kbytes)  overlap&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
    h     ---      267763       c&lt;br /&gt;
    g     ---      840393       c,d,e,f&lt;br /&gt;
------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Type the letter of the partition on which you want&lt;br /&gt;
to allocate the var file system [no default]: h&lt;br /&gt;
&lt;br /&gt;
Making the new file system for var on /dev/rra0h RA90&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Installing the distribution files==&lt;br /&gt;
&lt;br /&gt;
Next up we have to decide what ''packages'' we want to install (yes, ULTRIX already had its own package format and corresponding installer called ''setld''. It is very basic, probably most similar to ''pkg_add'' on NetBSD). We simply install everything, since we have enough space :)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
This distribution media includes subsets for ULTRIX Worksystem&lt;br /&gt;
Software (UWS).  A UWS license (on a workstation) or a UWS Server&lt;br /&gt;
License (on a timesharing machine or server) is required to install&lt;br /&gt;
these subsets.&lt;br /&gt;
&lt;br /&gt;
Do you want to install ULTRIX Worksystem Software? y/n []: y&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** SUPPORTED SOFTWARE INSTALLATION ***&lt;br /&gt;
&lt;br /&gt;
*** Select the DECwindows User Interface ***&lt;br /&gt;
&lt;br /&gt;
1) DECwindows for OSF/Motif&lt;br /&gt;
2) X11/DECwindows (XUI)&lt;br /&gt;
&lt;br /&gt;
Enter your choice [1]: 2&lt;br /&gt;
&lt;br /&gt;
*** Enter Subset Selections ***&lt;br /&gt;
&lt;br /&gt;
The following subsets are mandatory and will be installed automatically:&lt;br /&gt;
 * Base System                           * Kernel Config Files&lt;br /&gt;
 * TCP/IP Networking Utilities           * Network File System Utilities&lt;br /&gt;
 * Extended (Berkeley) Mailer            * X11/DECwindows Servers&lt;br /&gt;
 * X11/DECwindows User Environment       * X11/DECwindows 75dpi Fonts&lt;br /&gt;
&lt;br /&gt;
The subsets listed below are optional:&lt;br /&gt;
 1) Printer Support Environment          2) RAND Mail Handler&lt;br /&gt;
 3) Sys. Config. Mgmt. Program (SCAMP)   4) Communications Utilities&lt;br /&gt;
 5) Unix-to-Unix Copy Facility           6) Maintenance Operations Protocol&lt;br /&gt;
 7) Accounting Software                  8) Kerberos Network Authentication&lt;br /&gt;
 9) Enhanced Security Features          10) Prestoserve Utilities&lt;br /&gt;
11) System Exerciser Package            12) Bisynchronous Communications&lt;br /&gt;
13) Doc. Preparation for Ref. Pages     14) Doc. Preparation Extensions&lt;br /&gt;
15) Adobe Font Metric Files             16) Software Development Utilities&lt;br /&gt;
17) Source Code Control System          18) Internationalization Runtime Env.&lt;br /&gt;
19) Internationalization Dev. Env.      20) CDA Base System&lt;br /&gt;
21) CDA Software Dev Libraries          22) RPC Runtime Environment&lt;br /&gt;
23) RPC Development Environment         24) Pascal Development Package&lt;br /&gt;
25) VAX C/ULTRIX                        26) Ref. Pages for Sys. Admin. &amp;amp; Users&lt;br /&gt;
27) Reference Pages for Programers      28) Programming Examples&lt;br /&gt;
29) Ultrix SPDS                         30) X11/DECwindows 100dpi Fonts&lt;br /&gt;
31) VS35XX X11/DECwindows Fonts         32) Additional DECwindows Applications&lt;br /&gt;
33) DECwindows Mail Application         34) Worksystem Development Environment&lt;br /&gt;
35) X11/DECwindows System Management T  36) UWS Runtime Reference Pages&lt;br /&gt;
37) UWS Development Reference Pages&lt;br /&gt;
&lt;br /&gt;
38) All mandatory and all optional subsets&lt;br /&gt;
39) Mandatory subsets only&lt;br /&gt;
40) Exit without installing subsets&lt;br /&gt;
&lt;br /&gt;
Enter your choice(s): 38&lt;br /&gt;
        Working....Wed Dec  6 00:14:12 EST 1995&lt;br /&gt;
&lt;br /&gt;
You are installing the following subsets:&lt;br /&gt;
   Base System                             Kernel Config Files&lt;br /&gt;
   TCP/IP Networking Utilities             Network File System Utilities&lt;br /&gt;
   Extended (Berkeley) Mailer              X11/DECwindows Servers&lt;br /&gt;
   X11/DECwindows User Environment         X11/DECwindows 75dpi Fonts&lt;br /&gt;
   Printer Support Environment             RAND Mail Handler&lt;br /&gt;
   Sys. Config. Mgmt. Program (SCAMP)      Communications Utilities&lt;br /&gt;
   Unix-to-Unix Copy Facility              Maintenance Operations Protocol&lt;br /&gt;
   Accounting Software                     Kerberos Network Authentication&lt;br /&gt;
   Enhanced Security Features              Prestoserve Utilities&lt;br /&gt;
   System Exerciser Package                Bisynchronous Communications&lt;br /&gt;
   Doc. Preparation for Ref. Pages         Doc. Preparation Extensions&lt;br /&gt;
   Adobe Font Metric Files                 Software Development Utilities&lt;br /&gt;
   Source Code Control System              Internationalization Runtime Env.&lt;br /&gt;
   Internationalization Dev. Env.          CDA Base System&lt;br /&gt;
   CDA Software Dev Libraries              RPC Runtime Environment&lt;br /&gt;
   RPC Development Environment             Pascal Development Package&lt;br /&gt;
   VAX C/ULTRIX                            Ref. Pages for Sys. Admin. &amp;amp; Users&lt;br /&gt;
   Reference Pages for Programers          Programming Examples&lt;br /&gt;
   Ultrix SPDS                             X11/DECwindows 100dpi Fonts&lt;br /&gt;
   VS35XX X11/DECwindows Fonts             Additional DECwindows Applications&lt;br /&gt;
   DECwindows Mail Application             Worksystem Development Environment&lt;br /&gt;
   X11/DECwindows System Management To     UWS Runtime Reference Pages&lt;br /&gt;
   UWS Development Reference Pages&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n): y&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The installation will take a while (around 15-30 minutes for me), so feel free to let it run in the background for a while now. The installer will periodically print its status so you can see that it's still running...&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Base System  (ULTBASE450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
        Working....Wed Dec  6 00:14:43 EST 1995&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
Kernel Config Files  (ULTBIN450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
        Working....Wed Dec  6 00:15:28 EST 1995&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
At some point you will have to confirm installing the generic kernel and the X11 subsystem:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
UWS Runtime Reference Pages (UWSMAN450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
UWS Development Reference Pages (UWSMANPGMR450)&lt;br /&gt;
   Copying from /mnt/VAX/BASE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
The installation software has successfully installed the software&lt;br /&gt;
subsets.&lt;br /&gt;
Installing Upgrade subsets&lt;br /&gt;
The following subsets will be installed:&lt;br /&gt;
 * X11/DECwindows Servers Upgrade        * Generic Kernel&lt;br /&gt;
Do you wish to continue? (y/n): y&lt;br /&gt;
&lt;br /&gt;
X11/DECwindows Servers Upgrade (UWSSER451)&lt;br /&gt;
   Copying from /mnt/VAX/BASE_UPGRADE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
Generic Kernel  (ULTGENVMUNIX451)&lt;br /&gt;
   Copying from /mnt/VAX/BASE_UPGRADE (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
The installation procedure has successfully installed the Upgrade&lt;br /&gt;
subsets&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That's it for the base installation, now we configure our kernel...&lt;br /&gt;
&lt;br /&gt;
==Kernel configuration==&lt;br /&gt;
We have to select what features will be in the kernel. For anyone who has ever done a &amp;quot;make menuconfig&amp;quot; on Linux, this is ''slightly'' easier here ;-)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
*** CONFIGURATION FILE KERNEL OPTION SELECTION ***&lt;br /&gt;
&lt;br /&gt;
    Selection   Kernel Option&lt;br /&gt;
---------------------------------------------------------------&lt;br /&gt;
        1       Local Area Transport (LAT)&lt;br /&gt;
        2       Bisynchronous Communication protocol (VAX only)&lt;br /&gt;
        3       Computer Interconnect (CI) network&lt;br /&gt;
        4       Diagnostic/Utilities Protocol (DUP)&lt;br /&gt;
        5       ISO9660 File System Support (CDFS)&lt;br /&gt;
        6       Ethernet Packet Filter&lt;br /&gt;
        7       Enhanced Security Features&lt;br /&gt;
        8       All of the above&lt;br /&gt;
        9       None of the above&lt;br /&gt;
----------------------------------------------------------------&lt;br /&gt;
&lt;br /&gt;
Enter the selection number for each kernel option you want.&lt;br /&gt;
For example, 1 3 :&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In our case, we don't need 2 (it is for 2780/3780 remote terminals), 3 (SimH doesn't emulate any cluster hardware) or 6 (it might cause problems with DECwindows/Motif). Everything else (&amp;lt;code&amp;gt;1 4 5 7&amp;lt;/code&amp;gt;) is probably safe. This lets us play around with LAT (maybe connect an emulated Cisco router with LAT routing to it?) and DUP.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Enter the selection number for each kernel option you want.&lt;br /&gt;
For example, 1 3 :  1 4 5 7&lt;br /&gt;
&lt;br /&gt;
You specified the following kernel options:&lt;br /&gt;
&lt;br /&gt;
        Local Area Transport (LAT)&lt;br /&gt;
        Diagnostic/Utilities Protocol (DUP)&lt;br /&gt;
        ISO9660 File System Support (CDFS)&lt;br /&gt;
        Enhanced Security Features&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n) [n]: y&lt;br /&gt;
&lt;br /&gt;
*** SYSTEM CONFIGURATION PROCEDURE ***&lt;br /&gt;
The installation software found these devices in the floating&lt;br /&gt;
address space:&lt;br /&gt;
&lt;br /&gt;
        dz0             on uba0         at 0160100&lt;br /&gt;
        dz1             on uba0         at 0160110&lt;br /&gt;
        dz2             on uba0         at 0160120&lt;br /&gt;
        dz3             on uba0         at 0160130&lt;br /&gt;
&lt;br /&gt;
Configuration file complete.&lt;br /&gt;
&lt;br /&gt;
Do you want to edit the configuration file? (y/n) [n]: n&lt;br /&gt;
&lt;br /&gt;
*** PERFORMING SYSTEM CONFIGURATION ***&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    working ..... Wed Dec  6 02:29:10 EST 1995&lt;br /&gt;
&lt;br /&gt;
*** DEVICE SPECIAL FILE CREATION ***&lt;br /&gt;
    working ..... Wed Dec  6 02:29:53 EST 1995&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE INSTALLATION PROCEDURE COMPLETE ***&lt;br /&gt;
&lt;br /&gt;
The following files were created during the installation procedure:&lt;br /&gt;
&lt;br /&gt;
/vmunix                         - customized kernel&lt;br /&gt;
/genvmunix                      - generic kernel&lt;br /&gt;
/usr/adm/install.log            - installation log file&lt;br /&gt;
/usr/adm/install.FS.log         - file systems log file&lt;br /&gt;
/usr/adm/install.DEV.log        - special device log file&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter the following boot sequence at the console mode prompt&lt;br /&gt;
after the installation software halts the processor:&lt;br /&gt;
&lt;br /&gt;
        &amp;gt;&amp;gt;&amp;gt; b dua0&lt;br /&gt;
&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 800985B5&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now you might want to take another backup of your disk images, since the ULTRIX installation is now basically complete.&lt;br /&gt;
&lt;br /&gt;
==Adding the unsupported sets==&lt;br /&gt;
Now there are some more pieces of software in the CDROM, in a directory called ''unsupported''. We want to install these as well. First, let's boot our system again&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;b dua0&lt;br /&gt;
(BOOT/R5:0 DUA0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  2..&lt;br /&gt;
-DUA0&lt;br /&gt;
  1..0..&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Ultrixboot - V4.5  Sun Sep 17 13:03:13 EDT 1995&lt;br /&gt;
&lt;br /&gt;
Loading (a)vmunix ...&lt;br /&gt;
&lt;br /&gt;
Sizes:&lt;br /&gt;
text = 747376&lt;br /&gt;
data = 125952&lt;br /&gt;
bss  = 918192&lt;br /&gt;
Starting at 0x2c19&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #1: Wed Dec  6 02:29:50 EST 1995&lt;br /&gt;
real mem  = 67043328&lt;br /&gt;
avail mem = 56455168&lt;br /&gt;
using 1638 buffers containing 6712320 bytes of memory&lt;br /&gt;
KA655 processor with an FPU&lt;br /&gt;
        CPU microcode rev = 6, processor firmware rev = 83&lt;br /&gt;
Q22 bus&lt;br /&gt;
uda0 at uba0&lt;br /&gt;
uq0 at uda0 csr 172150 vec 774, ipl 17&lt;br /&gt;
klesiu0 at uba0&lt;br /&gt;
uq16 at klesiu0 csr 174500 vec 770, ipl 17&lt;br /&gt;
qe0 at uba0 csr 174440 vec 764, ipl 17&lt;br /&gt;
qe0: DEC DELQA Ethernet Interface DEQNA-lock Mode, hardware address 08:00:2b:04:14:02&lt;br /&gt;
lp0 at uba0 csr 177514 vec 200, ipl 17&lt;br /&gt;
dz0 at uba0 csr 160100 vec 300, ipl 17&lt;br /&gt;
dz1 at uba0 csr 160110 vec 310, ipl 17&lt;br /&gt;
dz2 at uba0 csr 160120 vec 320, ipl 17&lt;br /&gt;
dz3 at uba0 csr 160130 vec 330, ipl 17&lt;br /&gt;
ra1 at uq0 slave 1 (RA90)&lt;br /&gt;
ra2 at uq0 slave 2 (RRD40)&lt;br /&gt;
ra0 at uq0 slave 0 (RA90)&lt;br /&gt;
tms0 at uq16 slave 0 (TK50)&lt;br /&gt;
Wed Dec  6 11:25:29 MET 1995&lt;br /&gt;
Automatic reboot in progress...&lt;br /&gt;
/dev/ra0a: 644 files, 6161 used, 9390 free (166 frags, 1153 blocks, 5.0% fragmentation)&lt;br /&gt;
/dev/rra0g: umounted cleanly&lt;br /&gt;
/dev/rra0h: umounted cleanly&lt;br /&gt;
Warning Creating new license database&lt;br /&gt;
Warning creating new history file&lt;br /&gt;
check quotas: done.&lt;br /&gt;
savecore: checking for dump...dump does not exist&lt;br /&gt;
local daemons: syslog sendmail.&lt;br /&gt;
Removing remnant Opser files&lt;br /&gt;
preserving editor files&lt;br /&gt;
clearing /tmp&lt;br /&gt;
standard daemons: update cron accounting network snmpd printer.&lt;br /&gt;
start errlog daemon - elcsd&lt;br /&gt;
Wed Dec  6 11:25:48 MET 1995&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) System #1: Wed Dec  6 02:29:50 EST 1995&lt;br /&gt;
UWS V4.5 (Rev. 6)&lt;br /&gt;
&lt;br /&gt;
                Digital Equipment Corporation&lt;br /&gt;
                Nashua, New Hampshire&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*** SOFTWARE INSTALLATION PROCEDURE COMPLETE ***&lt;br /&gt;
&lt;br /&gt;
The following files were created during the installation procedure:&lt;br /&gt;
&lt;br /&gt;
/vmunix                         - customized kernel&lt;br /&gt;
/genvmunix                      - generic kernel&lt;br /&gt;
/usr/adm/install.log            - installation log file&lt;br /&gt;
/usr/adm/install.FS.log         - file systems log file&lt;br /&gt;
/usr/adm/install.DEV.log        - special device log file&lt;br /&gt;
&lt;br /&gt;
#&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
now, we mount the CDROM and use &amp;lt;code&amp;gt;setld&amp;lt;/code&amp;gt; to install the unsupported packages. For simplicity's sake, we just (again) install everything.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# mount -r /dev/ra2c /mnt&lt;br /&gt;
# cd /mnt/VAX/UNSUPPORTED&lt;br /&gt;
# ls&lt;br /&gt;
DXVUNDEMO450    ULXDOC450       ULXINGRES450    ULXRCS450       ULXUNMAN450&lt;br /&gt;
ULXAPL450       ULXEDIT450      ULXLEARN450     ULXSHELLS450    ULXUNMIT450&lt;br /&gt;
ULXBASE450      ULXF77450       ULXLISP450      ULXSPMS450      ULXVARIAN450&lt;br /&gt;
ULXBIB450       ULXGAMES450     ULXMAN450       ULXTERM450      instctrl&lt;br /&gt;
ULXCOURIER450   ULXHYPER450     ULXMOD2450      ULXTOOLS450&lt;br /&gt;
ULXCPM450       ULXICON450      ULXNEWS450      ULXUNEXAMP450&lt;br /&gt;
ULXDCMT450      ULXINET450      ULXNOTES450     ULXUNFONTS450&lt;br /&gt;
# setld -l .&lt;br /&gt;
&lt;br /&gt;
*** Enter Subset Selections ***&lt;br /&gt;
&lt;br /&gt;
The subsets listed below are optional:&lt;br /&gt;
 1) Base Extension                       2) GNU Emacs&lt;br /&gt;
 3) TCP/IP Networking Util Extension     4) Additional Terminal Drivers&lt;br /&gt;
 5) Document Preparation Software        6) Games and Diversions&lt;br /&gt;
 7) Supplementary Documentation          8) Bibliographic Utilities&lt;br /&gt;
 9) Remote Procedure Call Compiler      10) Aux. Command Line Interpreters&lt;br /&gt;
11) USENET News Interface Software      12) Notesfiles Package&lt;br /&gt;
13) Revision Control System             14) Misc. User-Contributed Utilities&lt;br /&gt;
15) Computer Aided System Tutor         16) Franz Lisp Development Package&lt;br /&gt;
17) Modula-2 Development Package        18) Raster Plotter Package&lt;br /&gt;
19) APL Development Package             20) CP/M 8in Diskette Utility&lt;br /&gt;
21) Hyperchannel Utilities              22) ICON (Language) Development Packag&lt;br /&gt;
23) University Ingres QUEL DBMS         24) Software Project Management System&lt;br /&gt;
25) Unsupported Fortran Utilities       26) Unsupported On-Line Documentation&lt;br /&gt;
27) Unsupported X11 Components          28) Unsupported DECwindows Examples&lt;br /&gt;
29) Unsupported MIT Fonts               30) Unsupported X11 Reference Pages&lt;br /&gt;
31) Unsupported OSF/Motif Demos&lt;br /&gt;
&lt;br /&gt;
32) All mandatory and all optional subsets&lt;br /&gt;
33) Mandatory subsets only&lt;br /&gt;
34) Exit without installing subsets&lt;br /&gt;
&lt;br /&gt;
Enter your choice(s): 32&lt;br /&gt;
        Working....Wed Dec  6 11:29:48 MET 1995&lt;br /&gt;
         Wed Dec 6 11:30:00 MET 1995&lt;br /&gt;
&lt;br /&gt;
You are installing the following subsets:&lt;br /&gt;
   Base Extension                          GNU Emacs&lt;br /&gt;
   TCP/IP Networking Util Extension        Additional Terminal Drivers&lt;br /&gt;
   Document Preparation Software           Games and Diversions&lt;br /&gt;
   Supplementary Documentation             Bibliographic Utilities&lt;br /&gt;
   Remote Procedure Call Compiler          Aux. Command Line Interpreters&lt;br /&gt;
   USENET News Interface Software          Notesfiles Package&lt;br /&gt;
   Revision Control System                 Misc. User-Contributed Utilities&lt;br /&gt;
   Computer Aided System Tutor             Franz Lisp Development Package&lt;br /&gt;
   Modula-2 Development Package            Raster Plotter Package&lt;br /&gt;
   APL Development Package                 CP/M 8in Diskette Utility&lt;br /&gt;
   Hyperchannel Utilities                  ICON (Language) Development Package&lt;br /&gt;
   University Ingres QUEL DBMS             Software Project Management System&lt;br /&gt;
   Unsupported Fortran Utilities           Unsupported On-Line Documentation&lt;br /&gt;
   Unsupported X11 Components              Unsupported DECwindows Examples&lt;br /&gt;
   Unsupported MIT Fonts                   Unsupported X11 Reference Pages&lt;br /&gt;
   Unsupported OSF/Motif Demos&lt;br /&gt;
&lt;br /&gt;
Is this correct? (y/n): y&lt;br /&gt;
&lt;br /&gt;
Base Extension (ULXBASE450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
GNU Emacs (ULXEDIT450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
&lt;br /&gt;
TCP/IP Networking Util Extension (ULXINET450)&lt;br /&gt;
   Copying from . (disk)&lt;br /&gt;
   Verifying&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that you could also quickly install only a single package by using for example&lt;br /&gt;
 # setld -l . ULXINET450&lt;br /&gt;
&lt;br /&gt;
After a few minutes, installation will be completed and we should unmount the CDROM&lt;br /&gt;
 # cd /&lt;br /&gt;
 # umount /mnt&lt;br /&gt;
&lt;br /&gt;
==Network configuration==&lt;br /&gt;
To configure the network, you have to use a static IPv4 address and put that into the beginning of /etc/rc.local. Note that there is no &amp;lt;code&amp;gt;ifconfig -a&amp;lt;/code&amp;gt; in ULTRIX, you have to use &amp;lt;code&amp;gt;netstat -i&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# netstat -i&lt;br /&gt;
Name   Mtu   Network     Address            Ipkts Ierrs    Opkts Oerrs  Coll&lt;br /&gt;
qe0*   1500  none        none                   0     0        0     0     0&lt;br /&gt;
lo0    1536  loop        localhost              1     0        1     0     0&lt;br /&gt;
# ifconfig qe0 192.168.1.44 netmask 255.255.255.0 up&lt;br /&gt;
# route add default 192.168.1.1 1&lt;br /&gt;
add net default: gateway 192.168.1.1&lt;br /&gt;
# ping 192.168.1.1&lt;br /&gt;
192.168.1.1 is alive&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Note that it might actually take a while until packets are getting through. I don't know why but in my case it helped to ping ULTRIX from the outside first, e.g. from Windows, and then re-try the ping from the VM. Then it worked. I'm guessing this is some SimH/Windows issue with PCAP or something.&lt;br /&gt;
&lt;br /&gt;
Then put these 2 commands at the start of &amp;lt;code&amp;gt;/etc/rc.local&amp;lt;/code&amp;gt; (you'll see where). Note that you can use &amp;lt;code&amp;gt;vi&amp;lt;/code&amp;gt; now!&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# @(#)rc.local  9.4     (ULTRIX)        9/21/95&lt;br /&gt;
/bin/hostname yuki&lt;br /&gt;
#/etc/ifconfig HDWR `/bin/hostname` broadcast NETNUM.0 netmask 255.0&lt;br /&gt;
/etc/ifconfig qe0 192.168.1.44 netmask 255.255.255.0&lt;br /&gt;
route add default 192.168.1.1 1&lt;br /&gt;
/etc/ifconfig lo0 localhost&lt;br /&gt;
#/etc/bscconfig dup0 bsc 1&lt;br /&gt;
#/etc/bscconfig dpv0 bsc 1&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that DNS lookups normally don't work out of the box. Create a basic &amp;lt;code&amp;gt;/etc/resolv.conf&amp;lt;/code&amp;gt; file with the following content (or whatever is correct in your environment)&lt;br /&gt;
 domain lan.local&lt;br /&gt;
 nameserver 192.168.1.1&lt;br /&gt;
&lt;br /&gt;
However, if you then try to do an nslookup query, you will get an error message&lt;br /&gt;
 # nslookup www.google.com&lt;br /&gt;
 *** Can't find server name for address 192.168.1.1: Not implemented&lt;br /&gt;
 *** Default servers are not available&lt;br /&gt;
The problem is that ULTRIX sends so-called ''inverse queries'' (not to be confused with the well-known ''reverse lookups'', which are actually just regular forward lookups to a specific TLD) to map IP addresses to hostnames. Most DNS servers don't support these inverse queries anymore. Apparently, BIND8 still included an option &amp;quot;fake-iquery&amp;quot; which might be used to support these queries. Versions before BIND8 (4.x) supported IQUERY natively. I have yet to test both variants to see which (if any) of them work.&lt;br /&gt;
&lt;br /&gt;
==Shutting down cleanly==&lt;br /&gt;
As you'd expect, you can use &amp;lt;code&amp;gt;shutdown&amp;lt;/code&amp;gt; to shut the system down&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# shutdown -h now&lt;br /&gt;
Shutdown at 11:15 (in 0 minutes) [pid 1500]&lt;br /&gt;
#&lt;br /&gt;
System shutdown time has arrived&lt;br /&gt;
syncing disks... done&lt;br /&gt;
&lt;br /&gt;
?06 HLT INST&lt;br /&gt;
        PC = 80094CDD&lt;br /&gt;
&amp;gt;&amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Enabling outside access==&lt;br /&gt;
The SimH config above includes a 16-line serial multiplexer. If you connect via TELNET to port 1005, you are given the first free serial line of the emulated DZ device. However, serial login is disabled by default, so it has to be enabled first. That's what the &amp;lt;code&amp;gt;/etc/ttys&amp;lt;/code&amp;gt; file is for. Edit the file and change the ''off'' to ''on'' in the lines for tty00 to tty07, as shown below&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# @(#)ttys      9.1 (ULTRIX) 4/26/94&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
#&lt;br /&gt;
# name  getty           type            status          comments&lt;br /&gt;
#&lt;br /&gt;
console &amp;quot;/etc/getty std.9600&amp;quot; vt100     on secure       # console terminal&lt;br /&gt;
tty00   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty01   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty02   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty03   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty04   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty05   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty06   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
tty07   &amp;quot;/etc/getty std.9600&amp;quot; vt100     on nomodem      # direct connect tty&lt;br /&gt;
ttyd0   &amp;quot;/etc/getty std.9600&amp;quot; vt100     off shared secure # modem line&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you want to be able to login as root on these terminals, you can also add the &amp;lt;code&amp;gt;secure&amp;lt;/code&amp;gt; flag as well. Also note that while it seems tempting to increase the line speed to 19200 or even higher, from my experience that will cause massive lags and emulation hangs in SimH, so do that on your own risk.&lt;br /&gt;
&lt;br /&gt;
After editing the file and saving it, you have to reload init:&lt;br /&gt;
 # kill -HUP 1&lt;br /&gt;
&lt;br /&gt;
Now try logging in to port 1005 via telnet, and you should be greeted with this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Connected to the MicroVAX 3900 simulator DZ device, line 0&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
Requires secure terminal&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note that SimH will print out the serial line to which you are connected, in this case line 0 which is /dev/tty00.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Also, if your inetd is running (which it should be, if you followed this guide), you will also already be able to login remotely using telnet.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ULTRIX V4.5 (Rev. 47) (yuki)&lt;br /&gt;
&lt;br /&gt;
login: root&lt;br /&gt;
Password:&lt;br /&gt;
Requires secure terminal&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
To enable root access for all telnet sessions, you will have to edit the /etc/ttys file and change every line that starts with &amp;quot;ttyp&amp;quot; to include the secure flag:&lt;br /&gt;
 ttyp0   none            network&lt;br /&gt;
will become&lt;br /&gt;
 ttyp0   none            network secure&lt;br /&gt;
and so on...&lt;br /&gt;
&lt;br /&gt;
==Resources==&lt;br /&gt;
Some of the resources I used for creating this guide:&lt;br /&gt;
*ULTRIX 4.5 installation ISO [http://musall.de/mirrors/ultrix/ultrix_os/vax/]&lt;br /&gt;
*ULTRIX-32 startup and shutdown guide [http://bitsavers.trailing-edge.com/pdf/dec/vax/ultrix-32/3.0/AA-ME91A-TE_ULTRIX-32_Guide_to_System_Shutdown_and_Startup.pdf]&lt;br /&gt;
*CERN guide to installing ULTRIX [https://web-docs.gsi.de/~kraemer/COLLECTION/ULTRIX/wwwpdp.web.cern.ch/wwwpdp/as/file/doc/ultrix/ultrix.pdf]&lt;br /&gt;
*My old guide for installing ULTRIX [https://docs.google.com/document/d/1ULRhzE0R1twarB5hfJm85yqOdTeoFCGgyPr5AxYEIbE]&lt;br /&gt;
*DEC KA655 CPU System Maintenance [http://bitsavers.trailing-edge.com/pdf/dec/vax/655/EK-306A-MG-001_655Mnt_Mar89.pdf]&lt;br /&gt;
*Some notes and links to more ULTRIX information [https://web-docs.gsi.de/~kraemer/COLLECTION/ULTRIX/docs.html]&lt;br /&gt;
*Ultrix Guide to Disk Maintenance [http://www.carelife.com/manuals/Ultrix_Guide_Disk_Maint.PDF]&lt;br /&gt;
*Some random notes about ULTRIX 4.0 (some also apply to 4.5) [http://apfelboymchen.net/gnu/UNIX/vax-ultrix.html]&lt;br /&gt;
&lt;br /&gt;
[[Category:SIMH Tutorials]]&lt;br /&gt;
[[Category: ULTRIX]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_R-Series&amp;diff=29796</id>
		<title>Tandy 1000 R-Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_R-Series&amp;diff=29796"/>
				<updated>2023-05-24T19:56:10Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Fixed minor labeling error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Tandy 1000 R-Series''' was the final series of the Tandy 1000 family. The lowest common denominator between them was a low-profile case in a similar design scheme to the SL and TL systems.  This low-profile case had room for only one 8-bit ISA card (16-bit in the 1000 RSX). The processors of this series range from Intel 8086 to Intel 80386SX. This is the most varied of all the series and not long after the last model, the Tandy 1000 RSX, Radio Shack started selling AST computers in their stores instead of the long tradition of branded systems.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RL (RL/HD)&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 9.54 MHz&lt;br /&gt;
| ram = 512 KB expandable up to 768 KB (see note below)&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| predecessor = Tandy 1000 HX, 1000 SL/2&lt;br /&gt;
| successor = Tandy 1000 RLX&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RL and RL/HD==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 RL''' was the last of the 8-bit processor Tandy 1000s. It was almost identical in features to the 1000 SL/2 except the low profile case and a slightly fast Intel 8086. The '''RL/HD''' variant includes a 20 MB hard disk drive. One nice, additional feature is [[Deskmate]] 3.69, bundled with both the 1000 RL and 1000 RLX. This version includes an expanded version of the Deskmate Home Organizer add-on integrated into Deskmate. Home Organizer includes a recipe database, a budgeting program, and other &amp;quot;applications.&amp;quot; The added features to Home Organizer includes &amp;quot;Smart Home&amp;quot; functionality years before it caught on.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RLX (RLX/HD)&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 80286]]&lt;br /&gt;
| clock speed = 10 MHz&lt;br /&gt;
| ram = 512 KB expandable up to 1 MB&lt;br /&gt;
| graphics = [[VGA]]&lt;br /&gt;
| predecessor = Tandy 1000 RL, [[Tandy 1000 T-Series|Tandy 1000 TL/3]]&lt;br /&gt;
| successor = Tandy 1000 RSX&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RLX and RLX/HD==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 RLX''' is to the Tandy 1000 TL/3 as the 1000 RL is to the 1000 SL/2. Besides the low-profile case, the main differences are expandable up to 1 MB RAM, a standard 1.44 MB 3 and a half inch floppy disk drive and Deskmate 3.69 (see 1000 RL above). The 1000 RL/HD includes a 20 MB hard disk drive.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RSX&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 80386SX]]&lt;br /&gt;
| clock speed = 25 MHz&lt;br /&gt;
| ram = 1 MB expandable up to 9 MB&lt;br /&gt;
| graphics = [[SVGA]]&lt;br /&gt;
| predecessor = Tandy 1000 RLX&lt;br /&gt;
| successor = [[Tandy Sensation]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RSX==&lt;br /&gt;
&lt;br /&gt;
The final Tandy 1000 model, the '''Tandy 1000 RSX''' is unique to all other Tandy 1000 systems. It has the same low-profile case like the RL and RLX. Honestly, this released after I left Radio Shack and was not featured in a Radio Shack Computer Catalog, so Wikipedia says it better.&lt;br /&gt;
&lt;br /&gt;
:A more upscale offering, the RSX offers a 25&amp;amp;nbsp;MHz 80386SX processor, 1 MB RAM, two 16-bit ISA slots, AcuMos SVGA video, a bidirectional parallel port, and standard PS/2 keyboard and mouse ports. It is a full 386-class PC and can run Microsoft Windows 3.x. Two sockets for SIMM memory cards are available. Only 1 MB or 4 MB SIMMs of the 9-chip type are supported, and if two are installed they have to be of like capacity. With two 4 MB SIMMs installed, the 1000 RSX can be expanded to 9 MB RAM without using an ISA slot. The RSX/HD variant comes with a 52 MB hard drive using an AT-compatible IDE interface; replacement hard drives up to 504 MB can be substituted. Because of the slimline case, only one hard drive can be installed alongside the 1.44 MB 3.5&amp;quot; floppy drive.&lt;br /&gt;
&lt;br /&gt;
:The motherboard has a socket for the 80387SX math coprocessor. The RSX still retains the Tandy 1000 3-voice sound hardware and DAC, though the I/O address for the 3-voice sound chip was moved, rendering many games compatible with it unable to play music unless modified. The DAC can be used to emulate the Covox Speech Thing via MS-DOS device drivers for limited sound support. This works with Chuck Yeager's Air Combat.&lt;br /&gt;
&lt;br /&gt;
:Windows 3.xx sound device drivers are available that work in Windows 95 (with full 9MB RAM) on Tandy 1000 RSX.&lt;br /&gt;
The ACUMOS VGA graphics can be software-updated with Cirrus Logic BIOS (via MS-DOS driver) to allow VESA/SVGA to function in Windows 95, as the Windows 3.xx Tandy VGA drivers are insufficient for Windows 95.&lt;br /&gt;
: {{wikipedia}}&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
This line marked the end of the Tandy 1000 series and the only computers released with the Tandy name badge were the Tandy Sensation and Tandy Sensation II. There are no emulators for this series but you can run Deskmate with the separate Home Organizer add-on with [[DOSBox-x]].&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29795</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29795"/>
				<updated>2023-05-24T19:54:20Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Fixed minor errors in in-article links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family#TRS-80 Model|TRS-80 Model I]] • [[TRS-80 Model II Family#TRS-80 Model II|TRS-80 Model II]] • [[TRS-80 Model I Family#TRS-80 Model III|TRS-80 Model III]] • [[TRS-80 Model I Family#TRS-80 Model 4|TRS-80 Model 4, 4P, and 4D]] • [[TRS-80 Model II Family#Model 12|TRS-80 Model 12]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family#Model 16|TRS-80 Model 16]] • [[TRS-80 Model II Family#Model 16B|TRS-80 Model 16B]] • [[TRS-80 Model II Family#Tandy 6000|Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family#Color Computer 1|TRS-80 Color Computer 1]] • [[TRS-80 Color Computer Family#Tandy Color Computer 2|Color Computer 2]] • [[TRS-80 Color Computer Family#Color Computer 3|Tandy Color Computer 3]] • [[TRS-80 MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX#Tandy 1000 EX|EX]] - [[Tandy 1000 EX and HX#Tandy 1000 HX|HX]] - [[Tandy 1000 S-Series#Tandy 1000 SX|SX]] - [[Tandy 1000 S-Series#Tandy 1000 SL|SL]] - [[Tandy 1000 S-Series#Tandy 1000 SL.2F2|SL/2]] - [[Tandy 1000 T-Series#Tandy 1000 TX|TX]] - [[Tandy 1000 T-Series#Tandy 1000 TL|TL]] - [[Tandy 1000 T-Series#Tandy 1000 TL.2F2|TL/2]] - [[Tandy 1000 T-Series#Tandy 1000 TL.2F3|TL/3]] - [[Tandy 1000 R-Series#Tandy 1000 RL and RL.2FHD|RL(RL/HD)]] - [[Tandy 1000 R-Series#Tandy 1000 RLX and RLX.2FHD|RLX(RLX/HD)]] - [[Tandy 1000 R-Series#Tandy 1000 RSX|RSX(RSX/HD)]] • [[Tandy Sensation]] • [[Other Tandy Compatible PC Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family#TRS-80 Model 100|TRS -80 Model 100]] • [[TRS-80 Model 100 Family#Tandy 102|Tandy 102]] • [[TRS-80 Model 100 Family#Tandy 200|Tandy 200]] • [[Tandy 600]] • [[Tandy Compatible PC Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 SmartDrive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Software&amp;lt;/b&amp;gt; - [[Deskmate]] • [[Scripsit]] • [[Basic Compiler]] • [[TRS-80 Accounting Software]] • [[Tandy 1000 Graphics and Sound Compatible Software]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29794</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29794"/>
				<updated>2023-05-24T19:49:33Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added in-article links to various system articles, changed labeling of some systems to reflect TRS-80 or Tandy brand&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family#TRS-80 Model|TRS-80 Model I]] • [[TRS-80 Model II Family#TRS-80 Model II|TRS-80 Model II]] • [[TRS-80 Model I Family#TRS-80 Model III|TRS-80 Model III]] • [[TRS-80 Model I Family#TRS-80 Model 4|TRS-80 Model 4, 4P, and 4D]] • [[TRS-80 Model II Family#Model 12|TRS-80 Model 12]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family#Model 16|TRS-80 Model 16]] • [[TRS-80 Model II Family#Model 16B|TRS-80 Model 16B]] • [[TRS-80 Model II Family#Tandy 6000|Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family#Color Computer 1|TRS-80 Color Computer 1]] • [[TRS-80 Color Computer Family#Tandy Color Computer 2|Color Computer 2]] • [[TRS-80 Color Computer Family#Color Computer 3|Tandy Color Computer 3]] • [[TRS-80 MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX#Tandy 1000 EX|EX]] - [[Tandy 1000 EX and HX#Tandy 1000 HX|HX]] - [[Tandy 1000 S-Series#Tandy 1000 SX|SX]] - [[Tandy 1000 S-Series#Tandy 1000 SL|SL]] - [[Tandy 1000 S-Series#Tandy 1000 SL.2F2|SL/2]] - [[Tandy 1000 T-Series#Tandy 1000 TX|TX]] - [[Tandy 1000 T-Series#Tandy 1000 TL|TL]] - [[Tandy 1000 T-Series#Tandy 1000 TL.2F2|TL/2]] - [[Tandy 1000 T-Series#Tandy 1000 TL.2F3|TL/3]] - [[Tandy 1000 R-Series#Tandy 1000 RL|RL(RL/HD)]] - [[Tandy 1000 R-Series#Tandy 1000 RLX|RLX(RLX/HD)]] - [[Tandy 1000 R-Series#Tandy 1000 RSX|RSX(RSX/HD)]] • [[Tandy Sensation]] • [[Other Tandy Compatible PC Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family#TRS-80 Model 100|TRS -80 Model 100]] • [[TRS-80 Model 100 Family#Tandy 102|Tandy 102]] • [[TRS-80 Model 100 Family#Tandy 200|Tandy 200]] • [[Tandy 600]] • [[Tandy Compatible PC Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 SmartDrive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Software&amp;lt;/b&amp;gt; - [[Deskmate]] • [[Scripsit]] • [[Basic Compiler]] • [[TRS-80 Accounting Software]] • [[Tandy 1000 Graphics and Sound Compatible Software]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_MC-10&amp;diff=29793</id>
		<title>TRS-80 MC-10</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_MC-10&amp;diff=29793"/>
				<updated>2023-05-24T18:23:55Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 MC-10&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| year introduced     =  1983&lt;br /&gt;
| year discontinued   =  1984&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  0.89 MHz &lt;br /&gt;
| ram                 =  4 KB - 20 KB with Expansion Module&lt;br /&gt;
| cpu                 =  [[Motorola]] [[MC6803]]&lt;br /&gt;
| operating system    =  Microsoft Microcolor Basic&lt;br /&gt;
| price               =  US$119.95&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 MC-10''' was a small home computer built by Radio Shack in 1983. It was designed to compete against the [[Commodore VIC-20]] and Timex ZX80. It had Basic in 16 KB of ROM. It didn't sell very due to its small membrane keyboard and cassette only system. Only a handful of cassette games were made for it by Radio Shack but there were quite a few third-party programs available for it. Also, its Basic was somewhat compatible with most other Basics of the time and you could run programs from many books available at the time with no or little modification. There was one clone, the French computer, Matra Hachette Alice. The MC-10 was available for only one year. [[Xroar]], [[vmc]], [[Mame]], and [[trs80gp]] among others emulate the MC-10. &lt;br /&gt;
&lt;br /&gt;
[http://mc-10.com/ A Javascript Emulator]&lt;br /&gt;
&lt;br /&gt;
[[Emulating the TRS-80 using vmc]]&lt;br /&gt;
&lt;br /&gt;
{{semi-stub}}&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29792</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29792"/>
				<updated>2023-05-24T17:32:56Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: slight edit on MC-10&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[TRS-80 MC-10|MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX|EX and HX]] - [[Tandy 1000 S-Series|SX, SL, and SL/2]]-  [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] - [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, and RSX]] • [[Tandy Sensation]] • [[Other Tandy Compatible PC Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|TRS -80 Model 100, Tandy 102, and Tandy 200]] • [[Tandy 600]] • [[Tandy Compatible PC Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 SmartDrive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Software&amp;lt;/b&amp;gt; - [[Deskmate]] • [[Scripsit]] • [[Basic Compiler]] • [[TRS-80 Accounting Software]] • [[Tandy 1000 Graphics and Sound Compatible Software]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29760</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29760"/>
				<updated>2023-05-23T22:18:05Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Made some adjustment to follow correct naming conventions, added software category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX|EX and HX]] - [[Tandy 1000 S-Series|SX, SL, and SL/2]]-  [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] - [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, and RSX]] • [[Tandy Sensation]] • [[Other Tandy Compatible PC Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|TRS -80 Model 100, Tandy 102, and Tandy 200]] • [[Tandy 600]] • [[Tandy Compatible PC Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 SmartDrive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Software&amp;lt;/b&amp;gt; - [[Deskmate]] • [[Scripsit]] • [[Basic Compiler]] • [[TRS-80 Accounting Software]] • [[Tandy 1000 Graphics and Sound Compatible Software]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_SmartDrive&amp;diff=29757</id>
		<title>Tandy 1000 SmartDrive</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_SmartDrive&amp;diff=29757"/>
				<updated>2023-05-23T20:39:06Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Tandy 1000 '''SmartDrive''' was an early  XT architecture [[IDE]] hard drive interface built-in to the 1000 [[Tandy 1000 T-Series|TL/2, TL/3]], [[Tandy 1000 R-Series|RL, and RLX]] models. Actually, the only difference between the original 1000 TL and the TL/2 was the SmartDrive interface. The drives were 3 and a half inch, half-height Western Digital hard disk drives. They were available in either 20 MB or 40 MB sizes. When the 1000 RSX came out, having a 16-bit bus, it used the [[AT-IDE]] standard. The legacy of these drives are this: not only was it the inspiration for the much later, after [[XT-IDE]] interface, it also was the beginning of hard disk drives fitting where once only 3 and a half inch floppy drives could go.&lt;br /&gt;
&lt;br /&gt;
{{semi-stub}}&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Disk Drives]]&lt;br /&gt;
[[Category:Radio Shack Peripherals]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29756</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29756"/>
				<updated>2023-05-23T20:23:19Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: fixed typo on SmartDrive&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX|EX and HX]] - [[Tandy 1000 S-Series|SX, SL, and SL/2]]-  [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] - [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, and RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 SmartDrive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Radio_Shack_Monitors&amp;diff=29755</id>
		<title>Radio Shack Monitors</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Radio_Shack_Monitors&amp;diff=29755"/>
				<updated>2023-05-23T20:18:03Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added nav template&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Radio Shack produced four different lines of monitors from the release of the [[TRS-80 Tandy 2000]] to end of Tandy Computers with the 4000 line. This article is only for the [[Compatible PCs|Compatible PC]] Radio Shack and [[Color Computer family|Color Computer 3]] machines. For terminals and the Electric Crayon, go to [[Radio Shack Terminals]]. Also, the original Radio Shack monitor was technically the bundled monitor that came with the [[TRS-80 Model I Family|TRS-80 Model I]] but that is nothing but an RCA black and white television with the tuner removed.&lt;br /&gt;
&lt;br /&gt;
==VM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
This was Radio Shack's line of monochrome monitors with models for the both the TRS-80 Tandy 2000 and the [[Tandy 1000 Series]]. The first model, the '''VM-1''', was made for the 2000. The first monochrome monitors for the 1000 were the '''VM-2''' and '''VM-4'''. These were composite monitors compatible with the original 1000, and SX, EX, and HX models only. The '''VM-3''' and '''VM-5''' were made for the other Tandy 1000s.&lt;br /&gt;
&lt;br /&gt;
==CM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
The CM-line was Radio Shack's line of color monitors. The original CM-1 is for the TRS-80 Tandy 2000. The '''CM-4''' and '''CM-5''' are standard resolution CGA monitors compatible with standard [[Tandy Graphics]] modes. The '''CM-2''', '''CM-10''', and '''CM-ll''' are high-resolution CGA monitors compatible with the Tandy Graphics II 640 x 200 x 16 colors mode.&lt;br /&gt;
&lt;br /&gt;
===CM-8===&lt;br /&gt;
&lt;br /&gt;
The '''CM-8''' was a specially built monitor for the Color computer 3's RGB mode.&lt;br /&gt;
&lt;br /&gt;
==EGM-1 Monitor==&lt;br /&gt;
&lt;br /&gt;
The '''EGM-1''' was Radio Shack's only [[EGA]] monitor. It should be noted that there wasn't any good reason to upgrade a Tandy 1000 to EGA since Tandy Graphics (especially Tandy Graphics II) are almost as good as EGA.&lt;br /&gt;
&lt;br /&gt;
==VGM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
The '''VGM-100''', '''VGM-200''' series, '''VGM-300''' series, and '''VGM-400''' series are Tandy-branded (S)[[VGA]] monitors. The original VGM-100 was for the Tandy 3000 and later models were for the 2500 XL and 4000 series systems. &lt;br /&gt;
&lt;br /&gt;
==External Link==&lt;br /&gt;
&lt;br /&gt;
[https://youtu.be/m79HxULt3O8 The story of the VGM-225, a real lemon among VGA monitors]&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Peripherals]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:Radio_Shack_Peripherals&amp;diff=29753</id>
		<title>Category:Radio Shack Peripherals</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:Radio_Shack_Peripherals&amp;diff=29753"/>
				<updated>2023-05-23T19:45:44Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Peripherals]]&lt;br /&gt;
[[Category:Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Radio_Shack_Monitors&amp;diff=29752</id>
		<title>Radio Shack Monitors</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Radio_Shack_Monitors&amp;diff=29752"/>
				<updated>2023-05-23T19:43:46Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Radio Shack produced four different lines of monitors from the release of the [[TRS-80 Tandy 2000]] to end of Tandy Computers with the 4000 line. This article is only for the [[Compatible PCs|Compatible PC]] Radio Shack and [[Color Computer family|Color Computer 3]] machines. For terminals and the Electric Crayon, go to [[Radio Shack Terminals]]. Also, the original Radio Shack monitor was technically the bundled monitor that came with the [[TRS-80 Model I Family|TRS-80 Model I]] but that is nothing but an RCA black and white television with the tuner removed.&lt;br /&gt;
&lt;br /&gt;
==VM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
This was Radio Shack's line of monochrome monitors with models for the both the TRS-80 Tandy 2000 and the [[Tandy 1000 Series]]. The first model, the '''VM-1''', was made for the 2000. The first monochrome monitors for the 1000 were the '''VM-2''' and '''VM-4'''. These were composite monitors compatible with the original 1000, and SX, EX, and HX models only. The '''VM-3''' and '''VM-5''' were made for the other Tandy 1000s.&lt;br /&gt;
&lt;br /&gt;
==CM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
The CM-line was Radio Shack's line of color monitors. The original CM-1 is for the TRS-80 Tandy 2000. The '''CM-4''' and '''CM-5''' are standard resolution CGA monitors compatible with standard [[Tandy Graphics]] modes. The '''CM-2''', '''CM-10''', and '''CM-ll''' are high-resolution CGA monitors compatible with the Tandy Graphics II 640 x 200 x 16 colors mode.&lt;br /&gt;
&lt;br /&gt;
===CM-8===&lt;br /&gt;
&lt;br /&gt;
The '''CM-8''' was a specially built monitor for the Color computer 3's RGB mode.&lt;br /&gt;
&lt;br /&gt;
==EGM-1 Monitor==&lt;br /&gt;
&lt;br /&gt;
The '''EGM-1''' was Radio Shack's only [[EGA]] monitor. It should be noted that there wasn't any good reason to upgrade a Tandy 1000 to EGA since Tandy Graphics (especially Tandy Graphics II) are almost as good as EGA.&lt;br /&gt;
&lt;br /&gt;
==VGM-line Monitors==&lt;br /&gt;
&lt;br /&gt;
The '''VGM-100''', '''VGM-200''' series, '''VGM-300''' series, and '''VGM-400''' series are Tandy-branded (S)[[VGA]] monitors. The original VGM-100 was for the Tandy 3000 and later models were for the 2500 XL and 4000 series systems. &lt;br /&gt;
&lt;br /&gt;
==External Link==&lt;br /&gt;
&lt;br /&gt;
[https://youtu.be/m79HxULt3O8 The story of the VGM-225, a real lemon among VGA monitors]&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Peripherals]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_R-Series&amp;diff=29751</id>
		<title>Tandy 1000 R-Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_R-Series&amp;diff=29751"/>
				<updated>2023-05-23T18:09:02Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of aritcle&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Tandy 1000 R-Series''' was the final series of the Tandy 1000 family. The lowest common denominator between them was a low-profile case in a similar design scheme to the SL and TL systems.  This low-profile case had room for only one 8-bit ISA card (16-bit in the 1000 RSX). The processors of this series range from Intel 8086 to Intel 80386SX. This is the most varied of all the series and not long after the last model, the Tandy 1000 RSX, Radio Shack started selling AST computers in their stores instead of the long tradition of branded systems.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RL (RL/HD)&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 9.54 MHz&lt;br /&gt;
| ram = 512 KB expandable up to 768 KB (see note below)&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| predecessor = Tandy 1000 HX, 1000 SL/2&lt;br /&gt;
| successor = Tandy 1000 RLX&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RL and Tandy 1000 RL/HD==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 RL''' was the last of the 8-bit processor Tandy 1000s. It was almost identical in features to the 1000 SL/2 except the low profile case and a slightly fast Intel 8086. The '''RL/HD''' variant includes a 20 MB hard disk drive. One nice, additional feature is [[Deskmate]] 3.69, bundled with both the 1000 RL and 1000 RLX. This version includes an expanded version of the Deskmate Home Organizer add-on integrated into Deskmate. Home Organizer includes a recipe database, a budgeting program, and other &amp;quot;applications.&amp;quot; The added features to Home Organizer includes &amp;quot;Smart Home&amp;quot; functionality years before it caught on.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RLX (RLX/HD)&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 80286]]&lt;br /&gt;
| clock speed = 10 MHz&lt;br /&gt;
| ram = 512 KB expandable up to 1 MB&lt;br /&gt;
| graphics = [[VGA]]&lt;br /&gt;
| predecessor = Tandy 1000 RL, [[Tandy 1000 T-Series|Tandy 1000 TL/3]]&lt;br /&gt;
| successor = Tandy 1000 RSX&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RLX and RLX/HD==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 RLX''' is to the Tandy 1000 TL/3 as the 1000 RL is to the 1000 SL/2. Besides the low-profile case, the main differences are expandable up to 1 MB RAM, a standard 1.44 MB 3 and a half inch floppy disk drive and Deskmate 3.69 (see 1000 RL above). The 1000 RL/HD includes a 20 MB hard disk drive.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 RSX&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1991&lt;br /&gt;
| cpu = [[Intel 80386SX]]&lt;br /&gt;
| clock speed = 25 MHz&lt;br /&gt;
| ram = 1 MB expandable up to 9 MB&lt;br /&gt;
| graphics = [[SVGA]]&lt;br /&gt;
| predecessor = Tandy 1000 RLX&lt;br /&gt;
| successor = [[Tandy Sensation]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 RSX==&lt;br /&gt;
&lt;br /&gt;
The final Tandy 1000 model, the '''Tandy 1000 RSX''' is unique to all other Tandy 1000 systems. It has the same low-profile case like the RL and RLX. Honestly, this released after I left Radio Shack and was not featured in a Radio Shack Computer Catalog, so Wikipedia says it better.&lt;br /&gt;
&lt;br /&gt;
:A more upscale offering, the RSX offers a 25&amp;amp;nbsp;MHz 80386SX processor, 1 MB RAM, two 16-bit ISA slots, AcuMos SVGA video, a bidirectional parallel port, and standard PS/2 keyboard and mouse ports. It is a full 386-class PC and can run Microsoft Windows 3.x. Two sockets for SIMM memory cards are available. Only 1 MB or 4 MB SIMMs of the 9-chip type are supported, and if two are installed they have to be of like capacity. With two 4 MB SIMMs installed, the 1000 RSX can be expanded to 9 MB RAM without using an ISA slot. The RSX/HD variant comes with a 52 MB hard drive using an AT-compatible IDE interface; replacement hard drives up to 504 MB can be substituted. Because of the slimline case, only one hard drive can be installed alongside the 1.44 MB 3.5&amp;quot; floppy drive.&lt;br /&gt;
&lt;br /&gt;
:The motherboard has a socket for the 80387SX math coprocessor. The RSX still retains the Tandy 1000 3-voice sound hardware and DAC, though the I/O address for the 3-voice sound chip was moved, rendering many games compatible with it unable to play music unless modified. The DAC can be used to emulate the Covox Speech Thing via MS-DOS device drivers for limited sound support. This works with Chuck Yeager's Air Combat.&lt;br /&gt;
&lt;br /&gt;
:Windows 3.xx sound device drivers are available that work in Windows 95 (with full 9MB RAM) on Tandy 1000 RSX.&lt;br /&gt;
The ACUMOS VGA graphics can be software-updated with Cirrus Logic BIOS (via MS-DOS driver) to allow VESA/SVGA to function in Windows 95, as the Windows 3.xx Tandy VGA drivers are insufficient for Windows 95.&lt;br /&gt;
: {{wikipedia}}&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
This line marked the end of the Tandy 1000 series and the only computers released with the Tandy name badge were the Tandy Sensation and Tandy Sensation II. There are no emulators for this series but you can run Deskmate with the separate Home Organizer add-on with [[DOSBox-x]].&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29750</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29750"/>
				<updated>2023-05-23T16:45:21Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Threw in an &amp;quot;and&amp;quot; in the R-Series ailias&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX|EX and HX]] - [[Tandy 1000 S-Series|SX, SL, and SL/2]]-  [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] - [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, and RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 Smart Drive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29749</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29749"/>
				<updated>2023-05-23T16:44:06Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Minor formatting change on Tandy 1000 model list (added dashes)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] - [[Tandy 1000 EX and HX|EX and HX]] - [[Tandy 1000 S-Series|SX, SL, and SL/2]]-  [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] - [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 Smart Drive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29732</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29732"/>
				<updated>2023-05-23T11:40:50Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Adjusted for naming convention change and and a couplte peripheral entries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] [[Tandy 1000 EX and HX|EX and HX]] [[Tandy 1000 S-Series|SX, SL, and SL/2]] [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[Radio Shack Terminals|Terminals]] • [[Radio Shack Printers|Printers]] • [[Radio Shack Floppy Drives|Floppy Drives]] • [[Radio Shack Hard Drives|Hard Drives]] • [[Tandy 1000 Smart Drive]] • [[Radio Shack Monitors|Monitors]] • [[Miscellaneous Radio Shack Peripherals|Miscellaneous]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29731</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29731"/>
				<updated>2023-05-23T07:58:08Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Some slight adjustments. 1. removed plural on Smart Drive. 2. Fixed RL/HD 3. Added RLX/HD&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] [[Tandy 1000 EX and HX|EX and HX]] [[Tandy 1000 S-Series|SX, SL, and SL/2]] [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] [[Tandy 1000 R-Series|RL, RL/HD, RLX, RLX/HD, RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[TRS-80 Terminals|Terminals]] • [[TRS-80 Printers|Printers]] • [[TRS-80 Floppy Drives|Floppy Drives]] • [[TRS-80 Hard Drives|Hard Drives]] • [[Tandy 1000 Smart Drive]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_T-Series&amp;diff=29730</id>
		<title>Tandy 1000 T-Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_T-Series&amp;diff=29730"/>
				<updated>2023-05-23T07:54:44Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Tandy 1000 T-Series''' is one of the most unique Compatible PCs on the market and despite its shortcoming was quite a popular line. This series had Intel 80286 processors but were XT class. In other words, although they had a 286, they only had 8-bit ISA slots and therefore only used 8-bit hardware. Also, the battery backed-up RTC SmartWatch is built-in.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 TX&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1986&lt;br /&gt;
| cpu = [[Intel 80286]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 640 KB expandable up to 768 KB (see note below)&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| successor = Tandy 1000 TL&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 TX==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 TX''' is basically a [[Tandy 1000 S-Series|Tandy 1000 SX]] with an Intel 80286 processor, 640 KB RAM, a 3 and a half inch 720 KB [[floppy disk]] drive. All of the machines in this series, although 8-bit, have a 16-bit memory bus and are technically expandable up to 768 KB but the extra 128 KB is for video. I have never seen any software that utilize this extra video RAM. It runs MS-DOS 3.2 with Deskmate II.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 TL, TL/2, TL/3&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| cpu = [[Intel 80286]]&lt;br /&gt;
| clock speed = 8 MHz (TL, TL/2) 10 MHz (TL/3)&lt;br /&gt;
| ram = 640 KB expandable up to 768 KB (see note below)&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| successor = [[Tandy 1000 RL-Series|Tandy 1000 RLX]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 TL==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 TL''' is a Tandy 1000 TX with a Tandy 1000 SL/2 Case, Tandy Graphics II, and Enhanced Tandy Sound with a DAC.&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 TL/2==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 TL/2''' is simply a Tandy 1000 TL with an 8-bit IDE interface called [[SmartDrive]].&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 TL/3==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 TL/3''' is a Tandy 1000 TL/2 with a 10 MHz processor and the ''capability'' to support 1.44 MB 3 and a half inch floppy drives. In other words, it only adds support for 1.44 MB drives, the drives are not an option, only an add-on.&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The T-Series was succeeded by the Tandy 1000 RLX. Although there are both positive and negative differences between the two models.&lt;br /&gt;
&lt;br /&gt;
Emulation is available for 1000 TL/2. There are 3 emulators that I recommend: 86-Box, PCem, and DOSBox-x. PCem is the easiest to setup. 86-Box is more customizable. DOSBox-x, on the other hand, is not actually a computer emulator but a generic MS-DOS emulator that has special Tandy Graphics and Sound Support. There are a few variants of DOSBox, but I like DOSBox-x the best because it is the only version that supports disk images and it's also the only one that is menu driven without a front-end. &lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29729</id>
		<title>Tandy 1000 Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29729"/>
				<updated>2023-05-23T07:42:22Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Small edit involving DOSBox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000, 1000A, 1000HD&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = November 1984&lt;br /&gt;
| year discontinued = Series Discontinued: 1993, Original Model: Unknown&lt;br /&gt;
| cpu = [[Intel 8088]]&lt;br /&gt;
| clock speed = 4.77 MHz&lt;br /&gt;
| ram = 128 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = PCjr Graphics, later known as Tandy Graphics&lt;br /&gt;
| successor = [[Tandy 1000 S-Series|Tandy 1000 SX]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 series''' was [[Radio Shack]]'s second attempt at creating an [[MS-DOS]] system with the first being the [[Tandy TRS-80 2000]]. The 2000 was a huge flop but the 1000 was one of Radio Shack's biggest successes. This article is mostly about the original Tandy 1000 and its 3 variants but there is also a brief rundown of the other models in the series. Although the 2000 was an MS-DOS system it was not fully compatible due to incompatible hardware and the use of the [[Intel 80186]] processor. The Tandy 1000 on the other hand was designed to be PC compatible (actually [[IBM PCjr]] compatible) from the beginning. &lt;br /&gt;
&lt;br /&gt;
==Tandy's Intentions for this New Computer==&lt;br /&gt;
&lt;br /&gt;
In 1983, Tandy Radio Shack knew they had to get into the PC compatible market and had a great idea. Instead of following companies such as [[Compaq]], what if they made a system that had superior sound and graphics to the average compatible? So, they decided to make a true compatible but instead of using the standard at the time, [[CGA]] graphics and a simple speaker, what if they utilized the PCjr 16 color 320x200 graphics and 3 voice sound? So the Tandy 1000 was born, released in November of 1984. The initial model had a 4.77 MHz [[Intel 8088]] processor, 128k of [[Random Access Memory|RAM]], and no [[Direct Memory Access|DMA]] (although an expansion card was available the offered this and room to expand the RAM to 640k. Another few features to note is that almost all of the Tandy 1000s used proprietary [[keyboard]]s and [[parallel interface|parallel ports]] (used only for [[printer]]s). Also, there were two built-in [[joystick]] ports that used the same interface as the [[TRS-80 Color Computer Family]] and a reset switch. Also, soon what was once called &amp;quot;PCjr Compatible&amp;quot; quickly became known as &amp;quot;Tandy Compatible&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Rise in Popularity==&lt;br /&gt;
&lt;br /&gt;
The 1000 immediately became a hit and had 3 variations the original 1000; the 1000A, same system with a revised [[motherboard]]; and 1000HD, with either a 10 or 20 MB [[hard disk]] drive. The first new model was released in 1986, the [[Tandy 1000 S-Series|Tandy 1000 SX]] with a faster 8088 processor, built-in DMA, 384k RAM, and Volume Control. Two other models were also released around this time: the [[Tandy 1000 T-Series|Tandy 1000 TX]] and the [[Tandy 1000 EX and HX|Tandy 1000 EX]]. The TX was an XT class [[Intel 80286]] system and the EX was an a one-piece machine with built-in keyboard and a proprietary expansion [[bus]].&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 spawned many more models including the last model, an [[Intel 80386SX]] processor system with [[SVGA]] graphics but still with the Tandy sound chip called the [[Tandy_1000 R-Series|Tandy 1000 RSX]]. Once [[VGA]] became more affordable and the [[Sound Blaster]] was released, the Tandy 1000 series soon became obsolete and Tandy started to sell AST computers in place of their own line.&lt;br /&gt;
&lt;br /&gt;
==Deskmate==&lt;br /&gt;
&lt;br /&gt;
One of the most distinctive features of Tandy 1000s was not hardware but software. Beginning with the original Tandy 1000, all systems were bundled with a multipurpose program called [[Deskmate]]. It start as a simple text-based all-in-one programs similar to [[Microsoft Works]] for DOS and quickly evolved into a full-fledged [[mouse]]-based [[graphical user interface|GUI]]. Deskmate 3, the final incarnation was perfect as a lower-resource intensive [[Microsoft Windows]] 3 type shell with even a large amount of 3rd-party software including [[Lotus 1-2-3]] and many educational titles. On the RL, RLX, and RSX; Deskmate had even more functionality with a built-in home organizer and even a very early kind of &amp;quot;Smart Home&amp;quot; control. Generally Deskmate would only run on the model of 1000 that it came bundled with but version 3.0.5 would run on any PC-Compatible including support for VGA although for sound, an actual Tandy 1000 was required. If you want to run Deskmate with full sound, try running it on on [[DOSBox-x]]. A tutorial is here: [[Installing Deskmate on DOSBox-x]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
* [https://ia803107.us.archive.org/5/items/tandy1000extechnicalreferencemanual/Tandy_1000EX_Technical_Reference_Manual.pdf Tandy 1000EX Technical Reference Manual]&lt;br /&gt;
* [https://ia803002.us.archive.org/25/items/tandy-1000sx-technical-reference-manual/1000SX%20Technical%20Manual.pdf Tandy 1000SX Technical Reference Manual]&lt;br /&gt;
* [https://ia801008.us.archive.org/31/items/tandy1000txtechnicalreferencemanual/Tandy%201000TX%20Technical%20Reference%20Manual.pdf Tandy 1000TX Technical Reference Manual]&lt;br /&gt;
* [http://www.dosdays.co.uk/computers/Tandy%201000/download.php Tandy 1000 Series Downloads]&lt;br /&gt;
** [http://www.dosdays.co.uk/computers/Tandy%201000/1kintro.pdf Introduction to the Tandy 1000]&lt;br /&gt;
* [http://www.oldskool.org/guides/tvdog/tandy1000.html Tandy 1000 Files]&lt;br /&gt;
** [http://www.oldskool.org/guides/tvdog/documents.html Documentation Files]&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_EX_and_HX&amp;diff=29728</id>
		<title>Tandy 1000 EX and HX</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_EX_and_HX&amp;diff=29728"/>
				<updated>2023-05-23T06:36:22Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The '''Tandy 1000 EX''' and '''Tandy 1000 HX''' were all in one Tandy 1000 [[Compatible PCs]]. They, collectively, were the least expensive Tandy 1000 models.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000EX&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1986&lt;br /&gt;
| cpu = [[Intel 8088]]-2&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 256 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| predecessor = [[TRS-80 Color Computer Family]], Tandy 1000 HX&lt;br /&gt;
| successor = Tandy 1000 HX&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 EX==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 EX''' was Tandy's first compact all-in-one, compatible PC. It was in part designed to be a replacement of the Color Computer which was dwindling in popularity as the popularity of compatible PCs were soaring. It was also designed to be a lower cost Tandy 1000 with a proprietary expansion slot. It also had no built-in [[DMA]]. It came with MS-DOS 2.11 and Personal Deskmate. It featured a 5 and a quarter inch [[floppy disk drive]] on the side of the machine and a special port on the back of the computer to add an external floppy disk drive. One draw back of the compactness of this system is you could not stack a monitor on top of the system with using a special shelf that Radio Shack sold separately. This shelf was also used on the Color Computer 3 and its CM-8 monitor.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 HX&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = 1987&lt;br /&gt;
| cpu = [[Intel 8088]]-2&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 256 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| successor = [[Tandy 1000 R-Series|Tandy 1000 RL]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 HX==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 HX''' is a similar to the 1000 EX but with two main difference. First, instead of a 5 and 1/4 floppy, it has and 3 and a half inch disk floppy disk drive mounted in front with a slot next to it for a second drive. Like the EX there is a external floppy port in order to add a 5 and quarter inch drive and no DMA. The other major difference is that like [[Tandy 1000 S-Series|Tandy 1000 SL]] and later models it has MS-DOS command.com and the desk.com Deskmate executable in ROM. In the case of the HX, the ROM contains MS-DOS 2.11 and Personal Deskmate II. Personal Deskmate II is quite similar to Deskmate 3 except it is designed to only run off 3 and a half inch floppies. One of the new features in this version of Deskmate is the Music program which takes advantage of the Tandy 3-voice sound.&lt;br /&gt;
&lt;br /&gt;
==Tandy PLUS interface==&lt;br /&gt;
&lt;br /&gt;
Unlike most Compatible PCs, the Tandy 1000 EX and HX not use the traditional 8-bit ISA expansion cards. Instead, Tandy created a more compact expansion card called PLUS. Each machine has three PLUS slots and the stack on top of each other.  PLUS cards available through Radio Shack include an internal modem, a serial port, RAM expansion up to 640 KB. It should be noted that the RAM expansion comes with DMA, similar to the memory expansion card available for the original Tandy 1000. There were also third plus cards including a [[hard disk]] drive interface and the most popular one, an adapter to allow ISA card to be plugged to the PLUS slot. You see, PLUS and ISA are electrically identical with just a different plug and pin-out. The most common ISA card to used with this adapter was a 2400 Baud [[modem]] since Radio Shack only made a 300 baud in the PLUS format.&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 EX and HX were the beginning of super affordable Compatible PCs. '''Anecdote:''' When I worked at Radio Shack, we still sold the 1000 HX even though it was almost 3 years old. By the time I was there, it didn't sell well. I think one reason for this is that it had the old style as far as badging, color, etc. Its replacement, the Tandy 1000 RL, sold much better but didn't come out until 1991.&lt;br /&gt;
&lt;br /&gt;
Emulation is available for 1000 HX. There are 3 emulators that I recommend: [[86-Box]], [[PCem]], and [[DOSBox-x]]. PCem is the easiest to setup. 86-Box is more customizable. DOSBox-x, on the other hand, is not actually a computer emulator but a generic MS-DOS emulator that has special Tandy Graphics and Sound Support. There are a few variants of DOSBox, but I like DOSBox-x the best because it is the only version that supports disk images and it's also the only one that is menu driven without a front-end.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
* [[Running Deskmate on DOSbox-x]]&lt;br /&gt;
* [https://ia803107.us.archive.org/5/items/tandy1000extechnicalreferencemanual/Tandy_1000EX_Technical_Reference_Manual.pdf Tandy 1000EX Technical Reference Manual]&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29727</id>
		<title>TRS-80 Model II Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29727"/>
				<updated>2023-05-23T05:07:27Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: did some minor formatting changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:TRS-80 model ii.jpg|thumb|150px|right|A Tandy model II]]&lt;br /&gt;
&lt;br /&gt;
The '''Tandy TRS-80 Model II Family''' was a high priced line of TRS-80 and Tandy computers. The were used almost exclusively as business machines. The line started in 1979 with the TRS-80 Model II, the successor in name and processor only to the original TRS-80 Model I.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model II&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1979&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 32 or 64 KB&lt;br /&gt;
| successor = Model 12 and Model 16&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model II==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model II''' was a great departure from the Model I. It came with a single-sided 500 KB 8 inch [[floppy disk]] drive. It originally ran a variation of [[TRSDOS]] and [[CP/M]]. Many accounting and other office programs were available for it, as well as a Basic compiler, Fortran, and COBOL. An interesting fact about the architecture of these computers is that it has a tiny boot [[ROM]] and the basic compiler is loaded off TRSDOS into memory. Also, it had a detached keyboard.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 512 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16''' was an early dual processor machine. In addition, to the Z80A used for I/O and compatibility, it had a 16/32-bit Motorola MC68000 processor. This system wasn't very successful due to initial lack of 16-bit software.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 12&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 64 KB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 12==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 12''' is an improved Model II with a double sided floppy disk drive, a green on black display, and an available expansion card cage which added 6 expansion slots.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16B&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 768 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16B==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16B''' is possibly the most famous model in the line. It is simply a Model 16 with minor improvements but what makes it so well-known is the fact that not only could it run XENIX but its XENIX systems were so popular that it was the top selling [[Unix]]-based computer in 1984 with over 40,000 units sold.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 6000&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 128 KB to 768 MB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tandy 6000==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 6000''' was an improved model 16B with an internal 70 MB hard disk drive and expandable up to 1 MB in RAM.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Operating Systems==&lt;br /&gt;
&lt;br /&gt;
There were 3 major versions of TRSDOS available for the systems. Original TRSDOS, roughly based on Model I TRSDOS but with Microsoft Basic integrated into the OS; TRSDOS-II, a DOS designed specifically for the Model II family; TRSDOS-16, which is less of an operating system and more of a system overlay that allowed the execution of 16-bit TRSDOS software on the Model 16 and 16B. Very little software was made for TRSDOS-16. One TRSDOS clone was available, a Model II family compatible LS-DOS. Four or five versions of both CP/M and CP/M were available with the most popular being Pickles &amp;amp; Trout CP/M 2.2. The total game-changing OS available for the Model 16B and Tandy 6000 was Microsoft XENIX, a 16-bit Unix based on System III Unix.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Peripherals==&lt;br /&gt;
&lt;br /&gt;
An external floppy disk drive enclosure was available that held up to four drives. External hard disk drives were available in size from 8.4 to 70 MB. Possibly, the most interesting accessory made for the Model II was a special desk designed to hold the floppy drive enclosure. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 6000 was nominally replaced by the [[Other Tandy x86 Desktop Computers|Tandy 3000]], an [[Intel 80286]] [[Compatible PC]] which ran SCO XENIX. Unfortunately, there isn't as much of a fan base for this series of machines as there is others but below there is a link for a huge archive and recently a TRS-80 emulator called trs80gp has been available which runs a lot of the series' software including XENIX.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
Some information can be found:&lt;br /&gt;
* http://home.iae.nl/users/pb0aia/cm/modelii.html&lt;br /&gt;
* https://www.trs-80.com/wordpress/models/model-2&lt;br /&gt;
&lt;br /&gt;
A huge collection of software and documentation can be found at:&lt;br /&gt;
* https://github.com/pski/model2archive.git&lt;br /&gt;
It is recommended that you clone the archive instead of downloading the zip file because it tends to fail otherwise.&lt;br /&gt;
&lt;br /&gt;
The trs80gp emulator is available at:&lt;br /&gt;
* http://48k.ca/trs80gp.html&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Emulation Tutorials==&lt;br /&gt;
&lt;br /&gt;
A couple of tutorials to try:&lt;br /&gt;
[[Installing TRSDOS-II 4.4 onto a Model II or 12 System With a Hard Drive]] and &lt;br /&gt;
[[Installing XENIX on a Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29726</id>
		<title>TRS-80 Model II Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29726"/>
				<updated>2023-05-23T05:05:59Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Previous update was a major overhaul of the aricle, sorry for no summary, current update added operating system section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:TRS-80 model ii.jpg|thumb|150px|right|A Tandy model II]]&lt;br /&gt;
&lt;br /&gt;
The '''Tandy TRS-80 Model II Family''' was a high priced line of TRS-80 and Tandy computers. The were used almost exclusively as business machines. The line started in 1979 with the TRS-80 Model II, the successor in name and processor only to the original TRS-80 Model I.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model II&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1979&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 32 or 64 KB&lt;br /&gt;
| successor = Model 12 and Model 16&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model II==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model II''' was a great departure from the Model I. It came with a single-sided 500 KB 8 inch [[floppy disk]] drive. It originally ran a variation of [[TRSDOS]] and [[CP/M]]. Many accounting and other office programs were available for it, as well as a Basic compiler, Fortran, and COBOL. An interesting fact about the architecture of these computers is that it has a tiny boot [[ROM]] and the basic compiler is loaded off TRSDOS into memory. Also, it had a detached keyboard.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 512 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16''' was an early dual processor machine. In addition, to the Z80A used for I/O and compatibility, it had a 16/32-bit Motorola MC68000 processor. This system wasn't very successful due to initial lack of 16-bit software.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 12&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 64 KB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 12==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 12''' is an improved Model II with a double sided floppy disk drive, a green on black display, and an available expansion card cage which added 6 expansion slots.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16B&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 768 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16B==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16B''' is possibly the most famous model in the line. It is simply a Model 16 with minor improvements but what makes it so well-known is the fact that not only could it run XENIX but its XENIX systems were so popular that it was the top selling [[Unix]]-based computer in 1984 with over 40,000 units sold.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 6000&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 128 KB to 768 MB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tandy 6000==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 6000''' was an improved model 16B with an internal 70 MB hard disk drive and expandable up to 1 MB in RAM.&lt;br /&gt;
&lt;br /&gt;
==Operating Systems==&lt;br /&gt;
&lt;br /&gt;
There were 3 major versions of TRSDOS available for the systems. Original TRSDOS, roughly based on Model I TRSDOS but with Microsoft Basic integrated into the OS; TRSDOS-II, a DOS designed specifically for the Model II family; TRSDOS-16, which is less of an operating system and more of a system overlay that allowed the execution of 16-bit TRSDOS software on the Model 16 and 16B. Very little software was made for TRSDOS-16. One TRSDOS clone was available, a Model II family compatible LS-DOS. Four or five versions of both CP/M and CP/M were available with the most popular being Pickles &amp;amp; Trout CP/M 2.2. The total game-changing OS available for the Model 16B and Tandy 6000 was Microsoft XENIX, a 16-bit Unix based on System III Unix.&lt;br /&gt;
&lt;br /&gt;
==Peripherals==&lt;br /&gt;
&lt;br /&gt;
An external floppy disk drive enclosure was available that held up to four drives. External hard disk drives were available in size from 8.4 to 70 MB. Possibly, the most interesting accessory made for the Model II was a special desk designed to hold the floppy drive enclosure. &lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 6000 was nominally replaced by the [[Other Tandy x86 Desktop Computers|Tandy 3000]], an [[Intel 80286]] [[Compatible PC]] which ran SCO XENIX. Unfortunately, there isn't as much of a fan base for this series of machines as there is others but below there is a link for a huge archive and recently a TRS-80 emulator called trs80gp has been available which runs a lot of the series' software including XENIX.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
Some information can be found:&lt;br /&gt;
* http://home.iae.nl/users/pb0aia/cm/modelii.html&lt;br /&gt;
* https://www.trs-80.com/wordpress/models/model-2&lt;br /&gt;
&lt;br /&gt;
A huge collection of software and documentation can be found at:&lt;br /&gt;
* https://github.com/pski/model2archive.git&lt;br /&gt;
It is recommended that you clone the archive instead of downloading the zip file because it tends to fail otherwise.&lt;br /&gt;
&lt;br /&gt;
The trs80gp emulator is available at:&lt;br /&gt;
* http://48k.ca/trs80gp.html&lt;br /&gt;
&lt;br /&gt;
==Emulation Tutorials==&lt;br /&gt;
&lt;br /&gt;
A couple of tutorials to try:&lt;br /&gt;
[[Installing TRSDOS-II 4.4 onto a Model II or 12 System With a Hard Drive]] and &lt;br /&gt;
[[Installing XENIX on a Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29725</id>
		<title>TRS-80 Model II Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_II_Family&amp;diff=29725"/>
				<updated>2023-05-23T04:39:22Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:TRS-80 model ii.jpg|thumb|150px|right|A Tandy model II]]&lt;br /&gt;
&lt;br /&gt;
The '''Tandy TRS-80 Model II Family''' was a high priced line of TRS-80 and Tandy computers. The were used almost exclusively as business machines. The line started in 1979 with the TRS-80 Model II, the successor in name and processor only to the original TRS-80 Model I.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model II&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1979&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 32 or 64 KB&lt;br /&gt;
| successor = Model 12 and Model 16&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model II==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model II''' was a great departure from the Model I. It came with a single-sided 500 KB 8 inch [[floppy disk]] drive. It originally ran a variation of [[TRSDOS]] and [[CP/M]]. Many accounting and other office programs were available for it, as well as a Basic compiler, Fortran, and COBOL. An interesting fact about the architecture of these computers is that it has a tiny boot [[ROM]] and the basic compiler is loaded off TRSDOS into memory. Also, it had a detached keyboard.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 512 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16''' was an early dual processor machine. In addition, to the Z80A used for I/O and compatibility, it had a 16/32-bit Motorola MC68000 processor. This system wasn't very successful due to initial lack of 16-bit software.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 12&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A&lt;br /&gt;
| clock speed = 4 MHz&lt;br /&gt;
| ram = 64 KB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 12==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 12''' is an improved Model II with a double sided floppy disk drive, a green on black display, and an available expansion card cage which added 6 expansion slots.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = TRS-80 Model 16B&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 6 MHz&lt;br /&gt;
| ram = 128 to 768 KB&lt;br /&gt;
| successor = Model 16B&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 16B==&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model 16B''' is possibly the most famous model in the line. It is simply a Model 16 with minor improvements but what makes it so well-known is the fact that not only could it run XENIX but its XENIX systems were so popular that it was the top selling [[Unix]]-based computer in 1984 with over 40,000 units sold.&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 6000&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = Desktop&lt;br /&gt;
| year introduced = 1982&lt;br /&gt;
| cpu = [[Zilog Z80]]A and [[Motorola MC68000]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 128 KB to 768 MB&lt;br /&gt;
| successor = Tandy 6000&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tandy 6000==&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 6000''' was an improved model 16B with an internal 70 MB hard disk drive and expandable up to 1 MB in RAM.&lt;br /&gt;
&lt;br /&gt;
==Peripherals==&lt;br /&gt;
&lt;br /&gt;
An external floppy disk drive enclosure was available that held up to four drives. External hard disk drives were available in size from 8.4 to 70 MB. Possibly, the most interesting accessory made for the Model II was a special desk designed to hold the floppy drive enclosure. &lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 6000 was nominally replaced by the [[Other Tandy x86 Desktop Computers|Tandy 3000]], an [[Intel 80286]] [[Compatible PC]] which ran SCO XENIX. Unfortunately, there isn't as much of a fan base for this series of machines as there is others but below there is a link for a huge archive and recently a TRS-80 emulator called trs80gp has been available which runs a lot of the series' software including XENIX.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
Some information can be found:&lt;br /&gt;
* http://home.iae.nl/users/pb0aia/cm/modelii.html&lt;br /&gt;
* https://www.trs-80.com/wordpress/models/model-2&lt;br /&gt;
&lt;br /&gt;
A huge collection of software and documentation can be found at:&lt;br /&gt;
* https://github.com/pski/model2archive.git&lt;br /&gt;
It is recommended that you clone the archive instead of downloading the zip file because it tends to fail otherwise.&lt;br /&gt;
&lt;br /&gt;
The trs80gp emulator is available at:&lt;br /&gt;
* http://48k.ca/trs80gp.html&lt;br /&gt;
&lt;br /&gt;
==Emulation Tutorials==&lt;br /&gt;
&lt;br /&gt;
A couple of tutorials to try:&lt;br /&gt;
[[Installing TRSDOS-II 4.4 onto a Model II or 12 System With a Hard Drive]] and &lt;br /&gt;
[[Installing XENIX on a Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29724</id>
		<title>TRS-80 Model I Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29724"/>
				<updated>2023-05-23T03:20:20Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Total overhaul of page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 Model I&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| date announced      =  August 3, 1977&lt;br /&gt;
| date first shipped  =  November, 1977&lt;br /&gt;
| year introduced     =  1977&lt;br /&gt;
| year discontinued   =  1981&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  1.774 MHz &lt;br /&gt;
| ram                 =  4 KB (Level I Basic) 16 - 48 KB (Level II Basic)&lt;br /&gt;
| cpu                 =  [[Z80]] (Later Z80A)&lt;br /&gt;
| operating system    =  Level I Basic, Level II Basic, [[TRSDOS]], Third Party DOSes including LDOS&lt;br /&gt;
| successor           =  TRS-80 Model III&lt;br /&gt;
| price               =  US$599&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model I''' computer, originally known as simply the '''TRS-80''' computer, was released in 1977. It is considered to be part of the &amp;quot;1977 trinity of home computers also including the [[Apple II]] and the [[Commodore Pet]]. Unlike the [[6502]] driven Apple and Commodore machines, the Model I used the [[Zilog Z80]] processor running at 1.77 MHz. It spawned two other major models, the Model III and the Model 4 and its variants.&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model I==&lt;br /&gt;
&lt;br /&gt;
The original versions came with 4k [[RAM]] and Level I [[BASIC]] which was on [[Tiny Basic]]. In 1978, [[Level II Basic]], a double precision [[floating point]] Basic written by [[Microsoft]]. Also, in 1978, the Expansion Interface was released. This Interface allowed up to four [[floppy disk]] drives and up to 48k RAM in groups of 16k assuming the base system had 16k installed. It also allowed a [[printer]] to be attached. Without the Expansion Interface, you could only use a cassette deck as storage.&lt;br /&gt;
&lt;br /&gt;
There were a few different DOSes available with TRSDOS being Radio Shack's OS. LDOS and DoubleDOS were two very popular third-party DOSes. &lt;br /&gt;
&lt;br /&gt;
The second TRS-80 computer, the incompatible business computer Model II, part of the [[TRS-80 Model II Family]], was released in 1979. It should be known that in 1978, a short-lived business system called the [[Tandy 10 Business Computer]] was released but it sold extremely poorly and to the best of my knowledge wasn't even featured in the famous [[Radio Shack]] Computer Catalogs. &lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model III==&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 Model III&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| year introduced     =  1980&lt;br /&gt;
| year discontinued   =  1983&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  2 MHz &lt;br /&gt;
| ram                 =  4 KB (Level I Basic) 16 - 48 KB (Level II Basic)&lt;br /&gt;
| cpu                 =  Z80A&lt;br /&gt;
| operating system    =  Level I Basic, Level II Basic, TRSDOS, [[Third Party TRS-80 DOSes|Third Party DOSes including LDOS]]&lt;br /&gt;
| predecessor         =  Model I&lt;br /&gt;
| successor           =  TRS-80 Model 4&lt;br /&gt;
| price               =  US$699 - US$2495&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
In 1980, the Model I's mostly compatible successor the '''TRS-80 Model III''' was released. It was an all-in-system with a faster and improved Z80A and the ability to type in lower case plus other improvements. Not long after, the FCC declared that the Model I did not comply to new, more stringent RF [[interference]] standard and Radio Shack had to take it off the market. Like the Model I, the Model III came in both Level I and Level II Basic varieties although the Level I version wasn't very popular. The most popular system was probably the dual floppy disk system. A new version of TRSDOS, 1.3, was released due to architecture differences. Some Model I disks could be read on the Model III, but not vice-versa. The Model III was in production until being replaced by the more capable Model 4.&lt;br /&gt;
&lt;br /&gt;
==TRS-80 Model 4==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 Model 4, 4P, 4D&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| year introduced     =  1983&lt;br /&gt;
| year discontinued   =  1991&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  4 MHz &lt;br /&gt;
| ram                 =  64 - 128 KB&lt;br /&gt;
| cpu                 =  Z80 (Later Z80A)&lt;br /&gt;
| operating system    =  TRSDOS, Third Party DOSes including LS-DOS, [[CPM]] (both 2.2 and 3)&lt;br /&gt;
| predecessor         =  TRS-80 Model III&lt;br /&gt;
| successor           =  Last in its line&lt;br /&gt;
| price               =  US$1699&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The final model in the Model I family was the '''TRS-80 Model 4''' and its variants. Although, it had a Model III compatibility mode, it was much different and more capable machine. First of all and one of the biggest selling points is that the Model 4 is the only descendant of the Model I that could run unmodified CP/M. Where that Model II family could run it from the beginning, the Model I family's memory map was set up in a way that typical CP/M and its software could not be run. Also, being expandable up to 128 KB, it could take advantage of CP/M Plus's [[bank switching]] capabilities. The bundled operating system was TRSDOS 6.2, which was essentially a re-badged third-party LDOS 6.2. LS-DOS, an improved LDOS was also available and most hobbyists use it today. There were three variants of the Model 4 and they are described below.&lt;br /&gt;
&lt;br /&gt;
===Gate Array Model 4===&lt;br /&gt;
&lt;br /&gt;
The gate array model 4 was an improvement upon the system allowing for zero [[wait-state]]s and full 4 MHz operation of the Z80A. One of its distinguishing characteristics is a green on black display instead of the white on black present in previous TRS-80s.&lt;br /&gt;
&lt;br /&gt;
===TRS-80 Model 4P===&lt;br /&gt;
&lt;br /&gt;
The Model 4P, released in late 1983, was a transportable Model 4 that unlike the other models lacked a cassette interface. Like many other transportables of its time the keyboard doubled as a lid. It later came came in a gate array version but it is unclear whether the color of the text is different between the two versions. &lt;br /&gt;
&lt;br /&gt;
===Tandy TRS-80 Model 4D===&lt;br /&gt;
&lt;br /&gt;
The final variant was the Model 4D. It is a gate array system with dual double-sided, double-density 360 KB floppy disks. It was bundled with [[Deskmate]]. Also, of note, it was the last computer to bear the TRS-80 nameplate although it shared the Tandy name as well.&lt;br /&gt;
&lt;br /&gt;
==Peripherals==&lt;br /&gt;
&lt;br /&gt;
In addition, to printers and additional floppy drives (available up to a total of 4 on all models except the Model 4P), 5 and 10 MB hard drives were available. Although, TRSDOS is a flat filesystem, many users made multiple partitions to organize storage.&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Model I family is still used by many hobbyists and there have been third-party network cards and even enhanced video playback. SD cards have replaced floppies and hard drives and there are even subReddits and Facebook groups for these systems.&lt;br /&gt;
&lt;br /&gt;
There are many good emulators for the system, but I recommend [http://48k.ca/trs80gp.html trs80gp] which emulates multiple emulates all of the Z80 TRS-80 systems plus the Model 16, Tandy 6000, and the [[TRS-80 MC-10]], a small, low price home computer. There is also good software representation in the TOSEC for all of the models.&lt;br /&gt;
&lt;br /&gt;
* The site for all things TRS-80 [https://www.trs-80.com/wordpress]&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template_talk:Nav_TRS-80&amp;diff=29722</id>
		<title>Template talk:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template_talk:Nav_TRS-80&amp;diff=29722"/>
				<updated>2023-05-23T01:41:49Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Housekeeping question&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When I made this template I was going with a different and decidedly inaccurate naming convention for Radio Shack computers.Does anyone think I need to change the name of the template or since it's mostly an internal thing, can I leave it be?&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29721</id>
		<title>Template:Nav TRS-80</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Template:Nav_TRS-80&amp;diff=29721"/>
				<updated>2023-05-23T01:38:34Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Made a few adjustment to prepare for major overhaul in Model I article (now called Model I Family) added CP/M to list of Operating systems&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navigation&lt;br /&gt;
| templateName = Nav TRS-80&lt;br /&gt;
| title = Radio Shack Computers, Peripherals, and Operating Systems&lt;br /&gt;
| body = &amp;lt;b&amp;gt;Zilog Z80 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model I Family|Model I]] • [[TRS-80 Model II Family|Model II and Model 12]] • [[TRS-80 Model I Family|Model III]] • [[TRS-80 Model I Family|Model 4, 4P, and 4D]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Motorola 68000 Systems&amp;lt;/b&amp;gt; - [[TRS-80 Model II Family|Model 16, 16B, and Tandy 6000]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Other Home Computers&amp;lt;/b&amp;gt; - [[TRS-80 Color Computer Family|Color Computer 1, 2, and 3]] • [[MC-10]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;x86-Based Computers&amp;lt;/b&amp;gt; - [[Tandy TRS-80 Model 2000]] • [[Tandy 1000 Series|Tandy 1000]] [[Tandy 1000 EX and HX|EX and HX]] [[Tandy 1000 S-Series|SX, SL, and SL/2]] [[Tandy 1000 T-Series|TX, TL, TL/2, and TL/3]] [[Tandy 1000 R-Series|RL, RL HD, RLX, RSX]] • [[Tandy Sensation]] • [[Other Tandy x86 Desktop Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Portable Computers&amp;lt;/b&amp;gt; - [[TRS-80 Model 100 Family|Model 100, Model 102, and Model 200]] • [[Tandy Model 600]] • [[Tandy PC-Compatible Laptops]] • [[TRS-80 Pocket Computers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Peripherals&amp;lt;/b&amp;gt; - [[TRS-80 Terminals|Terminals]] • [[TRS-80 Printers|Printers]] • [[TRS-80 Floppy Drives|Floppy Drives]] • [[TRS-80 Hard Drives|Hard Drives]] • [[Tandy 1000 Smart Drives]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Operating Systems&amp;lt;/b&amp;gt; - [[TRSDOS]] • [[Third Party TRS-80 DOSes]] • [[CP/M]] • [[XENIX]] • [[OS9|OS/9]] • [[MS-DOS]] • [[Deskmate]] • [[Microsoft Windows]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29719</id>
		<title>TRS-80 Model I Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29719"/>
				<updated>2023-05-23T01:32:27Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Rayrayemu moved page TRS-80 Model I to TRS-80 Model I Family: Rename in preparaton for expanded article PLEASE keep redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 Model I&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| date announced      =  August 3, 1977&lt;br /&gt;
| date first shipped  =  November, 1977&lt;br /&gt;
| year introduced     =  1977&lt;br /&gt;
| year discontinued   =  1980&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  1.774 MHz &lt;br /&gt;
| ram                 =  4k (Level I Basic) 16k-48k (Level II Basic)&lt;br /&gt;
| cpu                 =  Z80 (Later Z80A)&lt;br /&gt;
| operating system    =  Level I Basic, Level II Basic, TRSDOS, Third Party DOSes including LDOS&lt;br /&gt;
| successor           =  TRS-80 Model III&lt;br /&gt;
| price               =  US$599&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model I''' computer, originally known as simply the '''TRS-80''' computer, was released in 1977. It is considered to be part of the &amp;quot;1977 trinity of home computers also including the [[Apple II]] and the [[Commodore Pet]]. Unlike the [[6502]] driven Apple and Commodore machines, the Model I used the [[Zilog Z80]] processor running at 1.77 MHz.&lt;br /&gt;
&lt;br /&gt;
The original versions came with 4k [[RAM]] and Level I [[BASIC]] which was on [[Tiny Basic]]. In 1978, [[Level II Basic]], a double precision [[floating point]] Basic written by [[Microsoft]]. Also, in 1978, the Expansion Interface was released. This Interface allowed up to four [[floppy disk]] drives and up to 48k RAM in groups of 16k assuming the base system had 16k installed. It also allowed a [[printer]] to be attached.&lt;br /&gt;
&lt;br /&gt;
The second TRS-80 computer, the incompatible business computer Model II part of the [[TRS-80 Model II Family]] was released in 1979. It should be known that in 1978 a short-lived business system called the [[Tandy 10 Business Computer]] was released but it sold extremely poorly and to the best of my knowledge wasn't even featured in the famous [[Radio Shack]] Computer Catalogs. In 1980, it's mostly compatible successor the [[TRS-80 Model III]] was released. It was an all-in-system with a faster Z80 and the ability to type in lower case plus other improvements. Not long after, the FCC declared that the Model I did not comply to new, more stringent RF [[interference]] standard and Radio Shack had to take it off the market. &lt;br /&gt;
&lt;br /&gt;
There are many good emulators for the system, but I recommend [[trs80gp]] which emulates multiple emulates all of the Z80 TRS-80 systems plus the Model 16, Tandy 6000, and the [[TRS-80 MC-10]], a small, low price home computer.&lt;br /&gt;
&lt;br /&gt;
{{semi-stub}}&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_I&amp;diff=29720</id>
		<title>TRS-80 Model I</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_I&amp;diff=29720"/>
				<updated>2023-05-23T01:32:27Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Rayrayemu moved page TRS-80 Model I to TRS-80 Model I Family: Rename in preparaton for expanded article PLEASE keep redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[TRS-80 Model I Family]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29718</id>
		<title>Tandy 1000 Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29718"/>
				<updated>2023-05-23T01:30:01Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Removed word Adapter from Tandy Graphics for consistency's sake&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000, 1000A, 1000HD&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = November 1984&lt;br /&gt;
| year discontinued = Series Discontinued: 1993, Original Model: Unknown&lt;br /&gt;
| cpu = [[Intel 8088]]&lt;br /&gt;
| clock speed = 4.77 MHz&lt;br /&gt;
| ram = 128 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = PCjr Graphics, later known as Tandy Graphics&lt;br /&gt;
| successor = [[Tandy 1000 S-Series|Tandy 1000 SX]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 series''' was [[Radio Shack]]'s second attempt at creating an [[MS-DOS]] system with the first being the [[Tandy TRS-80 2000]]. The 2000 was a huge flop but the 1000 was one of Radio Shack's biggest successes. This article is mostly about the original Tandy 1000 and its 3 variants but there is also a brief rundown of the other models in the series. Although the 2000 was an MS-DOS system it was not fully compatible due to incompatible hardware and the use of the [[Intel 80186]] processor. The Tandy 1000 on the other hand was designed to be PC compatible (actually [[IBM PCjr]] compatible) from the beginning. &lt;br /&gt;
&lt;br /&gt;
==Tandy's Intentions for this New Computer==&lt;br /&gt;
&lt;br /&gt;
In 1983, Tandy Radio Shack knew they had to get into the PC compatible market and had a great idea. Instead of following companies such as [[Compaq]], what if they made a system that had superior sound and graphics to the average compatible? So, they decided to make a true compatible but instead of using the standard at the time, [[CGA]] graphics and a simple speaker, what if they utilized the PCjr 16 color 320x200 graphics and 3 voice sound? So the Tandy 1000 was born, released in November of 1984. The initial model had a 4.77 MHz [[Intel 8088]] processor, 128k of [[Random Access Memory|RAM]], and no [[Direct Memory Access|DMA]] (although an expansion card was available the offered this and room to expand the RAM to 640k. Another few features to note is that almost all of the Tandy 1000s used proprietary [[keyboard]]s and [[parallel interface|parallel ports]] (used only for [[printer]]s). Also, there were two built-in [[joystick]] ports that used the same interface as the [[TRS-80 Color Computer Family]] and a reset switch. Also, soon what was once called &amp;quot;PCjr Compatible&amp;quot; quickly became known as &amp;quot;Tandy Compatible&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Rise in Popularity==&lt;br /&gt;
&lt;br /&gt;
The 1000 immediately became a hit and had 3 variations the original 1000; the 1000A, same system with a revised [[motherboard]]; and 1000HD, with either a 10 or 20 MB [[hard disk]] drive. The first new model was released in 1986, the [[Tandy 1000 S-Series|Tandy 1000 SX]] with a faster 8088 processor, built-in DMA, 384k RAM, and Volume Control. Two other models were also released around this time: the [[Tandy 1000 T-Series|Tandy 1000 TX]] and the [[Tandy 1000 EX and HX|Tandy 1000 EX]]. The TX was an XT class [[Intel 80286]] system and the EX was an a one-piece machine with built-in keyboard and a proprietary expansion [[bus]].&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 spawned many more models including the last model, an [[Intel 80386SX]] processor system with [[SVGA]] graphics but still with the Tandy sound chip called the [[Tandy_1000 R-Series|Tandy 1000 RSX]]. Once [[VGA]] became more affordable and the [[Sound Blaster]] was released, the Tandy 1000 series soon became obsolete and Tandy started to sell AST computers in place of their own line.&lt;br /&gt;
&lt;br /&gt;
==Deskmate==&lt;br /&gt;
&lt;br /&gt;
One of the most distinctive features of Tandy 1000s was not hardware but software. Beginning with the original Tandy 1000, all systems were bundled with a multipurpose program called [[Deskmate]]. It start as a simple text-based all-in-one programs similar to [[Microsoft Works]] for DOS and quickly evolved into a full-fledged [[mouse]]-based [[graphical user interface|GUI]]. Deskmate 3, the final incarnation was perfect as a lower-resource intensive [[Microsoft Windows]] 3 type shell with even a large amount of 3rd-party software including [[Lotus 1-2-3]] and many educational titles. On the RL, RLX, and RSX; Deskmate had even more functionality with a built-in home organizer and even a very early kind of &amp;quot;Smart Home&amp;quot; control. Generally Deskmate would only run on the model of 1000 that it came bundled with but version 3.0.5 would run on any PC-Compatible including support for VGA although for sound, an actual Tandy 1000 was required. If you want to run Deskmate with full sound, try running it on on [[DOSBox]]. A tutorial is here: [[Installing Deskmate on DOSBox]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
* [https://ia803107.us.archive.org/5/items/tandy1000extechnicalreferencemanual/Tandy_1000EX_Technical_Reference_Manual.pdf Tandy 1000EX Technical Reference Manual]&lt;br /&gt;
* [https://ia803002.us.archive.org/25/items/tandy-1000sx-technical-reference-manual/1000SX%20Technical%20Manual.pdf Tandy 1000SX Technical Reference Manual]&lt;br /&gt;
* [https://ia801008.us.archive.org/31/items/tandy1000txtechnicalreferencemanual/Tandy%201000TX%20Technical%20Reference%20Manual.pdf Tandy 1000TX Technical Reference Manual]&lt;br /&gt;
* [http://www.dosdays.co.uk/computers/Tandy%201000/download.php Tandy 1000 Series Downloads]&lt;br /&gt;
** [http://www.dosdays.co.uk/computers/Tandy%201000/1kintro.pdf Introduction to the Tandy 1000]&lt;br /&gt;
* [http://www.oldskool.org/guides/tvdog/tandy1000.html Tandy 1000 Files]&lt;br /&gt;
** [http://www.oldskool.org/guides/tvdog/documents.html Documentation Files]&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_S-Series&amp;diff=29717</id>
		<title>Tandy 1000 S-Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_S-Series&amp;diff=29717"/>
				<updated>2023-05-23T01:26:41Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Fixed typo, added information about SL keyboard and about RAM boot.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SX (AX) &lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1986&lt;br /&gt;
| cpu = [[Intel 8088]]-2&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 384 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| operating system = [[MS-DOS]] 3.2, [[Deskmate]] II&lt;br /&gt;
| predecssor = [[Tandy 1000 Series|Tandy 1000A]]&lt;br /&gt;
| successor = Tandy 1000 SL&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SL&lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1989&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 384 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| operating system = [[MS-DOS]] 3.3, [[Deskmate]] 3&lt;br /&gt;
| predecssor = Tandy 1000 SL&lt;br /&gt;
| successor = Tandy 1000 SL/2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SL/2&lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1990&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 512 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| operating system = [[MS-DOS]] 3.3, [[Deskmate]] 3&lt;br /&gt;
| predecssor = Tandy 1000 SL&lt;br /&gt;
| successor = [[Tandy 1000 R-Series|Tandy 1000 RL]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
After the success of the original Tandy 1000, in 1986, Radio Shack debuted three new models: the 1000 SX, the [[Tandy 1000 EX and HX|1000 EX]], and the [[Tandy 1000 T-Series|1000 TX]]. &lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SX==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 SX was the direct descendant of the original Tandy 1000. It was a significant improvement over the original with an Intel 8088-2 processor running at 7.16 MHz. It came with 640 KB [[RAM]], built-in [[DMA]] and 5 8-bit [[ISA]] slots. Another feature, that became standard on all subsequent models was a simple potentiometer that acted as a volume control. A noted peripheral that Tandy sold starting with this era of 1000s was called a [[hard card]]. This was simply an 8-bit ISA card that contained both a 20 or 40 MB [[hard drive]] with controller circuitry built-in to the card. There was a variant of the SX called the Tandy 1000 AX was also sold that was sold at Walmart stores.&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SL==&lt;br /&gt;
&lt;br /&gt;
The next model in the family was the Tandy 1000 SL. It came with 512 KB RAM and a redesigned case whose design scheme was present in all subsequent 1000 models. Part of this design was an improved keyboard similar to most of the other XT Compatibles of the time. Interestingly, it used a PS/2 mind-DIN type connector but it was not compatible with other PS/2 keyboard due to the fact that internally it was wired like an IBM PC XT keyboard. Also, it featured &amp;quot;high-resolution&amp;quot; (Tandy II) graphics and improved sound with a built in 8-bit DAC. An option for all of the &amp;quot;L-badged&amp;quot; machines was the SmartWatch, a battery backed-up real time clock (RTC). Another feature which was taken from the earlier all-in-one [[Tandy 1000 EX and HX|Tandy 1000 HX]] was the ability to boot the MS-DOS command.com from a ROM. Also on this ROM was the Deskmate executable, desk.com. This ROM on a non-hard disk system was C: drive and it was D: on systems with a hard disk. Because of the Deskmate executable being on the ROM, there actually was no executable on the floppy set that came with the system. &lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SL/2==&lt;br /&gt;
&lt;br /&gt;
The final model in this family was Tandy 1000 SL/2. It is identical to the SL except that instead of a 360 KB 5 and a quarter inch [[floppy disk]] drive, it has a 720K three and a half inch drive.&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The S-Series was one of the most popular [[XT-Compatible]] computers of its time. They were so well known that over 25 years later, the Tandy 1000 SL was featured many times in the hit tv show Young Sheldon. In the first time it was featured, one of the sub-plots was Sheldon fawning over one prominently displayed at the front of a Radio Shack store and eventually in the episode his parents bought it for him. After that, it was always shown when ever Sheldon was playing on his pride and joy. '''Anecdote:''' I started working for Radio Shack in late 1989 and the SL was starting to be phased out to make way for the SL/2, but what I do remember about both the SL and SL/2 is that one of them was prominently displayed as soon as you walked into the store just like on Young Sheldon. It was also our best-selling computer by far until the 1000 RL came out.&lt;br /&gt;
&lt;br /&gt;
In 1991, the SL/2 was slowly replaced by the Tandy 1000 RL which in some ways was less capable but in other ways more so.&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_S-Series&amp;diff=29707</id>
		<title>Tandy 1000 S-Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_S-Series&amp;diff=29707"/>
				<updated>2023-05-22T23:51:45Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Creation of article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SX (AX) &lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1986&lt;br /&gt;
| cpu = [[Intel 8088]]-2&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 384 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics&lt;br /&gt;
| operating system = [[MS-DOS]] 3.2, [[Deskmate]] II&lt;br /&gt;
| predecssor = [[Tandy 1000 Series|Tandy 1000A]]&lt;br /&gt;
| successor = Tandy 1000 SL&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SL&lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1989&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 8 MHz&lt;br /&gt;
| ram = 384 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| operating system = [[MS-DOS]] 3.3, [[Deskmate]] 3&lt;br /&gt;
| predecssor = Tandy 1000 SL&lt;br /&gt;
| successor = Tandy 1000 SL/2&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000 SL/2&lt;br /&gt;
| manufacturer = [[Tandy Corporation]]&lt;br /&gt;
| form factor = [[Compatible PCs]]&lt;br /&gt;
| year introduced = 1990&lt;br /&gt;
| cpu = [[Intel 8086]]&lt;br /&gt;
| clock speed = 7.16 MHz&lt;br /&gt;
| ram = 512 KB standard, expanded to 640 KB&lt;br /&gt;
| graphics = Tandy Graphics II&lt;br /&gt;
| operating system = [[MS-DOS]] 3.3, [[Deskmate]] 3&lt;br /&gt;
| predecssor = Tandy 1000 SL&lt;br /&gt;
| successor = [[Tandy 1000 R-Series|Tandy 1000 RL]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
After the success of the original Tandy 1000, in 1986, Radio Shack debuted three new models: the 1000 SX, the [[Tandy 1000 EX and HX|1000 EX]], and the [[Tandy 1000 T-Series|1000 TX]]. &lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SX==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 SX was the direct descendant of the original Tandy 1000. It was a significant improvement over the original with an Intel 8088-2 processor running at 7.16 MHz. It came with 640 KB [[RAM]], built-in [[DMA]] and 5 8-bit [[ISA]] slots. Another feature, that became standard on all subsequent models was a simple potentiometer that acted as a volume control. A noted peripheral that Tandy sold starting with this era of 1000s was called a [[hard card]]. This was simply an 8-bit ISA card that contained both a 20 or 40 MB [[hard drive]] with controller circuitry built-in to the card. There was a variant of the SX called the Tandy 1000 AX was also sold that was sold at Walmart stores.&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SL==&lt;br /&gt;
&lt;br /&gt;
The next model in the family was the Tandy 1000 SL. It came with 512 KB RAM and a redesigned case whose design scheme was present in all subsequent 1000 models. Also, it featured &amp;quot;high-resolution&amp;quot; (Tandy II) graphics and improved sound with a built in 8-bit DAC. An option for all of the &amp;quot;L-badged&amp;quot; machines was the SmartWatch, a battery backed-up real time clock (RTC).&lt;br /&gt;
&lt;br /&gt;
==Tandy 1000 SL/2==&lt;br /&gt;
&lt;br /&gt;
The final model in this family was Tandy 1000 SL/2. It is identical to the SL except that instead of a 360 KB 5 and a quarter inch [[floppy disk]] drive, it has a 720K three and a half inch drive.&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The S-Series was one of the most popular [[XT-Compatible]] computers of its time. They were so well known that over 25 years later, the Tandy 1000 SL was featured many times in the hit tv show Young Sheldon. In the first time it was featured, one of the sub-plots was Sheldon fawning over one prominently displayed at the front of a Radio Shack store and eventually in the episode his parents bought it for him. After that, it was always shown when ever Sheldon was playing on his pride and joy. '''Anecdote:''' I started working for Radio Shack in late 1989 and the SL was starting to be phased out to make way for the SL/2, but what I do remember about both the SL and SL/2 is that one of them was prominently displayed as soon as you walked into the store just like on Young Sheldon. It was also our best-selling computer by far until the 1000 RL came out.&lt;br /&gt;
&lt;br /&gt;
In 1991, the SL/2 was slowly replaced by the Tandy 1000 RL which in some was less capable but in other ways more so.&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29706</id>
		<title>Tandy 1000 Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29706"/>
				<updated>2023-05-22T21:43:36Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added alias and fixed link for 1000 SX&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000, 1000A, 1000HD&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = November 1984&lt;br /&gt;
| year discontinued = Series Discontinued: 1993, Original Model: Unknown&lt;br /&gt;
| cpu = [[Intel 8088]]&lt;br /&gt;
| clock speed = 4.77 MHz&lt;br /&gt;
| ram = 128 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = PCjr Graphics, later known as Tandy Graphics Adapter&lt;br /&gt;
| successor = [[Tandy 1000 S-Series|Tandy 1000 SX]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 series''' was [[Radio Shack]]'s second attempt at creating an [[MS-DOS]] system with the first being the [[Tandy TRS-80 2000]]. The 2000 was a huge flop but the 1000 was one of Radio Shack's biggest successes. This article is mostly about the original Tandy 1000 and its 3 variants but there is also a brief rundown of the other models in the series. Although the 2000 was an MS-DOS system it was not fully compatible due to incompatible hardware and the use of the [[Intel 80186]] processor. The Tandy 1000 on the other hand was designed to be PC compatible (actually [[IBM PCjr]] compatible) from the beginning. &lt;br /&gt;
&lt;br /&gt;
==Tandy's Intentions for this New Computer==&lt;br /&gt;
&lt;br /&gt;
In 1983, Tandy Radio Shack knew they had to get into the PC compatible market and had a great idea. Instead of following companies such as [[Compaq]], what if they made a system that had superior sound and graphics to the average compatible? So, they decided to make a true compatible but instead of using the standard at the time, [[CGA]] graphics and a simple speaker, what if they utilized the PCjr 16 color 320x200 graphics and 3 voice sound? So the Tandy 1000 was born, released in November of 1984. The initial model had a 4.77 MHz [[Intel 8088]] processor, 128k of [[Random Access Memory|RAM]], and no [[Direct Memory Access|DMA]] (although an expansion card was available the offered this and room to expand the RAM to 640k. Another few features to note is that almost all of the Tandy 1000s used proprietary [[keyboard]]s and [[parallel interface|parallel ports]] (used only for [[printer]]s). Also, there were two built-in [[joystick]] ports that used the same interface as the [[TRS-80 Color Computer Family]] and a reset switch. Also, soon what was once called &amp;quot;PCjr Compatible&amp;quot; quickly became known as &amp;quot;Tandy Compatible&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Rise in Popularity==&lt;br /&gt;
&lt;br /&gt;
The 1000 immediately became a hit and had 3 variations the original 1000; the 1000A, same system with a revised [[motherboard]]; and 1000HD, with either a 10 or 20 MB [[hard disk]] drive. The first new model was released in 1986, the [[Tandy 1000 S-Series|Tandy 1000 SX]] with a faster 8088 processor, built-in DMA, 384k RAM, and Volume Control. Two other models were also released around this time: the [[Tandy 1000 T-Series|Tandy 1000 TX]] and the [[Tandy 1000 EX and HX|Tandy 1000 EX]]. The TX was an XT class [[Intel 80286]] system and the EX was an a one-piece machine with built-in keyboard and a proprietary expansion [[bus]].&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 spawned many more models including the last model, an [[Intel 80386SX]] processor system with [[SVGA]] graphics but still with the Tandy sound chip called the [[Tandy_1000 R-Series|Tandy 1000 RSX]]. Once [[VGA]] became more affordable and the [[Sound Blaster]] was released, the Tandy 1000 series soon became obsolete and Tandy started to sell AST computers in place of their own line.&lt;br /&gt;
&lt;br /&gt;
==Deskmate==&lt;br /&gt;
&lt;br /&gt;
One of the most distinctive features of Tandy 1000s was not hardware but software. Beginning with the original Tandy 1000, all systems were bundled with a multipurpose program called [[Deskmate]]. It start as a simple text-based all-in-one programs similar to [[Microsoft Works]] for DOS and quickly evolved into a full-fledged [[mouse]]-based [[graphical user interface|GUI]]. Deskmate 3, the final incarnation was perfect as a lower-resource intensive [[Microsoft Windows]] 3 type shell with even a large amount of 3rd-party software including [[Lotus 1-2-3]] and many educational titles. On the RL, RLX, and RSX; Deskmate had even more functionality with a built-in home organizer and even a very early kind of &amp;quot;Smart Home&amp;quot; control. Generally Deskmate would only run on the model of 1000 that it came bundled with but version 3.0.5 would run on any PC-Compatible including support for VGA although for sound, an actual Tandy 1000 was required. If you want to run Deskmate with full sound, try running it on on [[DOSBox]]. A tutorial is here: [[Installing Deskmate on DOSBox]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
* [https://ia803107.us.archive.org/5/items/tandy1000extechnicalreferencemanual/Tandy_1000EX_Technical_Reference_Manual.pdf Tandy 1000EX Technical Reference Manual]&lt;br /&gt;
* [https://ia803002.us.archive.org/25/items/tandy-1000sx-technical-reference-manual/1000SX%20Technical%20Manual.pdf Tandy 1000SX Technical Reference Manual]&lt;br /&gt;
* [https://ia801008.us.archive.org/31/items/tandy1000txtechnicalreferencemanual/Tandy%201000TX%20Technical%20Reference%20Manual.pdf Tandy 1000TX Technical Reference Manual]&lt;br /&gt;
* [http://www.dosdays.co.uk/computers/Tandy%201000/download.php Tandy 1000 Series Downloads]&lt;br /&gt;
** [http://www.dosdays.co.uk/computers/Tandy%201000/1kintro.pdf Introduction to the Tandy 1000]&lt;br /&gt;
* [http://www.oldskool.org/guides/tvdog/tandy1000.html Tandy 1000 Files]&lt;br /&gt;
** [http://www.oldskool.org/guides/tvdog/documents.html Documentation Files]&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29705</id>
		<title>Tandy 1000 Series</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Tandy_1000_Series&amp;diff=29705"/>
				<updated>2023-05-22T21:40:40Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added Infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name = Tandy 1000, 1000A, 1000HD&lt;br /&gt;
| manufacturer = Tandy Corporation&lt;br /&gt;
| form factor = [[Compatible PC]]&lt;br /&gt;
| year introduced = November 1984&lt;br /&gt;
| year discontinued = Series Discontinued: 1993, Original Model: Unknown&lt;br /&gt;
| cpu = [[Intel 8088]]&lt;br /&gt;
| clock speed = 4.77 MHz&lt;br /&gt;
| ram = 128 KB standard, expandable up to 640 KB&lt;br /&gt;
| graphics = PCjr Graphics, later known as Tandy Graphics Adapter&lt;br /&gt;
| successor = [[Tandy 1000 SX]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
The '''Tandy 1000 series''' was [[Radio Shack]]'s second attempt at creating an [[MS-DOS]] system with the first being the [[Tandy TRS-80 2000]]. The 2000 was a huge flop but the 1000 was one of Radio Shack's biggest successes. This article is mostly about the original Tandy 1000 and its 3 variants but there is also a brief rundown of the other models in the series. Although the 2000 was an MS-DOS system it was not fully compatible due to incompatible hardware and the use of the [[Intel 80186]] processor. The Tandy 1000 on the other hand was designed to be PC compatible (actually [[IBM PCjr]] compatible) from the beginning. &lt;br /&gt;
&lt;br /&gt;
==Tandy's Intentions for this New Computer==&lt;br /&gt;
&lt;br /&gt;
In 1983, Tandy Radio Shack knew they had to get into the PC compatible market and had a great idea. Instead of following companies such as [[Compaq]], what if they made a system that had superior sound and graphics to the average compatible? So, they decided to make a true compatible but instead of using the standard at the time, [[CGA]] graphics and a simple speaker, what if they utilized the PCjr 16 color 320x200 graphics and 3 voice sound? So the Tandy 1000 was born, released in November of 1984. The initial model had a 4.77 MHz [[Intel 8088]] processor, 128k of [[Random Access Memory|RAM]], and no [[Direct Memory Access|DMA]] (although an expansion card was available the offered this and room to expand the RAM to 640k. Another few features to note is that almost all of the Tandy 1000s used proprietary [[keyboard]]s and [[parallel interface|parallel ports]] (used only for [[printer]]s). Also, there were two built-in [[joystick]] ports that used the same interface as the [[TRS-80 Color Computer Family]] and a reset switch. Also, soon what was once called &amp;quot;PCjr Compatible&amp;quot; quickly became known as &amp;quot;Tandy Compatible&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==Rise in Popularity==&lt;br /&gt;
&lt;br /&gt;
The 1000 immediately became a hit and had 3 variations the original 1000; the 1000A, same system with a revised [[motherboard]]; and 1000HD, with either a 10 or 20 MB [[hard disk]] drive. The first new model was released in 1986, the [[Tandy 1000 S-Series|Tandy 1000 SX]] with a faster 8088 processor, built-in DMA, 384k RAM, and Volume Control. Two other models were also released around this time: the [[Tandy 1000 T-Series|Tandy 1000 TX]] and the [[Tandy 1000 EX and HX|Tandy 1000 EX]]. The TX was an XT class [[Intel 80286]] system and the EX was an a one-piece machine with built-in keyboard and a proprietary expansion [[bus]].&lt;br /&gt;
&lt;br /&gt;
==Legacy==&lt;br /&gt;
&lt;br /&gt;
The Tandy 1000 spawned many more models including the last model, an [[Intel 80386SX]] processor system with [[SVGA]] graphics but still with the Tandy sound chip called the [[Tandy_1000 R-Series|Tandy 1000 RSX]]. Once [[VGA]] became more affordable and the [[Sound Blaster]] was released, the Tandy 1000 series soon became obsolete and Tandy started to sell AST computers in place of their own line.&lt;br /&gt;
&lt;br /&gt;
==Deskmate==&lt;br /&gt;
&lt;br /&gt;
One of the most distinctive features of Tandy 1000s was not hardware but software. Beginning with the original Tandy 1000, all systems were bundled with a multipurpose program called [[Deskmate]]. It start as a simple text-based all-in-one programs similar to [[Microsoft Works]] for DOS and quickly evolved into a full-fledged [[mouse]]-based [[graphical user interface|GUI]]. Deskmate 3, the final incarnation was perfect as a lower-resource intensive [[Microsoft Windows]] 3 type shell with even a large amount of 3rd-party software including [[Lotus 1-2-3]] and many educational titles. On the RL, RLX, and RSX; Deskmate had even more functionality with a built-in home organizer and even a very early kind of &amp;quot;Smart Home&amp;quot; control. Generally Deskmate would only run on the model of 1000 that it came bundled with but version 3.0.5 would run on any PC-Compatible including support for VGA although for sound, an actual Tandy 1000 was required. If you want to run Deskmate with full sound, try running it on on [[DOSBox]]. A tutorial is here: [[Installing Deskmate on DOSBox]].&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
&lt;br /&gt;
* [https://ia803107.us.archive.org/5/items/tandy1000extechnicalreferencemanual/Tandy_1000EX_Technical_Reference_Manual.pdf Tandy 1000EX Technical Reference Manual]&lt;br /&gt;
* [https://ia803002.us.archive.org/25/items/tandy-1000sx-technical-reference-manual/1000SX%20Technical%20Manual.pdf Tandy 1000SX Technical Reference Manual]&lt;br /&gt;
* [https://ia801008.us.archive.org/31/items/tandy1000txtechnicalreferencemanual/Tandy%201000TX%20Technical%20Reference%20Manual.pdf Tandy 1000TX Technical Reference Manual]&lt;br /&gt;
* [http://www.dosdays.co.uk/computers/Tandy%201000/download.php Tandy 1000 Series Downloads]&lt;br /&gt;
** [http://www.dosdays.co.uk/computers/Tandy%201000/1kintro.pdf Introduction to the Tandy 1000]&lt;br /&gt;
* [http://www.oldskool.org/guides/tvdog/tandy1000.html Tandy 1000 Files]&lt;br /&gt;
** [http://www.oldskool.org/guides/tvdog/documents.html Documentation Files]&lt;br /&gt;
&lt;br /&gt;
{{Nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;br /&gt;
[[Category: Tandy 1000]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29704</id>
		<title>TRS-80 Model I Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29704"/>
				<updated>2023-05-22T21:28:04Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Machine&lt;br /&gt;
| name                =  TRS-80 Model I&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| date announced      =  August 3, 1977&lt;br /&gt;
| date first shipped  =  November, 1977&lt;br /&gt;
| year introduced     =  1977&lt;br /&gt;
| year discontinued   =  1980&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  1.774 MHz &lt;br /&gt;
| ram                 =  4k (Level I Basic) 16k-48k (Level II Basic)&lt;br /&gt;
| cpu                 =  Z80 (Later Z80A)&lt;br /&gt;
| operating system    =  Level I Basic, Level II Basic, TRSDOS, Third Party DOSes including LDOS&lt;br /&gt;
| successor           =  TRS-80 Model III&lt;br /&gt;
| price               =  US$599&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model I''' computer, originally known as simply the '''TRS-80''' computer, was released in 1977. It is considered to be part of the &amp;quot;1977 trinity of home computers also including the [[Apple II]] and the [[Commodore Pet]]. Unlike the [[6502]] driven Apple and Commodore machines, the Model I used the [[Zilog Z80]] processor running at 1.77 MHz.&lt;br /&gt;
&lt;br /&gt;
The original versions came with 4k [[RAM]] and Level I [[BASIC]] which was on [[Tiny Basic]]. In 1978, [[Level II Basic]], a double precision [[floating point]] Basic written by [[Microsoft]]. Also, in 1978, the Expansion Interface was released. This Interface allowed up to four [[floppy disk]] drives and up to 48k RAM in groups of 16k assuming the base system had 16k installed. It also allowed a [[printer]] to be attached.&lt;br /&gt;
&lt;br /&gt;
The second TRS-80 computer, the incompatible business computer Model II part of the [[TRS-80 Model II Family]] was released in 1979. It should be known that in 1978 a short-lived business system called the [[Tandy 10 Business Computer]] was released but it sold extremely poorly and to the best of my knowledge wasn't even featured in the famous [[Radio Shack]] Computer Catalogs. In 1980, it's mostly compatible successor the [[TRS-80 Model III]] was released. It was an all-in-system with a faster Z80 and the ability to type in lower case plus other improvements. Not long after, the FCC declared that the Model I did not comply to new, more stringent RF [[interference]] standard and Radio Shack had to take it off the market. &lt;br /&gt;
&lt;br /&gt;
There are many good emulators for the system, but I recommend [[trs80gp]] which emulates multiple emulates all of the Z80 TRS-80 systems plus the Model 16, Tandy 6000, and the [[TRS-80 MC-10]], a small, low price home computer.&lt;br /&gt;
&lt;br /&gt;
{{semi-stub}}&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29703</id>
		<title>TRS-80 Model I Family</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=TRS-80_Model_I_Family&amp;diff=29703"/>
				<updated>2023-05-22T21:21:34Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;!-- not clear which of the various year fields 'introduced' means, but since there are users of this template which use it, it can't be removed --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
| name                =  TRS-80 Model I&lt;br /&gt;
| manufacturer        =  Tandy Corporation&lt;br /&gt;
| date announced      =  August 3, 1977&lt;br /&gt;
| date first shipped  =  November, 1977&lt;br /&gt;
| year introduced     =  1977&lt;br /&gt;
| year discontinued   =  1980&lt;br /&gt;
| form factor         =  Microcomputer&lt;br /&gt;
| word size           =  8-bit&lt;br /&gt;
| clock speed         =  1.774 MHz &lt;br /&gt;
| ram                 =  4k (Level I Basic) 16k-48k (Level II Basic)&lt;br /&gt;
| cpu                 =  Z80 (Later Z80A)&lt;br /&gt;
| operating system    =  Level I Basic, Level II Basic, TRSDOS, Third Party DOSes including LDOS&lt;br /&gt;
| successor           =  TRS-80 Model III&lt;br /&gt;
| price               =  US$599&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- prototype (blank) entry&lt;br /&gt;
{{#if: {{{xx|}}} |&lt;br /&gt;
! xx:&lt;br /&gt;
{{!}} {{{xx}}} }}&lt;br /&gt;
|-&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{| class=&amp;quot;infobox bordered&amp;quot; style=&amp;quot;width: 25em; text-align: left; font-size: 90%&amp;quot; align=&amp;quot;right&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center; font-size: large;&amp;quot; | '''{{{name}}}'''&lt;br /&gt;
|-&lt;br /&gt;
{{#if: {{{image|}}} |&lt;br /&gt;
{{!}} colspan=&amp;quot;2&amp;quot; style=&amp;quot;text-align:center;&amp;quot; {{!}} [[Image:{{{image}}}|250px| ]]&amp;lt;br&amp;gt;{{{caption}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{manufacturer|}}} |&lt;br /&gt;
! Manufacturer:&lt;br /&gt;
{{!}} {{{manufacturer}}}  }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{architecture|}}} |&lt;br /&gt;
! Architecture:&lt;br /&gt;
{{!}} {{{architecture}}}  }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{Date announced|}}} |&lt;br /&gt;
! Date Announced:&lt;br /&gt;
{{!}} {{{year announced}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{year design started|}}} |&lt;br /&gt;
! Year Design Started:&lt;br /&gt;
{{!}} {{{year design started}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{date first shipped|}}} |&lt;br /&gt;
! Date First Shipped:&lt;br /&gt;
{{!}} {{{year first shipped}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{year introduced|}}} |&lt;br /&gt;
! Year Introduced:&lt;br /&gt;
{{!}} {{{year introduced}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{year discontinued|}}} |&lt;br /&gt;
! Year Discontinued:&lt;br /&gt;
{{!}} {{{year discontinued}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{form factor|}}} |&lt;br /&gt;
! Form Factor:&lt;br /&gt;
{{!}} {{{form factor}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{word size|}}} |&lt;br /&gt;
! Word Size:&lt;br /&gt;
{{!}} {{{word size}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{logic type|}}} |&lt;br /&gt;
! Logic Type:&lt;br /&gt;
{{!}} {{{logic type}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{design type|}}} |&lt;br /&gt;
! Design Type:&lt;br /&gt;
{{!}} {{{design type}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{uword width|}}} |&lt;br /&gt;
! Microword Width:&lt;br /&gt;
{{!}} {{{uword width}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{ucode length|}}} |&lt;br /&gt;
! Microcode Length:&lt;br /&gt;
{{!}} {{{ucode length}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{clock speed|}}} |&lt;br /&gt;
! Clock Speed:&lt;br /&gt;
{{!}} {{{clock speed}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{cycle time|}}} |&lt;br /&gt;
! Cycle Time:&lt;br /&gt;
{{!}} {{{cycle time}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{instruction speed|}}} |&lt;br /&gt;
! Instruction Speed:&lt;br /&gt;
{{!}} {{{instruction speed}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{cache size|}}} |&lt;br /&gt;
! Cache Size:&lt;br /&gt;
{{!}} {{{cache size}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{cache speed|}}} |&lt;br /&gt;
! Cache Speed:&lt;br /&gt;
{{!}} {{{cache speed}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{ram|}}} |&lt;br /&gt;
! Memory Size:&lt;br /&gt;
{{!}} {{{ram}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{memory speed|}}} |&lt;br /&gt;
! Memory Speed:&lt;br /&gt;
{{!}} {{{memory speed}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{graphics|}}} |&lt;br /&gt;
! Graphics:&lt;br /&gt;
{{!}} {{{graphics}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{cpu|}}} |&lt;br /&gt;
! CPU:&lt;br /&gt;
{{!}} {{{cpu}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{physical address|}}} |&lt;br /&gt;
! Physical Address Size:&lt;br /&gt;
{{!}} {{{physical address}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{virtual address|}}} |&lt;br /&gt;
! Virtual Address Size:&lt;br /&gt;
{{!}} {{{virtual address}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{memory mgmt|}}} |&lt;br /&gt;
! Memory Management:&lt;br /&gt;
{{!}} {{{memory mgmt}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{bus arch|}}} |&lt;br /&gt;
! Bus Architecture:&lt;br /&gt;
{{!}} {{{bus arch}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{operating system|}}} |&lt;br /&gt;
! Operating System:&lt;br /&gt;
{{!}} {{{operating system}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{predecessor|}}} |&lt;br /&gt;
! Predecessor(s):&lt;br /&gt;
{{!}} {{{predecessor}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{successor|}}} |&lt;br /&gt;
! Successor(s):&lt;br /&gt;
{{!}} {{{successor}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{price|}}} |&lt;br /&gt;
! Price:&lt;br /&gt;
{{!}} {{{price}}} }}&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
| colspan=&amp;quot;2&amp;quot; style=&amp;quot;font-size: smaller;&amp;quot; | {{{footnotes|}}}&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The '''TRS-80 Model I''' computer, originally known as simply the '''TRS-80''' computer, was released in 1977. It is considered to be part of the &amp;quot;1977 trinity of home computers also including the [[Apple II]] and the [[Commodore Pet]]. Unlike the [[6502]] driven Apple and Commodore machines, the Model I used the [[Zilog Z80]] processor running at 1.77 MHz.&lt;br /&gt;
&lt;br /&gt;
The original versions came with 4k [[RAM]] and Level I [[BASIC]] which was on [[Tiny Basic]]. In 1978, [[Level II Basic]], a double precision [[floating point]] Basic written by [[Microsoft]]. Also, in 1978, the Expansion Interface was released. This Interface allowed up to four [[floppy disk]] drives and up to 48k RAM in groups of 16k assuming the base system had 16k installed. It also allowed a [[printer]] to be attached.&lt;br /&gt;
&lt;br /&gt;
The second TRS-80 computer, the incompatible business computer Model II part of the [[TRS-80 Model II Family]] was released in 1979. It should be known that in 1978 a short-lived business system called the [[Tandy 10 Business Computer]] was released but it sold extremely poorly and to the best of my knowledge wasn't even featured in the famous [[Radio Shack]] Computer Catalogs. In 1980, it's mostly compatible successor the [[TRS-80 Model III]] was released. It was an all-in-system with a faster Z80 and the ability to type in lower case plus other improvements. Not long after, the FCC declared that the Model I did not comply to new, more stringent RF [[interference]] standard and Radio Shack had to take it off the market. &lt;br /&gt;
&lt;br /&gt;
There are many good emulators for the system, but I recommend [[trs80gp]] which emulates multiple emulates all of the Z80 TRS-80 systems plus the Model 16, Tandy 6000, and the [[TRS-80 MC-10]], a small, low price home computer.&lt;br /&gt;
&lt;br /&gt;
{{semi-stub}}&lt;br /&gt;
&lt;br /&gt;
{{nav TRS-80}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29694</id>
		<title>PC-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29694"/>
				<updated>2023-05-22T18:40:31Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Adjusted heading sizes per Wikipedia guidelines&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IBM PC-DOS is the OEM of Microsoft's [[MS-DOS]] for the [[IBM  PC Model 5150]] and its successors. The history of how PC-DOS came to be the principal [[Operating System]] for the PC is a story that has been told many times and a I will supply links at the bottom of this article. This article is mostly on the other story of PC-DOS, the story of the individual versions and how they fit into the history of the various PC models and even it's standard and optional hardware.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 0.90 Beta==&lt;br /&gt;
&lt;br /&gt;
The only obtainable beta, that I know of is 0.90. It displays on boot as The IBM Personal Computer DOS Version 1.00 (C) Copyright IBM Corp 1981. Unlike the 1.00 release it does not ask for the date and this is the only major difference that I see between the two.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 1.00==&lt;br /&gt;
&lt;br /&gt;
PC-DOS 1.00 shipped with the early versions of [[floppy disk]] equipped PCs. It has only eight tracks instead of the nine tracks on later versions and is a single sided disk. It has a maximum capacity of 160k. One of the significant differences between 1.00 and all other versions is that you are required to enter the date presented as a M-D-Y format unlike later versions where you can type enter to avoid date and time entry (Actually, to enter time you have use the time command from the command prompt, it does not ask you for it at boot.). Most of the file on the disk are either the most basic DOS utilities such as Format and Sys or a quite lengthy selection of [[Basic]] demos. Also to note, a lot of traditional features are lacking such as directories, the prompt command, pipes, and the /w and /p switches with dir. Also, the &amp;quot;copy con&amp;quot; method of file creation does not work.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 1.10==&lt;br /&gt;
&lt;br /&gt;
Version 1.10 added quite a few well-known features such as dir's /w and /p switches and on boot up you get the traditional entering of date and time prompts. The copyright date is both 1981 and 1982. As far as I know it also fixed some bugs. Also, of note there are less basic demos than in 1.00.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 2.00==&lt;br /&gt;
&lt;br /&gt;
Version 2.00, in my opinion is the first version of PC-DOS that is truly the descendant of the more modern versions of DOS. It was released as the version designed for the [[IBM PC XT Model 5160]]. The main reason for this version was to utilize fixed disks (hard drives). It came on two single-sided, double-density (9-track) floppy disks. Many commands for hard disk operation are present such as [[fdisk]], cd, md, and rd. Also, the autoexec.bat and config.sys files are introduced as well as the prompt command and unlike PC-DOS 1.xx, &amp;quot;copy con&amp;quot; works as expected. It should be noted that this DOS's version of fdisk only supports up to a single 10 MB hard drive. An interesting fact about the format utility for this version is that it does not require a &amp;quot;Y&amp;quot; for confirmation before you format. The copyright date is 1981, 1982, 1983.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 2.10==&lt;br /&gt;
&lt;br /&gt;
Version 2.10 was mostly released for minor bug fixes and the ability to support half-height drives. The most important feature was that it also added support for the IBM PCjr and  its special graphics.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 3.00==&lt;br /&gt;
&lt;br /&gt;
PC-DOS 3.00 was released for the support of the [[IBM Model PC AT Model 5170]]. Therefore, there were many new features added. First of all, it was released on two double-sided, double-density floppies and this version could support the new 1.2 MB high density floppies as featured on the AT. Also it supported a hard drive with a single partition up to 32 MB. It also supported EGA graphics and was supposed to support networking but this proved to be too buggy so it was shelved until the next release.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 3.10==&lt;br /&gt;
&lt;br /&gt;
Version 3.10 had networking support and had a few bug fixes, besides that, it isn't much different that version 3.00&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 3.2==&lt;br /&gt;
&lt;br /&gt;
Version 3.20 had two big improvements.  First, it supported the new 720 kb, 3 and a half inch, double-density floppy disk. Second, it supported the [[IBM PC Convertible Model 5140]] which was one of the first PCs to utilize the aforementioned 720 kb floppy disks. Later, 3.20 was used on the IBM PS/2 which utilized these disks as well&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 3.30==&lt;br /&gt;
&lt;br /&gt;
The final version of the &amp;quot;classic PC-DOS family,&amp;quot; PC-DOS 3.30, had a few major improvements. First, multiple partitions were supported, still up to 32 MB each. Quick anecdote, in the late 80s, most hard drive came in either 20 or 40 MB in size. 32 MB drives were rare. So, using PC-DOS or MS-DOS 3.30 most owners would partition a 40 MB drive into a 32 and an 8 MB partition and largely ignore the 8 MB partition. The reason for this is if you didn't know the ins and out of fdisk, this is how it would partition the drive by default even though if you just either read the documentation or played around with the settings, you would find that you could easily partition it into 2 equal 20 MB partitions.&lt;br /&gt;
Also, another major feature was support for the 1.44 MB high-density, 3 and a half inch floppy. This was originally in the new generation of [[Intel 80286]] IBM PCs, the PS/2 Model 50 amongst others.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 4.00 and 4.01==&lt;br /&gt;
&lt;br /&gt;
These were the beginning of the more modern versions of PC-DOS. The only problem is that the initial version was very buggy. Version 4.01 cleaned up most of the bugs, but the damage had already been done, most people stuck with PC-DOS 3.30. There were two huge improvements though. First, partitions could be up to 2 GB although drives of this size weren't even really available. Second, [[DOSSHELL]] was included for the first time and was bundled with all DOS version thereafter. DOSSHELL is quite similar to the Windows 2 DOS Executive but it can't natively run Windows 2 programs, has cleaner fonts, and the directory tree is displayed on the left-hand side.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 5.00, 5.00.1. and 5.02==&lt;br /&gt;
&lt;br /&gt;
PC-DOS 5 was everything PC-DOS should have been. It was less buggy and it included EMS memory drivers natively and UMB (Upper Memory Block) support. It also included the QBASIC Basic interpreter and IDE and Microsoft Edit. The 5.00.1 and 5.02 versions were simply bug fixes.&lt;br /&gt;
&lt;br /&gt;
==PC-DOS 6.10 and 6.30==&lt;br /&gt;
&lt;br /&gt;
These versions of DOS were made completely in-house by IBM. They both included anti-virus, and backup software. Also, Qbasic was dropped and Microsoft Edit was replaced by IBM E editor which in my opinion is superior to Microsoft Edit and is the similar to nano. 6.30 also included SuperStor disk compression. &lt;br /&gt;
&lt;br /&gt;
==PC-DOS 7.00 and 2000==&lt;br /&gt;
&lt;br /&gt;
These were the final commercially available PC-DOS versions. 7.00 is basically 6.30 plus built-in [[REXX]] support. PC-DOS 2000, also known as PC-DOS 7.00 Revision 1. Version 2000 is simply version 7.00 with y2k fixes installed.&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
&lt;br /&gt;
* [https://www.pcmag.com/news/the-rise-of-dos-how-microsoft-got-the-ibm-pc-os-contract A rather in-depth history of IBM's acquisition of an operating system from Microsoft]&lt;br /&gt;
&lt;br /&gt;
* [https://lunduke.substack.com/p/quick-and-dirty-the-story-of-86-dos The story of QDOS, the operating system PC-DOS is based upon]&lt;br /&gt;
&lt;br /&gt;
[[Category: DOS (Compatible PCs)]]&lt;br /&gt;
[[Category:IBM Operating Systems]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29693</id>
		<title>Category:DOS (Compatible PCs)</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29693"/>
				<updated>2023-05-22T18:32:28Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added some more category links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:DOS]]&lt;br /&gt;
[[Category: Compatible PCs]]&lt;br /&gt;
[[Category: Compatible PC Software]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=User_talk:Rayrayemu&amp;diff=29685</id>
		<title>User talk:Rayrayemu</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=User_talk:Rayrayemu&amp;diff=29685"/>
				<updated>2023-05-22T17:40:45Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: /* Two more editing notes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Useful tip==&lt;br /&gt;
&lt;br /&gt;
A tip you might find useful; many find it useful to check [[Special:RecentChanges|Recent changes]] (available in the top left-hand corner) when they come by, to coordinate with other people. (In case you didn't see the below, which I will explicitly tag here for you.) [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:31, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
==Tandy categories==&lt;br /&gt;
&lt;br /&gt;
You might want to check out [[Category talk:Tandy TRS-80]], I'd love to get your take. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:31, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
Oh, BTW: when you re-name a category, you have to manually edit all the pages in the category so they are in the re-named category. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 19:39, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Learning curve ==&lt;br /&gt;
&lt;br /&gt;
No problem with start-up issues; everyone goes through a learning period.&lt;br /&gt;
&lt;br /&gt;
To add the timestamp to the signature, use the special form &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; which adds both. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 21:51, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Edit summary boxes ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've noticed that you usually leave the 'Summary' box blank when you do edits. Please always put something in the 'Summary' box, so that when looking at the history later, people will be able to get a rough sense of what was done, without needing to click on the 'prev' link of that revision. Thanks! [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 03:22, 22 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
: I have been making sure to follow through with this, also, off-topic, how do I delete pages or categories since I overhauled so much.&lt;br /&gt;
&lt;br /&gt;
:: Only admins can delete pages; I have been doing the cleanup for you (no problem). When you do a move, there should be a 'Leave a redirect behind' box; if you don't have any use for a redirect at the old name, un-check that, and there won't be anything to clean up.&lt;br /&gt;
:: Starting to look good! [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 13:51, 22 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Two more editing notes ==&lt;br /&gt;
&lt;br /&gt;
For a reason that I used to know, but have forgotten, Wikipedia (and thus here) uses '==' as the top level section marker. (I'll have to make a note of that in the [[Help:Basic MediaWiki Syntax|syntax Help: page]].)&lt;br /&gt;
&lt;br /&gt;
Also, Wikipedia style is generally to only link the ''first'' instance of a term on term on a page; something else I'll have to note on the syntax Help: page. (See what I did there? :-) [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:20, 22 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
Oh, yeah; liberal use of the 'Show preview' button ''before'' 'Save changes' will prevent many editing errors (and thus littering the edit history with their fixes). I don't use it as much as I should - and often regret it when I don't! [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:40, 22 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
:I do use preview a lot but since it doesn't show Category Links, there have been a few times where I have mistyped a category name and have had to go back and fix it. Same thing has happened to me with other links.  :As far as the top level headings, I only used a single = because that seemed logical coming from an HTML background. I will fix those. &lt;br /&gt;
:Also, to the best of knowledge I have only linked things one but may have accidentally done it before, especially in my first couple of articles since I was still figuring things out.&lt;br /&gt;
:Lastly, I hope that I am starting to make less mistakes and outputting a better product, so to speak. I am on my phone right now so I can't do any more editing until I get home but hopefully I can add another article or two tonight. &lt;br /&gt;
:One last thing, if I just using Wikipedia to literally jog my memory on things like specific dates and spelling, do I still have to credit it?  [[User:Rayrayemu|Rayrayemu]] ([[User talk:Rayrayemu|talk]]) 19:40, 22 May 2023 (CEST)&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=DOS&amp;diff=29647</id>
		<title>DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=DOS&amp;diff=29647"/>
				<updated>2023-05-22T05:24:15Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Added PC-DOS and added the DOS category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''DOS''' is an acronym for '[[disk operating system|Disk Operating System]]'. There have been many [[operating system]]s which used this name, including:&lt;br /&gt;
&lt;br /&gt;
* An early OS from [[International Business Machines|IBM]] for the [[IBM System/360]]&lt;br /&gt;
* [[DOS-11]] for the [[PDP-11]] from [[Digital Equipment Corporation|DEC]]&lt;br /&gt;
* [[Apple DOS]] from [[Apple]]&lt;br /&gt;
* [[MS-DOS]] from [[Microsoft]]&lt;br /&gt;
* [[PC-DOS]] an MS-DOS OEM from [[IBM]]&lt;br /&gt;
{{disambiguation}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Operating Systems]] [[Category: DOS]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=MS-DOS&amp;diff=29646</id>
		<title>MS-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=MS-DOS&amp;diff=29646"/>
				<updated>2023-05-22T05:03:23Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: forgot closing parenthesis on category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:MS-DOS 5.0.jpg|thumb|200px|right|MS-DOS 5.0 under Virtual PC.]]&lt;br /&gt;
&lt;br /&gt;
'''MS-DOS''' was made popular by [[Microsoft]] for not only being the bundled [[operating system]] on the [[IBM-PC]] but also being available to the other clone [[OEM]]'s of the time.&lt;br /&gt;
&lt;br /&gt;
Microsoft had sold [[IBM]] on the idea of MS-DOS when talks for [[CP/M]] had broken down. At the time Microsoft had no such product but was able to secure the rights to &amp;quot;[[86-DOS]]&amp;quot;, a CP/M clone written by Tim Paterson, for the sum of $50,000. This has been the best ROI ever, as MS-DOS has made Microsoft untold billions of dollars.&lt;br /&gt;
&lt;br /&gt;
MS-DOS uses the Int21 [[interface]] to allow programs to communicate with MS-DOS.   It is designed to be a [[single tasking]] OS, that runs on the 8088/8086 [[Central Processing Unit|CPU]], and on the [[real mode]] of the [[80286]] and higher CPU's. There are ways to crudely [[multi-task]] via [[TSR]]'s and other shells that hook the [[clock]] [[interrupt]] and jump execution, although these are usually unstable at best.&lt;br /&gt;
&lt;br /&gt;
DOS made use of the FAT [[file system]], and thus its popularity.&lt;br /&gt;
&lt;br /&gt;
The OEM for IBM is called [[PC-DOS]] and version 6.xx of PC-DOS is quite different than MS-DOS 6.xx with the development of it being done completely by IBM.&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 1.25 ===&lt;br /&gt;
&lt;br /&gt;
This was the first version of MS-DOS to be released to OEMs other than IBM with similar functionality. Some of the OEMs included Zenith, Eagle Computer, TI, and Sanyo.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 2.00, 2.10, and 2.11 ===&lt;br /&gt;
&lt;br /&gt;
This version supported 10 MB [[hard drives]] and on some systems such as the [[TRS-80 Tandy 2000]] and Toshiba T1100 Plus supported non-standard disk formats such as Quad-Density and 3 and a half inches floppy disks. OEMs included DEC Rainbow, Tandy, AT&amp;amp;T, and Wang.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.0 ===&lt;br /&gt;
&lt;br /&gt;
This version supports up to 32 MB hard drive partitions and 1.2 MB high-density floppy drives. There we very few OEMs for this version including Apricot and Compaq.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.1 ===&lt;br /&gt;
&lt;br /&gt;
Added support for the NET command, and the Network re-director support both for server and client. It became the minimal DOS version for any network based software.It had many OEMs including Compaq, Wyse, and Zenith.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.2 and 3.21 ===&lt;br /&gt;
[[Image:MS-DOS 3.2 box.jpg|150px|right]]&lt;br /&gt;
&lt;br /&gt;
Released April (or, according to some, August), 1986.&lt;br /&gt;
This was the first OEM version of MS-DOS, a generic version for IBM-compatible PCs which for the first time included MS-written versions of the IBM utilities found in PC-DOS.&lt;br /&gt;
&lt;br /&gt;
Earlier versions of MS-DOS could not be considered complete, they only included the core parts (i.e. the MS-developed parts of PC-DOS), were licensed to non-IBM vendors, and had to be augmented with modifications as/if needed for the particular hardware and with vendor-written versions of utilities found in PC-DOS. Documentation also had to be provided by said vendors.&lt;br /&gt;
&lt;br /&gt;
MS-DOS version 3.2 changed all this, but the reason a generic MS-DOS could be produced was that vendors had started to see the point of being truly IBM compatible.&lt;br /&gt;
&lt;br /&gt;
There were also a few non-generic OEMs including Tandy, Zenith, and Wang. One of the major additions to this was 720k 3 and a half inch floppies.&lt;br /&gt;
&lt;br /&gt;
MS-DOS 3.21 was minor revision with quite a few OEMs.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.3 ===&lt;br /&gt;
&lt;br /&gt;
This was the first retail version of MS-DOS. This release added support for the 3 1/2&amp;quot; high density floppy. I also recall this version being VERY popular... Even to the point where people avoided MS-DOS 4.00 to run this version. It added extended partition and logical drives. MS-DOS 3.3 also included some support for the FAT16 filesystem, however its format command still was limited to FAT12 filesystems. IBM (after a joint development agreement with Microsoft) was the main developer of MS-DOS 3.3, and PC-DOS 3.3 was nearly identical to the OEM version of MS-DOS 3.3.&lt;br /&gt;
&lt;br /&gt;
===MS-DOS 3.31===&lt;br /&gt;
&lt;br /&gt;
MS-DOS 3.31 was a Compaq only OEM. It was identical to MS-DOS 3.3 except you could create partitions up to 512 MB.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 4.0 ===&lt;br /&gt;
&amp;lt;!-- [[Image:MS-DOS 4.0 (Russian) box.jpg|150px|right|MS-DOS 4.0]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
MS-DOS 4.0 could use partitions larger than 32MB.  I've seen it on 512MB disks, it may go up to the full limitation of FAT16 of 2GB. DOS 4 still included the ancient programs edlin(MS-DOS and PC-DOS) &amp;amp; gwbasic(MS-DOS).&lt;br /&gt;
&lt;br /&gt;
The first release 4.00 was VERY buggy, resulting in random disk file corruption, although I recall something about 'large' 32MB files and various other things.  Most people downgraded to 3.30.  4.01 addressed whatever issue it was, and it was good news. The update 4.01 was released less than 3 weeks after 4.00, but the damage was done. &lt;br /&gt;
&lt;br /&gt;
Also making its appearance in MS-DOS 4.0 was the DOS shell, a simple GUI, to help people navigate their systems,&lt;br /&gt;
Which was orginally a program called DOS MANAGER 1.0,&lt;br /&gt;
&lt;br /&gt;
MS-DOS 4.0 was, as for version 3.3, mainly developed by IBM.&lt;br /&gt;
&lt;br /&gt;
4.0 would have been released in October, 1988.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 4.00M ===&lt;br /&gt;
Also known as Multitasking DOS, or European DOS , this is the oddball outcast, rather it is a re-write of MS-DOS 2.1 to facilitate multitasking. It adds support for NE style executables, a task switcher, along with a few utilities to monitor the system.  Also included is the needed LINK4 NE linker for the OS.  So far no SDK or any real documentation has been found, although it is possible to build simple programs with Microsoft C 3.00 and link them with LINK4.  MS-DOS 4.00M served as the foundation to what was to become OS/2.&lt;br /&gt;
&lt;br /&gt;
It was the first version of MS dos, that its external commands were written entirely in 'C.'&lt;br /&gt;
&lt;br /&gt;
There is one known disk set from ICL for this release, although it doesn't have a proper official place in the release tree, but it's name does place it here.  The files are dated 11-26-85.&lt;br /&gt;
The ICL disks are 1.2MB HD disk, and consist of MS-DOS 4.1, ICL applications, and two disks of Windows 1.0.3. No online copies exist.&lt;br /&gt;
&lt;br /&gt;
The other disk set(WinWorld), from Sharp/WinWorld is from a Seimens Computer's 4Mb ROMS that had a bootable copy, but no disk drive, it does not contain the swapper. [https://winworldpc.com/download/0b1a65c2-ba46-c2b0-11c3-a4c28d587054 MS DOS 4.0M]&lt;br /&gt;
&lt;br /&gt;
The third disks set that JS located, boots the same way, but includes the swapper. [https://www.pcjs.org/software/pcx86/sys/dos/microsoft/4.0M/ MS-DOS 4.0M]&lt;br /&gt;
&lt;br /&gt;
[https://sudonull.com/post/117191-Ms-dos-that-we-never-saw Details on swapper]&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 5.0 ===&lt;br /&gt;
[[Image:MS-DOS 5.0 upgrade.jpg|150px|right|MS-DOS 5.0]]&lt;br /&gt;
&lt;br /&gt;
This release was significant to allow for FAT partitions larger then 32MB, going up to 2GB.  Also big features were himem.sys which allowed MS-DOS to execute in the top 64KB of [[protected mode]] because of a hardware bug in the IBM AT's handling of extended memory.  Emm386.sys also was made popular allowing 386's to simulate [[EMS memory]] with [[extended memory]], and loading device drivers &amp;amp; TSR's into the reserved hardware space.&lt;br /&gt;
&lt;br /&gt;
Version 5.0 also brought [[Qbasic]] 1.0, to replace the aging [[GWBasic]]. Included were the example programs money, gorilla, nibbles &amp;amp; remline.  Along with a proper editor based on the Qbasic interface, supplementing the ancient edlin.&lt;br /&gt;
&lt;br /&gt;
DOS-5 also used an install program with the same look &amp;amp; feel from Windows 3.0.&lt;br /&gt;
&lt;br /&gt;
There is also a horrible promotion video [http://www.youtube.com/watch?v=dmEvPZUdAVI on youtube].&lt;br /&gt;
&lt;br /&gt;
With version 5.0 Microsoft was again the main developer of MS-DOS.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.0 ===&lt;br /&gt;
&lt;br /&gt;
This release added disk compression in order to compete with [[Stacker]].  Also included were some simple tools licensed from Central Point, including an anti virus program MSAV, a graphical backup program MSBACKUP, and a defrag program licensed from Symantec.&lt;br /&gt;
&lt;br /&gt;
MS-DOS 6.0 was mainly to compete with the feature full DR-DOS 6.0&lt;br /&gt;
&lt;br /&gt;
===MS-DOS 6.20===&lt;br /&gt;
&lt;br /&gt;
This release fixed bugs in the compression software and replaced CHKDSK with SCANDISK which is still used today.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.21 ===&lt;br /&gt;
&lt;br /&gt;
This release is simply 6.20 minus the compression software due to a lawsuit from Stacker.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.22 ===&lt;br /&gt;
[[Image:MS-DOS 6.22 upgrade box.jpg|150px|right|MS-DOS 6.22]]&lt;br /&gt;
&lt;br /&gt;
This release was to rectify the various lawsuits around the bundled disk compression by coming up with a unique compression software called drvspace. It should also be noted that drvspace was also the compression software used in Windows 95, 98, and ME.&lt;br /&gt;
&lt;br /&gt;
This was also the last retail version of MS-DOS.  As version 7 of MS-DOS was the base part of Windows 95.&lt;br /&gt;
&lt;br /&gt;
[[Category: Microsoft Operating Systems]]&lt;br /&gt;
[[Category: DOS (Compatible PCs)]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=MS-DOS&amp;diff=29645</id>
		<title>MS-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=MS-DOS&amp;diff=29645"/>
				<updated>2023-05-22T05:02:00Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Major overhaul. Made it MS-DOS (not PC-DOS) specific. Left versions 5 through 6.22 intact. Moderately modified version 4.. All earlier versions either completely mostly re-done.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:MS-DOS 5.0.jpg|thumb|200px|right|MS-DOS 5.0 under Virtual PC.]]&lt;br /&gt;
&lt;br /&gt;
'''MS-DOS''' was made popular by [[Microsoft]] for not only being the bundled [[operating system]] on the [[IBM-PC]] but also being available to the other clone [[OEM]]'s of the time.&lt;br /&gt;
&lt;br /&gt;
Microsoft had sold [[IBM]] on the idea of MS-DOS when talks for [[CP/M]] had broken down. At the time Microsoft had no such product but was able to secure the rights to &amp;quot;[[86-DOS]]&amp;quot;, a CP/M clone written by Tim Paterson, for the sum of $50,000. This has been the best ROI ever, as MS-DOS has made Microsoft untold billions of dollars.&lt;br /&gt;
&lt;br /&gt;
MS-DOS uses the Int21 [[interface]] to allow programs to communicate with MS-DOS.   It is designed to be a [[single tasking]] OS, that runs on the 8088/8086 [[Central Processing Unit|CPU]], and on the [[real mode]] of the [[80286]] and higher CPU's. There are ways to crudely [[multi-task]] via [[TSR]]'s and other shells that hook the [[clock]] [[interrupt]] and jump execution, although these are usually unstable at best.&lt;br /&gt;
&lt;br /&gt;
DOS made use of the FAT [[file system]], and thus its popularity.&lt;br /&gt;
&lt;br /&gt;
The OEM for IBM is called [[PC-DOS]] and version 6.xx of PC-DOS is quite different than MS-DOS 6.xx with the development of it being done completely by IBM.&lt;br /&gt;
&lt;br /&gt;
== Versions ==&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 1.25 ===&lt;br /&gt;
&lt;br /&gt;
This was the first version of MS-DOS to be released to OEMs other than IBM with similar functionality. Some of the OEMs included Zenith, Eagle Computer, TI, and Sanyo.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 2.00, 2.10, and 2.11 ===&lt;br /&gt;
&lt;br /&gt;
This version supported 10 MB [[hard drives]] and on some systems such as the [[TRS-80 Tandy 2000]] and Toshiba T1100 Plus supported non-standard disk formats such as Quad-Density and 3 and a half inches floppy disks. OEMs included DEC Rainbow, Tandy, AT&amp;amp;T, and Wang.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.0 ===&lt;br /&gt;
&lt;br /&gt;
This version supports up to 32 MB hard drive partitions and 1.2 MB high-density floppy drives. There we very few OEMs for this version including Apricot and Compaq.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.1 ===&lt;br /&gt;
&lt;br /&gt;
Added support for the NET command, and the Network re-director support both for server and client. It became the minimal DOS version for any network based software.It had many OEMs including Compaq, Wyse, and Zenith.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.2 and 3.21 ===&lt;br /&gt;
[[Image:MS-DOS 3.2 box.jpg|150px|right]]&lt;br /&gt;
&lt;br /&gt;
Released April (or, according to some, August), 1986.&lt;br /&gt;
This was the first OEM version of MS-DOS, a generic version for IBM-compatible PCs which for the first time included MS-written versions of the IBM utilities found in PC-DOS.&lt;br /&gt;
&lt;br /&gt;
Earlier versions of MS-DOS could not be considered complete, they only included the core parts (i.e. the MS-developed parts of PC-DOS), were licensed to non-IBM vendors, and had to be augmented with modifications as/if needed for the particular hardware and with vendor-written versions of utilities found in PC-DOS. Documentation also had to be provided by said vendors.&lt;br /&gt;
&lt;br /&gt;
MS-DOS version 3.2 changed all this, but the reason a generic MS-DOS could be produced was that vendors had started to see the point of being truly IBM compatible.&lt;br /&gt;
&lt;br /&gt;
There were also a few non-generic OEMs including Tandy, Zenith, and Wang. One of the major additions to this was 720k 3 and a half inch floppies.&lt;br /&gt;
&lt;br /&gt;
MS-DOS 3.21 was minor revision with quite a few OEMs.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 3.3 ===&lt;br /&gt;
&lt;br /&gt;
This was the first retail version of MS-DOS. This release added support for the 3 1/2&amp;quot; high density floppy. I also recall this version being VERY popular... Even to the point where people avoided MS-DOS 4.00 to run this version. It added extended partition and logical drives. MS-DOS 3.3 also included some support for the FAT16 filesystem, however its format command still was limited to FAT12 filesystems. IBM (after a joint development agreement with Microsoft) was the main developer of MS-DOS 3.3, and PC-DOS 3.3 was nearly identical to the OEM version of MS-DOS 3.3.&lt;br /&gt;
&lt;br /&gt;
===MS-DOS 3.31===&lt;br /&gt;
&lt;br /&gt;
MS-DOS 3.31 was a Compaq only OEM. It was identical to MS-DOS 3.3 except you could create partitions up to 512 MB.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 4.0 ===&lt;br /&gt;
&amp;lt;!-- [[Image:MS-DOS 4.0 (Russian) box.jpg|150px|right|MS-DOS 4.0]] --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
MS-DOS 4.0 could use partitions larger than 32MB.  I've seen it on 512MB disks, it may go up to the full limitation of FAT16 of 2GB. DOS 4 still included the ancient programs edlin(MS-DOS and PC-DOS) &amp;amp; gwbasic(MS-DOS).&lt;br /&gt;
&lt;br /&gt;
The first release 4.00 was VERY buggy, resulting in random disk file corruption, although I recall something about 'large' 32MB files and various other things.  Most people downgraded to 3.30.  4.01 addressed whatever issue it was, and it was good news. The update 4.01 was released less than 3 weeks after 4.00, but the damage was done. &lt;br /&gt;
&lt;br /&gt;
Also making its appearance in MS-DOS 4.0 was the DOS shell, a simple GUI, to help people navigate their systems,&lt;br /&gt;
Which was orginally a program called DOS MANAGER 1.0,&lt;br /&gt;
&lt;br /&gt;
MS-DOS 4.0 was, as for version 3.3, mainly developed by IBM.&lt;br /&gt;
&lt;br /&gt;
4.0 would have been released in October, 1988.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 4.00M ===&lt;br /&gt;
Also known as Multitasking DOS, or European DOS , this is the oddball outcast, rather it is a re-write of MS-DOS 2.1 to facilitate multitasking. It adds support for NE style executables, a task switcher, along with a few utilities to monitor the system.  Also included is the needed LINK4 NE linker for the OS.  So far no SDK or any real documentation has been found, although it is possible to build simple programs with Microsoft C 3.00 and link them with LINK4.  MS-DOS 4.00M served as the foundation to what was to become OS/2.&lt;br /&gt;
&lt;br /&gt;
It was the first version of MS dos, that its external commands were written entirely in 'C.'&lt;br /&gt;
&lt;br /&gt;
There is one known disk set from ICL for this release, although it doesn't have a proper official place in the release tree, but it's name does place it here.  The files are dated 11-26-85.&lt;br /&gt;
The ICL disks are 1.2MB HD disk, and consist of MS-DOS 4.1, ICL applications, and two disks of Windows 1.0.3. No online copies exist.&lt;br /&gt;
&lt;br /&gt;
The other disk set(WinWorld), from Sharp/WinWorld is from a Seimens Computer's 4Mb ROMS that had a bootable copy, but no disk drive, it does not contain the swapper. [https://winworldpc.com/download/0b1a65c2-ba46-c2b0-11c3-a4c28d587054 MS DOS 4.0M]&lt;br /&gt;
&lt;br /&gt;
The third disks set that JS located, boots the same way, but includes the swapper. [https://www.pcjs.org/software/pcx86/sys/dos/microsoft/4.0M/ MS-DOS 4.0M]&lt;br /&gt;
&lt;br /&gt;
[https://sudonull.com/post/117191-Ms-dos-that-we-never-saw Details on swapper]&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 5.0 ===&lt;br /&gt;
[[Image:MS-DOS 5.0 upgrade.jpg|150px|right|MS-DOS 5.0]]&lt;br /&gt;
&lt;br /&gt;
This release was significant to allow for FAT partitions larger then 32MB, going up to 2GB.  Also big features were himem.sys which allowed MS-DOS to execute in the top 64KB of [[protected mode]] because of a hardware bug in the IBM AT's handling of extended memory.  Emm386.sys also was made popular allowing 386's to simulate [[EMS memory]] with [[extended memory]], and loading device drivers &amp;amp; TSR's into the reserved hardware space.&lt;br /&gt;
&lt;br /&gt;
Version 5.0 also brought [[Qbasic]] 1.0, to replace the aging [[GWBasic]]. Included were the example programs money, gorilla, nibbles &amp;amp; remline.  Along with a proper editor based on the Qbasic interface, supplementing the ancient edlin.&lt;br /&gt;
&lt;br /&gt;
DOS-5 also used an install program with the same look &amp;amp; feel from Windows 3.0.&lt;br /&gt;
&lt;br /&gt;
There is also a horrible promotion video [http://www.youtube.com/watch?v=dmEvPZUdAVI on youtube].&lt;br /&gt;
&lt;br /&gt;
With version 5.0 Microsoft was again the main developer of MS-DOS.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.0 ===&lt;br /&gt;
&lt;br /&gt;
This release added disk compression in order to compete with [[Stacker]].  Also included were some simple tools licensed from Central Point, including an anti virus program MSAV, a graphical backup program MSBACKUP, and a defrag program licensed from Symantec.&lt;br /&gt;
&lt;br /&gt;
MS-DOS 6.0 was mainly to compete with the feature full DR-DOS 6.0&lt;br /&gt;
&lt;br /&gt;
===MS-DOS 6.20===&lt;br /&gt;
&lt;br /&gt;
This release fixed bugs in the compression software and replaced CHKDSK with SCANDISK which is still used today.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.21 ===&lt;br /&gt;
&lt;br /&gt;
This release is simply 6.20 minus the compression software due to a lawsuit from Stacker.&lt;br /&gt;
&lt;br /&gt;
=== MS-DOS 6.22 ===&lt;br /&gt;
[[Image:MS-DOS 6.22 upgrade box.jpg|150px|right|MS-DOS 6.22]]&lt;br /&gt;
&lt;br /&gt;
This release was to rectify the various lawsuits around the bundled disk compression by coming up with a unique compression software called drvspace. It should also be noted that drvspace was also the compression software used in Windows 95, 98, and ME.&lt;br /&gt;
&lt;br /&gt;
This was also the last retail version of MS-DOS.  As version 7 of MS-DOS was the base part of Windows 95.&lt;br /&gt;
&lt;br /&gt;
[[Category: Microsoft Operating Systems]]&lt;br /&gt;
[[Category: DOS (Compatible PCs]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=86-DOS&amp;diff=29644</id>
		<title>86-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=86-DOS&amp;diff=29644"/>
				<updated>2023-05-22T03:56:49Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: added a dos category link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox OS &lt;br /&gt;
| image = 86-dos.png&lt;br /&gt;
| caption = Booting up the 86-DOS system&lt;br /&gt;
| name = 86-DOS&lt;br /&gt;
| creator = Seattle Computer Products&lt;br /&gt;
| current version = 1.0 (1981) &lt;br /&gt;
| year introduced = 1981&lt;br /&gt;
| type = Singletasking, Singleuser&lt;br /&gt;
| architecture = [[IBM PC]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
86-DOS was the CP/M work alike that was being written by Tim Patterson.&lt;br /&gt;
&lt;br /&gt;
There is a great information site [https://web.archive.org/web/20181002215506/http://www.86dos.org/index.htm http://www.86dos.org/index.htm]&lt;br /&gt;
&lt;br /&gt;
One thing that is interesting about 86-DOS on the [[S-100]] type machines, is that unlike the [[IBM PC]] The S-100's could access the full megabyte of ram.  According to Tim Patterson this feature was used within Microsoft until the creation of 32bit tools to link the linker that Microsoft had built because it needed so much memory.  Although I was always under the impression that Microsoft had their compilers ported to a VAX and cross compiled stuff from there as it was faster, and didn't have the same memory limits... but that's from some unbased rumor I heard so you know... grain of salt.&lt;br /&gt;
&lt;br /&gt;
== How do I get this to run ==&lt;br /&gt;
&lt;br /&gt;
There is a download like available to a [[SIMH]] image of the boot disk [http://schorn.ch/cpm/zip/86dos.zip here]  Simple download the zip file &amp;amp; extract it, then use a version of SIMH's 3.0 or higher Altair Z80 emulator to bootstrap it.  Although the name may seem misleading, the Altair z80 simulates a development environment that allows for an 8086 coprocessor to execute the 86-DOS Operating System.&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
[[Category:Operating Systems]]&lt;br /&gt;
[[Category:DOS]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29643</id>
		<title>PC-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29643"/>
				<updated>2023-05-22T03:54:30Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: fixed error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IBM PC-DOS is the OEM of Microsoft's [[MS-DOS]] for the [[IBM  PC Model 5150]] and its successors. The history of how PC-DOS came to be the principal [[Operating System]] for the PC is a story that has been told many times and a I will supply links at the bottom of this article. This article is mostly on the other story of PC-DOS, the story of the individual versions and how they fit into the history of the various PC models and even it's standard and optional hardware.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 0.90 Beta=&lt;br /&gt;
&lt;br /&gt;
The only obtainable beta, that I know of is 0.90. It displays on boot as The IBM Personal Computer DOS Version 1.00 (C) Copyright IBM Corp 1981. Unlike the 1.00 release it does not ask for the date and this is the only major difference that I see between the two.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 1.00=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 1.00 shipped with the early versions of [[floppy disk]] equipped PCs. It has only eight tracks instead of the nine tracks on later versions and is a single sided disk. It has a maximum capacity of 160k. One of the significant differences between 1.00 and all other versions is that you are required to enter the date presented as a M-D-Y format unlike later versions where you can type enter to avoid date and time entry (Actually, to enter time you have use the time command from the command prompt, it does not ask you for it at boot.). Most of the file on the disk are either the most basic DOS utilities such as Format and Sys or a quite lengthy selection of [[Basic]] demos. Also to note, a lot of traditional features are lacking such as directories, the prompt command, pipes, and the /w and /p switches with dir. Also, the &amp;quot;copy con&amp;quot; method of file creation does not work.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 1.10=&lt;br /&gt;
&lt;br /&gt;
Version 1.10 added quite a few well-known features such as dir's /w and /p switches and on boot up you get the traditional entering of date and time prompts. The copyright date is both 1981 and 1982. As far as I know it also fixed some bugs. Also, of note there are less basic demos than in 1.00.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 2.00=&lt;br /&gt;
&lt;br /&gt;
Version 2.00, in my opinion is the first version of PC-DOS that is truly the descendant of the more modern versions of DOS. It was released as the version designed for the [[IBM PC XT Model 5160]]. The main reason for this version was to utilize fixed disks (hard drives). It came on two single-sided, double-density (9-track) floppy disks. Many commands for hard disk operation are present such as [[fdisk]], cd, md, and rd. Also, the autoexec.bat and config.sys files are introduced as well as the prompt command and unlike PC-DOS 1.xx, &amp;quot;copy con&amp;quot; works as expected. It should be noted that this DOS's version of fdisk only supports up to a single 10 MB hard drive. An interesting fact about the format utility for this version is that it does not require a &amp;quot;Y&amp;quot; for confirmation before you format. The copyright date is 1981, 1982, 1983.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 2.10=&lt;br /&gt;
&lt;br /&gt;
Version 2.10 was mostly released for minor bug fixes and the ability to support half-height drives. The most important feature was that it also added support for the IBM PCjr and  its special graphics.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.00=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 3.00 was released for the support of the [[IBM Model PC AT Model 5170]]. Therefore, there were many new features added. First of all, it was released on two double-sided, double-density floppies and this version could support the new 1.2 MB high density floppies as featured on the AT. Also it supported a hard drive with a single partition up to 32 MB. It also supported EGA graphics and was supposed to support networking but this proved to be too buggy so it was shelved until the next release.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.10=&lt;br /&gt;
&lt;br /&gt;
Version 3.10 had networking support and had a few bug fixes, besides that, it isn't much different that version 3.00&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.2=&lt;br /&gt;
&lt;br /&gt;
Version 3.20 had two big improvements.  First, it supported the new 720 kb, 3 and a half inch, double-density floppy disk. Second, it supported the [[IBM PC Convertible Model 5140]] which was one of the first PCs to utilize the aforementioned 720 kb floppy disks. Later, 3.20 was used on the IBM PS/2 which utilized these disks as well&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.30=&lt;br /&gt;
&lt;br /&gt;
The final version of the &amp;quot;classic PC-DOS family,&amp;quot; PC-DOS 3.30, had a few major improvements. First, multiple partitions were supported, still up to 32 MB each. Quick anecdote, in the late 80s, most hard drive came in either 20 or 40 MB in size. 32 MB drives were rare. So, using PC-DOS or MS-DOS 3.30 most owners would partition a 40 MB drive into a 32 and an 8 MB partition and largely ignore the 8 MB partition. The reason for this is if you didn't know the ins and out of fdisk, this is how it would partition the drive by default even though if you just either read the documentation or played around with the settings, you would find that you could easily partition it into 2 equal 20 MB partitions.&lt;br /&gt;
Also, another major feature was support for the 1.44 MB high-density, 3 and a half inch floppy. This was originally in the new generation of [[Intel 80286]] IBM PCs, the PS/2 Model 50 amongst others.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 4.00 and 4.01=&lt;br /&gt;
&lt;br /&gt;
These were the beginning of the more modern versions of PC-DOS. The only problem is that the initial version was very buggy. Version 4.01 cleaned up most of the bugs, but the damage had already been done, most people stuck with PC-DOS 3.30. There were two huge improvements though. First, partitions could be up to 2 GB although drives of this size weren't even really available. Second, [[DOSSHELL]] was included for the first time and was bundled with all DOS version thereafter. DOSSHELL is quite similar to the Windows 2 DOS Executive but it can't natively run Windows 2 programs, has cleaner fonts, and the directory tree is displayed on the left-hand side.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 5.00, 5.00.1. and 5.02=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 5 was everything PC-DOS should have been. It was less buggy and it included EMS memory drivers natively and UMB (Upper Memory Block) support. It also included the QBASIC Basic interpreter and IDE and Microsoft Edit. The 5.00.1 and 5.02 versions were simply bug fixes.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 6.10 and 6.30=&lt;br /&gt;
&lt;br /&gt;
These versions of DOS were made completely in-house by IBM. They both included anti-virus, and backup software. Also, Qbasic was dropped and Microsoft Edit was replaced by IBM E editor which in my opinion is superior to Microsoft Edit and is the similar to nano. 6.30 also included SuperStor disk compression. &lt;br /&gt;
&lt;br /&gt;
=PC-DOS 7.00 and 2000=&lt;br /&gt;
&lt;br /&gt;
These were the final commercially available PC-DOS versions. 7.00 is basically 6.30 plus built-in [[REXX]] support. PC-DOS 2000, also known as PC-DOS 7.00 Revision 1. Version 2000 is simply version 7.00 with y2k fixes installed.&lt;br /&gt;
&lt;br /&gt;
=External Links=&lt;br /&gt;
&lt;br /&gt;
* [https://www.pcmag.com/news/the-rise-of-dos-how-microsoft-got-the-ibm-pc-os-contract A rather in-depth history of IBM's acquisition of an operating system from Microsoft]&lt;br /&gt;
&lt;br /&gt;
* [https://lunduke.substack.com/p/quick-and-dirty-the-story-of-86-dos The story of QDOS, the operating system PC-DOS is based upon]&lt;br /&gt;
&lt;br /&gt;
[[Category: DOS (Compatible PCs)]]&lt;br /&gt;
[[Category:IBM Operating Systems]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29641</id>
		<title>Category:DOS (Compatible PCs)</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29641"/>
				<updated>2023-05-22T03:53:43Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Rayrayemu moved page Category:DOS (Compatible PC) to Category:DOS (Compatible PCs): Fixed error&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:DOS]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29640</id>
		<title>Category:DOS (Compatible PCs)</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29640"/>
				<updated>2023-05-22T03:52:09Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:DOS]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29639</id>
		<title>Category:DOS (Compatible PCs)</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:DOS_(Compatible_PCs)&amp;diff=29639"/>
				<updated>2023-05-22T03:51:15Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Created page with &amp;quot;Category:DOS (Compatible PC)&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:DOS (Compatible PC)]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29638</id>
		<title>PC-DOS</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=PC-DOS&amp;diff=29638"/>
				<updated>2023-05-22T03:50:08Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;IBM PC-DOS is the OEM of Microsoft's [[MS-DOS]] for the [[IBM  PC Model 5150]] and its successors. The history of how PC-DOS came to be the principal [[Operating System]] for the PC is a story that has been told many times and a I will supply links at the bottom of this article. This article is mostly on the other story of PC-DOS, the story of the individual versions and how they fit into the history of the various PC models and even it's standard and optional hardware.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 0.90 Beta=&lt;br /&gt;
&lt;br /&gt;
The only obtainable beta, that I know of is 0.90. It displays on boot as The IBM Personal Computer DOS Version 1.00 (C) Copyright IBM Corp 1981. Unlike the 1.00 release it does not ask for the date and this is the only major difference that I see between the two.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 1.00=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 1.00 shipped with the early versions of [[floppy disk]] equipped PCs. It has only eight tracks instead of the nine tracks on later versions and is a single sided disk. It has a maximum capacity of 160k. One of the significant differences between 1.00 and all other versions is that you are required to enter the date presented as a M-D-Y format unlike later versions where you can type enter to avoid date and time entry (Actually, to enter time you have use the time command from the command prompt, it does not ask you for it at boot.). Most of the file on the disk are either the most basic DOS utilities such as Format and Sys or a quite lengthy selection of [[Basic]] demos. Also to note, a lot of traditional features are lacking such as directories, the prompt command, pipes, and the /w and /p switches with dir. Also, the &amp;quot;copy con&amp;quot; method of file creation does not work.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 1.10=&lt;br /&gt;
&lt;br /&gt;
Version 1.10 added quite a few well-known features such as dir's /w and /p switches and on boot up you get the traditional entering of date and time prompts. The copyright date is both 1981 and 1982. As far as I know it also fixed some bugs. Also, of note there are less basic demos than in 1.00.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 2.00=&lt;br /&gt;
&lt;br /&gt;
Version 2.00, in my opinion is the first version of PC-DOS that is truly the descendant of the more modern versions of DOS. It was released as the version designed for the [[IBM PC XT Model 5160]]. The main reason for this version was to utilize fixed disks (hard drives). It came on two single-sided, double-density (9-track) floppy disks. Many commands for hard disk operation are present such as [[fdisk]], cd, md, and rd. Also, the autoexec.bat and config.sys files are introduced as well as the prompt command and unlike PC-DOS 1.xx, &amp;quot;copy con&amp;quot; works as expected. It should be noted that this DOS's version of fdisk only supports up to a single 10 MB hard drive. An interesting fact about the format utility for this version is that it does not require a &amp;quot;Y&amp;quot; for confirmation before you format. The copyright date is 1981, 1982, 1983.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 2.10=&lt;br /&gt;
&lt;br /&gt;
Version 2.10 was mostly released for minor bug fixes and the ability to support half-height drives. The most important feature was that it also added support for the IBM PCjr and  its special graphics.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.00=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 3.00 was released for the support of the [[IBM Model PC AT Model 5170]]. Therefore, there were many new features added. First of all, it was released on two double-sided, double-density floppies and this version could support the new 1.2 MB high density floppies as featured on the AT. Also it supported a hard drive with a single partition up to 32 MB. It also supported EGA graphics and was supposed to support networking but this proved to be too buggy so it was shelved until the next release.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.10=&lt;br /&gt;
&lt;br /&gt;
Version 3.10 had networking support and had a few bug fixes, besides that, it isn't much different that version 3.00&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.2=&lt;br /&gt;
&lt;br /&gt;
Version 3.20 had two big improvements.  First, it supported the new 720 kb, 3 and a half inch, double-density floppy disk. Second, it supported the [[IBM PC Convertible Model 5140]] which was one of the first PCs to utilize the aforementioned 720 kb floppy disks. Later, 3.20 was used on the IBM PS/2 which utilized these disks as well&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 3.30=&lt;br /&gt;
&lt;br /&gt;
The final version of the &amp;quot;classic PC-DOS family,&amp;quot; PC-DOS 3.30, had a few major improvements. First, multiple partitions were supported, still up to 32 MB each. Quick anecdote, in the late 80s, most hard drive came in either 20 or 40 MB in size. 32 MB drives were rare. So, using PC-DOS or MS-DOS 3.30 most owners would partition a 40 MB drive into a 32 and an 8 MB partition and largely ignore the 8 MB partition. The reason for this is if you didn't know the ins and out of fdisk, this is how it would partition the drive by default even though if you just either read the documentation or played around with the settings, you would find that you could easily partition it into 2 equal 20 MB partitions.&lt;br /&gt;
Also, another major feature was support for the 1.44 MB high-density, 3 and a half inch floppy. This was originally in the new generation of [[Intel 80286]] IBM PCs, the PS/2 Model 50 amongst others.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 4.00 and 4.01=&lt;br /&gt;
&lt;br /&gt;
These were the beginning of the more modern versions of PC-DOS. The only problem is that the initial version was very buggy. Version 4.01 cleaned up most of the bugs, but the damage had already been done, most people stuck with PC-DOS 3.30. There were two huge improvements though. First, partitions could be up to 2 GB although drives of this size weren't even really available. Second, [[DOSSHELL]] was included for the first time and was bundled with all DOS version thereafter. DOSSHELL is quite similar to the Windows 2 DOS Executive but it can't natively run Windows 2 programs, has cleaner fonts, and the directory tree is displayed on the left-hand side.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 5.00, 5.00.1. and 5.02=&lt;br /&gt;
&lt;br /&gt;
PC-DOS 5 was everything PC-DOS should have been. It was less buggy and it included EMS memory drivers natively and UMB (Upper Memory Block) support. It also included the QBASIC Basic interpreter and IDE and Microsoft Edit. The 5.00.1 and 5.02 versions were simply bug fixes.&lt;br /&gt;
&lt;br /&gt;
=PC-DOS 6.10 and 6.30=&lt;br /&gt;
&lt;br /&gt;
These versions of DOS were made completely in-house by IBM. They both included anti-virus, and backup software. Also, Qbasic was dropped and Microsoft Edit was replaced by IBM E editor which in my opinion is superior to Microsoft Edit and is the similar to nano. 6.30 also included SuperStor disk compression. &lt;br /&gt;
&lt;br /&gt;
=PC-DOS 7.00 and 2000=&lt;br /&gt;
&lt;br /&gt;
These were the final commercially available PC-DOS versions. 7.00 is basically 6.30 plus built-in [[REXX]] support. PC-DOS 2000, also known as PC-DOS 7.00 Revision 1. Version 2000 is simply version 7.00 with y2k fixes installed.&lt;br /&gt;
&lt;br /&gt;
=External Links=&lt;br /&gt;
&lt;br /&gt;
* [https://www.pcmag.com/news/the-rise-of-dos-how-microsoft-got-the-ibm-pc-os-contract A rather in-depth history of IBM's acquisition of an operating system from Microsoft]&lt;br /&gt;
&lt;br /&gt;
* [https://lunduke.substack.com/p/quick-and-dirty-the-story-of-86-dos The story of QDOS, the operating system PC-DOS is based upon]&lt;br /&gt;
&lt;br /&gt;
[[Category: DOS (Compatible PC)]]&lt;br /&gt;
[[Category:IBM Operating Systems]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=User_talk:Rayrayemu&amp;diff=29637</id>
		<title>User talk:Rayrayemu</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=User_talk:Rayrayemu&amp;diff=29637"/>
				<updated>2023-05-22T03:44:43Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: /* Edit summary boxes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Useful tip==&lt;br /&gt;
&lt;br /&gt;
A tip you might find useful; many find it useful to check [[Special:RecentChanges|Recent changes]] (available in the top left-hand corner) when they come by, to coordinate with other people. (In case you didn't see the below, which I will explicitly tag here for you.) [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:31, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
==Tandy categories==&lt;br /&gt;
&lt;br /&gt;
You might want to check out [[Category talk:Tandy TRS-80]], I'd love to get your take. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 14:31, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
Oh, BTW: when you re-name a category, you have to manually edit all the pages in the category so they are in the re-named category. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 19:39, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Learning curve ==&lt;br /&gt;
&lt;br /&gt;
No problem with start-up issues; everyone goes through a learning period.&lt;br /&gt;
&lt;br /&gt;
To add the timestamp to the signature, use the special form &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; which adds both. [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 21:51, 20 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
== Edit summary boxes ==&lt;br /&gt;
&lt;br /&gt;
Hi, I've noticed that you usually leave the 'Summary' box blank when you do edits. Please always put something in the 'Summary' box, so that when looking at the history later, people will be able to get a rough sense of what was done, without needing to click on the 'prev' link of that revision. Thanks! [[User:Jnc|Jnc]] ([[User talk:Jnc|talk]]) 03:22, 22 May 2023 (CEST)&lt;br /&gt;
&lt;br /&gt;
I have been making sure to follow through with this, also, off-topic, how do I delete pages or categories since I overhauled so much.&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	<entry>
		<id>https://gunkies.org/w/index.php?title=Category:Radio_Shack_Emulation_Tutorials&amp;diff=29636</id>
		<title>Category:Radio Shack Emulation Tutorials</title>
		<link rel="alternate" type="text/html" href="https://gunkies.org/w/index.php?title=Category:Radio_Shack_Emulation_Tutorials&amp;diff=29636"/>
				<updated>2023-05-22T03:42:18Z</updated>
		
		<summary type="html">&lt;p&gt;Rayrayemu: Update to new naming convention and description change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;These are tutorials for various Radio Shack computer systems using various emulators. &lt;br /&gt;
&lt;br /&gt;
[[Category: Tutorials]]&lt;br /&gt;
[[Category: Radio Shack Computers]]&lt;/div&gt;</summary>
		<author><name>Rayrayemu</name></author>	</entry>

	</feed>