Sponsored Content
Operating Systems Solaris Help with Stubborn Sun Ultra Enterprise 450 Post 302671755 by Daiman on Saturday 14th of July 2012 11:28:18 AM
Old 07-14-2012
Data Help with Stubborn Sun Ultra Enterprise 450

Hello everyone...yesterday i've received a Sun Ultra E450 Server Unit and when I try to boot from everything it asks me for Firmware Password.Smilie
The unit hasn't been used for 10 years...so no one doesn't yet remember the password.Smilie
Ok,I've searched on the Internet all day long finding something about resetting the NVRAM by numerous tries like:
1.Replacing the NVRAM backwards and powering up for couple of seconds.Working.It brings the ok console to me but when I start to install Solaris 7,after reset it comes again asking for password. Smilie
2.Finding another NVRAM chip.It costs 20$ plus the taxes bringing it from U.S. to Romania. (There might be an ultimate option,IF the price will be set under max. 50$) Smilie
3.I have managed to chop the NVRAM chip dismantling the internal lithium battery and coupling an CR 2032 type.It still asking for Firmware Password Smilie
4.Supposing that an init sequence containing the password requirement should be on the hard drives....i've took them all out of the bays...Guess what......Firmware Password Smilie?
What's the explanation?It was supposed to f*in loose all the data from the NVRAM after I unplug its own power source.
Right now I've started to OBP with the NVRAM chip disconnected from any of it's backup batteries.It still asks for a Firmware Password.Is there any storage chip on the Motherboard?
It there any possibility to override that sequence or do I need to buy another ST M48T59Y? (Yeah,that's that f*in NVRAM chip)

Thanks in advance to all who might have an extra idea to this Chubby Stubby Sun E450

Last edited by Daiman; 07-14-2012 at 12:34 PM.. Reason: Forgot the NVRAM ID
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Enterprise 450 Solaris 9 Problems

I am just getting started loading an Enterprise 450 Dell with Solaris 9 however I cannot get out of a loop that is not letting me get started. My basic question is what are the key strokes to get you out of a boot sequence so that you can at least clear the hard drive or start an install ... (9 Replies)
Discussion started by: Joe7778
9 Replies

2. Solaris

ultra enterprise 3000

I have been trying to install a few different distributions on this server, i have 1 sparc 250 mhz, 512 ram, it has a scsi with the built in ethernet, ive tried debian, bsd, with no luck, i can gentoo live cd to run and work with the ethernet, but i would like a normal distro, anywaysi have solaris... (4 Replies)
Discussion started by: hahjoel
4 Replies

3. Solaris

keyboard & monitor for SUn ultra enterprise 3000

Hi all, i just purchased Sun Ultra Enterprise 3000, but they did not include with keyboard/mouse . i am very new with this box. could you give me which type of keyboard i can use and video connector to my monitor since serial connectors for keyboard and video is different with my PC. ... (5 Replies)
Discussion started by: waterbear
5 Replies

4. Solaris

ULTRA ENTERPRISE 3000is it worth switching on

Please excuse my noobie ignorance, I have just taken posession of a ULTRA ENTERPRISE 3000 for a song. I know it is old , is it worth powering up, or worth more as scrap metal? Would a $1000 pc have more grunt as a web server? Google doesn't seem to be able to answer my question. I also have 2... (1 Reply)
Discussion started by: kadil
1 Replies

5. Solaris

Sun ultra enterprise 450 server does not power on

Hi, I have a sun ultra enterprise 450 server. There is no power supply to the peripheral components. Can anyone suggest what might be the problem with the server? What do i have to check for? I am new to the solaris and server world. Please suggest in detail. :) Thanks, Ashwini (5 Replies)
Discussion started by: tgashwini
5 Replies

6. Solaris

Problem booting Sun ultra enterprise 450 server

Hi, I have a sun ultra enterprise 450 server. This server powers on and a white screen appears with the system and network information. But it doesnot boot up completely. Booting operation wil be halted by a warning: \usr\sbin\fsck not found. Most likely the mount of \usr failed or the... (5 Replies)
Discussion started by: tgashwini
5 Replies

7. Solaris

Usb to serial connection to Sun Enterprice 450

Hi all, I must connect my PC (Windows 2000) to Sun Enterprise 450 (4 X UltraSPARC-II 400Mhz) for Solaris 10 Installation. My PC doesn't have a serial port therefore I must use USB port. How can I connect USB port of my PC to the serial port (DB 25) of Sun 450? Will be there any problems with... (3 Replies)
Discussion started by: Sunb3
3 Replies

8. UNIX for Dummies Questions & Answers

Sun ultra enterprise 450 power issue

I've search the forum and came up with someone having the same issue where the power does not going to the main board. I turn the key and nothing, no lights or anything moving. I have another board put it in the same system and it works just fine. Please help, thank you in advance. (2 Replies)
Discussion started by: vhtran
2 Replies

9. Solaris

Powering ON SUN 450 Enterprise

Problem powering ON the SUN 450 E, we checked voltage and the power supply. Seems to be we have out of 3 LED's in the back 2 are glowing, when we turn the power button on the front from standby to ON. Does anyone know how to troubleshoot this?. I have looked through some troubleshooting... (2 Replies)
Discussion started by: calsum
2 Replies

10. Solaris

Sun Ultra Enterprise 4500 not booting

Hi, I hope anyone could help me on this. Here we have an Ultra Enterprise 4500 server. Since a few days ago, when starting the system, it showed a message about a faulty CPU fan. So, we manage to clean it up by removing it and then installing it back (as in the user manual). After that, when... (2 Replies)
Discussion started by: lonchus
2 Replies
NVRAM(4)						   BSD Kernel Interfaces Manual 						  NVRAM(4)

NAME
nvram -- non-volatile RAM SYNOPSIS
To compile this driver into the kernel, place the following line in your kernel configuration file: device nvram Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): nvram_load="YES" DESCRIPTION
The nvram driver provides access to BIOS configuration NVRAM on i386 and amd64 systems. PC motherboard uses a small non-volatile memory to store BIOS settings which is usually part of its clock chip and sometimes referred as ``CMOS SRAM''. This driver exposes bytes 14 through 128 of the NVRAM, or a total of 114 bytes, at offset zero of the device file /dev/nvram. This driver is useful for cloning machines that shares the same hardware configuration and need same BIOS setting tweaks. IMPLEMENTATION NOTES
The BIOS NVRAM's bytes 16 through 31 are checksummed at byte 32. This driver does not take care for these checksums. EXAMPLES
Backup existing BIOS NVRAM to nvram.bin: dd if=/dev/nvram of=nvram.bin Restore BIOS NVRAM from nvram.bin: dd if=nvram.bin of=/dev/nvram SEE ALSO
dd(1) HISTORY
The nvram device driver first appeared in FreeBSD 6.4. AUTHORS
The nvram device driver was written by Peter Wemm. This manual page was written by Xin LI. BSD
February 8, 2010 BSD
All times are GMT -4. The time now is 05:32 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy