Sponsored Content
Full Discussion: RS/6000 error 888
Operating Systems AIX RS/6000 error 888 Post 302430457 by bbxguy on Thursday 17th of June 2010 04:38:50 PM
Old 06-17-2010
RS/6000 error 888

I have a friend who has the following error message on his LED:

888-102300-0C5

I've tried searching, but can't find anything.

Any ideas?

tks.

 

9 More Discussions You Might Find Interesting

1. AIX

Ibm Risc/6000 Os

:o Unix Sirs, :eek:RE: IBM RISC/6000 1990 Used on Application: Image buffer: 3D "Catia" (3D "Autocad" sim.) engineering C.A.D. Written by Deso. Cash prior to main frame dump:cool: * :oCan I purchase the oem operating system from you unix people? :cool: ... (1 Reply)
Discussion started by: penguins
1 Replies

2. AIX

RS/6000 gcc compile large file error

hi, everybody£º i have a question, pls help me¡£ OS : RS/6000 AIX 4.3.3 cPU : Powerpc,POWER3 compiler : gcc 3.2.3 source file £º 8M OS kernel : 32 bit (selecting at installing operating system, the hardware support 64 bit) when i compiling the large source file (8 M), i... (3 Replies)
Discussion started by: q30
3 Replies

3. AIX

Booting RS/6000 machines from CD

I'm new to the AIX/RS6000 world - Trying to do an fresh Install of 5.2 on an 43P Model 140 RS/6000 machine. The book said hit F5 on boot up to boot to CD, but F5 only brings up Diagnostic mode. I changed the boot order to boot 1. Floppy 2. CD 3. HD 4. Network still no Dice Anything I'm... (1 Reply)
Discussion started by: almuwatta
1 Replies

4. AIX

Help on HACMP - RS/6000

Hi, I am new to the AIX environment and am having this major problem, I need to add a node to the cluster (hacmp) and i don't know how. I got RS/6000 IBM running AIX 4.3.3 and the HACMP 4.4 any help :o (4 Replies)
Discussion started by: turki_00
4 Replies

5. AIX

monitor on rs/6000

I bought an old IBM RS/6000 9114-275 1,00 GHz + 4 GB with AIX 6 Beta preinstalled. I have a TFT monitor at home. There's no fitting connector on the server for it. Does anyone know what type of monitor, or cable is common for this type of machine? I just never had to deal with things like this at... (4 Replies)
Discussion started by: rein
4 Replies

6. AIX

Linux on the RS/6000

The 7046-B50, 7025-F50 and 7043-150 could utilize Yellow Dog linux from their initial release. My question is has anyone been able to extend Yellow Dog, or other linux distributions to work on other PPC RS/6000 platforms? Rick (2 Replies)
Discussion started by: RAVC01
2 Replies

7. Hardware

Old RS/6000 lost its mind

Some time ago I bought an old microchannel RS/6000 39H as a hobby toy. I mostly deal with newer Sun/Oracle equipment so I'm a bit out of my element. The machine was running, AIX 4.1.3 I believe. Using it via IBM terminal. I stored it for what was apparently too long, and now it stalls out... (11 Replies)
Discussion started by: drjohnnyfever
11 Replies

8. AIX

IBM rs/6000 7026-c2

I have just purchased an old IBM RS/6000 7026-C2 with the intention of installing AIX 5.2 to do some testing. I have no AIX or RS/6000 experience, but I have managed to access the console/service menu through a hyper terminal console via the com port. I get the service processor menu and I can't... (12 Replies)
Discussion started by: AIX5.2
12 Replies

9. AIX

NIM Install Boot Code: 888 102 700 C20

I've got code: 888 102 700 C20 when starting a NIM install. (Tried the online search results and it hasn't worked) The OS is AIX 7100-03-02. The lpp_source and spot were defined as such: 710tl03sp2lpp_res resources lpp_source 710tl03sp2spot_res resources spot The... (4 Replies)
Discussion started by: Devyn
4 Replies
OD(1)									FSF								     OD(1)

NAME
od - dump files in octal and other formats SYNOPSIS
od [OPTION]... [FILE]... od --traditional [FILE] [[+]OFFSET [[+]LABEL]] DESCRIPTION
Write an unambiguous representation, octal bytes by default, of FILE to standard output. With more than one FILE argument, concatenate them in the listed order to form the input. With no FILE, or when FILE is -, read standard input. All arguments to long options are mandatory for short options. -A, --address-radix=RADIX decide how file offsets are printed -j, --skip-bytes=BYTES skip BYTES input bytes first -N, --read-bytes=BYTES limit dump to BYTES input bytes -s, --strings[=BYTES] output strings of at least BYTES graphic chars -t, --format=TYPE select output format or formats -v, --output-duplicates do not use * to mark line suppression -w, --width[=BYTES] output BYTES bytes per output line --traditional accept arguments in traditional form --help display this help and exit --version output version information and exit Traditional format specifications may be intermixed; they accumulate: -a same as -t a, select named characters -b same as -t oC, select octal bytes -c same as -t c, select ASCII characters or backslash escapes -d same as -t u2, select unsigned decimal shorts -f same as -t fF, select floats -h same as -t x2, select hexadecimal shorts -i same as -t d2, select decimal shorts -l same as -t d4, select decimal longs -o same as -t o2, select octal shorts -x same as -t x2, select hexadecimal shorts For older syntax (second call format), OFFSET means -j OFFSET. LABEL is the pseudo-address at first byte printed, incremented when dump is progressing. For OFFSET and LABEL, a 0x or 0X prefix indicates hexadecimal, suffixes may be . for octal and b for multiply by 512. TYPE is made up of one or more of these specifications: a named character c ASCII character or backslash escape d[SIZE] signed decimal, SIZE bytes per integer f[SIZE] floating point, SIZE bytes per integer o[SIZE] octal, SIZE bytes per integer u[SIZE] unsigned decimal, SIZE bytes per integer x[SIZE] hexadecimal, SIZE bytes per integer SIZE is a number. For TYPE in doux, SIZE may also be C for sizeof(char), S for sizeof(short), I for sizeof(int) or L for sizeof(long). If TYPE is f, SIZE may also be F for sizeof(float), D for sizeof(double) or L for sizeof(long double). RADIX is d for decimal, o for octal, x for hexadecimal or n for none. BYTES is hexadecimal with 0x or 0X prefix, it is multiplied by 512 with b suffix, by 1024 with k and by 1048576 with m. Adding a z suffix to any type adds a display of printable characters to the end of each line of output. --string without a number implies 3. --width without a number implies 32. By default, od uses -A o -t d2 -w 16. AUTHOR
Written by Jim Meyering. REPORTING BUGS
Report bugs to <bug-coreutils@gnu.org>. COPYRIGHT
Copyright (C) 2002 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. SEE ALSO
The full documentation for od is maintained as a Texinfo manual. If the info and od programs are properly installed at your site, the com- mand info od should give you access to the complete manual. od (coreutils) 4.5.3 February 2003 OD(1)
All times are GMT -4. The time now is 11:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy