Sponsored Content
Operating Systems Solaris Solaris can not boot and restart Post 302982592 by mammut3d on Friday 30th of September 2016 12:57:24 PM
Old 09-30-2016
A motherboard manufacture is fujitsu siemens, Pentium 4 cpu, and 4G RAM and nVIDIA graphic.
If it is not enough, please tell me what do you want to know in details.
 

9 More Discussions You Might Find Interesting

1. Solaris

shutting down/restarting oracle with the solaris server restart

How can I make sure that all the database instances are shut down and brought up when the server is restarted. Krishan (3 Replies)
Discussion started by: krishan
3 Replies

2. Solaris

solaris boot problem boot error loading interpreter(misc/krtld)

When I installed the SOLARIS 10 OS first time, the desktop would not start up, this was because of network setup. Reinstalled worked. After a week due to some problem I had to reinstall OS, installation went fine and but when i reboot I get this error. cannot find mis/krtld boot error loading... (0 Replies)
Discussion started by: johncy_j
0 Replies

3. Solaris

Restart/Shutdown the Solaris from SC>

Hi Experts, I am running solris 9. Sun-Fire 880. How do i shutdowon the whole server using ALOM i.e sc> console. If the server is down or somehow hang How do i Restart from sc> //purple (6 Replies)
Discussion started by: thepurple
6 Replies

4. Solaris

cant boot from solaris CD

Hi all , I am trying to isntallsolaris 10 using a DVD , But when i try to boot from the OB Prompt i am getting this error : Rebooting with command: boot cdrom -install Boot device: /pci@1f,700000/pci@0/pci@1/pci@0/ide@1f/cdrom@0,0:f File and args: -install Can't read disk label. Can't open... (2 Replies)
Discussion started by: ppass
2 Replies

5. Solaris

solaris 10 mysql no longer able to restart

Came in tonight, and some people started getting this error message note: users were getting this error in IE6 and in firefox, pages seemed to process fine in Chrome. :confused: anyway... So I decided to restart the MySQL service, now it will not restart. First tried: root@bender:/>... (2 Replies)
Discussion started by: ippy98
2 Replies

6. Solaris

Doubt, sshd restart kills the session on Solaris 8,9,10

Hi Everyone, I am just curious, if sshd service is restarted on these OS Solaris 8,9,10 remotely will the session expires?? . I knew we can restart sshd in solaris 10 that will no effect any current session please suggest for 8,9 Thanks, (2 Replies)
Discussion started by: bobby320
2 Replies

7. Solaris

Solaris x86 installation using jumpstart does not local boot ( boot from hdd)

I am trying to install Solaris x86 using the Jumpstart server. I run the add_install_client command with appropriate options, and reboot my x86 Target box. The installation starts fine and unattended. After the installation completes and the target goes for a re-boot, it does not boot from the HDD... (9 Replies)
Discussion started by: hemalsid
9 Replies

8. Solaris

dual boot solaris/solaris zfs file system

Hi, I am running into a some problems creating a dual boot system of 2 solaris instances using ZFS file system and I was wondering if someone can help me out. First some back ground. I have been asked to change the file system of our server from UFS to ZFS. Currently we are using Solaris... (3 Replies)
Discussion started by: estammis
3 Replies

9. Solaris

Solaris stuck during boot after reconfigure boot

Hello, I have a problem with my machine that won't boot properly. The story is that I installed a software called apcupsd, which is a control application for my APC battery UPS. I have used version 3.14.10 earlier, but as part of restoring my previously crashed os harddrive I wanted to... (18 Replies)
Discussion started by: Zorken
18 Replies
PERFMON(4)                                               BSD/i386 Kernel Interfaces Manual                                              PERFMON(4)

NAME
perfmon -- CPU performance-monitoring interface SYNOPSIS
cpu I586_CPU cpu I686_CPU options PERFMON DESCRIPTION
The perfmon driver provides access to the internal performance-monitoring capabilities of the Intel Pentium and Pentium Pro CPUs. These pro- cessors implement two internal counters which can be configured to measure a variety of events for either count or duration (in CPU cycles), as well as a cycle counter which counts clock cycles. The perfmon driver provides a device-style interface to these capabilities. All access to the performance-monitoring counters is performed through the special device file ``/dev/perfmon''. This device supports a num- ber of ioctl(2) requests, defined in <machine/perfmon.h> along with the definitions of the various counters for both Pentium and Pentium Pro processors. NOTA BENE: The set of available events differs from processor to processor. It is the responsibility of the programmer to ensure that the event numbers used are the correct ones for the CPU type being measured. The following ioctl(2) requests are defined: PMIOSETUP (struct pmc) Set up a counter with parameters and flags defined in the structure. The following fields are defined in struct pmc: int pmc_num the number of the counter in question; must be less than NPMC (currently 2). u_char pmc_event the particular event number to be monitored, as defined in <machine/perfmon.h>. u_char pmc_unit the unit mask value, specific to the event type (see the Intel documentation). u_char pmc_flags flags modifying the operation of the counter (see below). u_char pmc_mask the counter mask value; essentially, this is a threshold used to restrict the count to events lasting more (or less) than the specified number of clocks. The following pmc_flags values are defined: PMCF_USR count events in user mode PMCF_OS count events in kernel mode PMCF_E count number of events rather than their duration PMCF_INV invert the sense of the counter mask comparison PMIOGET (struct pmc) returns the current configuration of the specified counter. PMIOSTART PMIOSTOP (int) starts (stops) the specified counter. Due to hardware deficiencies, counters must be started and stopped in numerical order. (That is to say, counter 0 can never be stopped without first stopping counter 1.) The driver will not enforce this restriction (since it may not be present in future CPUs). PMIORESET (int) reset the specified counter to zero. The counter should be stopped with PMIOSTOP before it is reset. All counters are automatically reset by PMIOSETUP. PMIOREAD (struct pmc_data) get the current value of the counter. The pmc_data structure defines two fields: int pmcd_num the number of the counter to read quad_t pmcd_value the resulting value as a 64-bit signed integer In the future, it may be possible to use the RDPMC instruction on Pentium Pro processors to read the counters directly. PMIOTSTAMP (struct pmc_tstamp) read the time stamp counter. The pmc_tstamp structure defines two fields: int pmct_rate the approximate rate of the counter, in MHz quad_t pmct_value the current value of the counter as a 64-bit integer It is important to note that the counter rate, as provided in the pmct_rate field, is often incorrect because of calibration dif- ficulties and non-integral clock rates. This field should be considered more of a hint or sanity-check than an actual represen- tation of the rate of clock ticks. FILES
/dev/perfmon character device interface to counters /usr/include/machine/perfmon.h include file with definitions of structures and event types /usr/share/examples/perfmon sample source code demonstrating use of all the ioctl() commands SEE ALSO
ioctl(2), hwpmc(4) Intel Corporation, Pentium Pro Family Developer's Manual, vol. 3, January 1996, Operating System Writer's Manual. HISTORY
The perfmon device first appeared in FreeBSD 2.2. AUTHORS
The perfmon driver was written by Garrett A. Wollman, MIT Laboratory for Computer Science. BSD March 26, 1996 BSD
All times are GMT -4. The time now is 04:23 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy