Sponsored Content
Full Discussion: identify memory bank
Operating Systems Solaris identify memory bank Post 302157161 by funksen on Thursday 10th of January 2008 08:21:13 AM
Old 01-10-2008
identify memory bank

Hi guys,

I'm new to solaris, and need to change damaged memory

Server is 280R

I get this output from fmdump:

Code:
bash-3.00# fmdump -v -u a645d6ef-7348-6619-d9d0-dcf80c069a94

TIME                 UUID                                 SUNW-MSG-ID

Sep 21 00:18:50.9350 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Sep 21 03:11:49.4309 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Sep 25 10:39:06.1713 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Sep 25 12:25:46.2290 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Oct 30 14:04:39.3717 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Oct 31 11:12:48.6041 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Dec 26 11:01:42.4076 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Dec 27 11:08:59.8339 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Jan 30 06:12:05.4228 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406



 



Dec 06 14:22:04.4486 a645d6ef-7348-6619-d9d0-dcf80c069a94 SUN4U-8000-35

   95%  fault.memory.bank

         FRU: mem:///component=J0100,J0202,J0304,J0406

        rsrc: mem:///component=J0100,J0202,J0304,J0406

how can I know where to find the memory in the server?

Image

thanks in advance

funksen
 

5 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

solaris question bank

from where can i get the solaris question bank. any hints??? raguram R (1 Reply)
Discussion started by: raguramtgr
1 Replies

2. AIX

Identify All Processes memory and cpu usage.

Hi All, Anyone has script to monitor AIX total processes memory and cpu usage that contribute to the total memory and CPU utilize so far ? The purpose of this is to analyze process memory trend. Thanks. Best Regards, ckwan (2 Replies)
Discussion started by: ckwan
2 Replies

3. Solaris

No memory detected in Bank 3

Hi. Recently I discovered how to access the 'ok' prompt on my E450. (Thanks DukeNuke2) And so I've been running tests, checking the system out... (since until now I've not known how to get to the 'ok' prompt) And came across 0>INFO: No memory detected in Bank 3 and *** Missing DIMM(s)... as... (3 Replies)
Discussion started by: SomeoneTwo
3 Replies

4. Programming

Can anyone provide some sources about bank IT

I am working in IT company working for banks.I find hardly to get technology about bank IT on the internet.Consider banks all using Unix, I think I can get some help here. Recommend some sits or books about bank IT will be very helpful!! (0 Replies)
Discussion started by: hhdzhu
0 Replies

5. Shell Programming and Scripting

Masking Bank Account Number except last 4 digits in the file

Hello Unix Guru's, I need help in the masking Bank Account Number except last 4 digits in the file using either unix command or shell script. I'm greatly appreciate your help. File Name: Sample.txt 560|101012|4267||||||||520114025017|Balance_bank|06/30/2018||||151716.41|AUD... (13 Replies)
Discussion started by: Pradeep R
13 Replies
MEM(4)							     Linux Programmer's Manual							    MEM(4)

NAME
mem, kmem, port - system memory, kernel memory and system ports DESCRIPTION
mem is a character device file that is an image of the main memory of the computer. It may be used, for example, to examine (and even patch) the system. Byte addresses in mem are interpreted as physical memory addresses. References to nonexistent locations cause errors to be returned. Examining and patching is likely to lead to unexpected results when read-only or write-only bits are present. It is typically created by: mknod -m 660 /dev/mem c 1 1 chown root:kmem /dev/mem The file kmem is the same as mem, except that the kernel virtual memory rather than physical memory is accessed. It is typically created by: mknod -m 640 /dev/kmem c 1 2 chown root:kmem /dev/kmem port is similar to mem, but the I/O ports are accessed. It is typically created by: mknod -m 660 /dev/port c 1 4 chown root:mem /dev/port FILES
/dev/mem /dev/kmem /dev/port SEE ALSO
chown(1), mknod(1), ioperm(2) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 1992-11-21 MEM(4)
All times are GMT -4. The time now is 11:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy