Sponsored Content
Operating Systems HP-UX How to find the number of physical processors and architecture in a hp-ux machine Post 302332202 by vbe on Wednesday 8th of July 2009 10:12:58 AM
Old 07-08-2009
For itanium machines, look at the output of machinfo command, for PA-RISC its seems more tricky...
CPU architecture 32/64?
Code:
lod # getconf HW_CPU_SUPP_BITS                                    
64

 

10 More Discussions You Might Find Interesting

1. Programming

trying to find number of caches on a machine

I am trying to find the number of caches on a machine programatically. #include <stdio.h> #include <malloc.h> int main(void) { int *ptr,*ptr1,i,j; j=0; i=1; printf("Changing allocation with brk()\n"); while(1) { for(j=0;j<i;j++) { ptr =... (1 Reply)
Discussion started by: jacques83
1 Replies

2. UNIX for Dummies Questions & Answers

Command to know the architecture of the machine

Hi, Is there any command to know whether the machine 64 bit or 32 bit? now I am using "uname -p" for this purpose but I want a straight command if it is there. (1 Reply)
Discussion started by: siba.s.nayak
1 Replies

3. Solaris

Limiting number of processors used by an application

Hello, Using a Solaris SunOS 5.10, is there anyway to limit the number of processors utilised by an external vendor application over the server, from the unix OS perspective? (1 Reply)
Discussion started by: pgop
1 Replies

4. AIX

Maximum Limit of HMC to handle Physical Power Virtualization Physical Machine

Hello All, Can anybody please tell me what is the maximum limit of Physical IBM Power Machine which can be handled by single HMC at a single point of time? Thanks, Jenish (1 Reply)
Discussion started by: jenish_shah
1 Replies

5. UNIX for Advanced & Expert Users

How to find locked processors

Hi all, i have no of processors .in that some processors locked. how to find the particular locked processors into list of all the processors. i hav no of processors like ex: processors 1021 1022 1023 1024 1025 ---it is locked 1026 -- - - - - -- 2334334 so i don't know 1025 is... (1 Reply)
Discussion started by: venkatreddy
1 Replies

6. High Performance Computing

PBS - restrict total number of processors per user

Hello everyone! I am a bit inexperienced with administering queueing programs. I installed Torque (a PBS derivative) on a Linux cluster and it is running well. There is one annoying problem though: users can run massively parallel jobs and serial jobs too. Almost all users do a mix of the two. I... (0 Replies)
Discussion started by: gnuplot
0 Replies

7. Solaris

How to count number of physical and virtual processors on Solaris machine.?

hi, I am using command psrinfo -p to check the number of physical processors present on any soalris machine.I want to check the number of virtual processors assigned for particular solaris machine. which command/set of command need to be used which can grep or show the total virtual processors... (8 Replies)
Discussion started by: omkar.jadhav
8 Replies

8. Red Hat

Number of physical and virtual processors

Hi, i am trying to find out hpw many virtual and physical processors does any linux machine has: output of /proc/cpuinfo is as below : # cat /proc/cpuinfo processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 26 model name : Intel(R) Xeon(R) CPU... (8 Replies)
Discussion started by: omkar.jadhav
8 Replies

9. AIX

Virtualizing Physical Machine

Hi Experts - we have power710 (no VIOs) that is already connected to hmc and everything . I already have a Physical LPAR in there and network configured . Now I plan to delete that LPAR and then put Virtualization code (COD) to virtualize that machine by building VIO servers and stuff.Also ordered... (9 Replies)
Discussion started by: JME2015
9 Replies

10. UNIX for Beginners Questions & Answers

How to find whether Solaris installed on physical machine or on a VMware/KVM?

Hi All, . I am trying to find whether Solaris 11 installed on physical server or on VMware/KVM. I tried uname -a but it's giving only whether i installed on X86 or sparc machine. I tried prtdiag command but it's giving below information. command : prtdiag -v |grep "System... (2 Replies)
Discussion started by: sravani25
2 Replies
filehdr(5)							File Formats Manual							filehdr(5)

Name
       filehdr - file header for RISC object files

Syntax
       #include < filehdr.h>

Description
       Every RISC object file begins with a 20-byte header.  The following C struct declaration is used:
       struct filehdr
       {
	  unsigned short  f_magic;     /* magic number */
	  unsigned short  f_nscns;     /* number of sections */
	  long		  f_timdat;    /* time & date stamp */
	  long		  f_symptr;    /* file pointer to symbolic header */
	  long		  f_nsyms;     /* sizeof(symbolic header) */
	  unsigned short  f_opthdr;    /* sizeof(optional header) */
	  unsigned short  f_flags;     /* flags */
       };

       The byte offset into the file at which the symbolic header can be found is f_symptr.  Its value can be used as the offset in to position an
       I/O stream to the symbolic header.  The ULTRIX system optional header is 56 bytes.  The valid magic numbers are given below:
       #define MIPSEBMAGIC 0x0160 /* objects for big-endian machines */
       #define MIPSELMAGIC 0x0162 /* objects for little-endian machines */
       #define MIPSEBUMAGIC 0x0180 /* ucode objects for big-endian machines */
       #define MIPSELUMAGIC 0x0182 /* ucode objects for little-endian machines */
       RISC object files can be loaded and examined on machines differing from the object's target byte sex.  Therefore,  for  object  file  magic
       numbers, the byte-swapped values have define constants associated with them:
       #define SMIPSEBMAGIC 0x6001
       #define SMIPSELMAGIC 0x6201
       The value in f_timdat is obtained from the system call.	Flag bits used in RISC objects are:
       #define F_RELFLG 0000001  /* relocation entries stripped */
       #define F_EXEC	0000002  /* file is executable */
       #define F_LNNO	0000004  /* line numbers stripped */
       #define F_LSYMS	0000010  /* local symbols stripped */

See Also
       time(2), fseek(3s), a.out(5)

								       RISC								filehdr(5)
All times are GMT -4. The time now is 01:22 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy