The Unix Heritage Society mailing list
 help / color / mirror / Atom feed
* [TUHS] Ultrix from CD on SIMH
@ 2004-11-16 15:53 Jose R. Valverde
  2004-11-21 20:05 ` Tom Ivar Helbekkmo
  0 siblings, 1 reply; 4+ messages in thread
From: Jose R. Valverde @ 2004-11-16 15:53 UTC (permalink / raw)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1113 bytes --]

Has anybody succeeded installing Ultrix v4.4/4.5 for the VAX on SIMH from 
DEC CD-ROM distribution?

I've been trying but when it goes to device detection it always turns 
up with an empty list. I mean, the install kernel boots, detects the
virtual hard disk and the CD-ROM, the install program starts and reaches
the installation menu (options for BASIC or ADVANCED) and it's then,
when choosing any option that it does not detect any suitable install
device.

It's been about 10 years since last I installed Ultrix on a VAX and to
be true, I can hardly remember all the details involved. It this doesn't
work, I'll try to go back to legacy tapes (if I can still find any 
around).

					j

-- 
	These opinions are mine and only mine. Hey man, I saw them first!

			    José R. Valverde

	De nada sirve la Inteligencia Artificial cuando falta la Natural
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20041116/73fc6ee2/attachment.sig>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [TUHS] Ultrix from CD on SIMH
  2004-11-16 15:53 [TUHS] Ultrix from CD on SIMH Jose R. Valverde
@ 2004-11-21 20:05 ` Tom Ivar Helbekkmo
  2004-12-01  3:57   ` Seth Morabito
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Ivar Helbekkmo @ 2004-11-21 20:05 UTC (permalink / raw)


"Jose R. Valverde" <txomsy at yahoo.es> writes:

> I've been trying but when it goes to device detection it always turns 
> up with an empty list. I mean, the install kernel boots, detects the
> virtual hard disk and the CD-ROM, the install program starts and reaches
> the installation menu (options for BASIC or ADVANCED) and it's then,
> when choosing any option that it does not detect any suitable install
> device.

I know that I figured out, a number of years back, how to install
Ultrix on non-supported media.  It involved aborting the install,
editing the install script to "recognize" the target media, and then
restarting the script.  You might want to experiment with this...

-tih
-- 
Popularity is the hallmark of mediocrity.  --Niles Crane, "Frasier"


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [TUHS] Ultrix from CD on SIMH
  2004-11-21 20:05 ` Tom Ivar Helbekkmo
@ 2004-12-01  3:57   ` Seth Morabito
  2004-12-01 15:08     ` José R. Valverde
  0 siblings, 1 reply; 4+ messages in thread
From: Seth Morabito @ 2004-12-01  3:57 UTC (permalink / raw)


Tom Ivar Helbekkmo wrote:
> "Jose R. Valverde" <txomsy at yahoo.es> writes:
> 
> 
>>I've been trying but when it goes to device detection it always turns 
>>up with an empty list. I mean, the install kernel boots, detects the
>>virtual hard disk and the CD-ROM, the install program starts and reaches
>>the installation menu (options for BASIC or ADVANCED) and it's then,
>>when choosing any option that it does not detect any suitable install
>>device.
> 
> 
> I know that I figured out, a number of years back, how to install
> Ultrix on non-supported media.  It involved aborting the install,
> editing the install script to "recognize" the target media, and then
> restarting the script.  You might want to experiment with this...
> 
> -tih


I've managed to do this by editing the ULTRIX install script, 
'install.1', to support installing from RA disks.  It turned out to be 
quite simple.

I have media and licenses for ULTRIX and UWS V4.3 (My media is 
AG-ND76E-RE, September 1992), so that's what I used for this experiment. 
  I don't know how ULTRIX 4.2, 4.4, or 4.5 would differ, you will have 
to experiment.  I just used dd to dump the CD-ROM image (i.e.,
"dd if=/dev/cdrom of=ultrix.iso bs=512")

I then set up SIMH with the following commands.  You may be able to play 
around with this and choose a different disk setup, but this is what 
worked for me:

   set cpu 64M
   set rq0 ra90
   set rq1 ra90
   set rq2 cdrom
   set rq3 disable
   attach rq0 d0.dsk
   attach rq1 d1.dsk
   attach rq2 ultrix.iso

ULTRIX will see rq0 as /dev/ra0*, rq1 as /dev/ra1, etc.  RA90 is 
supported under ULTRIX 4.3, RA92 is not, and RA60 failed to work for me, 
so my disk choices were limited.  Your milage may vary.

At the sim> prompt, type "b cpu" to boot the CPU.  Then at the VAX
 >>> prompt, type "b dua2" to boot from the CD-ROM.

You'll be greeted by the ULTRIX installer.  It has a menu like:
Select one of the following options:

         1) BASIC Installation
         2) ADVANCED Installation
         3) System management

Choose "3", which dumps you at a standalone shell, so you can edit the 
installer script, 'install.1'

The only editor available in this environment is 'ed' (The Standard 
Editor!).  Invoke it with the command:

   # ed install.1

If you have the same ULTRIX media I have, then you can just use these 
commands:

   173s/`btd`/ra2/
   193s/rz/ra/
   w
   q

If you have a different version of the installer, the line numbers might 
be different, so you'll have to poke around in the file yourself. 
Here's what to look for:  Line 173 reads "BTD=`btd`".  On SIMH, /bin/btd 
returns an empty string, so we're just explicitly setting BTD to 'ra2', 
the CDROM drive.  Line 193 is part of a case statement that switches on 
the value of $BTD, but there's no support for 'ra', so we'll just change 
the line that reads "rz *)" to "ra *)" instead.  Voila!  The script 
should now work.

Type "w" to write out the file, "q" to quit.  Then type ^D to exit the 
shell and return to the installation script.

This time, choose "2) ADVANCED installation", and select the first RA90 
device as the root disk.  You should be able to install normally from 
here on out.

-Seth


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [TUHS] Ultrix from CD on SIMH
  2004-12-01  3:57   ` Seth Morabito
@ 2004-12-01 15:08     ` José R. Valverde
  0 siblings, 0 replies; 4+ messages in thread
From: José R. Valverde @ 2004-12-01 15:08 UTC (permalink / raw)


On Tue, 30 Nov 2004 19:57:18 -0800
Seth Morabito <sethm at loomcom.com> wrote:
> 
> I've managed to do this by editing the ULTRIX install script, 
> 'install.1', to support installing from RA disks.  It turned out to be 
> quite simple.

Excellent! I have ultrix-4.4 media and it has worked out like a charm. The
target lines were at the same addresses, and modifying install.1 trivial
following your directions. It's now running the installation.

Thanks a lot.

				j
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://minnie.tuhs.org/pipermail/tuhs/attachments/20041201/1ac1d3bc/attachment.sig>


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2004-12-01 15:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-16 15:53 [TUHS] Ultrix from CD on SIMH Jose R. Valverde
2004-11-21 20:05 ` Tom Ivar Helbekkmo
2004-12-01  3:57   ` Seth Morabito
2004-12-01 15:08     ` José R. Valverde

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).