Hey everyone, I just wanted to announce thta I will be opening a new
Rainbow 100 website on Saturday, Feb 8. The site is located at:
http://www.classiccmp.org/rainbow
Right now, all that is there is an announcement. I hope everyone will
take a moment top visit once it's open.
I haven't been keeping up with everything in the Rainbow commumnity. I
noticed that all the schematics have been posted on the Update
(ftp.update.uu.se) archives. Who took the time to do this? I just wanted
to thank them. Anyway, visit the page if you get a chance! Thanks!
-Jeff
jba(a)sdf.lonestar.org
SDF Public Access UNIX System - http://sdf.lonestar.org
>Message: 9
>Date: Wed, 29 Jan 2003 00:07:02 -0800 (PST)
>Subject: Re: Looking for DEC parts
>From: "Eric Smith" <eric(a)brouhaha.com>
>To: <cctalk(a)classiccmp.org>
>Reply-To: cctech(a)classiccmp.org
>
>> These are the parts we are looking for:
>>
>> 5 pcs. DEC 21-17311-01 or 21-17311-02
>> 2 pcs. DEC 21-17312-00 or 21-17312-01
>> 2 pcs. DEC 57-00001-01
>> 2 pcs. DEC 57-00000-01
>> 2 pcs. DEC 21-15542-01
>>
>> Any luck for us ??
>
>You might be more likely to get a useful response if you told us what
>those parts are. I've got a lot of parts, but I don't have any
>inventory by part number.
Those chips are:
DEC 21-17311-01 or 21-17311-02 = T-11 processor
DEC 21-17312-00 or 21-17312-01 = DC 319 DLART
DEC 57-00001-01 = KEF11 FIS
DEC 57-00000-01 = Ctrl/Data Hybride of 11/23
DEC 21-15542-01 = MMU of 11/23
I have those parts over here, and since both the original poster and myself are
located in Germany, I have already dropped them a line and helped them out.
Frank Arnold
I've hacked together a 2.11 BSD C program (nothing special, should work
on other *nixen) that takes a .tap tape file and spits it onto a real
tape. I've tested it with both a TK50 and a TS05 tape drive. It even
successfully wrote a bootable TK50 format XXDP 2.5 tape. I'm going to
be cleaning up the code and posting it on the web, but for those who
can't wait, here is the raw code. It is left as an exercise to the
reader to figure out where my MUA breaks the source code lines.
------------ Cut Here --------------------
/* detap.c - 2003 by Christopher L McNabb */
#include <stdio.h>
#include <strings.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/file.h>
#include <sys/inode.h>
#include <sys/ioctl.h>
#include <sys/mtio.h>
main(argc, argv)
int argc;
char *argv[];
{
int infile,outfile,ctr;
long int offset;
long int records=1;
long int filecnt=1;
long int reclen;
long int reclen2;
void* buffer;
struct mtop tapeeof,taperew;
ctr = 0;
taperew.mt_op = MTREW;
taperew.mt_count = 1;
tapeeof.mt_op = MTWEOF;
tapeeof.mt_count = 1;
if(argc < 3)
{
printf("Usage: %s infile outdev\n",argv[0]);
exit(-1);
}
infile=open(argv[1],O_RDONLY);
if(infile < 0)
{
printf("Could not open %s\n",argv[1]);
exit(-1);
}
outfile=open(argv[2],O_CREAT | O_RDWR | O_TRUNC,IREAD | IWRITE);
if(outfile < 0)
{
printf("Could not open %s\n",argv[2]);
exit(-1);
}
printf("Rewinding Tape\n");
if( 0 > ioctl(outfile,MTIOCTOP,&taperew))
{
printf("\nMTIOCOP REW ERROR\n");
exit(-1);
}
offset = 0;
read(infile,&reclen,4);
while(1)
{
ctr ++;
if(reclen == 0)
{
filecnt++;
if(0 > ioctl(outfile,MTIOCTOP,&tapeeof))
{
printf("\nMTIOCTOP EOF ERR\n");
exit(-1);
}
read(infile,&reclen,4);
if(reclen == 0)
{
printf("\nEnd of Tape\n");
close(outfile);
ioctl(outfile,MTIOCTOP,&taperew);
break;
}
records=1;
continue;
}
buffer = malloc(reclen);
read(infile,buffer,reclen);
read(infile,&reclen2,4);
if(reclen != reclen2)
{
lseek(infile,-3,L_INCR);
read(infile,&reclen2,4);
if(reclen != reclen2)
{
printf("\nHdr1 and Hdr2 do not match\n");
exit(-1);
}
}
write(outfile,buffer,reclen);
fprintf(stdout,"Total Records: %6d File: %6ld Record: %6ld Record
Length: %6u\r",ctr,filecnt,records,reclen);
fflush(stdout);
free(buffer);
records++;
read(infile,&reclen,4);
}
close(infile);
close(outfile);
}
------------------- SNIP --------------------------
--
Christopher L McNabb
Operating Systems Analyst Email: cmcnabb(a)4mcnabb.net
Virginia Tech ICBM: 37.1356N 80.4272N
GMRS: WPSR255 ARS: N2UX Grid Sq: EM97SD
I want to work my Art EPP-2 programmer but i lost the software
google doesn't have what i'm looking for
any of you pherhaps
(its for the 27 and 28 series)
Paul
Hi Jules,
To my knowledge the largest hard drive platter was 24". IBM the inventor may have produced
an experimental platter of ~1 m as a demonstration project to management and maybe these platters
were 'sold' or distributed to IBM employees?
Murray--
cctalk-request(a)classiccmp.org wrote:
> Send cctalk mailing list submissions to
> cctalk(a)classiccmp.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://www.classiccmp.org/mailman/listinfo/cctalk
> or, via email, send a message with subject or body 'help' to
> cctalk-request(a)classiccmp.org
>
> You can reach the person managing the list at
> cctalk-admin(a)classiccmp.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of cctalk digest..."
>
> Message: 4
> Date: Thu, 20 Feb 2003 17:55:18 +0000 (GMT)
> From: =?iso-8859-1?q?Jules=20Richardson?=
> <julesrichardsonuk(a)yahoo.co.uk>
> Subject: large disk platters?
> To: cctalk(a)classiccmp.org
> Reply-To: cctalk(a)classiccmp.org
>
> I just randomly remembered the other day that when I was at uni one of the
> computing lecturers one day rolled out an enormous disk platter to demonstrate
> how hard disk technology has changed over the years.
>
> The platter was pretty huge - around 1m in diameter. Any ideas as to what
> system it may have come from?
>
> Im just curious really - I've not seen much really old hardware up close, but
> the impression I got from the pictures I've seen is that drive technology
> didn't typically use platters *that* large.
>
> (and hell, this beats talking about the war :)
>
> cheers
>
> Jules
> Everything you'll ever need on one web page
> from News and Sport to Email and Music Charts
> http://uk.my.yahoo.com
>
> End of cctalk Digest
pmulry wrote:
> I recently aquired a Data General 4000 series server [...]
It's highly possible that the NVRAM's lithium battery will have
died ("gone flat") by now. This is the case with both the AV410
and AV4300 I have. My AV530s/5500 seem to be okay, but it's just
a matter of time before they face the same problem.
The machines with dead NVRAM will give some cryptic indication
of the problem like printing "IDPROM" and nothing else, and
refuse to initialize/boot on power-up.
'r. bear stricklin' was collecting NVRAM dumps for analysis, so
we can try to load usable data into replacement parts, but I've
no idea where that stands. I haven't bothered getting a part to
see if, like Suns, the machine will function at all with an
uninitialized NVRAM. Anyway if you search the archive for his
name or Aviion I'm sure you'll find the relevant post. Or head
to this URL: http://www.bears.org/~red/museum/aviion-nvram.html
The 88k Aviions were frequently SMP capable, though unless you've
got rackmount or square/big deskside units they're probably just
2-way. If you think the daughter card on yours is a second CPU
complex, look for a chip marked 88100 or 88110; those are the
CPUs. The 88200's or 88410 are cache/MMU chips.
DG/UX will support SMP out of the box. It's a decent enough SVR4
implementation, with X11 (R?) and some sort of logical volume
system. If you're looking for media I may be able to help out,
contact me directly/off-list (smj0302 _ crash _ com).
Martin Marshall wrote:
> http://www-csc.dg.com/csc
If you dig around under there, there's a wealth of PDF files
about various models. Operations guides, some about installing
options and upgrading, low-level programming for a few models.
There's been sporadic interest in getting *BSD running on the
Aviions, but little activity. OpenBSD runs on several Motorola
88k boards, and I've recently managed to assemble the parts for
a complete system, but that's as far as it's gone. I have no
history porting OSes, and I'm much more focused on trying to
find a job now, so you don't want to hold your breath waiting
for me...
--Steve.
Having fond memories of using VAXen (specifically, an 8800) back in my
'stoodent' days, and in more recent times too (unknown type @ JP Morgan),
and further having seen numerous references to OpenVMS & VAXen on this
list, I got to thinking...
I'd actually quite like a VAX.
Unfortunately, this is probably impossible in the short term - unless I
want to buy the MicroVAX 3100 currently on eBay @ a fiver. But that's not a
*real* VAX, it's just not big enough... And besides, it hasn't got a
CD-ROM, which I will need to load OpenVMS.
Anyway, following yet another link posted on this list revealed the PDP-11
(and, coincidentally, VAX) simulator. Nice. So I downloads it, along with
MinGW (anyone else think of "minging[1] Windows" immediately, or is it just
me?), compile it, and eventually figure out roughly how to get to the basic
VAX ">>>" prompt. And here, I'm rather stuck.
So, does anyone have any nice'n'easy instructions on how to get the SIMH
VAX simulator ready for OpenVMS? I've read both the simulator document &
the VAX document, and I'm still well in the dark WRT how to get it up &
running... Basically, I've no idea what devices to ATTACH, what or how to
configure it, and so forth.
Obviously, I'll have to sort out an OpenVMS kit before I can do anything
remotely useful, and I'll probably need an extra HDD in the PC (<1gig free
now), blah blah. (oh yes, and Hans has found several faults in my websites
which I /really/ ought to fix first... - but, well, you know how it goes :)
So, can anyone help?
TIA!
[1] "minging" {v}: "really ugly" (he/she's minging) or quite smelly and
rotten (that bin's minging). UK expression (poss. Northern UK only).
--
Cheers, Ade.
Be where it's at, B-Racing!
http://b-racing.com
In my never ending attempts to find more space, I've started sorting thru
the book vaults and culling out the duplicates. Following is this week's
sortings.
In general, any book listed will go for $7.50 delivered in CONUS unless
otherwise noted. Where there are multiples this will be noted. If you
are outside of 'states', please drop me a note to sort out postage.
Available volumes:
Digital Microcomputer Handbook 1977-78 (5 available)
Digital PDP-11 Peripherals Handbook 1976 (3 available)
Digital Microcomputer Products Handbook 1985
Digital Logic Handbook 1970
Digital Programming Languages 1970 V2
Digital Labratory Computer Handbook 1971
First Called, First Served! As-Is, where is! All are readable and
appear complete, but remember they are old.
More later;
-jim
---
jimw(a)agora.rdrop.com
The Computer Garage - http://www.rdrop.com/~jimw
I have a MicroVAX 3800 in really good shape that I would like to be able to
use, but I have a problem. The power connector looks like a standard
grounded power cable connector, but has been made in such a way that the
power cable must have a notch on the top in order to plug in. Is there any
reason for this? Does that mean that I need a special cable or can I just
take a hacksaw to a regular power cable?
--
Owen Robertson
I know exactly what to do under UNIX, but I'm attempting to help out
someone else - I have the Montagar Hobbyist CD-ROM and I'm trying to
create an ISO file to feed to SIMH. We have tried three different
CD-ROM slurping programs from shareware.com and download.com, but
no success. They seem to have heartburn because the disc is not
mounted under Windows.
Has anyone gone from CD-ROM to running VAX under Windows? How did
you get files off the distro?
Thanks,
-ethan