Sponsored Content
Full Discussion: regd sunfire 480 r
Top Forums UNIX for Dummies Questions & Answers regd sunfire 480 r Post 38638 by solaris8in on Tuesday 22nd of July 2003 08:29:54 AM
Old 07-22-2003
regd sunfire 480 r

hii alll

I need a help from u all its regarding sunfire the config is 900*4 processor\8gb ram.

problem :-
3>ERROR: TEST = Quick Block Mem Test
3>H/W under test = CPU3 Bank 0 Dimm 2, J8001 side 1
3>Repair Instructions: Replace items in order listed by 'H/W under test' above.
3>MSG = DIMM failure Bank 0 DIMM 2 Pin 144
3>END_ERROR

0>40% Done...
3>ERROR: TEST = Quick Block Mem Test
3>H/W under test = CPU3, All CPU3 Memory
3>Repair Instructions: Replace items in order listed by 'H/W under test' above.



3>ERROR: TEST = Quick Block Mem Test
3>H/W under test = CPU3, All CPU3 Memory
3>Repair Instructions: Replace items in order listed by 'H/W under test' above.
3>MSG =


ERROR:1 AFSR Error 00100400.000001e1, AFAR 00000030.00bcba60.


3>END_ERROR

3> PRIV bit: Privileged code access error(s)
3> UCC bit: S/W handled correctable E-Cache ECC error
3>WARNING: TEST = Quick Block Mem Test
3>H/W under test = CPU3, All CPU3 Memory
3>MSG = AFSR error after running test Quick Block Mem Test.
3>END_WARNING

this is the error iam facing i think this cpu problem how to disable the 3rd cpu which is creating problem and the ram. one more thing iam not able to go to OS always errors r there can any one help me out

thanks in advance
solaris
 

10 More Discussions You Might Find Interesting

1. UNIX Desktop Questions & Answers

regd explorer

hiii i want to know how to install explorer in sparc e-250 OS solaris 8 iam able to install the software iam able to install the explorer,i use to run #./explorer -q -e other than this what all i should run to get all details.but iam just getting some thing which not related to o/s or h/w... (3 Replies)
Discussion started by: solaris8in
3 Replies

2. UNIX for Advanced & Expert Users

regd:-sunblade1000

hii alll i have sunblade 1000 i get a error all of sudden cpu panic error this comes twice a day is this because of patches not installed in the system or its regarding memory or cpu can any one helpme out thanks in advance solaris (2 Replies)
Discussion started by: solaris8in
2 Replies

3. Solaris

Regd Backup issue

hii alll Thanks for all the previous support. I need some clarification, i have client who is having 5 sun workstation ( ultra5 & ultra 10 and 1 ultra60) they orderd for backup device DLT drive , iam going to connect this dlt drive sparc ultra 60 i can configure locally,but my client... (1 Reply)
Discussion started by: solaris8in
1 Replies

4. Solaris

regd.sunblade 100

hii alll i have a problem with my sunblade100. when i switch on, no display comes but if i ping from a remote machine its pinging,but iam not able to telent to that sun server,what can be the problem,how can i sort ot this issue 2 thing in usb iam not able to use STOP N (to clear the... (3 Replies)
Discussion started by: solaris8in
3 Replies

5. Solaris

regd tanberg sdlt and sunfire v 880

Hii alll Thanks for the support, iam facing a problem regarding tanberg sdlt . iam trying to connect tanberg sdlt 160 to sun fire 880 r .As SUN FIRE DOSENT HAVE SCSI CONTROLLER IAM CONNECTING A ULTRA 2 SCSI CONTROLLER IN PCI SLOT AND FROM THERE IAM CONNECTING THE TANBERG SDLT 160. MY FIRST... (1 Reply)
Discussion started by: solaris8in
1 Replies

6. AIX

regd raid 0 configuration

Hey Alll Thanks for the help u give me yesterday,i need a help again from u all guys i have RS 6000 server with AIX 4.3.3 OS and with external storage (multipack) with 12 Hard disk drive which will be connected to RS 6000 scsi controller ,i dont have any raid card. now i have to... (0 Replies)
Discussion started by: solaris8in
0 Replies

7. Linux

installation proccedure regd Teacup helpdesk software

Hey All I have been asked to install Teacup - Helpdesk report management system .Iam trying to insall this software on Redhat 9, iam not that good in linux but i have been asked to instal this software so need ur help regarding this . i have installed redhat 9 . This is site where u guys can... (0 Replies)
Discussion started by: solaris8in
0 Replies

8. UNIX for Advanced & Expert Users

Regd: rcp

Hi, The B machine is using rcp method to copy a file to A machine. But it is not getting copied. Its giving the error as: remshd: Login incorrect. On A machine rhosts file has details about the B machine. Could anyone tell what could be done to make this work? Any help is appreciated.... (1 Reply)
Discussion started by: nehak
1 Replies

9. AIX

Query regd TL upgrade

I am new to AIX administration and am trying to upgrade my current TL from 6100-05 to 6100-07 , I had a look at the fix central and I have downloaded one which says TL 6100-07-00-1140 and other which says service pack 6100-07-05-1228. I have two test machines and I have applied directly... (0 Replies)
Discussion started by: nivaspIND
0 Replies

10. Solaris

Sun Fire 480 - devfsadm -C not working after replacing one of the boot disks

Our SunFire 480 - one of the boot disks failed. It is mirrored with VxVm. I followed the exact steps that is detailed in the veritas and sun guides (I can not post the URL since I don't have 5 posts yet.) After removing the failed disk, I ran devfsadm -C -c disk and it still shows the device... (7 Replies)
Discussion started by: jtamminen
7 Replies
TEST(1) 						      General Commands Manual							   TEST(1)

NAME
test - set status according to condition SYNOPSIS
test expr DESCRIPTION
Test evaluates the expression expr. If the value is true the exit status is null; otherwise the exit status is non-null. If there are no arguments the exit status is non-null. The following primitives are used to construct expr. -r file True if the file exists (is accessible) and is readable. -w file True if the file exists and is writable. -x file True if the file exists and has execute permission. -e file True if the file exists. -f file True if the file exists and is a plain file. -d file True if the file exists and is a directory. -s file True if the file exists and has a size greater than zero. -t fildes True if the open file whose file descriptor number is fildes (1 by default) is the same file as /dev/cons. s1 = s2 True if the strings s1 and s2 are identical. s1 != s2 True if the strings s1 and s2 are not identical. s1 True if s1 is not the null string. (Deprecated.) -n s1 True if the length of string s1 is non-zero. -z s1 True if the length of string s1 is zero. n1 -eq n2 True if the integers n1 and n2 are arithmetically equal. Any of the comparisons -ne, -gt, -ge, -lt, or -le may be used in place of -eq. The (nonstandard) construct -l string, meaning the length of string, may be used in place of an integer. These primaries may be combined with the following operators: ! unary negation operator -o binary or operator -a binary and operator; higher precedence than -o ( expr ) parentheses for grouping. The primitives -b, -u, -g, and -s return false; they are recognized for compatibility with POSIX. Notice that all the operators and flags are separate arguments to test. Notice also that parentheses and equal signs are meaningful to rc and must be enclosed in quotes. EXAMPLES
Test is a dubious way to check for specific character strings: it uses a process to do what an rc(1) match or switch statement can do. The first example is not only inefficient but wrong, because test understands the purported string "-c" as an option. if (test $1 '=' "-c") echo OK # wrong! A better way is if (~ $1 -c) echo OK Test whether is in the current directory. test -f abc -o -d abc SOURCE
/sys/src/cmd/test.c SEE ALSO
rc(1) TEST(1)
All times are GMT -4. The time now is 01:11 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy