<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>postIt &#187; solaris</title>
	<atom:link href="https://lakm.us/postit/tag/solaris/feed/" rel="self" type="application/rss+xml" />
	<link>https://lakm.us/postit</link>
	<description>Post-It sticky notes with PasteBin sense</description>
	<lastBuildDate>Thu, 02 Jan 2025 01:33:57 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0.18</generator>
	<item>
		<title>Socket monitoring by watching receive an &#8230;</title>
		<link>https://lakm.us/postit/2011/08/socket-monitoring-by-watching-receive-an/</link>
		<comments>https://lakm.us/postit/2011/08/socket-monitoring-by-watching-receive-an/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 08:03:50 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[scan]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=136</guid>
		<description><![CDATA[Socket monitoring by watching receive and send queue every 5 seconds $ while true; do netstat -tn; sleep 5; clear; done Result: &#160; Active Internet connections &#40;w/o servers&#41; Proto Recv-Q Send-Q Local Address Foreign Address State tcp 0 0 10.238.133.152:43941 98.136.48.103:5050 ESTABLISHED tcp 1 0 10.238.133.152:42541 8.27.254.249:80 CLOSE_WAIT tcp 1 0 10.238.133.152:34355 184.73.222.16:80 CLOSE_WAIT tcp [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Socket monitoring by watching receive and send queue every 5 seconds</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666;">$ </span><span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">true</span>; <span style="color: #000000; font-weight: bold;">do</span> <span style="color: #c20cb9; font-weight: bold;">netstat</span> <span style="color: #660033;">-tn</span>; <span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">5</span>; <span style="color: #c20cb9; font-weight: bold;">clear</span>; <span style="color: #000000; font-weight: bold;">done</span></pre></td></tr></table></div>

<p>Result:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">&nbsp;
Active Internet connections <span style="color: #7a0874; font-weight: bold;">&#40;</span>w<span style="color: #000000; font-weight: bold;">/</span>o servers<span style="color: #7a0874; font-weight: bold;">&#41;</span>
Proto Recv-Q Send-Q Local Address           Foreign Address         State
tcp        <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span> 10.238.133.152:<span style="color: #000000;">43941</span>    98.136.48.103:<span style="color: #000000;">5050</span>      ESTABLISHED
tcp        <span style="color: #000000;">1</span>      <span style="color: #000000;">0</span> 10.238.133.152:<span style="color: #000000;">42541</span>    8.27.254.249:<span style="color: #000000;">80</span>         CLOSE_WAIT
tcp        <span style="color: #000000;">1</span>      <span style="color: #000000;">0</span> 10.238.133.152:<span style="color: #000000;">34355</span>    184.73.222.16:<span style="color: #000000;">80</span>        CLOSE_WAIT
tcp        <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span> 10.238.133.152:<span style="color: #000000;">43210</span>    199.59.148.87:<span style="color: #000000;">443</span>       ESTABLISHED
tcp        <span style="color: #000000;">0</span>    <span style="color: #000000;">229</span> 10.238.133.152:<span style="color: #000000;">43209</span>    199.59.148.87:<span style="color: #000000;">443</span>       ESTABLISHED</pre></td></tr></table></div>

<p>This is to emulate combination of <code>watch</code> and <code>ss</code> in Solaris, more or less same result</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666;">$ </span><span style="color: #c20cb9; font-weight: bold;">watch</span> <span style="color: #660033;">-n</span> <span style="color: #000000;">5</span> ss <span style="color: #660033;">-t</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">State      Recv-Q Send-Q      Local Address:Port          Peer Address:Port
ESTAB      <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">36045</span>       74.125.224.250:https
ESTAB      <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">36044</span>       74.125.224.250:https
CLOSE-WAIT <span style="color: #000000;">1</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">59622</span>      174.129.233.179:www
ESTAB      <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">43941</span>        98.136.48.103:mmcc
CLOSE-WAIT <span style="color: #000000;">38</span>     <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">49300</span>        199.59.148.87:https
ESTAB      <span style="color: #000000;">0</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">33626</span>       74.125.224.191:https
CLOSE-WAIT <span style="color: #000000;">1</span>      <span style="color: #000000;">0</span>          10.238.133.152:<span style="color: #000000;">37621</span>        208.46.163.81:www</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2011/08/socket-monitoring-by-watching-receive-an/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check Solaris package source:

# /usr/ &#8230;</title>
		<link>https://lakm.us/postit/2010/10/check-solaris-package-source-usr/</link>
		<comments>https://lakm.us/postit/2010/10/check-solaris-package-source-usr/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 20:47:22 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=107</guid>
		<description><![CDATA[Check Solaris package source: # /usr/sbin/pkgchk-l -p /usr/ucb/ps Pathname: /usr/ucb/ps Type: linked file Source of link: ../../usr/lib/isaexec Referenced by the following packages: SUNWscpu Current status: installed]]></description>
				<content:encoded><![CDATA[<p>Check Solaris package source:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># /usr/sbin/pkgchk-l -p /usr/ucb/ps</span>
Pathname: <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>ucb<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">ps</span>
Type: linked <span style="color: #c20cb9; font-weight: bold;">file</span>
Source of link: ..<span style="color: #000000; font-weight: bold;">/</span>..<span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>isaexec
Referenced by the following packages:
        SUNWscpu
Current status: installed</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/10/check-solaris-package-source-usr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Solaris MD5 checksum
digest -a md5 -v / &#8230;</title>
		<link>https://lakm.us/postit/2010/10/solaris-md5-checksumdigest-a-md5-v/</link>
		<comments>https://lakm.us/postit/2010/10/solaris-md5-checksumdigest-a-md5-v/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 13:00:33 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[checksum]]></category>
		<category><![CDATA[md5]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=106</guid>
		<description><![CDATA[Solaris MD5 checksum digest -a md5 -v /path/to/file Referenced to the following package: SUNWcsu This is an alternative to md5sum that is available in the Solaris 10 companion CD]]></description>
				<content:encoded><![CDATA[<p>Solaris MD5 checksum<br />
<code>digest -a md5 -v /path/to/file</code><br />
Referenced to the following package: <b>SUNWcsu</b><br />
This is an alternative to md5sum that is available in the Solaris 10 companion CD</p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/10/solaris-md5-checksumdigest-a-md5-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check route/gateway in Solaris

# nets &#8230;</title>
		<link>https://lakm.us/postit/2010/10/check-routegateway-in-solaris-nets/</link>
		<comments>https://lakm.us/postit/2010/10/check-routegateway-in-solaris-nets/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 05:06:18 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[router]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=104</guid>
		<description><![CDATA[Check route/gateway in Solaris # netstat -rn &#160; Routing Table: IPv4 Destination Gateway Flags Ref Use Interface -------------------- -------------------- ----- ----- ---------- --------- default 192.168.40.1 UG 1 0 192.168.40.0 192.168.40.91 U 1 2 e1000g2 224.0.0.0 192.168.40.91 U 1 0 e1000g2 127.0.0.1 127.0.0.1 UH 1 0 lo0 If no /etc/defaultrouter set (file not exist), booting will [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Check route/gateway in Solaris</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># netstat -rn</span>
&nbsp;
Routing Table: IPv4
  Destination           Gateway           Flags  Ref     Use     Interface
<span style="color: #660033;">--------------------</span> <span style="color: #660033;">--------------------</span> <span style="color: #660033;">-----</span> <span style="color: #660033;">-----</span> <span style="color: #660033;">----------</span> <span style="color: #660033;">---------</span>
default              192.168.40.1         UG        <span style="color: #000000;">1</span>          <span style="color: #000000;">0</span>
192.168.40.0         192.168.40.91        U         <span style="color: #000000;">1</span>          <span style="color: #000000;">2</span> e1000g2
224.0.0.0            192.168.40.91        U         <span style="color: #000000;">1</span>          <span style="color: #000000;">0</span> e1000g2
127.0.0.1            127.0.0.1            UH        <span style="color: #000000;">1</span>          <span style="color: #000000;">0</span> lo0</pre></td></tr></table></div>

<p>If no <code>/etc/defaultrouter</code> set (file not exist), booting will set no default gateway as</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># netstat -rn</span>
&nbsp;
Routing Table: IPv4
  Destination           Gateway           Flags  Ref     Use     Interface
<span style="color: #660033;">--------------------</span> <span style="color: #660033;">--------------------</span> <span style="color: #660033;">-----</span> <span style="color: #660033;">-----</span> <span style="color: #660033;">----------</span> <span style="color: #660033;">---------</span>
192.168.40.0         192.168.40.91        U         <span style="color: #000000;">1</span>          <span style="color: #000000;">2</span> e1000g2
224.0.0.0            192.168.40.91        U         <span style="color: #000000;">1</span>          <span style="color: #000000;">0</span> e1000g2
127.0.0.1            127.0.0.1            UH        <span style="color: #000000;">1</span>          <span style="color: #000000;">0</span> lo0</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/10/check-routegateway-in-solaris-nets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Logging in to console and boot entering non-cluster mode</title>
		<link>https://lakm.us/postit/2010/08/ssh-192-168-4-200-l-adminpassword/</link>
		<comments>https://lakm.us/postit/2010/08/ssh-192-168-4-200-l-adminpassword/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 09:08:12 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=103</guid>
		<description><![CDATA[Logging in to console and boot entering non-cluster mode (with -x argument) in a Sparc machine $ ssh 192.168.4.200 -l admin Password: Waiting for daemons to initialize... Daemons ready Sun&#40;TM&#41; Integrated Lights Out Manager Version 3.0.2.50 Copyright 2008 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.   sc&#62; console -f Enter [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Logging in to console and <strong>boot</strong> entering non-cluster mode (with <code>-x</code> argument) in a Sparc machine</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">ssh</span> 192.168.4.200 <span style="color: #660033;">-l</span> admin
Password:
Waiting <span style="color: #000000; font-weight: bold;">for</span> daemons to initialize...
Daemons ready
Sun<span style="color: #7a0874; font-weight: bold;">&#40;</span>TM<span style="color: #7a0874; font-weight: bold;">&#41;</span> Integrated Lights Out Manager
Version 3.0.2.50
Copyright <span style="color: #000000;">2008</span> Sun Microsystems, Inc. All rights reserved.
Use is subject to license terms.
 
sc<span style="color: #000000; font-weight: bold;">&gt;</span> console <span style="color: #660033;">-f</span>
Enter <span style="color: #666666; font-style: italic;">#. to return to ALOM.</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #000000;">0</span><span style="color: #7a0874; font-weight: bold;">&#125;</span> ok boot <span style="color: #660033;">-x</span>
Boot device: <span style="color: #000000; font-weight: bold;">/</span>pci<span style="color: #000000; font-weight: bold;">@</span>0<span style="color: #000000; font-weight: bold;">/</span>pci<span style="color: #000000; font-weight: bold;">@</span>0<span style="color: #000000; font-weight: bold;">/</span>pci<span style="color: #000000; font-weight: bold;">@</span>2<span style="color: #000000; font-weight: bold;">/</span>scsi<span style="color: #000000; font-weight: bold;">@</span>0<span style="color: #000000; font-weight: bold;">/</span>disk<span style="color: #000000; font-weight: bold;">@</span>0,<span style="color: #000000;">0</span>:a  File and args: <span style="color: #660033;">-x</span>
SunOS Release <span style="color: #000000;">5.10</span> Version Generic_139555-08 <span style="color: #000000;">64</span>-bit
Copyright <span style="color: #000000;">1983</span>-<span style="color: #000000;">2009</span> Sun Microsystems, Inc.  All rights reserved.
Use is subject to license terms.</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/08/ssh-192-168-4-200-l-adminpassword/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Single permanent IP (up on boot) on one  &#8230;</title>
		<link>https://lakm.us/postit/2010/06/single-permanent-ip-up-on-boot-on-one/</link>
		<comments>https://lakm.us/postit/2010/06/single-permanent-ip-up-on-boot-on-one/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 04:47:44 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=98</guid>
		<description><![CDATA[Single permanent IP (up on boot) on one interface: /etc/inet/hosts content: # # Internet host table # ::1 localhost 127.0.0.1 localhost 192.168.40.91 cxnode01 .cxnode01 loghost 192.168.40.92 cxnode02 The interface where you want to bind the above ip: /etc/hostname.e1000g2 containing cxnode01]]></description>
				<content:encoded><![CDATA[<p>Single permanent IP (up on boot) on one interface:<br />
</code>/etc/inet/hosts</code> content:<br />
<code>#<br />
# Internet host table<br />
#<br />
::1     localhost<br />
127.0.0.1       localhost<br />
<b>192.168.40.91   cxnode01</b>        .cxnode01       loghost<br />
192.168.40.92   cxnode02</code></p>
<p>The interface where you want to bind the above ip:  <code>/etc/hostname.<b>e1000g2</b></code> containing<br />
<code><b>cxnode01</b></code></p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/06/single-permanent-ip-up-on-boot-on-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For ssh-server and client there exists S &#8230;</title>
		<link>https://lakm.us/postit/2010/04/for-ssh-server-and-client-there-exists-s/</link>
		<comments>https://lakm.us/postit/2010/04/for-ssh-server-and-client-there-exists-s/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 04:12:42 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[workaround]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=64</guid>
		<description><![CDATA[For ssh-server and client there exists SUNWsshcu, SUNWsshdr, SUNWsshdu, and SUNWsshr. So we can install them instead of OpenSSH. But there is bug that will show UTF-8 error, so we need to install also SUNWuiu8 for iconv as workaround.]]></description>
				<content:encoded><![CDATA[<p>For ssh-server and client there exists SUNWsshcu, SUNWsshdr, SUNWsshdu, and SUNWsshr. So we can install them instead of OpenSSH. But there is bug that will show UTF-8 error, so we need to install also SUNWuiu8 for <code>iconv</code> as workaround.</p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/04/for-ssh-server-and-client-there-exists-s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>$ iostat -En

c0t0d0 Soft Errors: 9 Ha &#8230;</title>
		<link>https://lakm.us/postit/2010/04/iostat-enc0t0d0-soft-errors-9-ha/</link>
		<comments>https://lakm.us/postit/2010/04/iostat-enc0t0d0-soft-errors-9-ha/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 03:38:30 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cdrom]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=63</guid>
		<description><![CDATA[$ iostat -En c0t0d0 Soft Errors: 9 Hard Errors: 2 Transport Errors: 1 Vendor: VBOX Product: CD-ROM ... Mount it: $ mount -F hsfs -o ro /dev/dsk/c0t0d0s0 /mnt]]></description>
				<content:encoded><![CDATA[<p><code>$ iostat -En</code><br />
<code><br />
<b>c0t0d0</b> Soft Errors: 9 Hard Errors: 2 Transport Errors: 1<br />
Vendor: VBOX  Product: CD-ROM ... </code></p>
<p>Mount it:<br />
<code>$ mount -F hsfs -o ro /dev/dsk/c0t0d0s0 /mnt </code></p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/04/iostat-enc0t0d0-soft-errors-9-ha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change hostname etc.


/etc/hosts
/e &#8230;</title>
		<link>https://lakm.us/postit/2010/04/change-hostname-etc-etchostse/</link>
		<comments>https://lakm.us/postit/2010/04/change-hostname-etc-etchostse/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 13:13:17 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=62</guid>
		<description><![CDATA[Change hostname etc. /etc/hosts /etc/nodenames /etc/hostname.[device] /etc/defaultrouter /etc/defaultdomain /etc/nodename]]></description>
				<content:encoded><![CDATA[<p>Change hostname etc.</p>
<p><code><br />
/etc/hosts<br />
/etc/nodenames<br />
/etc/hostname.[device]<br />
/etc/defaultrouter<br />
/etc/defaultdomain<br />
/etc/nodename<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/04/change-hostname-etc-etchostse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install package from directory 1. extra &#8230;</title>
		<link>https://lakm.us/postit/2010/04/install-package-from-directory1-extra/</link>
		<comments>https://lakm.us/postit/2010/04/install-package-from-directory1-extra/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 05:42:15 +0000</pubDate>
		<dc:creator><![CDATA[Arif]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://xp-racy.lan/postit/?p=60</guid>
		<description><![CDATA[Install package from directory 1. extract gunzip -c SUNWxxx.tar.gz &#124; tar -xvf - or unzip -q SUNWxxx.zip 2. install in the directory that has SUNWxxx directory in it pkgadd -d $PWD It will list installable package found within (including SUNWxxx)]]></description>
				<content:encoded><![CDATA[<p>Install package from directory<br />
1. extract<br />
<code>gunzip -c SUNWxxx.tar.gz | tar -xvf -</code><br />
or<br />
<code>unzip -q SUNWxxx.zip</p>
<p>2. install in the directory that has SUNWxxx directory in it<br />
<code>pkgadd -d $PWD</code><br />
It will list installable package found within (including SUNWxxx)</p>
]]></content:encoded>
			<wfw:commentRss>https://lakm.us/postit/2010/04/install-package-from-directory1-extra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
