Hi All,
For those of you who don't follow alt.sys.pdp11: I set up
a simple web page to start an inventory poll on the number
and types of PDP-11 systems used by hobbyists, the operating
systems in use on them, and what, if any, licenses are being
used for those systems.
All this has to do with the whole Mentec not having a license
program for the PDP-11 R* operaing systems (RT, RSX and RSTS).
After some discussion with Mentec, the site was set up to do
the gathering of numbers so we can convince their Management
that there are many systems in hobby use, and that there's
enough people willing to aquire such a license.
Please check out
http://www.pdp11.nl/poll.htm
and do your magic. None of the information provided will be
transferred to anyone- only the summarized info will be made
available in a report to Mentec - a copy of which you can
request by requesting the 'feedbeck' stuff in the poll.
Thanks, and spread the word !
Fred
Hello from Gregg C Levine
Here's a question. Does anyone on this list, know where I could obtain
an LSI-11? Or even a Heathkit, H-11?
And the other question, is: Has anyone gotten the different versions
of E-11 to boot the operating systems that are available on the file
server? These are versions that are stored on the file server itself.
Older then 3.1 is what I am thinking of.
For my first question, please reply directly to me. That is, only
positive ones.
-------------------
Gregg C Levine hansolofalcon(a)worldnet.att.net
------------------------------------------------------------
"The Force will be with you...Always." Obi-Wan Kenobi
"Use the Force, Luke."Â Obi-Wan Kenobi
(This company dedicates this E-Mail to General Obi-Wan Kenobi )
(This company dedicates this E-Mail to Master Yoda )
>From: Kenneth Stailey <kstailey(a)yahoo.com>
>Sent: Wed, 9 Jul 2003 05:37:09 -0700 (PDT)
>To: Steve Nickolas <usagi.tsukino(a)pinku.zzn.com>
>Subject: Re: RE: [TUHS] v6on286
>The README says:
><< The kernel makes heavy use of the special 286 protected mode
>features >>
>Try bochs set to be a 286.
I figure that a Celeron is a superset of the 386 - ergo, of the 286
also - so there shouldn't be a problem. Maybe I'll do that though,
it's safer in a sandbox.
>I am wondering if Cygwin could be used to build the code. I see that
>ancient C stuff like "=+" was eliminated already.
!!
I think if you converted the ASM to some other format, you could use
Turbo C++ to build it, though...haven't tried that, I don't grok ASM.
>Plus check this site out:
>
>http://www.thefreecountry.com/compilers/cpp.shtml
LOL, I have 6 working C compilers on the Windows/DOS side of my box
already :) (Turbo C++ 1, Borland C++ 3, Watcom C 11, djgpp, MinGW32,
Cygwin)
-uso.
kirei-na pinku-na E-MAIL-saito
___________________________________________________________
Get your own Web-based E-mail Service at http://www.zzn.com
I was finally able to download a good copy of v6on286 from minnie...
I have Borland C++ 3.1, the existing version was built with 3.0.
There are no binaries in the v6on286 package for the Unix itself,
AFAICT, but I did get a successful MAKE.
This is the weird thing, and I'm not sure if it's pilot error, the
fact I'm running Windoze, or a glitch in the code.
C:\UNIX>un
Screen goes blank except for a block flashing cursor. The keyboard
does not respond - not even the lights - indicating that the machine
is either in a PM loop or completely hung.
Has anyone had better luck than me?
Or have I had better luck than everyone else (author excluded)?
Thx.
BTW...I wonder, could some old C compiler be bootstrapped on v6on286
and then V7 ported on it?
-uso.
kirei-na pinku-na E-MAIL-saito
___________________________________________________________
Get your own Web-based E-mail Service at http://www.zzn.com
Ah, silly of me. If I used FTP, that could have saved a couple wasted
hours compiling v6on286 :)
--
Maciek (macbiesz(a)optonline.net)
-----Original Message-----
From: Warren Toomey [mailto:wkt@tuhs.org]
Sent: Tuesday, July 08, 2003 8:25 PM
To: Maciek Bieszczad
Subject: Re: [TUHS] v6on286
?! It's still here at ftp://minnie.tuhs.org/UnixArchive/Other/V6on286/
but I'm not sure why Apache hides the README when the same directory
is viewed with http://www.tuhs.org/Archive/Other/V6on286/, I'd better
check that out.
Warren
> From: "Joel Martinez" <president(a)coherent-logic.com>
> To: <tuhs(a)minnie.tuhs.org>
> Subject: Re: [TUHS] OT: Patternless Encryption
> Date: Tue, 8 Jul 2003 11:35:24 -0600
>
> Is it possible to do this with a fixed length key?
>
> > Such a thing exists, it is called a one-time pad. Generate a
> > completely random key as long as the plaintext, and then XOR each
> > successive bit of the key with the corresponding bit of the plaintext.
> > The result is indistinguishable from random noise; only someone with
> > an identical copy of the key can decrypt it (using precisely the same
> > method of course).
For various degrees of security, depending on the length of the key.
Keys are not used directly for encryption, but are used to generate
cryptographically secure pseudo-random sequences.
As a starting point, look at
< http://www.mindspring.com/~schlafly/crypto/faq.htm >
carl
--
carl lowenstein marine physical lab u.c. san diego
clowenst(a)ucsd.edu
> X-From: mirian(a)trantor.cosmic.com (Mirian Crzig Lennox)
> Subject: Re: [TUHS] OT: Patternless Encryption
> Date: Tue, 8 Jul 2003 16:29:59 +0000 (UTC)
>
> On Tue, 08 Jul 2003 15:31:08 GMT, John P. Willis <jwillis(a)coherent-logic.com> wrote:
> >
> >Just curious to hear the opinions of the many wise people here...
> >What is the likelihood of an encryption system in which the resulting data
> >has no pattern,
>
> Such a thing exists, it is called a one-time pad. Generate a
> completely random key as long as the plaintext, and then XOR each
> successive bit of the key with the corresponding bit of the plaintext.
> The result is indistinguishable from random noise; only someone with
> an identical copy of the key can decrypt it (using precisely the same
> method of course).
>
> > and one character of encrypted data may stand for many
> >different characters when decrypted?
>
> Assuming you mean "one character of encrypted data might represent any
> one of several different characters of plaintext" (not "one
> character's worth of encrypted data represents multiple characters
> worth of plaintext), this is indeed the effect of a one-time pad.
> Just don't ever reuse that key; promptly destroy both copies after
> use.
>
> --Mirian
This is hardly the place for a long discussion on such topics, but
one might want to look at the FAQ for the net news group sci.crypt.
carl
--
carl lowenstein marine physical lab u.c. san diego
clowenst(a)ucsd.edu
Just curious to hear the opinions of the many wise people here...
What is the likelihood of an encryption system in which the resulting data
has no pattern, and one character of encrypted data may stand for many
different characters when decrypted?