Sent from my iPhone
On 10 Nov 2013, at 12:08, "Bob Armstrong" <bob at jfcl.com> wrote:
It s not exactly a DEC problem, but I know there are several people on HECnet running simh under Linux and I m hoping somebody has already figured this one out.
I used to run simh (vax and pdp11 both) under Ubuntu 10.04 using Johnny s bridge program and a tap device to connect to HECnet.
sudo tunctl -t tap0
sudo ifconfig tap0 up
sudo -b /usr/local/bin/hecnet-bridge 4711
the bridge.conf file (I ll post it if anybody wants) bridges tap0 with Psilo.update.uu.se and in simh I would say
set xqb enabled
attach xqb tap0
and it worked great. Everybody was happy :-)
BUT, now I ve upgraded to Ubuntu 12.04 (Ok, I m not an early adopter!) and, as you might guess, it doesn t work anymore. No errors and the tap0 device looks OK
bob at falsetto:~/legato$ ifconfig tap0
tap0 Link encap:Ethernet HWaddr c6:36:37:eb:16:7a
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
but nothing ever happens. No data seems to pass between the bridge program and simh.
Is anybody else using Ubuntu? Did you run into this problem? Thanks,
Bob
Try setting the interfaces promiscuous.
It s not exactly a DEC problem, but I know there are several people on HECnet running simh under Linux and I m hoping somebody has already figured this one out.
I used to run simh (vax and pdp11 both) under Ubuntu 10.04 using Johnny s bridge program and a tap device to connect to HECnet.
sudo tunctl -t tap0
sudo ifconfig tap0 up
sudo -b /usr/local/bin/hecnet-bridge 4711
the bridge.conf file (I ll post it if anybody wants) bridges tap0 with Psilo.update.uu.se and in simh I would say
set xqb enabled
attach xqb tap0
and it worked great. Everybody was happy :-)
BUT, now I ve upgraded to Ubuntu 12.04 (Ok, I m not an early adopter!) and, as you might guess, it doesn t work anymore. No errors and the tap0 device looks OK
bob at falsetto:~/legato$ ifconfig tap0
tap0 Link encap:Ethernet HWaddr c6:36:37:eb:16:7a
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:500
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
but nothing ever happens. No data seems to pass between the bridge program and simh.
Is anybody else using Ubuntu? Did you run into this problem? Thanks,
Bob
So the latest Takara Alpha PICMG Industrial PC picked up from eBay last week has a different firmware image to the last one. Apparently it has something to do with VNswitches, but I'm not sure how it would have fitted in to a bigger picture. It looks like at one point it contained three network cards given the errors.
Does anyone have any knowledge of this? It looks like I'm going to have to resort to the technique I performed on the last box when I flashed AlphaBIOS which would then not allow a reflash. I had to set a jumper on the CPU card and create a boot floppy with replacement firmware on.
Looks like the 'MOS Operator Control' prompt is a dead sheriff rather than a dead sergeant!
Regards, Mark.
------ %< ------ %<------ %< ------ %<------ %< ------ %<------ %< ------ %<
Kuiper/Charon X3.1
Platform: Takara @ 500MHz
Memory: 64MB
PCI bus 0 slot 7 fn 0 irq=0000001D : Intel 82378 SIO
DEC 10/100 Mb/s Ethernet start failed: device not found
DEC 10/100 Mb/s Ethernet start failed: device not found
DEC 10/100 Mb/s Ethernet start failed: device not found
Copyright 1995-1996 Digital Equipment Corp.
MOS Operator Control
*?
BREAKPOINT
DIVERT output from process
FLUSH output from process
HALT output from process
INTERCEPT character is
LOGOUT
MEMORY statistics
RAMLOAD
RESTART
RELOAD
STATUS of process(es)
TALK to process
TELNET to IP-Address <this terminal type>
*memory
Number of bytes: Busy = 51560, Idle = 2352, Free = 49553648
*
--
http://www.wickensonline.co.ukhttp://hecnet.euhttp://declegacy.org.ukhttp://retrochallenge.nethttps://twitter.com/#!/%40urbancamo
--
http://www.wickensonline.co.ukhttp://hecnet.euhttp://declegacy.org.ukhttp://retrochallenge.nethttps://twitter.com/#!/%40urbancamo
On 3 Nov 2013, at 18:20, Johnny Billquist <bqt at softjar.se> wrote:
On 2013-11-03 16:23, Sampsa Laine wrote:
Guys,
I assume a large proportion of you have read Orwells "1984" and remember the protagonists workplace, the Ministry of Truth, i.e. Minitrue in Newspeak.
Now I managed to purchase minitrue.su (yes, .su for Soviet Union never went away).
Any ideas what to do with it?
Obvious ones are put KREMVAX.MINITRUE.SU and KGBVAX.MINITRUE.SU underneath it.
While funny, this is definitely a little too off topic for my taste...
Johnny
Can I just close the thread by saying that people should contact me offlist for registrations, KREMVAX, KGBVAX and PRAVDA are gone.
Thanks for understanding BQT :)
On Mon, Nov 4, 2013 at 10:39 AM, <Paul_Koning at dell.com> wrote:
However, wxWidgets works very well. It's very portable, produces native looking applications, and works on lots of operating systems. I've been using it for years.
It also comes with a good Python library.
I have only looked at it, but what I have seen it does look reasonable. I have no love or hate for QT. It works and gets the job done for what I have to do with it. wxWidgets also looks pretty useful also.
Clem
On Nov 2, 2013, at 2:44 PM, Sampsa Laine <sampsa at mac.com> wrote:
Yuk. I would think that a OS interface library might help here. Linux, Mac OS and *BSD are all pretty much the same for the basic I/O and all three support most of the basic low level OS stuff from open/close/read/write to mmap/semphores etc.. Where they differ is in UI and specifically GUI. I wonder if you considered something like QT for everything but DOS, I would like the amount of OS specific code you had to deal with I would hope would drop substantially.
QT would look like ass, frankly, esp on OS X.
I'd go for SDL and just make the UI a framebuffer thats a DOS screen with the same inputs as the DOS version. No need to write any manuals either :)
Or SDL and a Star Trek interface or whatever, but all the cross-platform GUI stuff looks TERRIBLE on OS X.
Maybe Qt does -- I only looked at it briefly and concluded I liked neither the API nor the license.
However, wxWidgets works very well. It's very portable, produces native looking applications, and works on lots of operating systems. I've been using it for years.
It also comes with a good Python library.
paul
I vote for conditional code.
-Steve
________________________________
From: owner-hecnet at Update.UU.SE on behalf of John Wilson
Sent: Sat 11/2/2013 14:10
To: hecnet at Update.UU.SE
Subject: Re: [HECnet] Ersatz-11 PDP-11 emulator V7.0
From: Clem Cole <clemc at ccc.com>
Much as as I like *BSD, I'd rather see OSx ;-)
Even if I weren't afraid of Apple because of their "app store" monopolistic
grabbiness (they used to be so nice in the old days), I wasn't able to
find a reasonable way to get Mach-O executables from OMF-386 .OBJ files.
Writing a new linker seems like a great way not to have fun!
On Sat, Nov 2, 2013 at 7:49 AM, Steve Davidson <jeep at scshome.net> wrote:
Then how about NetBSD on x86???
I really would like to attack the *BSDs ... I investigate periodically
but I just can't decide which I'd regret more: conditionalizing the
hell out of 11K lines of Linux-specific support code, or editing a copy
into ~11K lines of BSD-specific code that's easy reading but needs to
be maintained in parallel. Um, or I could do both? Nah. It would be
fun to get working though.
John Wilson
D Bit
On 2013-11-03 16:23, Sampsa Laine wrote:
Guys,
I assume a large proportion of you have read Orwells "1984" and remember the protagonists workplace, the Ministry of Truth, i.e. Minitrue in Newspeak.
Now I managed to purchase minitrue.su (yes, .su for Soviet Union never went away).
Any ideas what to do with it?
Obvious ones are put KREMVAX.MINITRUE.SU and KGBVAX.MINITRUE.SU underneath it.
While funny, this is definitely a little too off topic for my taste...
Johnny
--
Johnny Billquist || "I'm on a bus
|| on a psychedelic trip
email: bqt at softjar.se || Reading murder books
pdp is alive! || tryin' to stay hip" - B. Idol
On Sun, 3 Nov 2013, Sampsa Laine wrote:
Guys,
I assume a large proportion of you have read Orwells "1984" and remember the protagonists workplace, the Ministry of Truth, i.e. Minitrue in Newspeak.
Now I managed to purchase minitrue.su (yes, .su for Soviet Union never went away).
Praise be to Ford for this accomplishment! (I'm aware that's a different book. I prefer it to 1984)
Any ideas what to do with it?
Obvious ones are put KREMVAX.MINITRUE.SU and KGBVAX.MINITRUE.SU underneath it.
A friend of mine own prismbackup.us...jokes for that are easy to come up with, but minitrue.su jokes are harder to come up with.
sampsa
--
Cory Smelosky
http://gewt.net Personal stuff
http://gimme-sympathy.org Projects
John,
When would the demo (available via telnet) be accessible again?
What are, besides the duration limit, the differences between the demo
and the full version?
Thank you,
Jerome
On Sun, Nov 3, 2013 at 5:42 AM, Clem Cole <clemc at ccc.com> wrote:
On Sat, Nov 2, 2013 at 2:57 PM, Sampsa Laine <sampsa at mac.com> wrote:
As for Jobs, uhh, OS X is an extension of OpenStep which Apple they got
the rights to when they acquired Next and they brought Jobs in. What are you
talking about?
The replacement for Mac OS work started long before Jobs returned. You
are right, what they ended up with NextStep/OpenStep etc. But learning to
join what we now call the FOSS community began before he returned. Talking
to my friends that were there at the time, the tell me that culturally
breaking out of the "closed" nature was not something Jobs liked. The
engineers inside Apple at the time were what started it. Remember then
they were still in the Avis "we try harder" mode to Microsoft and the PC and
many of them felt the way to fight redmond was to be part of the unix
community etc.. When Jobs returned, they were already participating in the
FOSS community. There was a system called MachTen the pre-dated the Next
machine ( IIRC that was being used inside of Apple before NextStep also). I
ran it on a 68030 based color Mac-II (which I only go rid of about 2 years
ago). It was CMU Mach/BSD under the covers and allowed traditional MacOS
programs to run.
A lot of folks thought it was cool - best of both worlds.
Also your comment about App store -- I ask you to please differentiate
between the iOS App store and Mac App store, Many Mac developers that I
work with do not use the later and I know some are proud of it and display
thing on their web sites saying so. If I look at the system in which I am
typing this message, very few of the applications come from the Apple
store. That said -- I agree with your comment for iOS however and nearly
100% of my iPhone apps come from the store. All do indirectly[the IT shop
of my employer loads a program from the store called "apps at work" - and that
program some how loads other applications from an Intel specific library].
IMO, with the success of iOS, Apple seems to have gone back to its closed
ways and I do find that worrisome.
Clem