Well the MacBook is finally out. I'm contemplating getting one. Also I've noticed that my last post broke IE and really anyone running sub 1600x1050. Sorry about that, go buy a bigger screen ;) On another note, I got an email from one of my friends at usyd:MacBook
Michael Dale
Sydney Uni is selling original iMacs for $50!!! I don't know if you have any use for super cheap old computers, but I thought I'd tell you anyway. The School of Languages is trying to get rid of them. Maybe for spare parts, extra storage space (although the one I saw I had a hard drive of a whopping 4 GB - not much storage space there!)???? Anyway, I thought you might like to know.So if anyone wants cheap macs. I think I've got enough. On last count we now have 6 macs in the house :)
I purchased my parents a new router/modem/wireless device the other day. It is a Netgear DG834G, great value for money.Site to Site VPN with Netscreen 5GT and Netgear DG834G
Michael Dale
PHPBB 3.0
Michael Dale
PHPBB (a popular forum software) has been stuck at version 2.x for a long time now. It has been plagued with many security issues, a long with poor W3C standards.
Version 3 (formally 2.2) which has been running years late is now almost ready for beta testing.
I wonder if this new version will bring phpbb up to standards.
We got VoIP running internally this morning. We've been unable to get the cisco 7940/60s working (they won't flash) but we've got the 7912 working. Our hold music rules ;) Once we have a SIP provider we can have external access! woo.Phone network
Michael Dale
I've done some basic IPv6 stuff in the past, which only involved a single IPv6 address and a connection to aarnet. I was going to look into setting up a tunnel on my router (a m0n0wall box) so that I had both a IPv4 address and a IPv6 address but it didn't support IPv6 stuff. Anyway I've got my cisco 2651 up and connected to the internet and it has full IPv6 support so I decided to give it a go. Aarnet also give you an option to run a full /64 subnet, so I decided to give it a go. The web interface outputs a shell script that gives you the configuration needed for the router. So I modified by config (with some small changes).IPv6 again!
Michael Dale
This week I've had a bit of a chance to play with some new hardware I was given. I am well enough to be up and doing stuff again, its great :) So yeah I've picked up a Cisco 2611 and Cisco 827-4v router. The first one is a modular router that has two 10mbit Ethernet ports, it has been upgraded to 64mb and has a fairly new IOS on it. The 827 is an ADSL1 router with 4 analog telephone adapters (ATA) built in. I'm trying to setup a RIP routing network between the 2611 and a OpenBSD box. I'm currently looking at two pieces of software to do this, Zebra and Xorp. These both sit on top of another operating system and handle routing. It has been pretty interesting. I have been impressed with the Cisco gear. Once you'd had a real chance to play with it they work well. I like how the whole configuration is in one file, that makes life nice and easy. I did do CCNA way back at school, but I'm required to do some Cisco stuff at UNI and I need to refresh my memory. On another topic. I've run out of Ethernet ports at home, so I thought I'd spend a bit of money and get myself a cheap 24 port 100mbit managed switch. The switch I have purchased also does basic vlans, so that should be very helpful. The switch has cost me about $160 (yes very cheap) and can be found here. I should get that in the next week or so.Routing
Michael Dale
Tom Quinn has successfully put together a working copy of rdesktop for the IBM thin client. I have repackaged it into a tar.gz and have since tested it on my thin client. To install download this file to your thin client in the root of the drive / http://www.bluetrait.com/files/N2200/rdesktop-linux2200.tar.gz then from a command line run:rdesktop for N2200 with Linux-2200
Michael Dale
I thought the documentation on installing Linux onto the N2200 wasn’t great so I decided to write up something myself.Installing "Linux-2200" onto the IBM Netvista N2200 (8363)
Michael Dale
You must have a Debian Woddy Linux.Software included
First look where the app (for example:Nedit) you needed is:
$ whereis nedit
nedit: /usr/X11R6/bin/nedit
copy nedit to your card
cp /usr/X11R6/bin/nedit /yourcard/usr/X11R6/bin
look which libraries needed by Nedit
$ ldd /usr/X11R6/bin/nedit
libXm.so.1 => /usr/lib/libXm.so.1 (0x40021000)
libXpm.so.4 => /usr/X11R6/lib/libXpm.so.4 (0x4014b000)
libXext.so.6 => /usr/X11R6/lib/libXext.so.6 (0x4015a000)
libXt.so.6 => /usr/X11R6/lib/libXt.so.6 (0x40167000)
libSM.so.6 => /usr/X11R6/lib/libSM.so.6 (0x401b1000)
libICE.so.6 => /usr/X11R6/lib/libICE.so.6 (0x401b9000)
libX11.so.6 => /usr/X11R6/lib/libX11.so.6 (0x401cf000)
libm.so.6 => /lib/libm.so.6 (0x402a9000)
libc.so.6 => /lib/libc.so.6 (0x402ca000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
look if the libaries are on your card, otherwise copy the missing libraries to yourcard. Make sure the libary isn't a link.
example:/usr/X11R6/lib/libXt.so.6
ls -l /usr/X11R6/lib/libXt.so.6
lrwxrwxrwx 1 root root 12 4. Apr 2004
/usr/X11R6/lib/libXt.so.6 -> libXt.so.6.0
you see /usr/X11R6/lib/libXt.so.6 is linked to libXt.so.6.0
to copy both (the lib and the link) make
cp -a /usr/X11R6/lib/libXt.so* /yourcard/usr/X11R6/lib
In this case (nedit) thats all. Some apps needed more files (configuration files, etc) or depend on other apps, then you have to look into the docs,to google or to find it out by "try and error".