Sponsored Content
Operating Systems AIX Reinstalling AIX 4.3 on IBM RS6000 Post 302325994 by dukessd on Tuesday 16th of June 2009 08:23:06 PM
Old 06-16-2009
Have you got the AIX OS install CDs?

4.3 went out of support ages ago, even 5.1 and 5.2 are out of support now.

What model is it? There should be a little sticker on the front with something like the following on it, or run the command 'prtconf | head' for more info:

The sticker will have tiny writing and show something like:

70xx-yyy
zz-abc12

Or:

Type 70xx
zz-abc12

where 70xx is the machine type
yyy is the model
zz-abc123 is the serial number.

The machine type and model will help us to let you know what your options are.
 

10 More Discussions You Might Find Interesting

1. Programming

Good IDE for C++ on RS6000/AIX

I am looking for the above Can anyone point me to a reliable product, with available support in the forseeable future ? Seeker (0 Replies)
Discussion started by: Seeker
0 Replies

2. UNIX for Advanced & Expert Users

Installing PHP on IBM/RS6000 AIX UNIX

I am attempting to install PHP on an IBM RS6000 AIX UNIX box. I am not getting very far and hope someone can point me in the right direction. Here is the message from the output: checking for Apache 1.x module support via DSO through APXS Sorry I was not able to successfully run APXS.... (6 Replies)
Discussion started by: jyoung
6 Replies

3. UNIX for Advanced & Expert Users

Hard time with a RS6000 J40 + AIX 5.2L

Hello all! This is my first post here! I'm having a hard time with an IBM RS/6000 J40 machine. I'm trying to install AIX 5.2L on it but, up to now, I can't make it boot from the CDROM. Do any of you have an ideia? Thank you for your time! (3 Replies)
Discussion started by: MCM
3 Replies

4. AIX

Re-Installation of AIX 5.2 in RS6000 7026

Hi There!! I need to reinstall the operating system AIX 5.2 in a RS6000 7026/6H1 that has AIX 4.3 but I need a firmware upgrade that I dón´t know where can I obtain. - Platform firmware version 3 or later. Someone can help me please, I will be very grateful !! Thank´s. (1 Reply)
Discussion started by: terron79
1 Replies

5. AIX

New to AIX and got my hands on a RS6000 v.need help getting it on the network

So im fairly new to AIX and my knowledge is very, very limited but i got my hands on an RS6000 43P model and im trying to get it on the network so i can access it from work. I have pretty much tried everything i can/know how to do by reading up as much as i can but im still lost. I have the 43P... (2 Replies)
Discussion started by: IIIII
2 Replies

6. AIX

VNC or X Emulator on RS6000 AIX 5.2

Hello everyone, I have just joined your forum even though I have been using it on and off for couple of months now. Up until now I have been able to find any information I needed by just browsing this site or performing a Google search, but now I'm stuck!. I was hoping you could help me with... (16 Replies)
Discussion started by: juniorG
16 Replies

7. AIX

Trying to hookup my notebook to my IBM 7046-B50 type rack RS6000/AIX system

Greetings to all: Gentlemen, I've tried extremely hard to hookup my notebook via the hyperterminal to my AIX box (IBM 7046-B50) by virtue of a cross-over cable. Don't know really whats going on ......to my surprise. The notebook says its hookedup successfully but shows no unix login prompt on... (6 Replies)
Discussion started by: mhatmi
6 Replies

8. Debian

Red Hat, GNU/Linux, IBM RS6000?

All - I have a stack of RS6000's that need a Linux install - Red Hat 5.2 to be exact. Any tips/pointers on how to get this done without an HMC? I can get the discs to boot, but the install hangs when asking for user interaction - like pressing 'ENTER' to skip disc media check. Any help greatly... (4 Replies)
Discussion started by: b1f30
4 Replies

9. UNIX and Linux Applications

debian boot failed on IBM RS6000 7025 F80

Hi everybody. I have an old IBM RS6000 Model 7025 F80 with AIX 4.3.3 installed with 2 primary scsi disks. I want to install linux (any flavor) on it. I downloaded and burned an iso image of debian (http://cdimage.debian.org/debian-cd/4.0_r4a/powerpc/iso-cd/debian-40r4a-powerpc-netinst.iso),... (3 Replies)
Discussion started by: pitagoras
3 Replies

10. AIX

AIX 5.1 and RS6000

I've an old server 1996 RS6000 (Processor 604e) running AIX 5.1. It started up fine, booted up and connected on 10Mbit with my router. I used to be able to connect to it with telnet but not anymore. I know the IP is right but working with the smit tcpip options, looks like I've changed... (1 Reply)
Discussion started by: Devyn
1 Replies
ADDPTYPE(3)						       MBK UTILITY FUNCTIONS						       ADDPTYPE(3)

NAME
addptype - create a ptype and add it to a ptype_list ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mut.h" ptype_list *addptype(pthead,type,ptdata) ptype_list *pthead; void *ptdata; long type; PARAMETERS
pthead Pointer to a ptype list type Flag indicating the pointer owner ptdata Generic pointer to any kind of information DESCRIPTION
addptype creates a new ptype element and adds it to the front of the list pointed to by pthead, and becomes itself the list head. The ptype_lists are mosty used to create lists of homogeneous elements in mbk, but also for trees, graphs, and so on. The type argument indicates the pointer type, at the C type meaning, for its owner. The types allow to access the pointers with adequat cast, and for example to share informations in the USER fields of mbk structures. The ptdata points to any kind of list or may itself be a value, if proper cast is performed at compilation time, and fills the DATA field of the ptype structure. For details on the structure, see ptype(3). RETURN VALUE
addptype returns a pointer to the new head of list. EXAMPLE
#include "mut.h" #include "mph.h" void corner(ptfig, name) phfig_list *ptfig; char *name; { phins_list *i = getphins(ptfig, name); num_list *ptnum; phfig_list *model; model = getphfig(i->FIGNAME); ptnum = addnum((num_list *)NULL, model->X2 - model->X1); ptnum = addnum(ptnum, model->Y2 - model->Y1); i->USER = addptype(i->USER, (long)PLACEABOX, (void *)ptnum); } SEE ALSO
mbk(1), ptype(3), freeptype(3), getptype(3), delptype(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 ADDPTYPE(3)
All times are GMT -4. The time now is 03:18 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy