<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Thrissur Accel IT Academy</title>
	<atom:link href="http://aitatech.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://aitatech.wordpress.com</link>
	<description>Just another Accel IT Academy Blog!</description>
	<lastBuildDate>Thu, 09 Jul 2009 09:52:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='aitatech.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/d40874b984201b7e8aa73193fd5f196b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Thrissur Accel IT Academy</title>
		<link>http://aitatech.wordpress.com</link>
	</image>
			<item>
		<title>Deploy Windows from Linux TFTP server using PXE</title>
		<link>http://aitatech.wordpress.com/2009/07/09/deploy-linux-from-windows-wdsris-server-using-pxelinux/</link>
		<comments>http://aitatech.wordpress.com/2009/07/09/deploy-linux-from-windows-wdsris-server-using-pxelinux/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:47:24 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=58</guid>
		<description><![CDATA[# apt-get install tftpd-hpa
# apt-get install dhcp3-server
# apt-get install samba
# apt-get install cabextract
# apt-get install syslinux
# apt-get install wget
We might also want some other packages for debugging:
# apt-get install tftp-hpa
# apt-get install ethereal
# apt-get install smbclient
# cd
# wget http://oss.netfarm.it/guides/ris-linux.tar.gz
# tar xvfz ris-linux.tar.gz
# cp –a ris-linux/* /usr/local/bin
Configuring DHCP
subnet 192.168.0.0 netmask 255.255.255.0 { range 192.168.0.100 192.168.0.200; option [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=58&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p># apt-get install tftpd-hpa</p>
<p># apt-get install dhcp3-server</p>
<p># apt-get install samba</p>
<p># apt-get install cabextract</p>
<p># apt-get install syslinux</p>
<p># apt-get install wget</p>
<p>We might also want some other packages for debugging:</p>
<p># apt-get install tftp-hpa</p>
<p># apt-get install ethereal</p>
<p># apt-get install smbclient</p>
<p># cd</p>
<p># wget http://oss.netfarm.it/guides/ris-linux.tar.gz</p>
<p># tar xvfz ris-linux.tar.gz</p>
<p># cp –a ris-linux/* /usr/local/bin</p>
<p><strong>Configuring DHCP</strong></p>
<p>subnet 192.168.0.0 netmask 255.255.255.0 { range 192.168.0.100 192.168.0.200; option broadcast-address 192.168.0.255; option routers 192.168.0.17; option domain-name-servers 192.168.0.17; option domain-name &#8220;lab2.local&#8221;; option subnet-mask 255.255.255.0; allow bootp;</p>
<p>host lab2-18</p>
<p>{ hardware ethernet 00:01:02:03:04:05; fixed-address 192.168.0.18; server-name “192.168.0.17”; next-server 192.168.0.17; filename “startrom.0”; } }</p>
<p><strong>Configuring TFTP</strong></p>
<p><em>/etc/default/tftpd-hpa</em>:</p>
<p>RUN_DAEMON=&#8221;yes&#8221;</p>
<p>OPTIONS=&#8221;-l -s /tftpboot -m /etc/tftpd-hpa.rules -vvv&#8221;</p>
<p><em> </em></p>
<p><em>/etc/tftpd-hpa.rules</em></p>
<p>rg \\ /</p>
<p><strong>The Boot Files</strong></p>
<p># mkdir /tftpboot</p>
<p># cd /tftpboot</p>
<p># mount /media/cdrom</p>
<p># cabextract /media/cdrom/I386/STARTROM.N1</p>
<p># ln –sf startrom.n12 startrom.0</p>
<p>We need the <em>NTLDR </em>and <em>NTDETECT.COM </em>files as well:</p>
<p># cp /media/cdrom/I386/SETUPLDR.BIN /tftpboot/ntldr</p>
<p># fixloader.py /tftpboot/ntldr</p>
<p># cp /media/cdrom/I386/NTDETECT.COM /tftpboot/ntdetect.com</p>
<p><em> </em></p>
<p><em>/tftpboot/winnt.sif</em></p>
<p>[SetupData]</p>
<p>OsLoadOptions = “/fastdetect /minint”</p>
<p>SetupSourceDevice =</p>
<p>“\Device\LanmanRedirector\<em>server</em>\<em>share</em>\<em>path</em>”</p>
<p>[UserData]</p>
<p>ComputerName = WindowsPE</p>
<p>In the <em>SetupSourceDevice </em>line, be sure to specify the server name, share name and path name. For example: SetupSourceDevice = “\Device\LanmanRedirector\lab2-17\RemInst\winpe”</p>
<p><strong>Configuring Samba</strong></p>
<p><em>/etc/samba/smb.conf</em></p>
<p>[global]</p>
<p>oplocks = false</p>
<p>level2 oplocks = false</p>
<p>encrypt passwords = true</p>
<p>passdb backend = tdbsam guest</p>
<p>obey pam restrictions = yes</p>
<p>guest account = nobody</p>
<p>invalid users = root</p>
<p>socket options = TCP_NODELAY</p>
<p>null passwords = true</p>
<p>[RemInst]</p>
<p>path = /tftpboot</p>
<p>browsable = true</p>
<p>read only = Yes</p>
<p>guest ok = Yes</p>
<p>[images]</p>
<p>path = /images</p>
<p>browsable = true</p>
<p>read only = Yes</p>
<p>guest ok = Yes</p>
<p><strong> </strong></p>
<p><strong>Copying the WinPE Files</strong></p>
<p># mkdir /tftpboot/winpe</p>
<p># cp –a /media/cdrom/* /tftpboot/winpe</p>
<p><strong>Starting the BINL Server</strong></p>
<p>This uses the BINL server found in the <em>ris-linux.tar.gz </em>file. First you need to fix the case of some of the files in the OSD image. Edit the <em>/usr/local/bin/fixup-repository.sh </em>and point the <em>REP </em>variable at <em>/tftpboot/winpe</em>. Then run it.</p>
<p># fixup-repository.sh</p>
<p>Then we need to generate a driver database. This is equivalent to the .PNF files that RIS uses. Unfortunately, as it stands, the script does not correctly deal with newer, IA64-enabled drivers. We need to make a couple of changes. There are two lines in the file that look like this:</p>
<p>if check[-1].startswith(‘nt’): They need to read like this.</p>
<p>if check[-1].startswith(‘ntx86’): Then run it:</p>
<p># cd /usr/local/bin</p>
<p># ./infparser.py /tftpboot/winpe/i386/inf</p>
<p>With the OSD image we used in the example, the result of running the command was: “Compiled 733 drivers”. Now you can run the BINL server:</p>
<p># /usr/local/bin/binlsrv.py</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=58&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/07/09/deploy-linux-from-windows-wdsris-server-using-pxelinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>Red Hat Enterprise Linux Subscription comparison</title>
		<link>http://aitatech.wordpress.com/2009/07/09/red-hat-enterprise-linux-subscription-comparison/</link>
		<comments>http://aitatech.wordpress.com/2009/07/09/red-hat-enterprise-linux-subscription-comparison/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:43:47 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=56</guid>
		<description><![CDATA[


Red Hat Enterprise Linux 2.1, 3, 4
Red Hat Enterprise Linux 5


Red Hat Enterprise Linux ES, Basic
Red Hat Enterprise Linux, Basic


Red Hat Enterprise Linux ES, Standard
Red Hat Enterprise Linux, Standard


Red Hat Enterprise Linux ES, Premium
Red Hat Enterprise Linux, Premium


Red Hat Enterprise Linux AS, Standard
Red Hat Enterprise Linux Advanced Platform, Standard


Red Hat Enterprise Linux AS, Premium
Red Hat [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=56&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><table border="0">
<tbody>
<tr>
<th><strong>Red Hat Enterprise Linux 2.1, 3, 4</strong></th>
<th><strong>Red Hat Enterprise Linux 5</strong></th>
</tr>
<tr>
<td>Red Hat Enterprise Linux ES, Basic</td>
<td>Red Hat Enterprise Linux, Basic</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux ES, Standard</td>
<td>Red Hat Enterprise Linux, Standard</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux ES, Premium</td>
<td>Red Hat Enterprise Linux, Premium</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux AS, Standard</td>
<td>Red Hat Enterprise Linux Advanced Platform, Standard</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux AS, Premium</td>
<td>Red Hat Enterprise Linux Advanced Platform, Premium</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux WS, Basic</td>
<td>Red Hat Enterprise Linux Desktop + Workstation option, Basic</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux WS, Standard</td>
<td>Red Hat Enterprise Linux Desktop + Workstation option, Standard</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux WS HPC Compute Node (2)</td>
<td>Red Hat Enterprise Linux for HPC Compute Nodes, Basic (Up to 2 sockets)</td>
</tr>
<tr>
<td>Red Hat Enterprise Linux WS HPC Compute Node (4)</td>
<td>Red Hat Enterprise Linux for HPC Compute Nodes, Basic (Up to 4 sockets)</td>
</tr>
</tbody>
</table>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=56&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/07/09/red-hat-enterprise-linux-subscription-comparison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>Using zebra for OSPF</title>
		<link>http://aitatech.wordpress.com/2009/07/09/using-zebra-for-ospf/</link>
		<comments>http://aitatech.wordpress.com/2009/07/09/using-zebra-for-ospf/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:40:35 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=54</guid>
		<description><![CDATA[
Zebra
Grab zebra.conf and ospfd.conf, copy them to /usr/local/etc.
Now start zebra:
# service zebra restart
And connect to the zebra daemon:
# telnet localhost zebra
If you can&#8217;t connect then check /var/log/zebra.log to see if it has any excuses.
The default password is &#8216;fish&#8217;, now we are going to change it.
First we put zebra in &#8216;enable&#8217; mode (this is a lot [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=54&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h3></h3>
<h4>Zebra</h4>
<p>Grab <a href="http://www.pointless.net/%7Ejasper/consume/docs/my-docs/zebra.conf">zebra.conf</a> and <a href="http://www.pointless.net/%7Ejasper/consume/docs/my-docs/ospfd.conf">ospfd.conf</a>, copy them to /usr/local/etc.</p>
<p>Now start zebra:</p>
<pre># service zebra restart</pre>
<p>And connect to the zebra daemon:</p>
<pre># telnet localhost zebra</pre>
<p>If you can&#8217;t connect then check /var/log/zebra.log to see if it has any excuses.</p>
<p>The default password is &#8216;fish&#8217;, now we are going to change it.</p>
<p>First we put zebra in &#8216;enable&#8217; mode (this is a lot like suing to root).</p>
<pre>zebra&gt; enable</pre>
<p>Yup, the password is fish again. The prompt should change to a # after you&#8217;ve typed it. (you should see something like this):</p>
<pre>zebra&gt; enable
Password:
zebra#</pre>
<p>Now we need to tell zebra we&#8217;re going to configure it, so type:</p>
<pre>zebra# configure terminal</pre>
<p>At this point it&#8217;s probably helpful to point out that zebra supports command line editing, tab completion, and command history&#8230;</p>
<p>If your offered multiple choices when you hit tab you can type &#8216;?&#8217; to get brief help on the commands available.</p>
<p>Your screen should look something like this:</p>
<pre>zebra# configure terminal
zebra(config)#</pre>
<p>First things first, lets change those passwords</p>
<pre>zebra(config)#
zebra(config)# password “passwd”
zebra(config)# enable password “passwd”</pre>
<p>Ok, lets check the changes we made, first, type <tt>exit</tt> to get out of configure mode, then:</p>
<pre>zebra# show running-config</pre>
<p>You can abrieviate it to <tt>sh run</tt> if you like.</p>
<p>You can now page through the config file, now with new encrypted passwords!</p>
<p>You&#8217;ll also notice something else &#8211; remember all those comments that where in the config file? Well zebra ignores them, and they will dissapear&#8230; (yes, this does suck).</p>
<p>Press space to page through the end of the config file</p>
<p>Now we&#8217;d better change the hostname to the hostname (or nodename) of this box. This will help if you ever cut and paste stuff from zebra to show other people for debuging reasons, or if you have multiple machines.</p>
<p>Enter config mode as we did before and then type:</p>
<pre>zebra(config)# hostname “yourhostname”
“yourhostname”(config)#</pre>
<p>As you can see the prompt changes to the hostname you just set</p>
<h4>Saving your changes</h4>
<p>This is important! if you forget to do this all your changes will be lost</p>
<p>in enable mode type <tt>copy running-config startup-config</tt>, you should see something like this:</p>
<pre>“yourhostname”# copy running-config startup-config
Configuration saved to /usr/local/etc/zebra.conf
“yourhostname”#</pre>
<p><tt>copy running-config startup-config</tt> can be, (and usually is), abbreviated to <tt>cop run sta</tt>. Say it out load in any pub and anyone who&#8217;s ever been anywhere near a cisco will look around them in surprise and alarm.</p>
<p>Seriously tho, this is the most common cause of problems with zebra and cisco IOS, you forget to save the config, the box gets rebooted later (weeks? months?) and it dosn&#8217;t work.</p>
<p>So as you lie awake in bed tonight repeat <tt>cop run sta</tt> to yourself 50 times. One day you may even thank me for it.</p>
<p>On another note (unless your configureing static routes) you&#8217;ll probably never need to touch zebra again.</p>
<h4>ospfd</h4>
<p>Ok, run ospfd:</p>
<pre># service ospfd restart</pre>
<p>and connect to it:</p>
<pre>% telnet localhost ospfd</pre>
<p>Now log in as you did with zebra, and change the passwords and the hostname.</p>
<pre>list interfaces
choose which ones to use
enable ospf
router-id
redistribute connected route-map just-10
passive-interface unused interfaces
add a 'description' to the interfaces you plan to use.
add a 'cost' to the interfaces you plan to use.
generate a md5 'key' (just 8 hex digits).
then, in the 'router ospf' section:
network base/mask area 0
now exit out of config mode
'sh ip ospf neighbor'
'sh ip ospf database'
run a packet sniffer to check
'terminal moniter' to get logging to your terminal
'no terminal moniter' to switch it off.
fiddle.</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/54/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/54/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/54/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=54&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/07/09/using-zebra-for-ospf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>List of Linux distributions</title>
		<link>http://aitatech.wordpress.com/2009/07/09/list-of-linux-distributions/</link>
		<comments>http://aitatech.wordpress.com/2009/07/09/list-of-linux-distributions/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 09:33:16 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/2009/07/09/list-of-linux-distributions/</guid>
		<description><![CDATA[* Debian-based
o 1.1 Knoppix-based
o 1.2 Ubuntu-based
+ 1.2.1 Official distributions
+ 1.2.2 Contributed distributions
+ 1.2.3 Unofficial distributions
* Gentoo-based
* RPM-based
o 3.1 Fedora-based
o 3.2 Red Hat Enterprise Linux-based
o 3.3 Others (RPM-based)
* Slackware-based
o 4.1 SLAX-based
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=53&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>* Debian-based<br />
o 1.1 Knoppix-based<br />
o 1.2 Ubuntu-based<br />
+ 1.2.1 Official distributions<br />
+ 1.2.2 Contributed distributions<br />
+ 1.2.3 Unofficial distributions<br />
* Gentoo-based<br />
* RPM-based<br />
o 3.1 Fedora-based<br />
o 3.2 Red Hat Enterprise Linux-based<br />
o 3.3 Others (RPM-based)<br />
* Slackware-based<br />
o 4.1 SLAX-based</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=53&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/07/09/list-of-linux-distributions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>Easy user process termination in Solaris and Linux</title>
		<link>http://aitatech.wordpress.com/2009/07/02/easy-user-process-termination-in-solaris-and-linux/</link>
		<comments>http://aitatech.wordpress.com/2009/07/02/easy-user-process-termination-in-solaris-and-linux/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:35:19 +0000</pubDate>
		<dc:creator>elakatanish</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[pgrep]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[user]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=48</guid>
		<description><![CDATA[Does anyone know how to determine a user process through a single command in Solaris and Linux ? (Iam not speaking about ps command)
Here is the command
# pgrep -l -u &#60;username&#62;
eg: # pgrep -l -u test
This will display the PIDs and Process names
Eureka..
After this  you can kill the process  with its id
# kill [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=48&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Does anyone know how to determine a user process through a single command in Solaris and Linux ? (Iam not speaking about ps command)</p>
<p>Here is the command</p>
<p><strong># pgrep -l -u &lt;username&gt;</strong></p>
<p>eg: <strong># pgrep -l -u test</strong></p>
<p>This will display the PIDs and Process names</p>
<p>Eureka..</p>
<p>After this  you can kill the process  with its id</p>
<p><strong># kill &lt;PID value&gt;</strong></p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=48&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/07/02/easy-user-process-termination-in-solaris-and-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62d4e8dc20311c7b576d7e3b8d7a35dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elakatanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Open solaris root login</title>
		<link>http://aitatech.wordpress.com/2009/06/23/open-solaris-root-login/</link>
		<comments>http://aitatech.wordpress.com/2009/06/23/open-solaris-root-login/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 08:59:32 +0000</pubDate>
		<dc:creator>elakatanish</dc:creator>
				<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=45</guid>
		<description><![CDATA[In open solaris for logging in as root user the steps are :
1. login as a Primary administrator(user created during the installation)
2.Switch to root user
# su  &#8211; root
3. Open the /etc/user_attr file and remove the entry type=role for the root account
4. After this try for root login and it will be successful
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=45&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In open solaris for logging in as root user the steps are :</p>
<p>1. login as a Primary administrator(user created during the installation)</p>
<p>2.Switch to root user</p>
<p><strong># su  &#8211; root</strong></p>
<p>3. Open the <strong><em>/etc/user_attr</em></strong> file and remove the entry <strong><em>type=role </em></strong>for the <em><strong>root</strong></em> account</p>
<p>4. After this try for root login and it will be successful</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=45&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/06/23/open-solaris-root-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62d4e8dc20311c7b576d7e3b8d7a35dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elakatanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Login as root in ubuntu linux</title>
		<link>http://aitatech.wordpress.com/2009/06/06/login-as-root-in-ubuntu-linux/</link>
		<comments>http://aitatech.wordpress.com/2009/06/06/login-as-root-in-ubuntu-linux/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 11:13:25 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=40</guid>
		<description><![CDATA[By default the root user can not login in ubuntu linux, here I&#8217;m telling the steps to activate root login
1. Give password for root by loging as user
#sudo passwd root
2. Edit the gdm.conf configuration file
#sudo vi /etc/gdm/gdm.conf
Change &#8220;AllowrootLogin=false&#8221; into       &#8220;AllowrootLogin=true&#8221;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=40&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>By default the root user can not login in ubuntu linux, here I&#8217;m telling the steps to activate root login</p>
<p>1. Give password for root by loging as user<br />
#sudo passwd root</p>
<p>2. Edit the gdm.conf configuration file<br />
#sudo vi /etc/gdm/gdm.conf<br />
Change &#8220;AllowrootLogin=false&#8221; into       &#8220;AllowrootLogin=true&#8221;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=40&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/06/06/login-as-root-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>Hi I am Anto</title>
		<link>http://aitatech.wordpress.com/2009/06/02/hi-i-am-anto/</link>
		<comments>http://aitatech.wordpress.com/2009/06/02/hi-i-am-anto/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 11:28:41 +0000</pubDate>
		<dc:creator>antovincent</dc:creator>
				<category><![CDATA[Blogroll]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=37</guid>
		<description><![CDATA[Hi I am Anto Vincent, I am the dude who specializes in virtualization, portable appz, Linux, Solaris, ESXi&#8230;
Expect posts about these topics from me soon..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=37&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi I am Anto Vincent, I am the dude who specializes in virtualization, portable appz, Linux, Solaris, ESXi&#8230;</p>
<p>Expect posts about these topics from me soon..</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=37&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/06/02/hi-i-am-anto/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e97766a410905cb9abe2ccef51b715d0?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">antovincent</media:title>
		</media:content>
	</item>
		<item>
		<title>Hi iam back</title>
		<link>http://aitatech.wordpress.com/2009/06/02/hi-iam-back/</link>
		<comments>http://aitatech.wordpress.com/2009/06/02/hi-iam-back/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 11:17:15 +0000</pubDate>
		<dc:creator>elakatanish</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[solaris]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=33</guid>
		<description><![CDATA[Can any one configure iscsi in solaris 10 ?
Any idea about iscsi?
Its just a storage for clutsers , load balancing , Veritas , Datatbase etc&#8230;
So no need of any external storage media. Got it !
Yah ! Just like NAS
Wait for the solution &#8230;&#8230;&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=33&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Can any one configure iscsi in solaris 10 ?</p>
<p>Any idea about iscsi?</p>
<p>Its just a storage for clutsers , load balancing , Veritas , Datatbase etc&#8230;</p>
<p>So no need of any external storage media. Got it !</p>
<p>Yah ! Just like NAS</p>
<p>Wait for the solution &#8230;&#8230;&#8230;</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=33&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/06/02/hi-iam-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62d4e8dc20311c7b576d7e3b8d7a35dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elakatanish</media:title>
		</media:content>
	</item>
		<item>
		<title>Hi I am Anish</title>
		<link>http://aitatech.wordpress.com/2009/05/26/hi-i-am-anish/</link>
		<comments>http://aitatech.wordpress.com/2009/05/26/hi-i-am-anish/#comments</comments>
		<pubDate>Tue, 26 May 2009 00:47:41 +0000</pubDate>
		<dc:creator>elakatanish</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Accel]]></category>
		<category><![CDATA[anish]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[thrissur]]></category>

		<guid isPermaLink="false">http://aitatech.wordpress.com/?p=29</guid>
		<description><![CDATA[Hi Guys,
I am Anish, the Solaris Dude in Accel IT Academy, Thrissur. I will be posting some tips about computers in general soon. This is my first here. Expect more..
take care..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=29&subd=aitatech&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Hi Guys,</p>
<p>I am Anish, the Solaris Dude in Accel IT Academy, Thrissur. I will be posting some tips about computers in general soon. This is my first here. Expect more..</p>
<p>take care..</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/aitatech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/aitatech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/aitatech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/aitatech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/aitatech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/aitatech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/aitatech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/aitatech.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/aitatech.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/aitatech.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=aitatech.wordpress.com&blog=1466101&post=29&subd=aitatech&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://aitatech.wordpress.com/2009/05/26/hi-i-am-anish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/62d4e8dc20311c7b576d7e3b8d7a35dd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">elakatanish</media:title>
		</media:content>
	</item>
	</channel>
</rss>