Some of you saw I picked up a ANS 700 with 200Mhz upgrade card a while ago for the very reasonable price of $60. This post is just me logging/sharing resources I've found and progress along the way of getting a machine up and running.
ANS came with a 4.1.4.1 install CD. I have so far been unable to find the 4.1.5 upgrade CD. The full 4.1.5 install CD is on the garden. https://macintoshgarden.org/apps/aix-apple-network-servers-v4141 but a burned CD is unreadable. Trying via BlueSCSI and worked with notes below.
BlueSCSI and disk emulation:
CD can not be booted from external db25 bus, put BlueSCSI in a sled with CD0 being the install media and HD1 being the drive.
Term power is not provided on the internal bus - you must use a berg to molex. Termpower is provided on the external bus.
Docs say you must switch the key to maintenance to boot from CD - I've never had to do this for either a real or BlueSCSI boot cd.
Software install
Choose all licensed software to avoid picking and choosing - you'll probably just want to play with it all.
Floodgap has a bunch of ANS AIX software archived - unfortunately only accessible via gopher - though https://gophie.org/ is working fine and I'm able to send it to my ANS via FTP.
GNU/Libs
Install .tar.Z files
Add /usr/local/bin to your path
Games
gopher.floodgap.com/1/archive/aix-games
Floodgap also has a FAQ and Other Software page: https://www.floodgap.com/retrobits/ans/
Doom
PSU
Unsure how to open to inspect - occasionally seems to go into a fault protection.
DO NOT remove the screws from the fans (only exposed screws on the PSU, the rest is riveted) - they have nuts on the back that will fall in and can not be replaced without opening the PSU (learned the hard way) - used those self tapping screws that normally are used on fans.
Power button on keyboard - oddly it has to be pressed for a few seconds or I get a quick power on and off (thought it was the PSU at first, still might be)
Openfirmware
Password is what you set the root password to.
Expand Drive Logical volume:
X11 forwarding
Have an X server on your modern machine you'd like to display the remote app on. I used https://www.xquartz.org
on the modern computer type `xauth list` - grab the magic token for your ip or hostname.
on the ANS add the magic: `xauth add 192.168.3.207:0 . <magic token here>`
on the ANS add the remote display `export DISPLAY=192.168.3.207:0`
on the ANS add the remote x host `xhost +192.168.3.207`
now you can launch X11 apps via your xquartz terminal when telnet'd into the host, eg `xclock` or `netscape`
--- More edits/notes/cleanup as it happens ---
ANS came with a 4.1.4.1 install CD. I have so far been unable to find the 4.1.5 upgrade CD. The full 4.1.5 install CD is on the garden. https://macintoshgarden.org/apps/aix-apple-network-servers-v4141 but a burned CD is unreadable. Trying via BlueSCSI and worked with notes below.
BlueSCSI and disk emulation:
CD can not be booted from external db25 bus, put BlueSCSI in a sled with CD0 being the install media and HD1 being the drive.
Term power is not provided on the internal bus - you must use a berg to molex. Termpower is provided on the external bus.
Docs say you must switch the key to maintenance to boot from CD - I've never had to do this for either a real or BlueSCSI boot cd.
Software install
Choose all licensed software to avoid picking and choosing - you'll probably just want to play with it all.
Floodgap has a bunch of ANS AIX software archived - unfortunately only accessible via gopher - though https://gophie.org/ is working fine and I'm able to send it to my ANS via FTP.
GNU/Libs
Install .tar.Z files
Code:
uncompresss file.tar.Z
mv file.tar /
tar -xvpf file.tar
Add /usr/local/bin to your path
Code:
export PATH=$PATH:/usr/local/bin
Games
gopher.floodgap.com/1/archive/aix-games
Floodgap also has a FAQ and Other Software page: https://www.floodgap.com/retrobits/ans/
Doom
PSU
Unsure how to open to inspect - occasionally seems to go into a fault protection.
DO NOT remove the screws from the fans (only exposed screws on the PSU, the rest is riveted) - they have nuts on the back that will fall in and can not be replaced without opening the PSU (learned the hard way) - used those self tapping screws that normally are used on fans.
Power button on keyboard - oddly it has to be pressed for a few seconds or I get a quick power on and off (thought it was the PSU at first, still might be)
Openfirmware
Password is what you set the root password to.
Expand Drive Logical volume:
Code:
Get PPs’s
# lspv hdisk0
PHYSICAL VOLUME: hdisk0 VOLUME GROUP: rootvg
PV IDENTIFIER: 002b5b4782f4a3b2 VG IDENTIFIER 002b5b4782f4a809
PV STATE: active
STALE PARTITIONS: 0 ALLOCATABLE: yes
PP SIZE: 16 megabyte(s) LOGICAL VOLUMES: 8
TOTAL PPs: 575 (9200 megabytes) VG DESCRIPTORS: 2
FREE PPs: 64 (1024 megabytes)
USED PPs: 511 (8176 megabytes)
FREE DISTRIBUTION: 00..64..00..00..00
USED DISTRIBUTION: 115..51..115..115..115
# Expand root `/` partition by 127 PPs
# lslv hd4
LOGICAL VOLUME: hd4 VOLUME GROUP: rootvg
LV IDENTIFIER: 002b5b4782f4a809.4 PERMISSION: read/write
VG STATE: active/complete LV STATE: opened/syncd
TYPE: jfs WRITE VERIFY: off
MAX LPs: 128 PP SIZE: 16 megabyte(s)
COPIES: 1 SCHED POLICY: parallel
LPs: 128 PPs: 128
STALE PPs: 0 BB POLICY: relocatable
INTER-POLICY: minimum RELOCATABLE: yes
INTRA-POLICY: center UPPER BOUND: 32
MOUNT POINT: / LABEL: /
MIRROR WRITE CONSISTENCY: on
EACH LP COPY ON A SEPARATE PV ?: yes
Extend logical volume
# extendlv hd4 127 # (128 total)
Math: 128 == PPs, 16 == PP Size, then convert to Mb, then to 512 blocks:
(128 * 16) pps in mb 2,048
2,048 * 1,048,576 = 2,147,483,648
2,147,483,648 / 512 = 4,194,304
Expand File System
# chhfs -a size='4194304' /
Expand /usr (hd2) by 200 to 239
extendlv hd2 200
(239 * 16) pps in mb 3,824
3,824 * 1,048,576 to kb
4,009,754,624 / 512 to blocks
7,831,552
chfs -a size=‘7831552’ /usr
Expand /home (hd1) by 127 (max LPs) to 128
lslv hd1
extendlv hd1 127 (128 total)
(128 * 16) pps in mb 2,048
2,048 * 1,048,576 = 2,147,483,648
2,147,483,648 / 512 = 4,194,304
chhfs -a size='4194304' /home
X11 forwarding
Have an X server on your modern machine you'd like to display the remote app on. I used https://www.xquartz.org
on the modern computer type `xauth list` - grab the magic token for your ip or hostname.
on the ANS add the magic: `xauth add 192.168.3.207:0 . <magic token here>`
on the ANS add the remote display `export DISPLAY=192.168.3.207:0`
on the ANS add the remote x host `xhost +192.168.3.207`
now you can launch X11 apps via your xquartz terminal when telnet'd into the host, eg `xclock` or `netscape`
--- More edits/notes/cleanup as it happens ---
Last edited: