• Please review our updated Terms and Rules here

Tru64 install issue...

commodorejohn

Veteran Member
Joined
Jul 6, 2010
Messages
3,307
Location
California, USA
So I'm trying to get a Tru64 (5.0) install going on a DEC 3000/300x workstation I got ahold of. I've gotten as far as booting and running the installer, and things appear to be totally fine...but when it finishes and tries to boot into the resulting install, it ends up in single-user mode after a pile of error messages:

tru64-error.jpg

Any idea what's going on here? The Tru64 install guide mirrored here has a section on boots-to-single-user, but that appears to be more about proper boot configuration, which I'm pretty sure is already in place. Did I miss a step?
 
Update: found the answer after some Googling and experimentation. This thread lays out the procedure that is apparently required, but the installer didn't do properly and I didn't see any reference to in the install guide :/ For posterity, this is the voodoo that you do to rebuild all the device links that it was expecting to be set up correctly and weren't:
Code:
[i]>>> boot -fl s[/i]

mountroot

rm /etc/dec*
rm /etc/dfsc*
rm /etc/dc*
cd /cluster/members/member/dev/; ./MAKEDEV std
rm /cluster/members/member/etc/dfsl*
rm /cluster/members/member/.Booted
cd /devices; rm -rf disk rdisk tape ntape cport dmapi changer

init 0

[i]>>> boot -fl s[/i]

mountroot
dn_setup -init
dsfmgr -K
dsfmgr -v # optionally -vF
hwmgr show scsi

bcheckrc

Tru64 is now up and busy slogging through the incredibly tedious package manager ;)
 
Back
Top