Sponsored Content
Operating Systems Solaris Anyone know how to get Serial number with 1 command? Post 47953 by rhfrommn on Monday 23rd of February 2004 10:51:30 AM
Old 02-23-2004
The serial number you see in the OBP when it boots is *not* the same as the system serial number on the Sun sticker on the back of the machine.

I believe that it is the serial number of the prom chip, but I'm not sure of that. But in any case, if you need the system serial number itself you can't get it from the command line.
 

9 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

serial number for E3500

just wanted to know the serial number of my machine E3500 with Solaris 8 installed.Does any one who what's the command that i can use when the OS is running?( not with the Banner Command!) (3 Replies)
Discussion started by: i2admin
3 Replies

2. Shell Programming and Scripting

Tape Serial Number

Hello Experts, I've got a shell script that makes the backup of the files that i want. I also have this script showing the amount of files backed up and in witch folders they are. It's only missing one thing. I got all the information beeing stored in a text file and all i've got to do is to... (6 Replies)
Discussion started by: jorge.ferreira
6 Replies

3. AIX

how to find serial number

hi how to find ( server machine )serial number throught the command in AIX thanks for your replay (3 Replies)
Discussion started by: chomca
3 Replies

4. Solaris

Display Serial Number

Hello, I am running Solaris 9 and I need to display the serial number of my machine. How can I do this? Here is my machine info: SunOS birch 5.9 Generic_118558-09 sun4u sparc SUNW,Sun-Fire-V240 Thank you, David (5 Replies)
Discussion started by: dkranes
5 Replies

5. Solaris

Serial number

Hi Solarizer ;) I have face the difficulties of gathering information about the serial number of sun machine. i think its can do so easy while the machine is just one or two. But i have to administrate hundreds of sun machine. Any body knows how to gather this information by the command ? ... (4 Replies)
Discussion started by: tpx99
4 Replies

6. Linux

Device serial number

Hey! I'm trying to figure out a sollution for a problem I have at my company with an Iomega MiniMax 500 GB USB disk. If i run cat /proc/bus/usb/devices I get this information: T: Bus=01 Lev=02 Prnt=04 Port=00 Cnt=01 Dev#= 5 Spd=480 MxCh= 0 D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00... (2 Replies)
Discussion started by: noratx
2 Replies

7. Solaris

Finding server serial number

Hi All, I wnat to know how to find out the Server serial number in command prompt? I am using sneep command but it throughing unknown. Thanks and Regards, (8 Replies)
Discussion started by: lbreddy
8 Replies

8. Shell Programming and Scripting

How do I use sed to return only the serial number here?

I'd appreciate the help and explaining "which each switch/command does. Thanks in advance. 1742@3min# ./fmtopo|grep serial hc://:product-id=SUNW,Sun-Blade-2500:server-id=c3admin:serial=130B58E3146/motherboard=0/cpu=0 (2 Replies)
Discussion started by: LittleLebowski
2 Replies

9. Shell Programming and Scripting

Help about bind serial number

Hello folks. Please let me understand the bind serial number. I am confuse. 13011321 ---------- Post updated at 08:32 AM ---------- Previous update was at 07:55 AM ---------- Thanks problem is solved. (1 Reply)
Discussion started by: learnbash
1 Replies
IPMI(4) 						   BSD Kernel Interfaces Manual 						   IPMI(4)

NAME
ipmi -- OpenIPMI compatible IPMI interface driver SYNOPSIS
device ipmi To manually specify I/O attachment in /boot/device.hints: hint.ipmi.0.at="isa" hint.ipmi.0.port="0xCA2" hint.ipmi.0.spacing="8" hint.ipmi.0.mode="KCS" To manually specify memory attachment in /boot/device.hints: hint.ipmi.0.at="isa" hint.ipmi.0.maddr="0xf0000000" hint.ipmi.0.spacing="8" hint.ipmi.0.mode="SMIC" Meaning of spacing: 8 8 bit alignment 16 16 bit alignment 32 32 bit alignment If the port and spacing are not specified the interface type default will be used. Only specify either the port for I/O access or maddr for memory access. DESCRIPTION
The IPMI (Intelligent Platform Management Interface) is a standard for monitoring system hardware by permitting generic code to detect and monitor the sensors in a system. The IPMI standard offers watchdog support, an FRU database, and other support extensions. It is currently being adopted by the makers of many single board and embedded system manufacturers. The ipmi driver in FreeBSD is heavily adopted from the standard and Linux driver; however, not all features described in the standard are supported. IOCTLS
Sending and receiving messages through the ipmi driver requires the use of ioctl(2). The ioctls are used due to the complexity of data sent to and from the device. The ioctl(2) command codes below are defined in <sys/ipmi.h>. The third argument to ioctl(2) should be a pointer to the type indicated. Currently the following ioctls are supported: IPMICTL_RECEIVE_MSG (struct ipmi_recv) Receive a message. Possible error values: [EAGAIN] No messages are in the process queue. [EFAULT] An address supplied was invalid. [EMSGSIZE] The address could not fit in the message buffer and will remain in the buffer. IPMICTL_RECEIVE_MSG_TRUNC (struct ipmi_recv) Like IPMICTL_RECEIVE_MSG but if the message cannot fit into the buffer, it will truncate the contents instead of leaving the data in the buffer. IPMICTL_SEND_COMMAND (struct ipmi_req) Send a message to the interface. Possible error values: [EFAULT] An address supplied was invalid [ENOMEM] Buffers could not be allowed for the command, out of memory. IPMICTL_SET_MY_ADDRESS_CMD (unsigned int) Set the slave address for source messages. IPMICTL_GET_MY_ADDRESS_CMD (unsigned int) Get the slave address for source messages. IPMICTL_SET_MY_LUN_CMD (unsigned int) Set the slave LUN for source messages. IPMICTL_GET_MY_LUN_CMD (unsigned int) Get the slave LUN for source messages. Unimplemented Ioctls IPMICTL_REGISTER_FOR_CMD (struct ipmi_cmdspec) Register to receive a specific command Possible error values: [EFAULT] An supplied address was invalid. [EBUSY] The network function/command is already in use. [ENOMEM] Could not allocate memory. IPMICTL_UNREGISTER_FOR_CMD (struct ipmi_cmdspec) Unregister to receive a specific command Possible error values: [EFAULT] An address supplied was invalid. [ENOENT] The network function/command was not found. Stub Only Ioctl IPMICTL_SET_GETS_EVENTS_CMD (int) Set whether this interface receives events. Possible error values: [EFAULT] An address supplied was invalid. SEE ALSO
ioctl(2), watchdog(4), watchdog(8), watchdogd(8), watchdog(9) HISTORY
The ipmi driver first appeared in FreeBSD 6.2. AUTHORS
The ipmi driver was written by Doug Ambrisko <ambrisko@FreeBSD.org>. This manual page was written by Tom Rhodes <trhodes@FreeBSD.org>. BUGS
Not all features of the MontaVista driver are supported. Currently, IPMB and BT modes are not implemented. BSD
July 10, 2007 BSD
All times are GMT -4. The time now is 01:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy