Sponsored Content
Operating Systems Solaris Cannot boot from CDROM nor get to OK prompt SunV210 Post 302363443 by LittleLebowski on Tuesday 20th of October 2009 11:26:48 AM
Old 10-20-2009
Quote:
Originally Posted by pupp
can you elaborate on the cdrom thing? when you power down the system, put in a cd and power up, you can't get it to boot off cd? i take it the system auto-boots from disk?
That's exactly it. Frustrating.

---------- Post updated at 11:26 AM ---------- Previous update was at 09:41 AM ----------

OK, past the ALOM password issue. I sat there and guessed passwords for an hour and found it Smilie

Now I'm at the sc prompt and enter poweron so that I can get to console and the ok prompt. I can't get past it attempting to poweron and looping as seen below:

Code:
\0x09SCSI bus reset recursion
WARNING: glm0: fault detected in device; service unavailable
WARNING: glm0: SCSI bus reset recursion
Cannot assemble drivers for root /pci@1c,600000/scsi@2/disk@0,0:a
Cannot mount root on /pci@1c,600000/scsi@2/disk@0,0:a fstype ufs

panic[cpu1]/thread=180e000: vfs_mountroot: cannot mount root

000000000180b950 genunix:vfs_mountroot+290 (800, 200, 200, 1836ac0, 11dc400, 1882000)
  %l0-3: 0000000000000000 00000000010a8848 00000000010a8800 00000000010a892c
  %l4-7: 00000000010a8800 00000000010a8648 00000000018b0000 0000000000000600
000000000180ba10 genunix:main+98 (1813d18, 1013400, 1835c00, 18aa400, 180e000, 1813c00)
  %l0-3: 0000000070002000 0000000000000001 000000000180c000 000000000180e000
  %l4-7: 0000000000000001 0000000001072c00 0000000000000060 0000000000000000

skipping system dump - no dump device configured
rebooting...
\0x11Probing system devices
Probing memory

And so on..... Thoughts?
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

boot cdrom error

I'm running a Ultra 60 and having problems booting from the cdrom. This is the error I get, Boot device: /pci@1f,4000/scsi@3/disk@6,0:f File and args: The file just loaded does not appear to be executable. Any know what could be the problem here? I've even tried connecting a 2nd cdrom... (3 Replies)
Discussion started by: merlin
3 Replies

2. Red Hat

linux will not boot, boot to grub prompt

my redhat 9 will not boot. We had a power failure and when the power came back, my redhat linux will not boot. The machine come up to grub prompt. I tried the following from grub prompt root (hd0, then press tab key partition num:0 filesystem type unknown, partition type 0x83... (7 Replies)
Discussion started by: hassan2
7 Replies

3. Solaris

cannot find boot device and won't boot off cdrom

I'm running solaris 2.5.1. My main development server is DEAD, i can't even boot off the cdrom, it powers up, acts like it is starting the boot process but then says cannot find boot device. I've done the search here on this site and saw the other posts, but at the ok prompt it won't even let me... (3 Replies)
Discussion started by: kymberm
3 Replies

4. Solaris

Can't boot from cdrom at ok prompt

I want to install Solaris 9 on SUN ULTRA 10. The cdrom is attached to an ide controller. The server is currently running Solaris 2.6 I insert Solaris cd 1 of 2 and at the ok prompt I type boot cdrom i get the error below Boot device: /pci@1f,0/pci@1,1/ide@3/cdrom@2,0:f file and args:... (11 Replies)
Discussion started by: Msororaji
11 Replies

5. Solaris

Boot from cdrom

i am having a problem when trying to boot from cdrom. I received the below message system is not bootable, boot command is disabledfound how can i fix this. also what is the key combination on ordinary keyboard for STOP+A. Is it ctrl+break? (2 Replies)
Discussion started by: shabu
2 Replies

6. Solaris

not able to boot from cdrom

Hi all am trying to boot the system from cdrom in single user mode , however when i am giving command boot cdrom -s i am getting below error Boot Device: /pci@1f,0/pci@1,1/ide@3/cdrom@2,0: f file and args: Can't read disk label Can't open disk label package can,t open boot device ... (17 Replies)
Discussion started by: kumarmani
17 Replies

7. Solaris

can't boot cdrom

iam traying to install o/s in spark machine it showing error ok >boot cdrom is showing error short disk read failed to read superblock the file just loaded does not appear to excutable how to solve this can u help me (6 Replies)
Discussion started by: tirupathi
6 Replies

8. Solaris

Boot cdrom - install

Hi community, Does anyone can tell me the difference between "boot cdrom" and "boot cdrom - install" ? Thank you very much:D (3 Replies)
Discussion started by: Sunb3
3 Replies

9. Hardware

Cannot boot from scsi cdrom

I have a server with a scsi raid controller (for hard drives) and a scsi controller (for tape drive and cd-rom). I am trying to boot from the cd-rom but can't. During boot up, bootable media is detected in the cd-rom but the system will not boot from it. BIOS for the raid controller installs but... (1 Reply)
Discussion started by: powwm
1 Replies

10. UNIX for Beginners Questions & Answers

Cannot boot cdrom -s

Good Afternoon, I'm trying to boot from cdrom so I: bash-2.05# init 0 {1} ok boot cdrom -s and I get: Rebooting with command: boot cdrom -s Boot Device: /pci@1e,600000/ide@d/cdrom@2,0:f File and args: -s Can't read disk label. Can't open disk label package Evaluating: Can't open boot... (13 Replies)
Discussion started by: Stellaman1977
13 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:19 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy