<?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>System Adm &#187; HP-UX</title>
	<atom:link href="http://www.system.adm.br/tag/hp-ux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.system.adm.br</link>
	<description>Some IT Tips (Linux, Unix, HP-UX, AIX, Solaris, etc).</description>
	<lastBuildDate>Wed, 19 May 2010 20:11:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Check powerpath links in HP-UX</title>
		<link>http://www.system.adm.br/2009/12/check-powerpath-links-in-hp-ux/</link>
		<comments>http://www.system.adm.br/2009/12/check-powerpath-links-in-hp-ux/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 20:22:43 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=202</guid>
		<description><![CDATA[To check if the powerpath links are up in HP-UX, you can use the following command: # powermt display dev=all &#160;]]></description>
			<content:encoded><![CDATA[<p>To check if the powerpath links are up in HP-UX, you can use the following command:</p>
<p>	<span style="font-size: 12px;"><code># powermt display dev=all</code></span></p>
<p>	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/12/check-powerpath-links-in-hp-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lock an user account in HP-UX</title>
		<link>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/</link>
		<comments>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/#comments</comments>
		<pubDate>Thu, 24 Sep 2009 17:45:17 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=171</guid>
		<description><![CDATA[To lock an user account in HP-UX, you can use the following command: # /usr/lbin/modprpw -m alock=YES USER]]></description>
			<content:encoded><![CDATA[<p>To lock an user account in HP-UX, you can use the following command:</p>
<p>	<span style="font-size: 12px;"><code># /usr/lbin/modprpw -m alock=YES USER</code></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/09/lock-an-user-account-in-hp-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Merge many depots</title>
		<link>http://www.system.adm.br/2009/08/merge-many-depots/</link>
		<comments>http://www.system.adm.br/2009/08/merge-many-depots/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 17:58:23 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[shell]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=162</guid>
		<description><![CDATA[When you have many depot files, you can create a single big depot and install it instead of install one by one. Let&#8217;s assume that you need install the following depots, and they are all located in the directory /tmp/install/depots: autoconf-2.64-hppa-11.11.depot bison-2.4.1-hppa-11.11.depot gawk-3.1.7-hppa-11.11.depot sed-4.2.1-hppa-11.11.depot tcltk-8.5.7-hppa-11.11.depot texinfo-4.13-hppa-11.11.depot zip-3.0-hppa-11.11.depot To create a single depot, run the follow [...]]]></description>
			<content:encoded><![CDATA[<p>When you have many depot files, you can create a single big depot and install it instead of install one by one. Let&rsquo;s assume that you need install the following depots, and they are all located in the directory /tmp/install/depots:</p>
<p>	<span style="font-size: 12px;"><code>autoconf-2.64-hppa-11.11.depot bison-2.4.1-hppa-11.11.depot gawk-3.1.7-hppa-11.11.depot sed-4.2.1-hppa-11.11.depot tcltk-8.5.7-hppa-11.11.depot texinfo-4.13-hppa-11.11.depot zip-3.0-hppa-11.11.depot</code></span></p>
<p>	To create a single depot, run the follow commands:<br />
	<span style="font-size: 12px;"><code># cd /tmp/install/ for i in `ls depots/*.depot` ;do swcopy -s /tmp/install/$i \* @/tmp/install/big;done</code></span></p>
<p>	Now, to install it, you can use:<br />
	<span style="font-size: 12px;"><code># swinstall -s /tmp/install/big</code></span></p>
<p>	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/08/merge-many-depots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing installed packages in HP-UX</title>
		<link>http://www.system.adm.br/2009/05/listing-installed-packages-in-hp-ux/</link>
		<comments>http://www.system.adm.br/2009/05/listing-installed-packages-in-hp-ux/#comments</comments>
		<pubDate>Wed, 13 May 2009 12:23:13 +0000</pubDate>
		<dc:creator>Lincoln Zuljewic Silva</dc:creator>
				<category><![CDATA[HP-UX]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.system.adm.br/?p=97</guid>
		<description><![CDATA[To list all installed packages on HP-UX, you can use the following command: # swlist -l &#160;]]></description>
			<content:encoded><![CDATA[<p>To list all installed packages on HP-UX, you can use the following command:</p>
<p>	<span style="font-size: 12px;"><code># swlist -l</code></span></p>
<p>	&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.system.adm.br/2009/05/listing-installed-packages-in-hp-ux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
