-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: July 2009
Aix: Displaying the top 10 CPU / Memory consuming processes
Displaying the top 10 CPU-consuming processes # ps aux | head -1; ps aux | sort -rn +2 | head -10 Displaying number of processors in the system # lsdev -Cc processor Displaying the top 10 CPU-consuming processes # ps … Continue reading
Posted in Uncategorized
Leave a comment
How To: Hide title bar or URL usingJavascript
Here’s the test page, testframe.html:<html><head><meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″><title>Test page</title><script language=”JavaScript”><!–function openWindowNew( windowURL, windowName) { var windowFeatures=’width=518,height=500,toolbar=0,location=0,scrollBars’ return window.open( windowURL, windowName, windowFeatures ) ;}//—></script></head><body> <a href=”#” onClick=”newWindow = openWindowNew(‘frameset.html?’+escape(‘http://www.myserver.com’), ‘Mywindowname’); newWindow.focus(); return false”>Here’s the link to myserver</a>></html> Here’s the … Continue reading
Posted in Uncategorized
Leave a comment
How To: Remove or hide Acrobat toolbars from an external Acrobat window
In order to open a PDF file in a web browser, without the Acrobat or Acrobat Reader toolbar, you would need to link to the PDF with the following HTML code, where #toolbar=0 follows the .pdf filename: <P><a href=http://www.server-name.com/filename.pdf#toolbar=0&zoom=85>Link without … Continue reading
Posted in Uncategorized
Leave a comment
Cognos: ReportNet Installation Procedure
Pre Installation Requirements The following Software’s must be installed and running before installing and configuring Cognos ReportNet Database (Oracle/DB2/SQL Server) for Content Store Web Server (IIS/Apache) Note: This document will focus on Oracle Database and Internet Information Services (IIS) Web … Continue reading
Posted in Uncategorized
Leave a comment
HP-UX: How to take Ignite Backup
# make_tape_recovery -AvI -a /dev/rmt/0mn -x inc_entire=vg00 \ -x exclude=/oradata -x exclude=/oradb Original post blogged on b2evolution. Incoming search terms:how to take ignite backup in hp-uxhoe to take ignite backup in hp-uxhoe to takeignite backup in hp-uxhow to take ignite … Continue reading
Posted in Uncategorized
Leave a comment
HP-UX: How can I retrieve the system serial number
cstm is installed with the OnlineDiagnostics / Support Tools Bundle on HP-UX 9000 systems: # echo “sc product system;info;wait;il” | cstm | grep -i “system serial” # echo “sel path system\ninfolog\nexit”|cstm|grep “System Serial” # SERIAL_NUMBER=$(echo “sc product system;info;wait;il” | cstm … Continue reading
Posted in Uncategorized
Leave a comment
Linux: iSCSI Initiator installation & configration
Installation Instructions: Red Hat Supplied iSCSI Initiator: Find the RPM on the Red Hat Media, then install it using the rpm –ivh command as follows: # rpm –ivh iscsi-initiator-utils-6.2.0.742-0.5.el5 NOTE: This is the version for Enterprise Linux AS 5. Your … Continue reading
Posted in Uncategorized
Leave a comment
Aix: How to assign a specific PVID
1) BACKUP old disk critical data. # dd if=/dev/hdisk9 of=/tmp/hdisk9.save bs=4k count=1 If something were to go wrong and the head information got damaged use the following to RECOVER the origional PVID and head information TO RECOVER origional PVID: # … Continue reading
Posted in Uncategorized
Leave a comment
Solaris: How to Enable Native MPxIO fo EMC / HP / IBM / NETAPP
To enable MPxIO for storage devices, the appropriate information for device-type-scsioptions-list need to be added in the /kernel/drv/scsi_vhci.conf file. 1. Use a text editor to change the configuration file. For example: # vi /kernel/drv/scsi_vhci.conf 2. For Solaris 8 and 9 … Continue reading
Posted in Uncategorized
Leave a comment
How to enable Javascript in any browser
Enable Javascript In Firefox 1.5 Load Options Dialog In Windows Click on “Tools” menu bar at the top of the window. From the drop menu, click on “Options” Load Options Dialog In Linux Click on the “Edit” menu bar at … Continue reading
Posted in Uncategorized
Leave a comment