<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7470226102725405310</id><updated>2011-07-08T08:04:45.357-07:00</updated><category term='sun'/><category term='linux'/><category term='Solaris'/><category term='hp-ux'/><category term='lvm'/><category term='unix reviewer'/><category term='sun solaris'/><category term='inspiration'/><category term='HP-UX reviewer'/><category term='nick vujicic'/><category term='AIX'/><category term='unix'/><title type='text'>ninenok</title><subtitle type='html'>This blog is pirated,dilluted,contaminated &amp;amp; most of all no originality</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>46</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7316277373686286128</id><published>2009-07-06T21:34:00.000-07:00</published><updated>2009-07-06T21:39:39.340-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sun'/><category scheme='http://www.blogger.com/atom/ns#' term='unix reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='sun solaris'/><title type='text'>File system full - what to look for : SUN</title><content type='html'>Generic info for SUN servers -&lt;br /&gt;There are several reasons why a filesystem gets full. An important thing to consider is how you set up your filesystems during installation,;you need to take care how much space is used for each filesystem and think ahead.&lt;br /&gt;With forward thinking it is less likely that your filesystems will get full, but will not prevent a filesystem getting full. This document will show the most common reasons why a filesystem may become full and how to handle them.Resolution Top&lt;br /&gt;Below is written mainly to deal with the OS filesystems (such as root, var and usr), but it can be utilized to troubleshoot other filesystems. There are many ways of finding what's filling up a filesystem, which can sometimes be a difficult process. One problem is that a filesystem can be filled up by one or few very large files (which is generally easy to find) or by thousands of smaller files (which can be difficult to find and pinpoint the cause).&lt;br /&gt;First you need to figure out which files are filling up your filesystem.&lt;br /&gt;&lt;br /&gt;A very useful way to list the size of files in a filesystem is with the du command.&lt;br /&gt;The following example lists files from largest to smallest on the root filesystem:&lt;br /&gt;$ du -akd / sort -nr more&lt;br /&gt;or&lt;br /&gt;$ du -akd / sort -nr &gt; /tmp/du.out&lt;br /&gt;&lt;br /&gt;The latter will give you a file you can review at your convenience.&lt;br /&gt;The -d option of the du command keeps du from crossing partition boundaries.&lt;br /&gt;The “-a” option tells du to report file sizes (without this option du just reports the amount of space used in each directory. The “-k” option means that du will report in terms of kilobytes rather than 512-byte blocks. On Solaris 9 or later replace “k” with “h” if you prefer “human-readable” output, that is output in terms of kilobytes, megabytes or gigabytes depending on the number reported.&lt;br /&gt;The -nr option of sort puts the files in reverse numerical order.&lt;br /&gt;Of course, this can be used on filesystems other than root, just substitute the required path for “/” in the "du" command.&lt;br /&gt;&lt;br /&gt;The command “du -skd /” summarizes the amount of kilobytes used for a filesystem, in the given case for the root filesystem. If this is different from what is reported by the df -k command, one may check the InfoDocs 4083 and 17720 for further explanation and troubleshooting tips.&lt;br /&gt;&lt;br /&gt;One common problem with df showing more usage than du is existing data or files in directories that are used as mount points.&lt;br /&gt;INFODOC 4083 covers this, but the basic solution is given again here for convenience.&lt;br /&gt;Unmount any mounted filesystems and check the mount point directories for files. Remove the files, or move them if you think you need them, and mount the filesystems again.&lt;br /&gt;For the /tmp filesystem, you will have to boot the system into single-user mode to access the /tmp directory without having swap mounted over it.&lt;br /&gt;For /var and /usr, you will have to boot the system from cdrom, mount the root filesystem, and then check the /var and /usr directories under the mounted root filesystem. These should normally be empty when /var or /usr is not mounted.&lt;br /&gt;&lt;br /&gt;Another good way to search for files is to use the command '/usr/bin/find'. There is a good document how to use the find command, see infodoc 13678&lt;br /&gt;Standard filesystems to look at first will be:&lt;br /&gt;Filesystem&lt;br /&gt;Checks&lt;br /&gt;/tmp&lt;br /&gt;If /tmp is full or contains large files, a reboot will clean this directory. A default Solaris installation shares the diskspace for /tmp and swap as you can see in the output of the df command.&lt;br /&gt;Note: /tmp is not cleaned at boot time if /tmp is configured as a separate filesystem.&lt;br /&gt;/dev&lt;br /&gt;Large files may appear here when trying to write to a device using the incorrect device name. For example /dev/rmt/o (letter 'o') instead of /dev/rmt/0 (digit 'zero' for a tape drive. This is a very common problem if the machine does not have a tape drive attached and someone uses a tape command like tar or ufsdump. That will just create a large file in /dev/rmt/. So be sure to check the /dev directory for actual links not files.&lt;br /&gt;/&lt;br /&gt;Look for core files. Check /.wastebasket and /lost+found directory for large files. Check for a .CPR file in root, this is put there by power suspend/resume software.&lt;br /&gt;/var&lt;br /&gt;Third party packages sometimes leave tar files in /var/sadm/pkg directory.&lt;br /&gt;If /var is full (and is a separate filesystem) or /var directory is the one we determined is using up most space in root, check the following.&lt;br /&gt;Clearing out (but NOT deleting; the files should be truncated to zero length) the following files might gain you some space. Use caution here because you will lose various log information. For example, the utmp[x] and wtmp[x] files contain user access and accounting information:&lt;br /&gt;/var/cron/log&lt;br /&gt;/var/spool/lp/logs&lt;br /&gt;/var/adm/utmp&lt;br /&gt;/var/adm/utmpx&lt;br /&gt;/var/adm/wtmp&lt;br /&gt;/var/adm/wtmpx&lt;br /&gt;/var/log/syslog*&lt;br /&gt;/var/adm/messages.*&lt;br /&gt;NOTE: if you zero out the utmp, utmpx, wtmp or wtmpx files, you should reboot your machine.&lt;br /&gt;&lt;br /&gt;To zero out a file:&lt;br /&gt;# cat /dev/null &gt; filename&lt;br /&gt;NOTE: For Solaris[TM] 9 or greater, see logadm(1M) for a useful tool to manage log files.&lt;br /&gt;Check /var/saf - check for _log and in tcp and zsmon directories. There will be _log files - you can zero them out with "cat /dev/null &gt; filename". If your system is being used as a printer host, check /var/lp/logs for files, they can be removed if they have been printed or left over from system crashes or printer problems. Check /var/preserve. Check /var/spool/* directory. Subdirectories like "lp" or "mqueue" are used for spooling. Check /var/crash for any system cores. Also check /var/tmp for files not needed; /var/tmp is not cleaned up with a reboot.&lt;br /&gt;A word of caution regarding the /var/sadm directory. This directory contains package and patch information and generally should not be touched.&lt;br /&gt;&lt;br /&gt;Also it could be that you are running out of inodes and are getting the message “file system full”. In this case recreate a partition with more inodes. The basic steps are:&lt;br /&gt;&lt;br /&gt;Remove unneeded files.*&lt;br /&gt;Backup the partition.*&lt;br /&gt;recreate using newfs -i nbpi /dev/&lt;rfsname&gt; where nbpi is chosen smaller then the default for the disk size, and rfsname is the raw filesystem; e.g. /dev/rdsk/cNtNdNsN. See man newfs(1M) for more information.*&lt;br /&gt;&lt;br /&gt;Restore information back to the partition.&lt;br /&gt;In the course of normal system operation, the root and usr filesystems (or directories) are mostly static (do not grow over time). /var however, does grow over time (because it contains log files, package database, print and mail spoolers, etc.). The name “var” is in fact an abbreviation for “varying” or “variable” as the “/var” filesystem is intended for files which vary in size and content over time (see the filesystem(5) manual page for more details about this). It is good system administration practice to monitor log files to make sure they don't get too large.&lt;br /&gt;If a filesystem suddenly fills up, that could have been caused by installing a new piece of software into a wrong directory.&lt;br /&gt;Check any lost+found directory on any filesystem that is full.&lt;br /&gt;Another approach would be to list files by their modification date (if the date of when the filesystem filled up is known).&lt;br /&gt;# ls -lRt / more will list all the files and sort them by the modification dates.&lt;br /&gt;&lt;br /&gt;It could also be that all of these action does not give the solution and the problem is actually that the filesystem is too small.&lt;br /&gt;&lt;br /&gt;To check inode usage - df -F ufs -o iTo check how a filesystem was created - mkfs -m /dev/rdsk/cXtXdXsX&lt;br /&gt;&lt;br /&gt;::ciao.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7316277373686286128?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7316277373686286128/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/07/file-system-full-what-to-look-for-sun.html#comment-form' title='35 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7316277373686286128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7316277373686286128'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/07/file-system-full-what-to-look-for-sun.html' title='File system full - what to look for : SUN'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>35</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-2897903523008013142</id><published>2009-06-26T05:50:00.000-07:00</published><updated>2009-06-26T05:53:22.053-07:00</updated><title type='text'>Michael Jackson : 1958 - 2009</title><content type='html'>&lt;p align="center"&gt;&lt;a href="http://2.bp.blogspot.com/_6Q8p09MLCy8/SkTEUz8cX1I/AAAAAAAAAEA/Vzm8tmAlfsE/s1600-h/V3plvX2eRp5lgtg8XoQuDHb6o1_400.png"&gt;&lt;img id="BLOGGER_PHOTO_ID_5351618119043145554" style="WIDTH: 136px; CURSOR: hand; HEIGHT: 200px" alt="" src="http://2.bp.blogspot.com/_6Q8p09MLCy8/SkTEUz8cX1I/AAAAAAAAAEA/Vzm8tmAlfsE/s200/V3plvX2eRp5lgtg8XoQuDHb6o1_400.png" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Rest in peace and I hope that you are moonwalking wherever you are.&lt;br /&gt;Thank you for the music.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-2897903523008013142?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/2897903523008013142/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/06/michael-jackson-1958-2009.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2897903523008013142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2897903523008013142'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/06/michael-jackson-1958-2009.html' title='Michael Jackson : 1958 - 2009'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_6Q8p09MLCy8/SkTEUz8cX1I/AAAAAAAAAEA/Vzm8tmAlfsE/s72-c/V3plvX2eRp5lgtg8XoQuDHb6o1_400.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4904183123397044131</id><published>2009-06-19T11:29:00.000-07:00</published><updated>2009-06-19T11:40:25.583-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Is a system in trusted mode? : hp-ux</title><content type='html'>How do you tell if a system is in trusted mode or not?&lt;br /&gt;&lt;br /&gt;Try looking at these two:&lt;br /&gt;&lt;br /&gt;#man iscomsec&lt;br /&gt;&lt;br /&gt;#/usr/lbin/getprdef -r&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;:cheers!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4904183123397044131?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4904183123397044131/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/06/is-system-in-trusted-mode-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4904183123397044131'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4904183123397044131'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/06/is-system-in-trusted-mode-hp-ux.html' title='Is a system in trusted mode? : hp-ux'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6642079042878251476</id><published>2009-06-18T20:05:00.000-07:00</published><updated>2009-06-18T20:12:10.062-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Getting rid of stale nfs file handles : hp-ux</title><content type='html'>Run the command:&lt;br /&gt;&lt;br /&gt;#fuser -uck /&lt;filesystem&gt;&lt;filesystem&gt;&lt;br /&gt;&lt;br /&gt;:-)&lt;/filesystem&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6642079042878251476?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6642079042878251476/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/06/getting-rid-of-stale-nfs-file-handles.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6642079042878251476'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6642079042878251476'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/06/getting-rid-of-stale-nfs-file-handles.html' title='Getting rid of stale nfs file handles : hp-ux'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7967812577971877924</id><published>2009-06-17T07:54:00.000-07:00</published><updated>2009-06-17T08:00:44.634-07:00</updated><title type='text'>Limiting the size of core dumps : hp-ux</title><content type='html'>&lt;p&gt; To completely suppress core dumps:&lt;/p&gt; &lt;p&gt; Bourne-style shells: "ulimit -c 0"&lt;br /&gt;C-style shells: "limit coredumpsize 0"&lt;/p&gt; &lt;p&gt; If you want to limit dumps to a specific size, specify a number instead of 0, in blocks for Bourne-style shells, or kilobytes for C-style shells. &lt;span style="text-decoration: underline;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;:-)&lt;br /&gt;&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7967812577971877924?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7967812577971877924/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/06/limiting-size-of-core-dumps-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7967812577971877924'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7967812577971877924'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/06/limiting-size-of-core-dumps-hp-ux.html' title='Limiting the size of core dumps : hp-ux'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5032474194777203697</id><published>2009-05-20T12:02:00.000-07:00</published><updated>2009-05-20T12:18:20.437-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><title type='text'>Test ftp data transfer rate without actual transfererring</title><content type='html'>&lt;div&gt;ftp targethost&lt;br /&gt;username/passwd...&lt;br /&gt;bin&lt;br /&gt;hash&lt;br /&gt;put "dd if=/dev/zero bs=32k count=1000" /dev/null &lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;a href="http://2.bp.blogspot.com/_6Q8p09MLCy8/ShRXVsnN6vI/AAAAAAAAAD4/g6YvfukLkDc/s1600-h/100percent.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5337987488605399794" style="WIDTH: 200px; CURSOR: hand; HEIGHT: 142px" alt="" src="http://2.bp.blogspot.com/_6Q8p09MLCy8/ShRXVsnN6vI/AAAAAAAAAD4/g6YvfukLkDc/s200/100percent.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;div&gt;: ciao..&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5032474194777203697?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5032474194777203697/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/test-ftp-data-transfer-rate-without.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5032474194777203697'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5032474194777203697'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/test-ftp-data-transfer-rate-without.html' title='Test ftp data transfer rate without actual transfererring'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_6Q8p09MLCy8/ShRXVsnN6vI/AAAAAAAAAD4/g6YvfukLkDc/s72-c/100percent.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5719285886153520320</id><published>2009-05-17T09:36:00.000-07:00</published><updated>2009-05-17T09:48:33.535-07:00</updated><title type='text'>Employers still grapple over IT pay, skills</title><content type='html'>Despite recent changes in the global economy, the cost of hiring quality IT staff remains a challenge for employers, say human resource experts.  &lt;p&gt;According to Sommer Owens, manager of IT contract division at Robert Walters Hong Kong, IT salaries in the Chinese territory have been holding steady, but some employees are prepared to lower their pay expectations.   &lt;/p&gt;&lt;p&gt;"Candidates who have been caught up in corporate restructuring are willing to accept a lower salary than they were previously getting to stay competitive in...[the] market," Owens said in an e-mail interview. &lt;/p&gt;&lt;p&gt;However, E. Balaji, CEO of India-based recruitment agency Ma Foi Management Consultants, noted that while it is true the bargaining power has swung in favor of employers, the expanding workers pool and lowering salaries relate more to generic IT skills. &lt;/p&gt;&lt;p&gt;A year ago, Balaji explained in an e-mail, most prospective candidates had more than one job offer and candidates were aggressively negotiating salaries and benefits, thereby pushing up the cost of quality talent. "With the current slowdown, this has subsided," he said, adding that the economic downturn has provided cash-rich companies with the opportunity to recruit quality talent at optimal cost. &lt;/p&gt;&lt;p&gt;"[However], for specific levels of expertise and niche skills, potential candidates in a company are generally 'ring-fenced'. Hopes of attracting them at less attractive terms may not materialize," he noted. &lt;/p&gt;&lt;p&gt;Yeo Gek Cheng, director of IT and telecommunications at Hudson Singapore, said the perception that employers now have a wider pool of candidates from which to choose "cannot be further from the truth", particularly for mid- to senior hires who are strong in their field. &lt;/p&gt;&lt;p&gt;"Those who are gainfully employed are unwilling to move due to the perceived risk of changing jobs now," Yeo told ZDNet Asia in an e-mail, adding that employees' annual salary increments have also remained unchanged.  &lt;/p&gt;&lt;p&gt;While businesses still face a challenge recruiting candidates, this is less of an issue now as there are fewer job offers available to IT professionals, she said. Yeo noted that the lack of candidates in Asia cannot be resolved simply by an economic downturn. "What is a tight labor pool remains tight," she added. &lt;/p&gt;&lt;p&gt;Agreeing, Owens said some IT skills are still in short supply.&lt;/p&gt;&lt;p&gt; by Sol E. Solomon, ZDNet Asia&lt;br /&gt;&lt;/p&gt;&lt;p&gt;read more --&gt;&lt;a href="http://www.zdnetasia.com/news/business/0,39044229,62054088,00.htm"&gt;http://www.zdnetasia.com/news/business/0,39044229,62054088,00.htm&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5719285886153520320?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5719285886153520320/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/employers-still-grapple-over-it-pay.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5719285886153520320'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5719285886153520320'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/employers-still-grapple-over-it-pay.html' title='Employers still grapple over IT pay, skills'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7811710367715381365</id><published>2009-05-17T09:10:00.000-07:00</published><updated>2009-05-17T09:16:06.360-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Terminate a socket without terminating a process:HP-UX</title><content type='html'>&lt;div class="content"&gt;     &lt;p&gt;PROBLEM&lt;/p&gt; &lt;p&gt;Terminate a socket without terminating a process&lt;/p&gt; &lt;p&gt;RESOLUTION&lt;/p&gt; &lt;p&gt;Refer to man page on ndd:&lt;/p&gt; &lt;p&gt;     #man 1m ndd&lt;/p&gt; &lt;p&gt;ndd -h supported (will display supported ndd parameters)&lt;br /&gt;ndd -h unsupported (will display unsupported ndd parameters)&lt;/p&gt; &lt;p&gt;Here is an example using the tcp_discon parameter:&lt;/p&gt; &lt;p&gt;     #ndd -get /dev/tcp tcp_discon number&lt;/p&gt; &lt;p&gt;NOTE:  This number is obtained by running the following command:&lt;/p&gt; &lt;p&gt;     #ndd -get  /dev/tcp tcp_status&lt;/p&gt; &lt;p&gt;The tcp_status will give you a long list of connected sockets.  Find the one&lt;br /&gt;that needs to be killed (use netstat -a (if you have the name of the&lt;br /&gt;host, use the -n option if you have the IP of the host you are looking&lt;br /&gt;for) and then compare to ouput of the -get command below to find the&lt;br /&gt;hostname or the ip).  Then use the number on the far left of the output&lt;br /&gt;(LEADING ZEROS must be removed from the number) and prepend it with a 0x to&lt;br /&gt;show its hex.&lt;/p&gt; &lt;p&gt;Example of commands:&lt;/p&gt; &lt;p&gt;    * #ndd -get /dev/tcp tcp_status&lt;br /&gt;    * #ndd -set /dev/tcp tcp_discon 0x010203404&lt;/p&gt; &lt;p&gt;If using the tcp_discon_by_addr variable convert the ip address into the&lt;br /&gt;hexadecimal representation.&lt;/p&gt; &lt;p&gt;#ndd -set /dev/tcp tcp_discon_by_addr [hex number]&lt;/p&gt; &lt;p&gt;Where '[hex number]' is the one that needs to be killed.&lt;/p&gt;&lt;p&gt;:ciao..&lt;br /&gt;&lt;/p&gt;   &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7811710367715381365?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7811710367715381365/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/terminate-socket-without-terminating.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7811710367715381365'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7811710367715381365'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/terminate-socket-without-terminating.html' title='Terminate a socket without terminating a process:HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5494562050079996335</id><published>2009-05-06T08:40:00.000-07:00</published><updated>2009-05-06T09:09:47.585-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Crontab : HP-UX</title><content type='html'>Many times admins forget the field order of the crontab file&lt;br /&gt;and alway reference the man pages over-and-over.&lt;br /&gt;&lt;br /&gt;Make your life easy. Just put the field definitions in your crontab file&lt;br /&gt;and comment (#) the lines out so the crontab file ignores it.&lt;br /&gt;&lt;br /&gt;# minute (0-59),&lt;br /&gt;# |      hour (0-23),&lt;br /&gt;# |      |       day of the month (1-31),&lt;br /&gt;# |      |       |       month of the year (1-12),&lt;br /&gt;# |      |       |       |       day of the week (0-6 with 0=Sunday).&lt;br /&gt;# |      |       |       |       |       commands&lt;br /&gt;3       2       *       *       0,6     /some/command/to/run&lt;br /&gt;3       2       *       *       1-5     /another/command/to/run&lt;br /&gt;&lt;br /&gt;export EDITOR=vi ;to specify a editor to open crontab file.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;/span&gt;crontab -e     Edit your crontab file, or create one if it doesn't already exist.&lt;br /&gt;crontab -l      Display your crontab file.&lt;br /&gt;crontab -r      Remove your crontab file.&lt;br /&gt;crontab -v      Display the last time you edited your crontab file. (This option is only available on a few systems.)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Here are some examples.&lt;br /&gt;&lt;br /&gt;0 0 * * *          -- midnight every day&lt;br /&gt;0 0 * * 1-5        -- midnight every weekday&lt;br /&gt;0 0 1,15 * *       -- midnight on 1st and 15th of month&lt;br /&gt;0 0 1 * 5          -- midnight on 1st of month and every Friday&lt;br /&gt;&lt;br /&gt;Crontab example:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;&lt;span style="font-weight: 400;"&gt;A line in crontab file like below  removes the tmp files from /home/someuser/tmp  each day at 6:30 PM.&lt;/span&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-weight: 400;"&gt;&lt;span style="font-family:Times New Roman;font-size:100%;"&gt;30     18      *     *     *          rm /home/someuser/tmp/* &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;br /&gt;Cheers !!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5494562050079996335?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5494562050079996335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/crontab-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5494562050079996335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5494562050079996335'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/crontab-hp-ux.html' title='Crontab : HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5784965109885686203</id><published>2009-05-03T10:29:00.000-07:00</published><updated>2009-05-03T10:46:03.894-07:00</updated><title type='text'>Pacquiao Blows Out Hatton in Two</title><content type='html'>&lt;a href="http://4.bp.blogspot.com/_6Q8p09MLCy8/Sf3Xm08BuII/AAAAAAAAADw/GJorTe7mv4Q/s1600-h/000_Was2314733-L-400-300.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5331654595921950850" style="FLOAT: left; MARGIN: 0px 10px 10px 0px; WIDTH: 200px; CURSOR: hand; HEIGHT: 150px" alt="" src="http://4.bp.blogspot.com/_6Q8p09MLCy8/Sf3Xm08BuII/AAAAAAAAADw/GJorTe7mv4Q/s200/000_Was2314733-L-400-300.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p align="center"&gt;&lt;a href="http://3.bp.blogspot.com/_6Q8p09MLCy8/Sf3W_02gArI/AAAAAAAAADo/EqmDCec1u7o/s1600-h/000_Was2314733-L-400-300.jpg"&gt;&lt;/a&gt;&lt;/p&gt;&lt;em&gt;Sun, 03 May 2009...&lt;/em&gt;It was two rounds of brutal action and a two round blowout for Filipino sensation Manny “The Pacman” Pacquiao as he walked through, around, and all over Ricky “The Hitman” Hatton (45-2 with 32 KOs).&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5784965109885686203?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5784965109885686203/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/pacquiao-blows-out-hatton-in-two.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5784965109885686203'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5784965109885686203'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/pacquiao-blows-out-hatton-in-two.html' title='Pacquiao Blows Out Hatton in Two'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_6Q8p09MLCy8/Sf3Xm08BuII/AAAAAAAAADw/GJorTe7mv4Q/s72-c/000_Was2314733-L-400-300.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4561978764815758757</id><published>2009-05-02T13:57:00.000-07:00</published><updated>2009-05-02T13:58:58.390-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX How can I disable non-root logins?</title><content type='html'>Add the following to /etc/profile, then 'touch /etc/nologin'; this will disable all new logins, except by root:&lt;br /&gt;&lt;br /&gt;uid=`id -u`&lt;br /&gt; if [ -f /etc/nologin -a $uid -ne 0 ]; then&lt;br /&gt;echo "Sorry, no logins allowed; try later!"&lt;br /&gt;sleep 5&lt;br /&gt;exit 0&lt;br /&gt;fi&lt;br /&gt;&lt;br /&gt;::gudluck!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4561978764815758757?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4561978764815758757/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/hp-ux-how-can-i-disable-non-root-logins.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4561978764815758757'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4561978764815758757'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/hp-ux-how-can-i-disable-non-root-logins.html' title='HP-UX How can I disable non-root logins?'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6739132822885213228</id><published>2009-05-01T12:15:00.000-07:00</published><updated>2009-05-01T12:18:36.415-07:00</updated><title type='text'>Root Lost Password : HP-UX... ;)</title><content type='html'>... but... what if your system is trusted mode???&lt;br /&gt;..you can use some steps of this procedure if you want re-stablish a password than can not be set by cyclic problems...&lt;br /&gt;&lt;br /&gt;The steps to reactivate the root account:&lt;br /&gt;1. Boot the system in to single user mode.&lt;br /&gt;2. Mount /usr file systems.# mount /usr&lt;br /&gt;Note: The file system might need file system check (fsck) before mounting.&lt;br /&gt;3. Systems that are not using Trusted System security skip to step #4.For Trusted Systems (presence of a /tcb directory), follow these additionalsteps:&lt;br /&gt;a) Use the following command to reactivate the 'root' account:# /usr/lbin/modprpw -k root&lt;br /&gt;b) Use the 'modprpw' command to null the password, so that the passwd commanddoes not prompt for the old password.&lt;br /&gt;10.x# /usr/lbin/modprpw -w "" root&lt;br /&gt;11.x# /usr/sam/lbin/usermod.sam -F -p "" root&lt;br /&gt;NOTE: To untrust the system, use: tsconvert -r&lt;br /&gt;4. Change the root account password.# passwd root&lt;br /&gt;5. Boot the system in to multi user mode.&lt;br /&gt;&lt;br /&gt;fyi la....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6739132822885213228?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6739132822885213228/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/05/root-lost-password-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6739132822885213228'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6739132822885213228'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/05/root-lost-password-hp-ux.html' title='Root Lost Password : HP-UX... ;)'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5577138636939833105</id><published>2009-04-29T09:01:00.000-07:00</published><updated>2009-04-29T09:04:34.267-07:00</updated><title type='text'>HP-UX : Extract one file from a make_tape_Recovery</title><content type='html'>&lt;div class="content"&gt;     &lt;p&gt;To check the contents of the recovery tape ( assuming the tar archive and 0m/n as device file )&lt;br /&gt;# mt -f /dev/rmt/0mn rew&lt;br /&gt;# mt -f /dev/rmt/0mn fsf 1&lt;br /&gt;# tar tvf /dev/rmt/0m&lt;/p&gt; &lt;p&gt;To extract a file from the archive&lt;br /&gt;# mt -f /dev/rmt/0mn rew&lt;br /&gt;# mt -f /dev/rmt/0mn fsf 1&lt;br /&gt;# tar xvf /dev/rmt/0m&lt;/p&gt;&lt;p&gt;:: Don't try this at work :-)&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;   &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5577138636939833105?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5577138636939833105/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/hp-ux-extract-one-file-from.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5577138636939833105'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5577138636939833105'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/hp-ux-extract-one-file-from.html' title='HP-UX : Extract one file from a make_tape_Recovery'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-3264279162276962479</id><published>2009-04-22T10:38:00.000-07:00</published><updated>2009-04-22T10:54:05.456-07:00</updated><title type='text'>HP-UX File Processing</title><content type='html'>&lt;h3&gt;&lt;a name="HDR 6.2"&gt; ::  Viewing contents of a file&lt;/a&gt;&lt;/h3&gt; The &lt;b&gt;cat&lt;/b&gt; (concatenate) command can be used to view the contents of a file. &lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% cat friends&lt;br /&gt;Sally Johnson     123 Ellesmere Lane       Athens        GA  12876   (413)345-8976&lt;br /&gt;Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-8765&lt;br /&gt;Kim Smith         234 Working Street       Hollywood     CA  18765   (678)987-9876&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  You will find on large files that the output of cat will not fit on your screen.   The output will scroll across the screen and you will not be able to view the information.   The &lt;b&gt;more&lt;/b&gt; command is used to display file information in screen sized chunks. If the file is more than one screen long the word -More- followed by the percentage of the file displayed is placed at the bottom of the screen. Press the SpaceBar to see the next screen of the file or press q or &lt;ctrl-c&gt; to quit. It is better to use more if your output is going directly to the screen and to use cat if your output is going to a file or pipe. &lt;p&gt;   &lt;/p&gt;&lt;h3&gt;&lt;a name="HDR 6.3"&gt; ::Pattern Searching&lt;/a&gt;&lt;/h3&gt; The &lt;b&gt;grep&lt;/b&gt; (global regular expression print) command is used to search for a particular  word or phrase in a file.  The format of the grep command is:  &lt;p&gt;  &lt;i&gt;grep [options] string file(s)&lt;/i&gt; &lt;/p&gt;&lt;p&gt;  Where string is the word, phrase or regular expression you want to find, and file is the file to be searched. Lets find all lines that contain the string Sally in  our friends file. &lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% grep Sally friends&lt;br /&gt;Sally Johnson     123 Ellesmere Lane       Athens        GA  12876   (413)345-8976&lt;br /&gt;Sally Miller      510 Epping Way           Hobe Sound    FL  33455   (654)546-4526&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  To find a pattern that is more than one word long, enclose the string within single or  double quotation marks.&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% grep 'Sally Miller' friends&lt;br /&gt;Sally Miller      510 Epping Way           Hobe Sound    FL  33455   (654)546-4526&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  So far we have seen how grep prints all lines which contain the given character string.   The &lt;b&gt;-v&lt;/b&gt; (invert) option instructs grep to print all lines except those which match the string.   This is usefull when you want to remove lines from a file.  Lets find all the lines in a file  that do not contain the string Sally and place the output into the friends.new file.&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% grep -v 'Sally' &gt; friends.new&lt;br /&gt;% more friends.new&lt;br /&gt;Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-8765&lt;br /&gt;Kim Smith         234 Working Street       Hollywood     CA  18765   (678)987-9876&lt;br /&gt;Eddy Murphy       210 W. Hollywood         Los Angles    CA  90210   (876)238-9987&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  The grep command can be used with regular expressions to match a pattern.  &lt;pre&gt;% grep '26$' friends&lt;br /&gt;Sally Miller      510 Epping Way           Hobe Sound    FL  33455   (654)546-4526&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  This will find all the lines that end in "26". &lt;p&gt;  The grep command can search for a string in groups of files.  When it finds a pattern that  matches in more that one file, it prints the name of the file, followed by a colon before  the line matching the pattern. The &lt;b&gt;-i&lt;/b&gt; (ignore) option to grep will ignore the case.&lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% grep -i bob *&lt;br /&gt;friends:Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-8765&lt;br /&gt;friends.new:Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-8765&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  &lt;h3&gt;&lt;a name="HDR 6.4"&gt; ::  Comparisons between files&lt;/a&gt;&lt;/h3&gt;  The &lt;b&gt;cmp&lt;/b&gt; (compare) command is used to compare any two files, including executable files. The &lt;b&gt;diff&lt;/b&gt; (differential file operator) command is used to display the differences between text files or directories. The order of the diff command is important. The format of the diff command is: &lt;p&gt;  &lt;i&gt;diff [options] old_file new_file&lt;/i&gt; &lt;i&gt;diff [options] old_dir new_dir&lt;/i&gt; &lt;/p&gt;&lt;p&gt;  The diff command will display a listing of the editing actions that need to be performed  on the old file to change it into the new file.  The three ways in which diff indicated  changes to a file are a (lines are added), c (lines are changed) and d(lines are deleted).   Lets find the difference between the friends and the friends.new files.&lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% diff friends friends.new&lt;br /&gt;1d0&lt;br /&gt;&lt; Sally Johnson     123 Ellesmere Lane       Athens        GA  12876   (413)345-8976&lt;br /&gt;4d2&lt;br /&gt;&lt; Sally Miller      510 Epping Way           Hobe Sound    FL  33455   (654)546-4526&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  This tells us that deletions need to be made to the friends file to get the friend.new file.  The 1d0 tells us that line 1 of the friend file has to be deleted, and the 4d2 tells us that  line 4 of the friend file has to be deleted.&lt;p&gt;  The output of diff can be sent to the &lt;b&gt;ed&lt;/b&gt; command to convert the first file into the second. In fact, the using diff with the -e option will produce output suitable for input to the ed command.   &lt;/p&gt;&lt;pre&gt;% diff -e friends friends.new &gt; ed.script&lt;br /&gt;% ( cat ed.script ; echo w ) | ed friends&lt;br /&gt;415&lt;br /&gt;249&lt;br /&gt;% diff friends friends.new&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  If you eliminated the echo w command, ed would read the input from the cat ed.script,  perform the operation and then exit. With the echo w command you are telling ed to write  to the file friends. The semicolon between the cat ed.script and echo w tells the shell  that these are separate commands.  &lt;p&gt;  &lt;/p&gt;&lt;h3&gt;&lt;a name="HDR 6.5"&gt; ::  Counting things in a file&lt;/a&gt;&lt;/h3&gt; The &lt;b&gt;wc&lt;/b&gt; (word count) command counts the number of lines, words, and characters in a file. This is especially usefull for counting the number of lines of source code in a program orthe number of words in a document.&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% wc friends&lt;br /&gt;3 28 249 friends&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  The first number indicates the number of lines, followed by the number of words and the  number of characters(including newlines). &lt;p&gt;   &lt;/p&gt;&lt;h3&gt;&lt;a name="HDR 6.6"&gt; ::  Modifying character strings&lt;/a&gt;&lt;/h3&gt; The &lt;b&gt;sed&lt;/b&gt; (stream editor) command reads lines, one by one, from an input file and  applies a set of editing commands to the lines.  The sed command is like grep except that it allows you to make changes to file. The format of the sed command is:  &lt;p&gt;  &lt;i&gt;sed [options] action/string/newstring file(s)&lt;/i&gt; &lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% sed "s/(201)962-8765/(201)962-9999/" friends&lt;br /&gt;Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-9999&lt;br /&gt;Kim Smith         234 Working Street       Hollywood     CA  18765   (678)987-9876&lt;br /&gt;Eddy Murphy       210 W. Hollywood         Los Angles    CA  90210   (876)238-9987&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt;  The &lt;b&gt;s&lt;/b&gt; (substitute) option tells sed to substitute. We have changed the phone number. If we wanted to save these changes we would redirect the output to a file. &lt;p&gt;  The sed command also accepts regular expressions. &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;pre&gt;% sed '/^$/d' hello.cc&lt;br /&gt;#include &lt;iostream.h&gt;&lt;br /&gt;main() {&lt;br /&gt;cout &lt;&lt; "Hello, cruel world! \n";&lt;br /&gt;}&lt;br /&gt;%&lt;br /&gt;&lt;/iostream.h&gt;&lt;/pre&gt;  The &lt;b&gt;d&lt;/b&gt; option is tells sed to delete. In this case we are using a regular  expression to tell sed to remove all blank lines from our hello.cc file. &lt;p&gt;  &lt;/p&gt;&lt;h3&gt;&lt;a name="HDR 6.7"&gt; ::  Sorting data in files&lt;/a&gt;&lt;/h3&gt; The &lt;b&gt;sort&lt;/b&gt; command is used to sort the contents of a file into alphabetic or numerical order.  &lt;p&gt;  &lt;/p&gt;&lt;pre&gt;% sort +1 friends&lt;br /&gt;Bob Beamon        913 Mockingbird Lane     Annapolis     MD  17701   (201)962-8765&lt;br /&gt;Eddy Murphy       210 W. Hollywood         Los Angles    CA  90210   (876)238-9987&lt;br /&gt;Kim Smith         234 Working Street       Hollywood     CA  18765   (678)987-9876&lt;br /&gt;%&lt;br /&gt;&lt;/pre&gt; The +1 option tells sort to use the second field of the sort key rather than the beginning of the line. Fields are separated by whitespace, however you can use the -t option to separate by any character. The -n options tells sort to sort a numeric key, otherwise it will sort by the corresponding ASCii values. &lt;p&gt;  Another command that is usefull when you are sorting is the &lt;b&gt;uniq&lt;/b&gt; command. The uniq command will write only one instance of each line, whereas the sort will print every line. Usually the output of the sort command is piped to the uniq command.&lt;/p&gt;&lt;p&gt;  &lt;/p&gt;&lt;hr /&gt;  ::enjoy life...&lt;a href="http://www.cs.trinity.edu/Other_Attractions/unix/chapter7.html"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-3264279162276962479?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/3264279162276962479/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/blog-post.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3264279162276962479'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3264279162276962479'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/blog-post.html' title='HP-UX File Processing'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6245829279766834049</id><published>2009-04-20T13:44:00.000-07:00</published><updated>2009-04-20T13:54:06.238-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Patch Cleanup HP-UX</title><content type='html'>There is a utility under /usr/sbin and it is called 'cleanup'. It provides the following functionality for 10.X patch management:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;/usr/sbin/cleanup&lt;/strong&gt;&lt;br /&gt;Remove superseded patches from the system to reclaim space in /var.&lt;br /&gt;Queries the user re trimming SD logfiles as well.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;/usr/sbin/cleanup&lt;/strong&gt; &lt;strong&gt;-F &lt;/strong&gt;&lt;br /&gt;Forces the removal of ALL Patch backups to reclaim space in /var (you cannot back out a patch out after this).&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;/usr/sbin/cleanup -t&lt;/strong&gt;&lt;br /&gt;Trim SD logfiles /var/adm/sw*.log to the most recent 5 entries.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;/usr/sbin/cleanup -i&lt;/strong&gt;&lt;br /&gt;Remove overwritten patch entries from the SDUX IPD.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;/usr/sbin/cleanup -d&lt;/strong&gt; &lt;strong&gt;[absolute path to software depot]&lt;/strong&gt;&lt;br /&gt;Removes superseded patches from a software depot.&lt;br /&gt;&lt;br /&gt;:: :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6245829279766834049?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6245829279766834049/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/setting-up-routing-in-hp-ux.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6245829279766834049'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6245829279766834049'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/setting-up-routing-in-hp-ux.html' title='Patch Cleanup HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4103900014736560076</id><published>2009-04-19T07:54:00.000-07:00</published><updated>2009-04-19T08:03:31.949-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX:Dynamically Extend / and (or) /stand File Systems</title><content type='html'>Article on how to dynamically extend / and (or) /stand file systems : &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.symmetricwebsites.com/articles/HP-UX/hpuxDynamicallyExtendSlashAndOrStand.php"&gt;http://www.symmetricwebsites.com/articles/HP-UX/hpuxDynamicallyExtendSlashAndOrStand.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;::enjoy&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4103900014736560076?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4103900014736560076/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/hp-uxdynamically-extend-and-or-stand.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4103900014736560076'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4103900014736560076'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/hp-uxdynamically-extend-and-or-stand.html' title='HP-UX:Dynamically Extend / and (or) /stand File Systems'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7989623504596010119</id><published>2009-04-18T09:21:00.000-07:00</published><updated>2009-04-18T09:29:46.917-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>change IP's Addresses of  cluster servers.</title><content type='html'>I followed these steps when I had change IP Address of my cluster servers.&lt;div class="content"&gt; &lt;p&gt;Before you change the IP Address of your Server you must have all new ip's&lt;br /&gt;when you want to go ahead.(of course..:-))&lt;br /&gt;ex. Server ip and package ip.&lt;/p&gt; &lt;p&gt;Take backup of these directory and files&lt;/p&gt; &lt;p&gt;1./etc/cmcluster&lt;br /&gt;2./etc/hosts&lt;br /&gt;3./etc/rc.config.d/netconf&lt;/p&gt; &lt;p&gt;modify these files&lt;br /&gt;1./etc/hosts # modify ipaddress&lt;br /&gt;2./etc/rc.config.d/netconf # modify ipaddress and subnet&lt;br /&gt;3./etc/cmcluster/cluster.conf # modify HEARTBEAT_IP&lt;/p&gt; &lt;p&gt;4./etc/cmcluster/packge/cipackage.conf # change SUBNET XX.XX.XX.XX&lt;br /&gt;5./etc/cmcluster/packge/dbpackage.conf # change SUBNET XX.XX.XX.XX&lt;/p&gt; &lt;p&gt;6./etc/cmcluster/packge/cipackage.cntl # change IP[0]=XX.XX.XX.XX&lt;br /&gt;change SUBNET[0]=XX.XX.XX.XX&lt;/p&gt; &lt;p&gt;7./etc/cmcluster/packge/cipackage.cntl # change IP[0]=XX.XX.XX.XX&lt;br /&gt;change SUBNET[0]=XX.XX.XX.XX&lt;/p&gt; &lt;p&gt;8.rcp cluster.conf into /etc/cmcluster&lt;br /&gt;rcp cluster.conf into other node same location&lt;/p&gt; &lt;p&gt;9.rcp these conf,cntl and config file into /etc/cmcluster/packge/&lt;br /&gt;rcp ciVRP.conf,dbVRP.conf,ciVRP.cntl,dbVRP.cntl&lt;/p&gt; &lt;p&gt;10. restart the net for new ip&lt;br /&gt;/sbin/init.d/net stop&lt;br /&gt;/sbin/inti.d/net start&lt;/p&gt; &lt;p&gt;check all ipaddress which we have changed and check with linkloop also&lt;/p&gt; &lt;p&gt;11.cmcheckconf -v -C /etc/cmcluster/cluster.conf -P cipackage.conf -P dbpackage.conf&lt;br /&gt;it should come with no error then go for the next step&lt;/p&gt; &lt;p&gt;12.cmapplyconf -v -C /etc/cmcluster/cluster.conf -P cipackage.conf -P dbpackage.conf&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;warning : ninenok is not liable if its not working for you!&lt;br /&gt;pls. pray before doing this.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;F.&lt;br /&gt;&lt;/p&gt;   &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7989623504596010119?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7989623504596010119/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/change-ips-addresses-of-cluster-servers.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7989623504596010119'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7989623504596010119'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/change-ips-addresses-of-cluster-servers.html' title='change IP&apos;s Addresses of  cluster servers.'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6135964508250341941</id><published>2009-04-18T08:46:00.000-07:00</published><updated>2009-04-18T09:05:12.493-07:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_6Q8p09MLCy8/Sen50KNvgXI/AAAAAAAAADA/O6HmxcGjI9Q/s1600-h/pic478003001189476910qw6.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 132px; height: 200px;" src="http://3.bp.blogspot.com/_6Q8p09MLCy8/Sen50KNvgXI/AAAAAAAAADA/O6HmxcGjI9Q/s200/pic478003001189476910qw6.jpg" alt="" id="BLOGGER_PHOTO_ID_5326062708832829810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Been busy the past months and now I'm back again..Thanks for visiting my blog, and rest assured I'll share whatever stuff I can dig with relation to unix, etc.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:georgia, bookman old style, palatino linotype, book antiqua, palatino, trebuchet ms, helvetica, garamond, sans-serif, arial, verdana, avante garde, century gothic, comic sans ms, times, times new roman, serif;"&gt;&lt;span style="font-style: italic; color: rgb(0, 153, 0);"&gt;Treat your password like your toothbrush.  Don't let anybody else use it, and get a new one every six months.  ~Clifford Stoll&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6135964508250341941?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6135964508250341941/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/04/been-busy-past-months-and-now-im-back.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6135964508250341941'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6135964508250341941'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/04/been-busy-past-months-and-now-im-back.html' title=''/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_6Q8p09MLCy8/Sen50KNvgXI/AAAAAAAAADA/O6HmxcGjI9Q/s72-c/pic478003001189476910qw6.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6960113518981245050</id><published>2009-02-19T07:19:00.000-08:00</published><updated>2009-02-19T07:20:30.068-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX: How Do I configure routing or add route?</title><content type='html'>&lt;span style="font-family: arial;font-size:100%;" &gt;You can use route command to configure routing. Syntax is as follows:&lt;br /&gt;route add net {network-address} netmask {subnet} {router-address}&lt;br /&gt;&lt;br /&gt;Let us assume your router address is 192.168.1.254 and network ID is 192.168.1.0/24, then you can type route command as follows:&lt;br /&gt;# route add net 192.168.1.0 netmask 255.255.255.0 192.168.1.254&lt;br /&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;br /&gt;To add a default route:&lt;br /&gt;# route add default 192.168.1.254&lt;br /&gt;&lt;br /&gt;Verify that (display) routing table is updated (display routing table):&lt;br /&gt;# netstat -nr&lt;br /&gt;&lt;br /&gt;Test it i.e. try to ping or send nslookup request:&lt;br /&gt;# ping mycorp.com&lt;br /&gt;&lt;br /&gt;To flush all routing entries use command:&lt;br /&gt;# route -f&lt;br /&gt;&lt;br /&gt;However if I reboot HPUX box then above routing entries gets removed. To pick up your setting upon each reboot your need to configure Routes in HPUX networking configuration file - /etc/rc.config.d/netconf. To add default router/gateway 192.168.1.254:&lt;br /&gt;# vi /etc/rc.config.d/netconf&lt;br /&gt;&lt;br /&gt;Add or modify following entries&lt;br /&gt;&lt;br /&gt;ROUTE_DESTINATION[0]="default"&lt;br /&gt;ROUTE_MASK[0]=""&lt;br /&gt;ROUTE_GATEWAY[0]="192.168.1.254"&lt;br /&gt;ROUTE_COUNT[0]="1"&lt;br /&gt;ROUTE_ARGS[0]=""&lt;br /&gt;&lt;br /&gt;Reboot HP-UX system/server to take effect&lt;br /&gt;# shutdown -ry 0&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6960113518981245050?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6960113518981245050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/hp-ux-how-do-i-configure-routing-or-add.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6960113518981245050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6960113518981245050'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/hp-ux-how-do-i-configure-routing-or-add.html' title='HP-UX: How Do I configure routing or add route?'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7845017355695959572</id><published>2009-02-11T05:00:00.000-08:00</published><updated>2009-02-11T05:06:12.214-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><title type='text'>Finding file and directories : HP-UX</title><content type='html'>&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;The &lt;/span&gt;&lt;b style="font-family: arial;"&gt;find&lt;/b&gt;&lt;span style="font-family:arial;"&gt; command recursively descends a directory locating all the  files that meet the criteria given on the command line.  Without any options the  find command will take no action on the files it finds, so the &lt;/span&gt;&lt;b style="font-family: arial;"&gt;-print&lt;/b&gt;&lt;span style="font-family:arial;"&gt; option is used  to write the found files to standard output.   The format of the find command is: &lt;/span&gt;&lt;/span&gt;&lt;p  style="font-family:arial;"&gt;  &lt;span style="font-size:100%;"&gt;&lt;i&gt;find path_name_list [options]&lt;/i&gt;&lt;/span&gt; &lt;/p&gt;&lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;  Where path_name_list is one or more directories.   &lt;/span&gt;&lt;/p&gt;&lt;pre  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;% find . -name Makefile -print&lt;br /&gt;/home/huron2/admin/scot/tutorial/Makefile&lt;br /&gt;%&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;   The . is a &lt;/span&gt;&lt;a style="font-family: arial;" href="http://www.cs.trinity.edu/Other_Attractions/unix/chapter4.html#Table4.2"&gt; &lt;/a&gt;&lt;span style="font-family:arial;"&gt;directory abbreviation&lt;/span&gt;&lt;span style="font-family:arial;"&gt; for the current  directory. The -name option specifies that only files with the given name should be  found. The name option can include &lt;/span&gt;&lt;span style="font-family:arial;"&gt; wildcard character:&lt;/span&gt;&lt;span style="font-family:arial;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;pre  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;% find . -name "core*" -size +3 -mtime +7 -exec rm -i {} \; -print&lt;br /&gt;/home/huron2/admin/scot/core: ? (y/n) y&lt;br /&gt;/home/huron2/admin/scot/core&lt;br /&gt;%&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;   &lt;pre  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;a name="Table8.2"&gt;==&gt;Some Options to Find&lt;/a&gt;&lt;br /&gt;--------------------------------------------------------------------&lt;br /&gt;-name file Find files named file&lt;br /&gt;&lt;br /&gt;-size n         Find files that contain size...&lt;br /&gt;                n  exactly n blocks (1 block = 512 bytes)&lt;br /&gt;           +n  more than n blocks&lt;br /&gt;           -n  less than n blocks&lt;br /&gt;&lt;br /&gt;-mtime n        Find files that were modified&lt;br /&gt;                n  exactly n days ago&lt;br /&gt;           +n  more than n days ago&lt;br /&gt;           -n  less than n days ago&lt;br /&gt;&lt;br /&gt;-exec cmd Execute command cmd on each file&lt;br /&gt;&lt;br /&gt;-type type   Find files that match the type&lt;br /&gt;     f  ordinary file&lt;br /&gt;     d  directory&lt;br /&gt;     b  block device&lt;br /&gt;     c  character device&lt;br /&gt;     p  named pipe&lt;br /&gt;--------------------------------------------------------------------&lt;br /&gt;&lt;/span&gt;&lt;/pre&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:arial;"&gt;  Actions can be taken when files are found by using the &lt;/span&gt;&lt;b style="font-family: arial;"&gt;-exec&lt;/b&gt;&lt;span style="font-family:arial;"&gt; option. The -exec option uses the {} (left curly-brace right curly-brace) syntax to specify the current file that find has found. The exec command ends with the \; syntax. If we did not have the print option at the end we would not get a confirmation the file had been removed.&lt;br /&gt;&lt;br /&gt;...ciao...&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7845017355695959572?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7845017355695959572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/finding-file-and-directories-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7845017355695959572'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7845017355695959572'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/finding-file-and-directories-hp-ux.html' title='Finding file and directories : HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-5592700162573321557</id><published>2009-02-10T05:06:00.000-08:00</published><updated>2009-02-10T05:12:05.963-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>How do I start hpux network service?</title><content type='html'>&lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;Use following command to start HP-UX network service:&lt;/span&gt;&lt;/p&gt; &lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;/etc/init.d/net start&lt;/strong&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;strong&gt;/sbin/init.d/net start&lt;/strong&gt;&lt;br /&gt;Please note that your network configuration file is &lt;strong&gt;/etc/rc.config.d/netconf&lt;/strong&gt; . Here is my sample /etc/rc.config.d/netconf file:&lt;/span&gt; &lt;/p&gt; &lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;# cat /etc/rc.config.d/netconf&lt;/strong&gt;&lt;br /&gt;Output:&lt;br /&gt;&lt;i&gt;HOSTNAME=deephpux                      &lt; --change hostname here OPERATING_SYSTEM=HP-UX LOOPBACK_ADDRESS=127.0.0.1 INTERFACE_NAME[0]=lan0 IP_ADDRESS[0]=192.168.1.100        &lt;--change IP address here SUBNET_MASK[0]=255.255.255.0  &lt;--change subnet mask here BROADCAST_ADDRESS[0]="" DHCP_ENABLE[0]="0"                    &lt;--Do you wanna DHCP? set 1 to use DHCP &lt;/i&gt;&lt;/span&gt; &lt;/p&gt; &lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;You can also set IP address using ifconfig command:&lt;br /&gt;&lt;strong&gt;# ifconfig lan0 192.168.1.200 netmask 255.255.255.0 up &lt;/strong&gt;&lt;/span&gt; &lt;/p&gt; &lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;See or get current IP address information with ifconfig command:&lt;br /&gt;&lt;strong&gt;# ifconfig lan0&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p  style="font-family:arial;"&gt;&lt;span style="font-size:100%;"&gt;&lt;strong&gt;......&lt;/strong&gt;Life is short, enjoy every moment!&lt;/span&gt; &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-5592700162573321557?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/5592700162573321557/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/how-do-i-start-hpux-network-service.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5592700162573321557'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/5592700162573321557'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/how-do-i-start-hpux-network-service.html' title='How do I start hpux network service?'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-2028208065360339437</id><published>2009-02-08T08:39:00.000-08:00</published><updated>2009-02-08T08:43:01.945-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>LVM for HP-UX</title><content type='html'>&lt;pre style="font-family: arial;"&gt;&lt;span style="font-size:100%;"&gt;The following are an overview of how to&lt;br /&gt;create volumes in LVM for HP-UX.&lt;br /&gt;&lt;br /&gt;1) Add your disks, and verify their device&lt;br /&gt;names.  The the command:&lt;br /&gt;&lt;br /&gt;# ioscan -fnC disk&lt;br /&gt;&lt;br /&gt;2) Next, place the disks you wish to use for&lt;br /&gt;volumes under LVM control.  This&lt;br /&gt;is done by converting a disk into&lt;br /&gt;a "Physical Volume" (pv).  The command&lt;br /&gt;used is:&lt;br /&gt;&lt;br /&gt;# pvcreate &lt;devpath&gt;&lt;br /&gt;&lt;br /&gt;example: #pvcreate /dev/rdsk/c1t0d0&lt;br /&gt;&lt;br /&gt;Note: You can use the "-f" option&lt;br /&gt;to "force" the creation, which keeps&lt;br /&gt;LVM for asking for verification...&lt;br /&gt;the "Would you like to proceed? (y/n)"&lt;br /&gt;&lt;br /&gt;3) Now, create a device path for the volume group.&lt;br /&gt;Do this by creating a directory in /dev&lt;br /&gt;by the name of the volume group.&lt;br /&gt;&lt;br /&gt;# mkdir /dev/&lt;vgname&gt;&lt;br /&gt;&lt;br /&gt;example: # mkdir /dev/vg01&lt;br /&gt;&lt;br /&gt;4) Then create a "group node" in that directory.&lt;br /&gt;The process looks like this:&lt;br /&gt;&lt;br /&gt;# mknod /dev/&lt;vgname&gt;/group c 64 &lt;minornum&gt;&lt;br /&gt;&lt;br /&gt;example: # mknod /dev/vg01/group c 64 0x030000&lt;br /&gt;&lt;br /&gt;Note: The minor number follows the following patern:&lt;br /&gt; 0x030000&lt;br /&gt; 0x040000&lt;br /&gt; 0x050000&lt;br /&gt; .....&lt;br /&gt;&lt;br /&gt;5) You can now create your Volume Group (vg) to which&lt;br /&gt;the Physical Volumes will be assigned.  A VG&lt;br /&gt;is similar to a Disk Group in Veritas.  The&lt;br /&gt;format is:&lt;br /&gt;&lt;br /&gt;# vgcreate /dev/&lt;vgname&gt; &lt;pvpath&gt; &lt;pvpath&gt; ....&lt;br /&gt;&lt;br /&gt;example: # vgcreate /dev/vg01 /dev/dsk/c1t0d0&lt;br /&gt;&lt;br /&gt;Note: The PV DevPaths don't use a partition&lt;br /&gt;designation (sX).  You can specify as many PV's&lt;br /&gt;to add to a VG as you like on this one line.&lt;br /&gt;&lt;br /&gt;6) Next create a Logical Volume (lv).  This is the "volume"&lt;br /&gt;itself, which will contain the file system.&lt;br /&gt;&lt;br /&gt;# lvcreate /dev/&lt;vgname&gt;&lt;br /&gt;&lt;br /&gt;example: # lvcreate /dev/vg01&lt;br /&gt;&lt;br /&gt;Note: This will create a 0 length volume.  It&lt;br /&gt;will also create two new files in the vg dev&lt;br /&gt;directory: lvol1 and rlvol1.  Being: Logical&lt;br /&gt;Volume 1, and Raw Logical Volume 1.  You can&lt;br /&gt;have multiple LV's per VG.&lt;br /&gt;&lt;br /&gt;Note(2): lvcreate with no options will create&lt;br /&gt;a concat volume.  To create striped volumes,&lt;br /&gt;use the options:&lt;br /&gt; -i &lt;stripes&gt;  This is the Vx equiv to column numbers.&lt;br /&gt; -I &lt;stripesize&gt; This is the Vx equiv to a stripe width in kb.&lt;br /&gt; -m &lt;mirror&gt; Number of mirrors. Can be "1" or "2".&lt;br /&gt; -L &lt;lv&gt;  The size of the new volume in megabytes.&lt;br /&gt; &lt;br /&gt;7) Now you can extend to Logical Volume to the length&lt;br /&gt;you desire.  To extend to it's max, do the&lt;br /&gt;following:&lt;br /&gt;&lt;br /&gt;a) Run the command: # vgdisplay &lt;vgpath&gt;&lt;br /&gt; example: # vgdisplay /dev/vg01&lt;br /&gt;&lt;br /&gt;b) Look for the two lines: "Total PE" and "PE Size"&lt;br /&gt;PE stands for "Physical Extent".  If you&lt;br /&gt;multiply the number of "Total PE" by&lt;br /&gt;"PE Size" you will get the total size of&lt;br /&gt;the disk that is usable, usually in megabytes.&lt;br /&gt;&lt;br /&gt;NOTE: LVM breaks PV's into Physical Extents.&lt;br /&gt;These are like blocks in LVM.  PE Size is&lt;br /&gt;the size of each PE.  Total PE is the&lt;br /&gt;number of PE's avalible to the volume group.&lt;br /&gt;The "PE Size" is variable, default is "4M"&lt;br /&gt;but it can be reset to any desired size,&lt;br /&gt;during VG creation.  The options avable to&lt;br /&gt;"vgcreate" are:&lt;br /&gt;-e &lt;maxpe&gt; Max Num of PE's for this VG. Default: 1016&lt;br /&gt;   Max PE cannot exceed: 65535&lt;br /&gt;-l &lt;maxlv&gt;  Max Num of LV's for this VG. Default: 255&lt;br /&gt;-p &lt;maxpv&gt; Max Num of PV's for this VG. Default: 16&lt;br /&gt;   Max PV cannot exceed: 255&lt;br /&gt;-s &lt;pesize&gt;   Size of each PE for this VG. Default: 4&lt;br /&gt;   PE Size must be a power of 2.&lt;br /&gt;-x &lt;extensiblity&gt; Can the VG be grown? Default: y&lt;br /&gt;&lt;br /&gt;c) With the number you got by multiplying "Total PE" by "PE Size"&lt;br /&gt;you have the total lenth of the VG.  To make all disks&lt;br /&gt;in the VG be used by 1 LV, and to use all the space,&lt;br /&gt;extend the Logical Volume with the command:&lt;br /&gt;&lt;br /&gt;# lvextend -L &lt;length&gt; &lt;lvdevpath&gt;&lt;br /&gt;&lt;br /&gt;example: # lvextend -L 3200 /dev/vg01/lvol1&lt;br /&gt;&lt;br /&gt;This would extend VG01's LV 1 out to (NOT by) 3.2G.&lt;br /&gt;Remember the size is defaulted to Megabytes.&lt;br /&gt;&lt;br /&gt;8) You can now create your filesystem with:&lt;br /&gt;&lt;br /&gt;# newfs -F &lt;fs&gt; &lt;raw_lvdevpath&gt;&lt;br /&gt;&lt;br /&gt;example: # newfs -F vxfs /dev/vg01/rlvol1&lt;br /&gt;&lt;br /&gt;9) Now mount the filesystem like usual:&lt;br /&gt;&lt;br /&gt;# mount /dev/vg01/lvol1 /mydatavolume&lt;br /&gt;&lt;br /&gt;Done!&lt;br /&gt;&lt;/raw_lvdevpath&gt;&lt;/fs&gt;&lt;/lvdevpath&gt;&lt;/length&gt;&lt;/extensiblity&gt;&lt;/pesize&gt;&lt;/maxpv&gt;&lt;/maxlv&gt;&lt;/maxpe&gt;&lt;/vgpath&gt;&lt;/lv&gt;&lt;/mirror&gt;&lt;/stripesize&gt;&lt;/stripes&gt;&lt;/vgname&gt;&lt;/pvpath&gt;&lt;/pvpath&gt;&lt;/vgname&gt;&lt;/minornum&gt;&lt;/vgname&gt;&lt;/vgname&gt;&lt;/devpath&gt;&lt;/span&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-2028208065360339437?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/2028208065360339437/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/lvm-for-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2028208065360339437'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2028208065360339437'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/lvm-for-hp-ux.html' title='LVM for HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-3216542488566986098</id><published>2009-02-06T07:18:00.000-08:00</published><updated>2009-02-06T07:31:59.527-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX  LVM listing</title><content type='html'>&lt;pre&gt;&lt;span style="font-family:arial;"&gt;- Monitor LVM with the following commands:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  bdf : Similar to a Solaris style "df -k" output.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  pvdisplay :Display PV Information&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  vgdisplay :Display VG Information&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  lvdisplay  :Display LV Information&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; - Remove LVM Objects with the commands:&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  pvremove: Removes a PV Device (ie: /dev/dsk/c0t1..)&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  vgreduce : Remove a PV from a VG Binding&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    use as: vgreduce /dev/vg01 /dev/dsk/c0t1d0&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  vgremove : Removes a VG, only done when there&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    is only ONE disk left in the VG.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  lvremove Removes a LV.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;   To remove a complete volume you must unmount the fs, then&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;   remove the LV, then reduce the VG to all but one disk.  Then&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;   remove the VG.  Then you only need to remove each PV untill&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;   you have normal disks again, not under LVM control.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; &lt;/span&gt; &lt;span style="font-family:arial;"&gt;&lt;span style="font-family: monospace;"&gt;&lt;br /&gt;&lt;/span&gt;- Here's a list of commands:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; ----VG-----&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgcfgbackup   &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgchange      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgcreate      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgexport      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgimport      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgremove&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgcfgrestore  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgchgid       &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgdisplay     &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgextend      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgreduce      &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; vgscan&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; ---LV----&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvchange    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvdisplay   &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvlnboot    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvreduce    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvrmboot&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvcreate    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvextend    &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvmmigrate  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; lvremove&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; ---PV----&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvchange   &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvck       &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvcreate   &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvdisplay  &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvmove     &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; pvremove&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt; - There are 3 LVM Objects:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  |  Logical Volume     |&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    \/ \/ \/ \/ &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  |  Volume Group     |&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    \/  \/ \/ \/&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  |  Physical Volume     |&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  ----------------------------&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;  or: Disks are used to create PV's,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    which we group into VG's, from&lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    which we create LV's which &lt;/span&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;    contains the filesystem we use.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;..:-)&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-3216542488566986098?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/3216542488566986098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/hp-ux-lvm-listing-ibm-aix-lvm-commands.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3216542488566986098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3216542488566986098'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/hp-ux-lvm-listing-ibm-aix-lvm-commands.html' title='HP-UX  LVM listing'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6749904649666453050</id><published>2009-02-05T07:14:00.000-08:00</published><updated>2009-02-05T07:25:58.529-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>How To Write First UNIX Korn Shell Script Program</title><content type='html'>Korn shell scripting under UNIX / Linux can be used to automate lots of stuff. It easy to write a shell script. You must know how to use a text editor such as vi to write a script.&lt;br /&gt;&lt;h2 style="font-weight: normal;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-size:100%;"&gt;Write a shell program to print knowledge is power on screen. Type the following command to open file:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;&lt;code&gt;&lt;br /&gt;#vi hello.ksh&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;The first line should be as follows:&lt;br /&gt;&lt;/span&gt;&lt;/h2&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;#!/bin/ksh&lt;/span&gt; &lt;p&gt;It is called a shebang. It consists of a number sign and an exclamation point character (#!), followed by the full path to the interpreter such as /bin/ksh. All scripts under UNIX execute using the interpreter specified on a first line.&lt;br /&gt;Next append code as follows:&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# A shell script to print message&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# Written by Ninenok - Feb/5&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;/&lt;span style="color: rgb(0, 0, 0);"&gt;2008&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;print &lt;span style="color: rgb(255, 0, 0);"&gt;"Knowledge is power"&lt;/span&gt;&lt;/pre&gt; &lt;p&gt;Save and close the file. At the end your script should look like as follows:&lt;/p&gt; &lt;pre class="bash"&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;#!/bin/ksh&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# A shell script to print message&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# Written by Ninenok - Feb/5&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;/&lt;span style="color: rgb(0, 0, 0);"&gt;2008&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(128, 128, 128); font-style: italic;"&gt;# ------------------------------&lt;/span&gt;&lt;br /&gt;print &lt;span style="color: rgb(255, 0, 0);"&gt;"Knowledge is power"&lt;/span&gt;&lt;/pre&gt; &lt;h3 style="font-weight: normal;"&gt;&lt;span style="font-size:100%;"&gt;Set executable permission&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;Type the following command to set executable permission:&lt;br /&gt;&lt;code&gt;chmod +x hello.ksh&lt;/code&gt;&lt;/p&gt; &lt;h3 style="font-weight: normal;"&gt;&lt;span style="font-size:100%;"&gt;Run your korn shell script&lt;/span&gt;&lt;/h3&gt; &lt;p&gt;Type the following command:&lt;br /&gt;&lt;code&gt;./hello.ksh&lt;/code&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Sample output:&lt;/p&gt; &lt;pre&gt;Knowledge is power&lt;br /&gt;&lt;br /&gt;---------------------&lt;br /&gt;..enjoy..:-)&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6749904649666453050?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6749904649666453050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/how-to-write-first-unix-korn-shell.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6749904649666453050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6749904649666453050'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/how-to-write-first-unix-korn-shell.html' title='How To Write First UNIX Korn Shell Script Program'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-1462792787023328838</id><published>2009-02-03T08:32:00.000-08:00</published><updated>2009-02-03T08:35:36.966-08:00</updated><title type='text'>add a remote line printer to HP-UX</title><content type='html'>&lt;span class="Text"&gt;The easiest way is using SAM (SMH on 11.31).&lt;br /&gt;&lt;br /&gt;#sam&lt;br /&gt;Select&lt;br /&gt;1.Printers and Plotters,&lt;br /&gt;2.LP Spooler&lt;br /&gt;3.Printers and Plotters&lt;br /&gt;4.Add Remote Printer/plotter from the action menu.&lt;br /&gt;&lt;br /&gt;--ciao.....&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-1462792787023328838?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/1462792787023328838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/add-remote-line-printer-to-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/1462792787023328838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/1462792787023328838'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/add-remote-line-printer-to-hp-ux.html' title='add a remote line printer to HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7040897949291400360</id><published>2009-02-02T07:03:00.000-08:00</published><updated>2009-02-02T07:07:48.971-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Delete Files Older Than x Days</title><content type='html'>&lt;p&gt;The find utility on hp-ux allows you to pass in a bunch of interesting arguments, including one to execute another command on each file. We'll use this in order to figure out what files are older than a certain number of days, and then use the rm command to delete them.&lt;/p&gt; &lt;p style="clear: both;"&gt; &lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Command Syntax&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt; &lt;blockquote&gt;&lt;p&gt;find /path/to/files* -mtime +5 -exec rm {} \;&lt;/p&gt; &lt;/blockquote&gt; &lt;p&gt;Note that there are spaces between rm, {}, and \; &lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;&lt;strong&gt;Explanation&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;The first argument is the path to the files. This can be a path, a directory, or a wildcard as in the example above. I would recommend using the full path, and make sure that you run the command without the exec rm to make sure you are getting the right results.&lt;/li&gt;&lt;li&gt;The second argument, -mtime, is used to specify the number of days old that the file is. If you enter +5, it will find files older than 5 days.&lt;/li&gt;&lt;li&gt;The third argument, -exec, allows you to pass in a command such as rm. The {} \; at the end is required to end the command.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;This should work on Ubuntu, Suse, Redhat, or pretty much any version of linux.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7040897949291400360?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7040897949291400360/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/02/delete-files-older-than-x-days.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7040897949291400360'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7040897949291400360'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/02/delete-files-older-than-x-days.html' title='Delete Files Older Than x Days'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-54593294492222921</id><published>2009-01-29T04:27:00.001-08:00</published><updated>2009-01-29T04:30:28.356-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX--&gt; INIT: Timout Reached - Error in writing to wtmp or wtmps file</title><content type='html'>&lt;div class="content"&gt;     &lt;p&gt;It can be:&lt;/p&gt; &lt;p&gt;/tmp or /var is full &lt;/p&gt; &lt;p&gt;or wtmp is corrupt:&lt;/p&gt; &lt;p&gt;1.Boot the server in single user mode&lt;br /&gt;2.Delete /var/adm/wtmp&lt;br /&gt;3.touch /var/adm/wtmp&lt;br /&gt;4.Boot the server using init 3&lt;/p&gt;&lt;p&gt;&lt;span style="font-size:85%;"&gt;...yes we can!&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;   &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-54593294492222921?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/54593294492222921/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-init-timout-reached-error-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/54593294492222921'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/54593294492222921'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-init-timout-reached-error-in.html' title='HP-UX--&gt; INIT: Timout Reached - Error in writing to wtmp or wtmps file'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-2029598119312025948</id><published>2009-01-28T02:11:00.000-08:00</published><updated>2009-01-28T02:24:59.913-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='nick vujicic'/><category scheme='http://www.blogger.com/atom/ns#' term='inspiration'/><title type='text'>Are you going to finish strong?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_6Q8p09MLCy8/SYAyGZ2yfwI/AAAAAAAAACw/QV7dh-Ikr7c/s1600-h/are-you-going-to-finish-strong.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://2.bp.blogspot.com/_6Q8p09MLCy8/SYAyGZ2yfwI/AAAAAAAAACw/QV7dh-Ikr7c/s200/are-you-going-to-finish-strong.jpg" alt="" id="BLOGGER_PHOTO_ID_5296288247388995330" border="0" /&gt;&lt;/a&gt;&lt;em style="text-decoration: inherit; font-style: normal;"&gt;Nick Vujicic&lt;/em&gt; has no arms or legs but has come to      terms with his lot in life and he delivers an inspirational      speech to these      school kids that they will probably never forget.&lt;br /&gt;&lt;br /&gt;This is a truly a source of inspiration teaching to live life at its best standards in spite of all difficulties. God bless us all.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Inspirational clip&lt;/span&gt;:   &lt;a href="http://www.youtube.com/watch?v=MnlhZyW959k"&gt;http://www.youtube.com/watch?v=MnlhZyW959k&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-2029598119312025948?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/2029598119312025948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/are-you-going-to-finish-strong.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2029598119312025948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2029598119312025948'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/are-you-going-to-finish-strong.html' title='Are you going to finish strong?'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_6Q8p09MLCy8/SYAyGZ2yfwI/AAAAAAAAACw/QV7dh-Ikr7c/s72-c/are-you-going-to-finish-strong.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-8641434821983582358</id><published>2009-01-27T05:02:00.000-08:00</published><updated>2009-01-27T05:06:25.289-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX : find big files in a directory</title><content type='html'>&lt;p&gt;&lt;span style="font-size:85%;"&gt;1) Find big files in a directory:&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;# find /dir_path -xdev -size +10000 -exec ll {} \; &gt; /tmp/bigfiles&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;2) Find new files in a directory:&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;# find /dir_path -xdev -type f -mtime -2 -exec ll {} \; /tmp/newfiles&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:85%;"&gt;3) copy entire file system / directory to new location:&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;span style="font-size:100%;"&gt;# find /source_dir_path -depth | cpio -pdlmuva /dest_path&lt;/span&gt;&lt;/p&gt;&lt;p&gt;..:-)&lt;/p&gt;       &lt;div class="clear-block clear"&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-8641434821983582358?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/8641434821983582358/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-find-big-files-in-directory.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8641434821983582358'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8641434821983582358'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-find-big-files-in-directory.html' title='HP-UX : find big files in a directory'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-797920158509388157</id><published>2009-01-26T06:21:00.000-08:00</published><updated>2009-01-26T06:23:19.163-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>Basic network commands in HP-UX</title><content type='html'>&lt;span style="font-size:100%;"&gt;FILES&lt;br /&gt;&lt;br /&gt;* /etc/hosts - Hosts configuration file (resolve hosts and IPs)&lt;br /&gt;* /etc/rc.config.d/netconf – IP address, routeing address and hostname stored in this file&lt;br /&gt;&lt;br /&gt;SCRIPTS&lt;br /&gt;&lt;br /&gt;* /etc/init.d/net start – Use to start, stop network service&lt;br /&gt;&lt;br /&gt;HPUX Commands&lt;br /&gt;(a) Display lan interface info:&lt;br /&gt;# lanscan&lt;br /&gt;&lt;br /&gt;(b) All in one lan configuration utility (lan0 is first Ethernet interface) to configure and view the system IP address:&lt;br /&gt;# ifconfig lan0 - Display IP info such as IP address netmask etc.&lt;br /&gt;# ifconfig lan0 up - Up network interface (allow traffic)&lt;br /&gt;# ifconfig lan0 down - Down network interactive (deny traffc)&lt;br /&gt;# ifconfig lan0 192.168.1.1 netmask 255.255.255.0 up - Setup/change IP adddress&lt;br /&gt;&lt;br /&gt;(c) Displaying host name&lt;br /&gt;# hostname&lt;br /&gt;&lt;br /&gt;(d) Arp administration (cache)&lt;br /&gt;# arp -a&lt;br /&gt;&lt;br /&gt;(e) Display routing table/info:&lt;br /&gt;# netstat -nr&lt;br /&gt;&lt;br /&gt;(f) Define new route:&lt;br /&gt;# route add default 192.168.1.254 1&lt;br /&gt;&lt;br /&gt;(g) HP’s LAN diagnostic tool&lt;br /&gt;# lanadmin&lt;br /&gt;&lt;br /&gt;(h) Test a remote host connectivity&lt;br /&gt;ping host.mycorp.com&lt;br /&gt;&lt;br /&gt;(i) Setup various lan properties, dns client, NIS client configuration etc using GUI tool:&lt;br /&gt;# sam&lt;br /&gt;# set_parms&lt;br /&gt;&lt;br /&gt;(j) Check dns connectivity:&lt;br /&gt;$ nslookup www.google.co.uk&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-797920158509388157?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/797920158509388157/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/basic-network-commands-in-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/797920158509388157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/797920158509388157'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/basic-network-commands-in-hp-ux.html' title='Basic network commands in HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7171189171195024454</id><published>2009-01-26T06:14:00.000-08:00</published><updated>2009-01-26T06:20:26.540-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>How to see the top 10 CPU users in HP-UX</title><content type='html'>try to type this :&lt;br /&gt;&lt;br /&gt;UNIX95= ps -e -o pcpu -o ruser -o args|sort -nr|grep -v %CPU|head ???10&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Note: pls. don't try this at home.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7171189171195024454?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7171189171195024454/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-to-see-top-10-cpu-users-in-hp-ux.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7171189171195024454'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7171189171195024454'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-to-see-top-10-cpu-users-in-hp-ux.html' title='How to see the top 10 CPU users in HP-UX'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4244708938075254785</id><published>2009-01-25T08:24:00.000-08:00</published><updated>2009-01-25T08:28:30.936-08:00</updated><title type='text'>Gong Xi Fa Cai 恭喜发财</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_6Q8p09MLCy8/SXyS39A6-2I/AAAAAAAAACg/MBj7L6VzM_M/s1600-h/gong_xi_fa_cai_2k6_by_jotter.jpg"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 120px; height: 200px;" src="http://4.bp.blogspot.com/_6Q8p09MLCy8/SXyS39A6-2I/AAAAAAAAACg/MBj7L6VzM_M/s200/gong_xi_fa_cai_2k6_by_jotter.jpg" alt="" id="BLOGGER_PHOTO_ID_5295268751849749346" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:100%;"&gt;The most common Chinese ways of saying Happy New Year are Gong Xi Fa Cai (Mandarin) and Gong Hey Fat Choy (Cantonese). Even though the pronunciations are a little different, both are written the same way.&lt;br /&gt;&lt;br /&gt;Gong Xi is congratulations or respectfully wishing one joy.&lt;br /&gt;Fa Cai is to become rich or to make money.&lt;br /&gt;&lt;br /&gt;Thus, Gong Xi Fa Cai means wishing you to be prosperous in the coming year.&lt;br /&gt;&lt;br /&gt;Happy Chinese New Year!&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4244708938075254785?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4244708938075254785/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/gong-xi-fa-cai.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4244708938075254785'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4244708938075254785'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/gong-xi-fa-cai.html' title='Gong Xi Fa Cai 恭喜发财'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_6Q8p09MLCy8/SXyS39A6-2I/AAAAAAAAACg/MBj7L6VzM_M/s72-c/gong_xi_fa_cai_2k6_by_jotter.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7932022991214962404</id><published>2009-01-24T08:07:00.000-08:00</published><updated>2009-01-24T08:37:31.622-08:00</updated><title type='text'>Sentosa Flowers 2009</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_6Q8p09MLCy8/SXtDEshJFmI/AAAAAAAAACY/L0G-OyLS3-4/s1600-h/SDC10223_cc.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 150px;" src="http://1.bp.blogspot.com/_6Q8p09MLCy8/SXtDEshJFmI/AAAAAAAAACY/L0G-OyLS3-4/s200/SDC10223_cc.jpg" alt="" id="BLOGGER_PHOTO_ID_5294899534852855394" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_6Q8p09MLCy8/SXtB7x4vcnI/AAAAAAAAACQ/uImPlEcsBJ0/s1600-h/SDC10148_cc.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 150px; height: 200px;" src="http://4.bp.blogspot.com/_6Q8p09MLCy8/SXtB7x4vcnI/AAAAAAAAACQ/uImPlEcsBJ0/s200/SDC10148_cc.jpg" alt="" id="BLOGGER_PHOTO_ID_5294898282163565170" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Celebrating the season of Spring and ushering in the Year of the Ox with a kaleidoscope of fresh blooms at the annual floral extravaganza. Magnificent displays of unique flowers and soak in the festive mood on the sunny island. The floral displays will be making its way down to the white sandy beaches of Palawan, making it a truly Sentosa experience. Jan 24-Feb 1, 2009 at Sentosa,Singapore.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7932022991214962404?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7932022991214962404/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/sentosa-flowers-2009.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7932022991214962404'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7932022991214962404'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/sentosa-flowers-2009.html' title='Sentosa Flowers 2009'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_6Q8p09MLCy8/SXtDEshJFmI/AAAAAAAAACY/L0G-OyLS3-4/s72-c/SDC10223_cc.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-6583573715505437212</id><published>2009-01-23T07:28:00.000-08:00</published><updated>2009-01-23T07:35:57.042-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX  find</title><content type='html'>&lt;span style="color: rgb(0, 0, 102);font-size:130%;" &gt;Q&lt;/span&gt; : Is there a way to run "find" so it reports all files/subdirs under a directory that are over X days old without transposing through all the subdirs?&lt;br /&gt;&lt;br /&gt;example&lt;br /&gt;under /X&lt;br /&gt;/X/Y/Z&lt;br /&gt;/X/A/B/C/D&lt;br /&gt;/X/A/E/I/O/U&lt;br /&gt;&lt;br /&gt;I would like it to report back only if Y and A have a date stamp older then 30 days.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);font-size:130%;" &gt;A&lt;/span&gt; :  find * -type d -prune -mtime +60&lt;br /&gt;&lt;pre&gt;EXAMPLES (HP-UX man pages)&lt;br /&gt;     Search the two directories /example and /new/example for files&lt;br /&gt;     containing the string Where are you and print the names of the files:&lt;br /&gt;&lt;br /&gt;          find /example /new/example -exec grep -l 'Where are you' {} \;&lt;br /&gt;&lt;br /&gt;     Remove all files named a.out or *.o that have not been accessed for a&lt;br /&gt;     week:&lt;br /&gt;          find / \( -name a.out -o -name '*.o' \) -atime +7 -exec rm {} \;&lt;br /&gt;&lt;br /&gt;         Note that the spaces delimiting the escaped parentheses are&lt;br /&gt;          required.&lt;br /&gt;&lt;br /&gt;     Print the names of all files in /bin that are context-dependent; that&lt;br /&gt;     is, hidden directories:&lt;br /&gt;          find /bin -type H -print&lt;br /&gt;&lt;br /&gt;     Print the names of all files on this machine.  Avoid walking nfs&lt;br /&gt;     directories while still printing the nfs mount points:&lt;br /&gt;&lt;br /&gt;          find / -fsonly hfs -print&lt;br /&gt;&lt;br /&gt;     Copy the entire file system to a disk mounted on /Disk, avoiding the&lt;br /&gt;     recursive copy problem.  Both commands are equivalent (note the use of&lt;br /&gt;     -path instead of -name):&lt;br /&gt;          cd /; find . ! -path ./Disk -only -print | cpio -pdxm /Disk&lt;br /&gt;          cd /; find . -path ./Disk -prune -o -print | cpio -pdxm /Disk&lt;br /&gt;&lt;br /&gt;     Copy the root disk to a disk mounted on /Disk, skipping all mounted&lt;br /&gt;     file systems below /.  Note that -xdev does not cause / to be skipped,&lt;br /&gt;     even though it is a mount point.  This is because / is the starting&lt;br /&gt;     point and -xdev only affects entries below starting points.&lt;br /&gt;&lt;/pre&gt;&lt;span style="font-size:85%;"&gt;More on man pages from HP-UX...kampai!&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-6583573715505437212?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/6583573715505437212/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-find.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6583573715505437212'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/6583573715505437212'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-find.html' title='HP-UX  find'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-652128469180912990</id><published>2009-01-17T06:53:00.000-08:00</published><updated>2009-01-17T06:58:47.581-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='AIX'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><category scheme='http://www.blogger.com/atom/ns#' term='Solaris'/><title type='text'>How can I find the HP-UX equivalent for a given Solaris/AIX/etc.. commands?</title><content type='html'>--&gt;Rosetta Stone for UNIX (A Sysadmin's Universal Translator; or&lt;br /&gt;"What do they call that in this world?") provides a very nice AIX/&lt;br /&gt;DG-UX/FreeBSD/HP-UX/IRIX/Linux/NetBSD/OpenBSD/Solaris/&lt;br /&gt;SunOS/Tru64/Ultrix etc quivalency table at:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;http://bhami.com/rosetta.html&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;--&gt;UNIXguide.net also provides a&lt;br /&gt;AIX/FreeBSD/HP-UX/Linux(RedHat)/Solaris/Tru64 equivalency&lt;br /&gt;table, at:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;http://www.unixguide.net/unixguide.shtml&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-652128469180912990?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/652128469180912990/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-can-i-find-hp-ux-equivalent-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/652128469180912990'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/652128469180912990'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-can-i-find-hp-ux-equivalent-for.html' title='How can I find the HP-UX equivalent for a given Solaris/AIX/etc.. commands?'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4752317969869795281</id><published>2009-01-16T04:53:00.000-08:00</published><updated>2009-01-16T05:01:12.542-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>How to change hostname on HP-UX 11i</title><content type='html'>&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;::without reboot&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;HP-UX 11iv2 and v3 allows you to change the hostname on the fly, so if you want to change the hostname on HP-UX 11i server you can do it without rebooting your server. I have documented here several steps to change the hostname on your HP-UX 11i server.&lt;br /&gt;Steps to change the hostname on HP-UX:&lt;br /&gt;&lt;br /&gt;1. First run the hostname command to HP-UX server to change the hostname on HP-UX 11i server:&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; &lt;span style="font-weight: bold;"&gt;hostname hpuxdev11&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I am changing hostname on Integrity Itanium rx6600 running HP-UX 11iv2 from hpuxdev to hpuxdev11&lt;br /&gt;&lt;br /&gt;2. Next execute uname command to set the nodename like hostname:&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; uname –S hpuxdev11&lt;br /&gt;&lt;br /&gt;running uname with –S option changes the nodename to required hostname value on HP-UX 11i server&lt;br /&gt;&lt;br /&gt;3. Change network configuration file (netconf) to make the change permanent during reboots. The netconf files exists&lt;br /&gt;&lt;br /&gt;under /etc/rc.config.d direcotory on HP-UX servers&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; cd /etc/rc.config.d/netconf&lt;br /&gt;&lt;br /&gt;root@nedunix6:/etc/rc.config.d&gt; vi netconf&lt;br /&gt;&lt;br /&gt;Open the netconf file using vi editor and search for HOSTNAME variable, replace the old hostname value to new hostname value. It is recommended by HP to keep the value enclosed in double quotes (" ")&lt;br /&gt;&lt;br /&gt;root@nedunix6:/etc/rc.config.d&gt; vi netconf&lt;br /&gt;&lt;br /&gt;HOSTNAME="hpuxdev"&lt;br /&gt;OPERATING_SYSTEM=HP-UX&lt;br /&gt;LOOPBACK_ADDRESS=127.0.0.1&lt;br /&gt;&lt;br /&gt;After changing the HOSTNAME , the netconf file portion with HOSTNAME directives looks like this :&lt;br /&gt;&lt;br /&gt;root@nedunix6:/etc/rc.config.d&gt; vi netconf&lt;br /&gt;&lt;br /&gt;HOSTNAME="hpuxdev11"&lt;br /&gt;OPERATING_SYSTEM=HP-UX&lt;br /&gt;LOOPBACK_ADDRESS=127.0.0.1&lt;br /&gt;&lt;br /&gt;5.Restart the network configuration settings on HP-UX server by running following command .Make sure you run these command from the CONSOLE or MP (Management processor) , sometimes ui have noticed network timeout for few seconds while restarting network settings :&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; /sbin/init.d/net start&lt;br /&gt;&lt;br /&gt;Verify changes hostname on HP-UX:&lt;br /&gt;&lt;br /&gt;Finally run following commands to make sure hostname and nodename is changed to newer name :&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; hostname&lt;br /&gt;&lt;br /&gt;hpuxdev11&lt;br /&gt;&lt;br /&gt;root@hpuxdev:/&gt; nodename&lt;br /&gt;&lt;br /&gt;hpuxdev11&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;"&gt;:with REBOOT&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There is a *much* simpler way:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;set_parms hostname&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Answer a prompt or two, and.... Done!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4752317969869795281?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4752317969869795281/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-to-change-hostname-on-hp-ux-11i.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4752317969869795281'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4752317969869795281'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/how-to-change-hostname-on-hp-ux-11i.html' title='How to change hostname on HP-UX 11i'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-799070884072045411</id><published>2009-01-12T23:21:00.001-08:00</published><updated>2009-01-12T23:33:01.485-08:00</updated><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_6Q8p09MLCy8/SWxChpbxs4I/AAAAAAAAABw/viF6_sINI8U/s1600-h/barack-spiderman.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 200px; height: 97px;" src="http://2.bp.blogspot.com/_6Q8p09MLCy8/SWxChpbxs4I/AAAAAAAAABw/viF6_sINI8U/s200/barack-spiderman.jpg" alt="" id="BLOGGER_PHOTO_ID_5290676808078963586" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;Barack Obama is featured on the upcoming issue of The Amazing Spider-Man comic book in commemoration of his upcoming inauguration as the 44th President of the USA. Since Obama is a self confessed Spider-Man comics geek when he was a kid, Marvel Comics thought it would be cool to honor the new president this way...&lt;/span&gt;&lt;br /&gt;&lt;div style="text-align: center;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_6Q8p09MLCy8/SWxCItX3LKI/AAAAAAAAABg/A8HLPhhSKdI/s1600-h/spiderman.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 132px; height: 200px;" src="http://4.bp.blogspot.com/_6Q8p09MLCy8/SWxCItX3LKI/AAAAAAAAABg/A8HLPhhSKdI/s200/spiderman.jpg" alt="" id="BLOGGER_PHOTO_ID_5290676379639557282" border="0" /&gt;&lt;/a&gt;&lt;span style="font-size:85%;"&gt;The issue hits the comic stands on Jan 14, this is gonna be huge!&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-799070884072045411?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/799070884072045411/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/barack-obama-is-featured-on-upcoming.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/799070884072045411'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/799070884072045411'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/barack-obama-is-featured-on-upcoming.html' title=''/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_6Q8p09MLCy8/SWxChpbxs4I/AAAAAAAAABw/viF6_sINI8U/s72-c/barack-spiderman.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-7762830266176241717</id><published>2009-01-12T22:57:00.000-08:00</published><updated>2009-01-12T23:05:25.381-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX LVM creation</title><content type='html'>ex. create /oracle/J1Q/sapdata13 under volume group vg_J1Q_04&lt;br /&gt;   using luns c14t1d4(primary) &amp;amp; c14t8d1(alternate) &lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;check if fs existed &lt;/span&gt;&lt;br /&gt;bdf /oracle/J1Q/sapdata13&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt; check the latest disk report&lt;/span&gt;&lt;br /&gt;cd /var/opt/soeg/rpt&lt;br /&gt;ll *disk*&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt; check for available luns&lt;/span&gt;&lt;br /&gt;more 20080423diskinfo.rpt | grep -i lvm | grep -v "0(" | sort -u&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;compares the current hardware configuration (pairing of luns)&lt;/span&gt;&lt;br /&gt;xpinfo -il | grep c12t0d1&lt;br /&gt;xpinfo -il | grep 04:28&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt; check if controller exists already&lt;/span&gt;&lt;br /&gt;pvdisplay /dev/dsk/c14t8d1&lt;br /&gt;pvdisplay /dev/dsk/c14t1d4&lt;br /&gt;vgdisplay -v | grep -iE "c14t8d1|c12t0d1"&lt;br /&gt;&lt;br /&gt;ll /dev/*/group | sort -u&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;create directory/device&lt;/span&gt;&lt;br /&gt;mkdir /dev/vg_J1Q_04&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;create a character file type group&lt;/span&gt;&lt;br /&gt;mknod /dev/vg_J1Q_04/group c 64 0x410000&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;initialize/format physical volume&lt;/span&gt;&lt;br /&gt;pvcreate -f /dev/rdsk/c12t0d1&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;create volume group&lt;/span&gt;&lt;br /&gt;vgcreate -e 10000 /dev/vg_J1Q_04 /dev/dsk/c12t0d1 /dev/dsk/c14t8d1&lt;br /&gt;vgdisplay /dev/vg_J1Q_04&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;create logical volume&lt;/span&gt;&lt;br /&gt;lvcreate -L 8624 -n lv_data13 /dev/vg_J1Q_04&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;construct the new file system&lt;/span&gt;&lt;br /&gt;newfs -F vxfs -o largefiles /dev/vg_J1Q_04/rlv_data13&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;create directory&lt;/span&gt;&lt;br /&gt;mkdir -p /oracle/J1Q/sapdata13&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;update /etc/fstab&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt; mount created new directory&lt;/span&gt;&lt;br /&gt;mount /oracle/J1Q/sapdata13&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;--&gt;check file permission and ownership&lt;/span&gt;&lt;br /&gt;chgrp oraj1q:dba sapdata13&lt;br /&gt;chown  oraj1q:dba sapdata13&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;note: the above syntax are derived from true to life experience&lt;br /&gt;         and im not liable in case you use it on a production box and&lt;br /&gt;         it didn't works. :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-7762830266176241717?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/7762830266176241717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-lvm-creation.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7762830266176241717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/7762830266176241717'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-lvm-creation.html' title='HP-UX LVM creation'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-4511302647947715869</id><published>2009-01-05T06:17:00.001-08:00</published><updated>2009-01-05T06:23:21.290-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX reviewer 4</title><content type='html'>:: if you can't remove Volume Group w/ 'ghost' logical volume&lt;br /&gt;&lt;br /&gt;# vgremove /dev/vg&lt;br /&gt;vgremove: Volume group "/dev/vg" still contains a logical volume(s).&lt;br /&gt;vgremove: Couldn't remove volume group "/dev/vg".&lt;br /&gt;&lt;br /&gt;ans:&lt;br /&gt;&lt;br /&gt;#vgchange -a n /dev/vg&lt;br /&gt;#vgexport /dev/vg&lt;br /&gt;&lt;br /&gt;your volume group will be removed from /etc/lvmtab..&lt;br /&gt;It is equal to vgremove...tried it and it worked.&lt;br /&gt;&lt;br /&gt;sa susunod ulit...ciao...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-4511302647947715869?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/4511302647947715869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-4.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4511302647947715869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/4511302647947715869'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-4.html' title='HP-UX reviewer 4'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-909037318901778885</id><published>2009-01-04T09:09:00.000-08:00</published><updated>2009-01-04T09:22:57.824-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX reviewer 3</title><content type='html'>&lt;span style="font-size:100%;"&gt;:: &lt;span style="font-weight: bold;"&gt;NFS&lt;/span&gt; mounting&lt;br /&gt;&lt;br /&gt;ex :  mount directory /sapcd of sihp8080 to sihp8085&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-weight: bold;"&gt;@&lt;/span&gt;sihp8080 --&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;[root@sihp8080:/sapcd]&lt;br /&gt;# bdf /sapcd&lt;br /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;br /&gt;/dev/vg_sapcd2_temp/lv_sapcd2&lt;br /&gt;                  106770432 54467240 51894584   51% /sapcd&lt;br /&gt;&lt;br /&gt;[root@sihp8080:/sapcd]&lt;br /&gt;# more /etc/exports | grep -i sapcd&lt;br /&gt;/sapcd          -root=sihp8085:sihp8086:sihp8087,access=sihp8085:sihp8086:sihp8087&lt;br /&gt;&lt;br /&gt;[root@sihp8080:/sapcd]&lt;br /&gt;# exportfs -av&lt;br /&gt;re-exported /sapcd&lt;br /&gt;re-exported /usr/sap/put&lt;br /&gt;&lt;br /&gt;@sihp8085--&gt;&lt;br /&gt;[root@sihp8085:/sapcd]&lt;br /&gt;#&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:100%;"&gt;bdf /sapcd&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;/span&gt;&lt;br /&gt;Filesystem          kbytes    used   avail %used Mounted on&lt;br /&gt;/dev/vg00/lv_root   819200  179488  634768   22% /&lt;br /&gt;&lt;br /&gt;[root@sihp8085:/sapcd]&lt;br /&gt;# more /etc/fstab | grep -i sapcd&lt;br /&gt;sihp8080:/sapcd                                 /sapcd                  nfs rw,suid 0 0&lt;br /&gt;&lt;br /&gt;[root@sihp8085:/sapcd]&lt;br /&gt;# mount /sapcd&lt;br /&gt;&lt;br /&gt;more to come....chalo &lt;/span&gt; ('lets go' in Hindi)&lt;span style="font-size:100%;"&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-909037318901778885?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/909037318901778885/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-3.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/909037318901778885'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/909037318901778885'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-3.html' title='HP-UX reviewer 3'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-8393082509191642346</id><published>2009-01-02T18:10:00.000-08:00</published><updated>2009-01-02T18:27:41.628-08:00</updated><title type='text'>2009 Year of the Earth OX January 26, 2009 - February 13, 2010</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_6Q8p09MLCy8/SV7LDmJEnlI/AAAAAAAAABQ/H01JVqutt-E/s1600-h/SDC10122a.jpg"&gt;&lt;img style="cursor: pointer; width: 292px; height: 219px;" src="http://3.bp.blogspot.com/_6Q8p09MLCy8/SV7LDmJEnlI/AAAAAAAAABQ/H01JVqutt-E/s320/SDC10122a.jpg" alt="" id="BLOGGER_PHOTO_ID_5286886275218185810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;Peoples' Park, Chinatown in Singapore 2009&lt;/span&gt;&lt;span class="style7"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;span class="style9"&gt;&lt;span style="font-family:arial;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;                                      &lt;p class="style11"&gt;&lt;span style="font-size:100%;"&gt;The Chinese                      calendar is based on solar and lunar cycles and thus the new                      year falls on a different day of the Western solar calendar                      each year.&lt;/span&gt;&lt;/p&gt;                   &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span class="style1"&gt;&lt;strong style="font-weight: normal;"&gt;Year Ahead:&lt;/strong&gt;&lt;br /&gt;                 &lt;/span&gt;&lt;span class="style15"&gt;The OX year is a conservative year, one of traditions and values. This is not a year to be outrageous. A slow but steady year.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;                   &lt;p class="style15"&gt;&lt;span style="font-size:100%;"&gt;This OX year will bring stability and growth where patience and diligence pays off.&lt;/span&gt;&lt;/p&gt;                   &lt;p&gt;&lt;span style="font-size:100%;"&gt;&lt;span class="style15"&gt;This is a year of Harvest - when we reap what we have sown. Take care of business this year, do not let things slide. &lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-8393082509191642346?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/8393082509191642346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/pre-chinese-new-year.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8393082509191642346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8393082509191642346'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/pre-chinese-new-year.html' title='2009 Year of the Earth OX January 26, 2009 - February 13, 2010'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_6Q8p09MLCy8/SV7LDmJEnlI/AAAAAAAAABQ/H01JVqutt-E/s72-c/SDC10122a.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-420401023172927342</id><published>2009-01-01T10:19:00.000-08:00</published><updated>2009-01-01T10:22:10.008-08:00</updated><title type='text'>Different uses of the word F_U</title><content type='html'>Eto try nyo, sinend sa akin..&lt;br /&gt;&lt;br /&gt;Explanation of the word F_u_ c_k.mp3&lt;br /&gt;download the file &lt;a href="http://www.filefactory.com/file/a00hc43/n/Indian_teacher_explaining_the_word_Fuck_mp3"&gt;here.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-420401023172927342?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/420401023172927342/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/different-uses-of-word-fu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/420401023172927342'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/420401023172927342'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/different-uses-of-word-fu.html' title='Different uses of the word F_U'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-1945474093972157561</id><published>2009-01-01T10:07:00.000-08:00</published><updated>2009-01-01T10:16:09.205-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX reviewer 2</title><content type='html'>....continued from my HP-UX kodigo....&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Exporting and Importing disks across system.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;        1.  make the volume group unavailable&lt;br /&gt;              vgchange -a n /dev/vgdata&lt;br /&gt;&lt;br /&gt;       2. Export the the disk while creating a logical volume map file.&lt;br /&gt;               vgexport -v -m data_map vgdata&lt;br /&gt;&lt;br /&gt;       3.  Disconnect the drives and move to new system.&lt;br /&gt;       4.   Move the data_map file to the new system.&lt;br /&gt;       5.  On the new system recreate the volume group directory&lt;br /&gt;                mkdir /dev/vgdata&lt;br /&gt;                mknod /dev/vgdata/group c 64 0x02000&lt;br /&gt;&lt;br /&gt;       6. Import the disks to the new system&lt;br /&gt;                 vgimport -v -m data_map /dev/vgdata  /dev/dsk/c2t1d0 /dev/dsk/c2t2d0&lt;br /&gt;&lt;br /&gt;       7.  Enable the new volume group&lt;br /&gt;                 vgchange -a y /dev/vgdata&lt;br /&gt;&lt;ul&gt;&lt;li&gt; Renaming a logical volume&lt;br /&gt;         /dev/vgdata/lvol1  -&gt; /dev/vgdata/data_lv&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;         umount /dev/vgdata/lvol1&lt;br /&gt;        ll  /dev/vgdata/lvol1                                    &lt;br /&gt;        take note of the minor ( e.g 0x010001 )&lt;br /&gt;                       brw-r-----   1 root       root        64 0x010001 Dec 31 17:59 lvol1&lt;br /&gt;        mknod  /dev/vgdata/data_lv b 64 0x010001       create new logical volume name&lt;br /&gt;        mknod  /dev/vgdata/rdata_lv c 64 0x010001&lt;br /&gt;        vi /etc/fstab                                               { reflect the new logical volume  }&lt;br /&gt;        mount -a&lt;br /&gt;        rmsf /dev/vgdata/lvol1&lt;br /&gt;        rmsf /dev/vgdata/rlvol1&lt;br /&gt;&lt;br /&gt;to be continued.....&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-1945474093972157561?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/1945474093972157561/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/1945474093972157561'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/1945474093972157561'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer-2.html' title='HP-UX reviewer 2'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-8272352351896908264</id><published>2009-01-01T03:23:00.000-08:00</published><updated>2009-01-02T18:08:34.650-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='HP-UX reviewer'/><category scheme='http://www.blogger.com/atom/ns#' term='lvm'/><category scheme='http://www.blogger.com/atom/ns#' term='unix'/><category scheme='http://www.blogger.com/atom/ns#' term='hp-ux'/><title type='text'>HP-UX reviewer</title><content type='html'>naks, kala nyo genius ako sa HP-UX? Kodigo ko lang ito in case of emergency..ito ung laman ng halo-halo.txt na naka-save sa lagi kong dala na vintage 128mb flash disk tuwing may duty ako.&lt;br /&gt;&lt;br /&gt;HP-UX: Disk and Filesystem tasks&lt;br /&gt;&lt;ul&gt;&lt;li&gt;   Search for attached disk&lt;br /&gt;ioscan -fnC disk&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;   Initialize a disk for use with LVM&lt;br /&gt;pvcreate -f /dev/rdsk/c0t1d0&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Create the device structure needed for a new volume group.&lt;br /&gt;cd /dev&lt;br /&gt;mkdir vgdata&lt;br /&gt;cd vgdata&lt;br /&gt;mknod group c 64 0x010000&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Create volume group vgdata&lt;br /&gt;vgcreate vgdata  /dev/dsk/c0t1d0&lt;br /&gt;{ if your expecting to use more than 16 physical disks use the -p option, range                    from 1 to 256 disks. }&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Display volume group vgdata&lt;br /&gt;vgdisplay -v vg01&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Add another disk to volume group&lt;br /&gt;pvcreate -f /dev/rdsk/c0t4d0&lt;br /&gt;vgextend vg01 /dev/dsk/c0t4d0&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Remove disk from volume group&lt;br /&gt;vgreduce vg01 /dev/dsk/c0t4d0&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Create a 100 MB logical volume lvdata&lt;br /&gt;lvcreate -L 100 -n lvdata vgdata&lt;br /&gt;newfs -F vxfs  /dev/vgdata/rlvdata&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Extend logical volume to 200 MB&lt;br /&gt;lvextend -L 200 /dev/vgdata/lvdata&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Extend file system to 200 MB&lt;br /&gt;&lt;br /&gt;:: NO online JFS  installed&lt;br /&gt;fuser -ku /dev/vgdata/lvdata  { kill all process that has open files on this volume. }&lt;br /&gt;umount /dev/vgdata/lvdata&lt;br /&gt;extendfs /data&lt;br /&gt;&lt;br /&gt;::Online JFS      {ex. 200 MB  / 4 MB  = 50 LE; 50 x 1024 = 51200 blocks }&lt;br /&gt;fsadm -F vxfs -b 51200 /data&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Set largefiles to support files greater than 2GB&lt;br /&gt;fsadm -F vxfs -o largefiles /data&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;Paunawa:kung hindi maintindihan, magtanong sa katabing ofismate...more to come.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-8272352351896908264?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/8272352351896908264/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8272352351896908264'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/8272352351896908264'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/hp-ux-reviewer.html' title='HP-UX reviewer'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-2593645996476833287</id><published>2009-01-01T01:27:00.001-08:00</published><updated>2009-01-01T05:19:21.661-08:00</updated><title type='text'>New year - new challenge</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_6Q8p09MLCy8/SVyNWpi6IgI/AAAAAAAAAAU/5D7cL1CvdrY/s1600-h/singapore-marinabay-fireworks-601559-l.jpg"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 203px;" src="http://3.bp.blogspot.com/_6Q8p09MLCy8/SVyNWpi6IgI/AAAAAAAAAAU/5D7cL1CvdrY/s320/singapore-marinabay-fireworks-601559-l.jpg" alt="" id="BLOGGER_PHOTO_ID_5286255482875027970" border="0" /&gt;&lt;br /&gt;&lt;/a&gt;&lt;div style="text-align: center;"&gt;&lt;span style="font-size:85%;"&gt;Marina Bay - New Year, Singapore 2009&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;We will open the book. Its pages are blank. We are going to put words on them ourselves. The book is called Opportunity and its first chapter is New Year’s Day.--&lt;span style="font-size:85%;"&gt;&lt;strong style="font-weight: normal;"&gt;&lt;/strong&gt;&lt;strong style="font-weight: normal;"&gt;Edith Lovejoy Pierce&lt;/strong&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-2593645996476833287?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/2593645996476833287/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2009/01/new-year-new-challenge.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2593645996476833287'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/2593645996476833287'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2009/01/new-year-new-challenge.html' title='New year - new challenge'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVyNWpi6IgI/AAAAAAAAAAU/5D7cL1CvdrY/s72-c/singapore-marinabay-fireworks-601559-l.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7470226102725405310.post-3629436547269217746</id><published>2008-12-31T21:24:00.000-08:00</published><updated>2008-12-31T21:26:32.424-08:00</updated><title type='text'>...the beginning of something</title><content type='html'>Happy New Year...! Welcome to my new blog site...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7470226102725405310-3629436547269217746?l=ninenok.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://ninenok.blogspot.com/feeds/3629436547269217746/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://ninenok.blogspot.com/2008/12/thursday-january-1-2009.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3629436547269217746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7470226102725405310/posts/default/3629436547269217746'/><link rel='alternate' type='text/html' href='http://ninenok.blogspot.com/2008/12/thursday-january-1-2009.html' title='...the beginning of something'/><author><name>ninenok</name><uri>http://www.blogger.com/profile/14150718574222306862</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://3.bp.blogspot.com/_6Q8p09MLCy8/SVzN4Lq40eI/AAAAAAAAAA4/nMkk8EDH3Es/S220/gdpit_com_55378314_9.jpg'/></author><thr:total>0</thr:total></entry></feed>
