Sponsored Content
Full Discussion: SUN ULTRA 45 - Solaris
Operating Systems Solaris SUN ULTRA 45 - Solaris Post 302363828 by incredible on Wednesday 21st of October 2009 11:55:46 AM
Old 10-21-2009
Quote:
Originally Posted by mathav22
Sun Ultra 45 Workstation, No Keyboard
Copyright 2007 Sun Microsystems, Inc. All rights reserved.
OpenBoot 4.25.9, 1024 MB memory installed, Serial #78653148.
Ethernet address 0:14:4f:b0:26:dc, Host ID: 84b026dc.
When you're about to see the above msg, use a Sun keyboard to press Stop+A or poweroff the system, remove the boot disk. The system will go to ok> prompt.
set the auto-boot option to false. poweroff system, insert your disk, then poweron.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Sun Ultra sparc 60

Hello everybody!! I need your help again. I am using Sun Ultra sparc 60 machine.Follwing are the types of files getting generated in /var/tmp. "windu_sm_o aaaa,baaa,caaa,daaa" etc. I am not able to locate which application is generating these files. Can I straightway delete these files ? or... (1 Reply)
Discussion started by: vikasdeshmukh
1 Replies

2. Filesystems, Disks and Memory

Tape Drive Connected to a Sun Ultra 10/Solaris 2.7

I have a Sun Ultra 10/Solaris 2.7 with a differential SCSI card connected to a Supter DLt1 Tape Drive. When I boot the machine, and I do a probe-scsi-all in the very beginning of the boot process. It shows up correctly. If I wait for the boot process to proceed and then I do a probe-scsi-all, I get... (1 Reply)
Discussion started by: brv
1 Replies

3. UNIX Benchmarks

Sun Ultra 2 Solaris 8

Sparc Ultra2: Notes prtdiag: System Configuration: Sun Microsystems sun4u Sun Ultra 2 UPA/SBus (2 X UltraSPARC-II 296MHz) System clock frequency: 99 MHz Memory size: 768 Megabytes ========================= CPUs ========================= Run Ecache CPU CPU... (0 Replies)
Discussion started by: tnorth
0 Replies

4. UNIX Benchmarks

Sun Ultra 30 Solaris 8

Sun Ultra30 Solaris 8 Notes: ... Results: System -- SunOS box 5.8 Generic_108528-23 sun4u sparc SUNW,Ultra-30 Start Benchmark Run: Fri Sep 12 11:59:12 EDT 2003 1 interactive users. Dhrystone 2 without register variables 502087.7 lps (10 secs, 6 samples) Dhrystone 2 using... (2 Replies)
Discussion started by: tnorth
2 Replies

5. Solaris

sun ultra or sun sparkstation

am wonder wich sun computer is better, a sun ultra or sun sparkstation, and what is the difference (7 Replies)
Discussion started by: nobody
7 Replies

6. Solaris

sun ultra

Hi Guys, I have a 2nd hand Sun ultra-5, I wanted to know how to be able to run it as a normal window. I do not have any experience whatsoever with solaris/unix. Does anyone can give me a clue where to start. When I switch it goes to: unix console login: pa$$word: #UNIX sendmail : enable to... (0 Replies)
Discussion started by: lingosa
0 Replies

7. Solaris

hey i just got a Sun ultra 5!!!

now what do i do? im looking at it and i booted it after a bunch of code i got a line askign for the password i also downloaded solaris 10 any advice on how to install it? (36 Replies)
Discussion started by: russian460
36 Replies

8. Solaris

Sun Solaris Ultra 10 Not booting!

Hello I have Sun Ultra 10 with Solaris 7 installed on it. Sometimes back after that the machine use to get hang .Even after rebooting the system was not booting. I have manually switch on /off many times from the power board itself .Once in a while it use to boot .After... (12 Replies)
Discussion started by: turki_00
12 Replies

9. Solaris

Cannot install Sun Solaris 10 on Ultra 10

http://www.unix.com/images/smilies/mad.gif Hi, this is parameswar. I have two sun ultra 5/10 workstations processor is sparc IIi 440 and ram is 512 but without hard disk and cdrom so can i use seagate 40Gb and sony dvd writer which is presented in windows pc. Both are IDE cables. while I... (1 Reply)
Discussion started by: parameswar
1 Replies

10. Solaris

Sun Ultra 5 new user

Hi I have just acquired an Ultra 5. It has 256MB of memory and a 360Mhz Ultra IIi SPARC processor. So far, I have had some typical fun and games to get it working: - It had a dead NVRAM chip. I hacked it open and installed a CR2032. It looks suitably bodged up, but is working. I set the MAC... (8 Replies)
Discussion started by: _JonB_
8 Replies
HALT(8) 						Linux System Administrator's Manual						   HALT(8)

NAME
halt, reboot, poweroff - stop the system. SYNOPSIS
/sbin/halt [-n] [-w] [-d] [-f] [-i] [-p] [-h] /sbin/reboot [-n] [-w] [-d] [-f] [-i] /sbin/poweroff [-n] [-w] [-d] [-f] [-i] [-h] DESCRIPTION
Halt notes that the system is being brought down in the file /var/log/wtmp, and then either tells the kernel to halt, reboot or poweroff the system. If halt or reboot is called when the system is not in runlevel 0 or 6, in other words when it's running normally, shutdown will be invoked instead (with the -h or -r flag). For more info see the shutdown(8) manpage. The rest of this manpage describes the behaviour in runlevels 0 and 6, that is when the systems shutdown scripts are being run. OPTIONS
-n Don't sync before reboot or halt. -w Don't actually reboot or halt but only write the wtmp record (in the /var/log/wtmp file). -d Don't write the wtmp record. The -n flag implies -d. -f Force halt or reboot, don't call shutdown(8). -i Shut down all network interfaces just before halt or reboot. -h Put all harddrives on the system in standby mode just before halt or poweroff. -p When halting the system, do a poweroff. This is the default when halt is called as poweroff. DIAGNOSTICS
If you're not the superuser, you will get the message `must be superuser'. NOTES
Under older sysvinit releases , reboot and halt should never be called directly. From release 2.74 on halt and reboot invoke shutdown(8) if the system is not in runlevel 0 or 6. This means that if halt or reboot cannot find out the current runlevel (for example, when /var/run/utmp hasn't been initialized correctly) shutdown will be called, which might not be what you want. Use the -f flag if you want to do a hard halt or reboot. The -h flag puts all harddisks in standby mode just before halt or poweroff. Right now this is only implemented for IDE drives. A side effect of putting the drive in standby mode is that the write cache on the disk is flushed. This is important for IDE drives, since the kernel doesn't flush the write-cache itself before poweroff. The halt program uses /proc/ide/hd* to find all IDE disk devices, which means that /proc needs to be mounted when halt or poweroff is called or the -h switch will do nothing. AUTHOR
Miquel van Smoorenburg, miquels@cistron.nl SEE ALSO
shutdown(8), init(8) Nov 6, 2001 HALT(8)
All times are GMT -4. The time now is 03:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy