with Tags:
tools
X

Announcing LPARmon Version2
LPARmon Version 2 is now available from IBM Alphaworks. This free tool provides a graphical interface for viewing partition performance. The tool was developed by Austin's Briefing Center to demonstrate Advanced Virtual Partitioning, in particular to demonstrate free pool utilization in a micropartitioned server. I highly recommend it. http://www.alphaworks.ibm.com/tech/lparmon?open&S_TACT=106AH62W&S_CMP=NEWS
Tags:  tools |
Process Tree at AIX 5.3 using ps -T
Starting with AIX 5.3, you can get the process tree showing all the children of a particular process in a tree format. This is a part of the Linux affinity push: Example: $ ps -T 119016 PID TTY TIME CMD 119016 - 0:00 sshd 1015808 - 0:00 \--sshd 418006 - 0:00 \--ksh 913436 pts/0 0:00 \--ksh 639072 pts/0 0:00 \--ps
Tags:  tools |
Solution to slow build of apache and gcc
We found it was taking from two to three hours to run the configure script for apache. After searching we found that the solution was to change the environment variable CONFIG_SHELL to point to a different shell than the default ksh. When this was done, the multi-hour run of ./configure was done in 3 minutes. Solution: From the Mozilla site for AIX it says: export CONFIG_SHELL=/opt/freeware/bin/bash export CONFIGURE_ENV_ARGS=/opt/freeware/bin/bash ./configure From testing, I found I could also use ksh93 and get similar results. export... [More]
Tags:  tools |
New AIX 5.3 "multibos" Command to Dual Boot from Same Disk
The new "multibos" command (AIX 5.3 ML3) provides dual AIX boot from the same rootvg. You can run production on one boot image while installing, customizing or updating the other. This is conceptually similar to AIX's "alt-disk-install". However, in "alt-disk-install" the boot images must reside on separate disks and separate rootvg's. The "multibos" capability allows both OS images to reside on the same disk/rootvg, avoiding the need for a separate disk. For more information see... [More]
Tags:  tools |
Change title of existing aixterm window
Setting the title on a running aixterm To set the title of your current aixterm window you can use the echo command to output an Escape, left square bracket, number 2, semicolon, the text for the window, and the octal 007. For example to set the title to AIXTERM Title use: echo "\033]2;AIXTERM Title" To set the title for the icon window replace the number '2' with the number '1' as shown here: echo "\033]1;ICON Title" To set the title for both the window and the icon use the number 0 instead of 1 or 2 echo "\033]0;Title and ICON Title" Of... [More]
Tags:  tools |
New AIX/pSeries Centric Documentation
p5-590 and 595 System Handbook Revised: January 11, 2006 http://www.redbooks.ibm.com/abstracts/sg249119.html p5-590 and 595 Technical Overview and Introduction Revised: January, 11, 2006 http://www.redbooks.ibm.com/redpapers/abstracts/redp4024.html Implementing NFSv4 in the Enterprise: Planning and Migration Strategies Revised: January 12, 2006 http://www.redbooks.ibm.com/abstracts/sg246657.html DS300 and DS400 Best Practices Guide Revised: January, 12, 2006 http://www.redbooks.ibm.com/redpieces/abstracts/sg247121.html N-Series Snapshot, a... [More]
Tags:  tools |
HACMP Tidbits
HACMP Tidbits Tidbits from Shawn Bodily: - First and formost, TSM does NOT work with HACMP v5.3. A TSM APAR s required (IY80002) that has yet to be released. This APAR is expected to drop in late March. (This should not be a surprise - it is documented in the TSM docs.) - A podcast explaining some of the new features in HACMP 5.3 is now available: http://www.ibm.com/systems/p/ha - A new redpaper on HACMP DLPAR & Virtualization was just released. It's essentially Chapter 10 of the new HACMP cookbook; released on 30-"Dec-2005: Cookbook:... [More]
Tags:  tools |