Sponsored Content
Operating Systems AIX How to install AIX 5 on 9133-55a? Post 302765489 by MichaelFelt on Saturday 2nd of February 2013 01:34:24 PM
Old 02-02-2013
I have to look deep in memory.

The default address is 192.168.2.147 if I recall correctly - on eth0 (HMC0)
The second interface might still be "unused" at default DHCP - 192.168.3.147

Note: their default is to use DHCP, so if you have a DHCP server you could attach both ports and watch what address the DHCP server assigns.
.
USB PC to serial? What speeds did you try? I think it needs to be 19200, 8bits,, no parity, 1 stop bit.

For the IP address with Power7 (and maybe Power6) follow: IBM

Although this link also gives the 169.254.2.147 as default address for Power5 and Power6.

Found some old embedded texts: the POWER5 defaults MAY be 192.168.2.147 or 192.168.3.147

And they may be still using DHCP to connect. In that case, get your HMC (virtual) setup to be a DHCP server and provide a direct line between HMC and Power system.. The HMC should "discover" - by assigning it - the IP address of the POWER system.

Good luck with the password for account admin.
 

9 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

Can I Install AIX 4.3.3 on a PC?

Would it be possible to install AIX ver 4.3.3 on a Pc so I can Practice commands and become familiar with the system? Is there anything special that i would have to do? Thanks Frank (1 Reply)
Discussion started by: wumagic
1 Replies

2. AIX

Install sudo on AIX 5.3

I'm trying to install sudo on AIX 5.3. I don't have a compiler on my machine, so I was trying to find a binary. The one found at http://www.bullfreeware.com/listaix52.html that is supposed to work for 5.3 even though it was compiled on 5.2. The issue is I'm new to AIX and could not figure out how... (3 Replies)
Discussion started by: sphericon
3 Replies

3. AIX

how to install fonts in AIX

Dear Friends, Please help me out to install fonts in AIX. I am new to AIX. Thanks in advance. Regards, dba (2 Replies)
Discussion started by: aix.dba
2 Replies

4. AIX

Turn off System attention light on POWER5 model p5 55A ?

Hi, Because of previous error System attention light(yellow exclamation mark) is on. How do I turn it off ? thanks Vilius (2 Replies)
Discussion started by: vilius
2 Replies

5. AIX

What's the purpose of rj45-like connector on front panel of p5 55A server ?

Hi, What is the purpose of this connector ? I attached picture of it. In docs it is called "Ethernet connector". thanks Vilius (1 Reply)
Discussion started by: vilius
1 Replies

6. AIX

Aix download and Install

I am new to Aix and would like to learn . Is there is some free download for this os available to be installed on a home desktop pc with 4 gb ram and 2.7 ibm single proc computer . can some one help me with the download link and installation instructions. Thank you in advance (3 Replies)
Discussion started by: bally90
3 Replies

7. AIX

P550 9133 IPL Issues

First IPL of used P550 in Home Lab displayed this on Control Panel: Line-1(01 M F), Line-2(HMC=0 T). Issue #1: Changed "01" to "02" and "M" to "N" on line-1, but IPL failed; no change on display panel. Set "M" back to "N" and exit function "2", but function "3" for IPL restart would not display. ... (5 Replies)
Discussion started by: luw3486
5 Replies

8. AIX

How to install python on the AIX 5.2?

Hi folks, Could tell me how to install python on the AIX 5.2 ? What better method for install: rpm or compiling? Regards. (4 Replies)
Discussion started by: stenioc1
4 Replies

9. AIX

Power5 9133-55A Serial Console connection issue

Hey All, Trying to connect to the Power5 9133-55A serial console using a serial-to-usb converter (RS232). The other end is connected via null modem. Tried minicom, putty and other Linux utilities, no luck. The serial device shows up as /dev/ttyUSB0. Tried 9600 8N1 XON/XOFF, no luck. ... (6 Replies)
Discussion started by: Devyn
6 Replies
PERLOS400(1)						 Perl Programmers Reference Guide					      PERLOS400(1)

NAME
perlos400 - Perl version 5 on OS/400 DESCRIPTION
This document describes various features of IBM's OS/400 operating system that will affect how Perl version 5 (hereafter just Perl) is compiled and/or runs. By far the easiest way to build Perl for OS/400 is to use the PASE (Portable Application Solutions Environment), for more information see <http://www.iseries.ibm.com/developer/factory/pase/index.html> This environment allows one to use AIX APIs while programming, and it provides a runtime that allows AIX binaries to execute directly on the PowerPC iSeries. Compiling Perl for OS/400 PASE The recommended way to build Perl for the OS/400 PASE is to build the Perl 5 source code (release 5.8.1 or later) under AIX. The trick is to give a special parameter to the Configure shell script when running it on AIX: sh Configure -DPASE ... The default installation directory of Perl under PASE is /QOpenSys/perl. This can be modified if needed with Configure parameter -Dprefix=/some/dir. Starting from OS/400 V5R2 the IBM Visual Age compiler is supported on OS/400 PASE, so it is possible to build Perl natively on OS/400. The easier way, however, is to compile in AIX, as just described. If you don't want to install the compiled Perl in AIX into /QOpenSys (for packaging it before copying it to PASE), you can use a Configure parameter: -Dinstallprefix=/tmp/QOpenSys/perl. This will cause the "make install" to install everything into that directory, while the installed files still think they are (will be) in /QOpenSys/perl. If building natively on PASE, please do the build under the /QOpenSys directory, since Perl is happier when built on a case sensitive filesystem. Installing Perl in OS/400 PASE If you are compiling on AIX, simply do a "make install" on the AIX box. Once the install finishes, tar up the /QOpenSys/perl directory. Transfer the tarball to the OS/400 using FTP with the following commands: > binary > site namefmt 1 > put perl.tar /QOpenSys Once you have it on, simply bring up a PASE shell and extract the tarball. If you are compiling in PASE, then "make install" is the only thing you will need to do. The default path for perl binary is /QOpenSys/perl/bin/perl. You'll want to symlink /QOpenSys/usr/bin/perl to this file so you don't have to modify your path. Using Perl in OS/400 PASE Perl in PASE may be used in the same manner as you would use Perl on AIX. Scripts starting with #!/usr/bin/perl should work if you have /QOpenSys/usr/bin/perl symlinked to your perl binary. This will not work if you've done a setuid/setgid or have environment variable PASE_EXEC_QOPENSYS="N". If you have V5R1, you'll need to get the latest PTFs to have this feature. Scripts starting with #!/QOpenSys/perl/bin/perl should always work. Known Problems When compiling in PASE, there is no "oslevel" command. Therefore, you may want to create a script called "oslevel" that echoes the level of AIX that your version of PASE runtime supports. If you're unsure, consult your documentation or use "4.3.3.0". If you have test cases that fail, check for the existence of spool files. The test case may be trying to use a syscall that is not implemented in PASE. To avoid the SIGILL, try setting the PASE_SYSCALL_NOSIGILL environment variable or have a handler for the SIGILL. If you can compile programs for PASE, run the config script and edit config.sh when it gives you the option. If you want to remove fchdir(), which isn't implement in V5R1, simply change the line that says: d_fchdir='define' to d_fchdir='undef' and then compile Perl. The places where fchdir() is used have alternatives for systems that do not have fchdir() available. Perl on ILE There exists a port of Perl to the ILE environment. This port, however, is based quite an old release of Perl, Perl 5.00502 (August 1998). (As of July 2002 the latest release of Perl is 5.8.0, and even 5.6.1 has been out since April 2001.) If you need to run Perl on ILE, though, you may need this older port: <http://www.cpan.org/ports/#os400> Note that any Perl release later than 5.00502 has not been ported to ILE. If you need to use Perl in the ILE environment, you may want to consider using Qp2RunPase() to call the PASE version of Perl. AUTHORS
Jarkko Hietaniemi <jhi@iki.fi> Bryan Logan <bryanlog@us.ibm.com> David Larson <larson1@us.ibm.com> perl v5.16.2 2012-10-11 PERLOS400(1)
All times are GMT -4. The time now is 09:52 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy