Anything like AIX's SMT?


 
Thread Tools Search this Thread
Operating Systems HP-UX Anything like AIX's SMT?
# 1  
Old 02-05-2007
Anything like AIX's SMT?

I'm working on a system to monitor a wide-range of Unix platforms, and I'd like to know if HP-UX has anything similar to AIX's SMT (simultaneous multithreading)? If there a way to separate an HP-UX CPU into multiple logical partitions which can then act as multiple CPUs?

Thanks in advance,
Dave
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. AIX

Samba 3.6 on AIX 7.1 - Windows 10 Access to AIX file shares using Active Directory authentication

I am running AIX 7.1 and currently we have samba 3.6.25 installed on the server. As it stands some AIX folders are shared that can be accessed by certain Windows users. The problem is that since Windows 10 the guest feature no longer works so users have to manually type in their Windows login/pwd... (14 Replies)
Discussion started by: linuxsnake
14 Replies

2. AIX

Shared-SMT-4 vs Dedicated-SMT-4 on capped LPAR

Hi, I have a POWER8 server running in Processor Implementation Mode: POWER 7. I have 2 LPAR's, both are capped with 4 cores. One of them displays: Shared-SMT-4 and the other: Dedicated-SMT-4 What is the difference when running in capped mode? Thanks (1 Reply)
Discussion started by: amitlib
1 Replies

3. AIX

Will it affect my AIX LPAR security, when i set up email alerts on AIX server.

Hello, I've set up email alerts on AIX Servers. so that i can get email notifications (via mail relay server) when ever there is abnormal behavior. for example 1) my script monitors CPU/disk/memory etc... when it reaches high water ark, it will send an email alert. 2) disk usage alerts 3)... (5 Replies)
Discussion started by: System Admin 77
5 Replies

4. AIX

Nim on AIX 7.1 used to migrate AIX 5.3 to AIX 6.1...is possible?

Using nimadm: nimadm -j nimadmvg -c sap024 -s spot_6100 -l lpp_6100 -d "hdisk1" -Y Initializing the NIM master. Initializing NIM client sap024. 0505-205 nimadm: The level of bos.alt_disk_install.rte installed in SPOT spot_6100 (6.1.3.4) does not match the NIM master's level (7.1.1.2).... (2 Replies)
Discussion started by: sciacca75
2 Replies

5. AIX

How to upgrade AIX Firmware & TL Maintenance Level in AIX

Steps to upgrade AIX TL ( technology Level ) / Maintenance Level in AIX ( including Firmware HMC VIOS ) This article or post covers upgrades for - Hardware Management Console ( HMC ) - Firmware ( also known as microcode ) - VIO ( Virtual I/O Server = PowerVM ) - AIX Version, Technology... (2 Replies)
Discussion started by: filosophizer
2 Replies

6. AIX

IY17981 fix required for aix 4.3.3 to aix 5L migration but not found

Hi, redbook documentation is telling that IY17981 fix is required for aix 4.3.3 to aix 5L migration. But there is no mention about that fix in any ML installation packages. - My system is ML11 : oslevel –r 4330-11 - But xlC.rte is on wrong version : lslpp -L xlC.rte xlC.rte ... (3 Replies)
Discussion started by: astjen
3 Replies

7. AIX

How to apply aix 5.3 TL8 properly on ML5 aix system ?

Is it necessary to put system into single user mode for applying aix 5.3 TL8 on a aix 5.3.5.0 system ? Is the TL8 installation not totally safe ? thank you. (6 Replies)
Discussion started by: astjen
6 Replies

8. AIX

Enable SMT

How to enable SMT in aix 5.2 ml 9? If i run smtctl it gives error ksh: smtctl: not found. please tell me if SMT is supported in 5.2 (4 Replies)
Discussion started by: vjm
4 Replies

9. AIX

Smt

How do you turn SMT(symm multi threading).I think that is what it's called.:) TIA Mike (2 Replies)
Discussion started by: mcastill66
2 Replies
Login or Register to Ask a Question
Unix::Mknod(3pm)					User Contributed Perl Documentation					  Unix::Mknod(3pm)

NAME
Unix::Mknod - Perl extension for mknod, major, minor, and makedev SYNOPSIS
use Unix::Mknod qw(:all); use File::stat; use Fcntl qw(:mode); $st=stat('/dev/null'); $major=major($st->rdev); $minor=minor($st->rdev); mknod('/tmp/special', S_IFCHR|0600, makedev($major,$minor+1)); DESCRIPTION
This module allows access to the device routines major()/minor()/makedev() that may or may not be macros in .h files. It also allows access to the mknod(2) system call. FUNCTIONS
mknod($filename, $mode, $rdev) Creates a block or character device special file named $filename. Must be run as a privileged user, usually root. Returns 0 on success and -1 on failure, like "POSIX::mkfifo" does. $major = major($rdev) Returns the major number for the device special file as defined by the st_rdev field from the stat(3) call. $minor = minor($rdev) Returns the minor number for the device special file as defined by the st_rdev field from the stat(3) call. $rdev = makedev($major, $minor) Returns the st_rdev number for the device special file from the $major and $minor numbers. NOTES
There are 2 other perl modules that implement the mknod(2) system call, but they have problems working on some platforms. "Sys::Mknod" does not work on AIX because it uses the syscall(2) generic system call which AIX does not have. "Mknod" implements S_IFIFO, which on most platforms is not implemented in mknod(1), but rather mkfifo(1) (which is implemented in POSIX perl module). The perl module "File::Stat::Bits" also implements major() and minor() (and a version of makedev() called dev_join). They are done as a program to get the bit masks at compile time, but if major() and minor() are implemented as sub routines, the arugment could be something as simple as an index to a lookup table (and thereby having no decernable relation to its result). BUGS
Running "make test" as non root will not truly test the functions, as in most UNIX like OSes, mknod(2) needs to be invoked by a privelaged user, usually root. SEE ALSO
$ERRNO or $! for the specific error message. File::Stat::Bits, Mknod, POSIX, Sys::Mknod major(9), minor(9), mkfifo(1), mknod(8) ftp://ftp-dev.cites.uiuc.edu/pub/Unix-Mknod AUTHOR
Jim Pirzyk, <pirzyk@uiuc.edu> COPYRIGHT AND LICENSE
Copyright (c) 2005-2008 University of Illinois Board of Trustees All rights reserved. Developed by: Campus Information Technologies and Educational Services, University of Illinois at Urbana-Champaign Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ``Software''), to deal with the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimers. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimers in the documentation and/or other materials provided with the distribution. * Neither the names of Campus Information Technologies and Educational Services, University of Illinois at Urbana-Champaign, nor the names of its contributors may be used to endorse or promote products derived from this Software without specific prior written permission. THE SOFTWARE IS PROVIDED ``AS IS'', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE SOFTWARE. perl v5.14.2 2007-12-23 Unix::Mknod(3pm)