<?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>C h a k s' C o r n e r &#187; Research Work</title>
	<atom:link href="http://chakkaradeep.wordpress.com/category/research-work/feed/" rel="self" type="application/rss+xml" />
	<link>http://chakkaradeep.wordpress.com</link>
	<description>Enjoy Computing!</description>
	<lastBuildDate>Tue, 07 Apr 2009 01:26:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='chakkaradeep.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/dec6c8242164cf113e53d8d9af323b7e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>C h a k s' C o r n e r &#187; Research Work</title>
		<link>http://chakkaradeep.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chakkaradeep.wordpress.com/osd.xml" title="C h a k s&#8217; C o r n e r" />
		<item>
		<title>Adding entries to ldap &#8211; PyLDAP</title>
		<link>http://chakkaradeep.wordpress.com/2007/04/24/adding-entries-to-ldap-pyldap/</link>
		<comments>http://chakkaradeep.wordpress.com/2007/04/24/adding-entries-to-ldap-pyldap/#comments</comments>
		<pubDate>Tue, 24 Apr 2007 04:05:40 +0000</pubDate>
		<dc:creator>Chaks</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Research Work]]></category>

		<guid isPermaLink="false">http://chakkaradeep.wordpress.com/2007/04/24/adding-entries-to-ldap-pyldap/</guid>
		<description><![CDATA[In my previous post I explained on how we connect to ldap server and query the ldap server through python and ldap bindings. Today let us see how we add and delete entries from the ldap server using the same python and ldap bindings
Tthe add_entry function,
 def add_entry(self,machine_name):
try:
self.dn=&#8217;mc=&#8217;+machine_name+&#8217;,dc=udms,dc=com&#8217;
self.modlist=[]
self.modlist.append((&#8216;objectClass&#8217;,['top','udms']))
self.modlist.append((&#8216;mc&#8217;,machine_name))
self.modlist.append((&#8216;ip&#8217;,'192.168.1.4&#8242;))self.ldms_var.add_s(self.dn,self.modlist)
print &#8220;Machine &#8220;+machine_name+&#8221; added&#8221;
except ldap.LDAPError,error_message:
print error_message
Here we create [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=97&subd=chakkaradeep&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In my <a href="http://chakkaradeep.wordpress.com/2007/04/16/small-introduction-to-pyldap/" target="_blank">previous post</a> I explained on how we connect to ldap server and query the ldap server through python and ldap bindings. Today let us see how we add and delete entries from the ldap server using the same python and ldap bindings</p>
<p><span id="more-97"></span>Tthe <em>add_entry</em> function,</p>
<ol> def add_entry(self,machine_name):<br />
try:<br />
self.dn=&#8217;mc=&#8217;+machine_name+&#8217;,dc=udms,dc=com&#8217;<br />
self.modlist=[]<br />
self.modlist.append((&#8216;objectClass&#8217;,['top','udms']))<br />
self.modlist.append((&#8216;mc&#8217;,machine_name))<br />
self.modlist.append((&#8216;ip&#8217;,'192.168.1.4&#8242;))self.ldms_var.add_s(self.dn,self.modlist)<br />
print &#8220;Machine &#8220;+machine_name+&#8221; added&#8221;<br />
except ldap.LDAPError,error_message:<br />
print error_message</ol>
<p>Here we create a dictionary of the attributes and their values and pass to ldap&#8217;s <em>add_s </em>function along with the distinguished name (dn)</p>
<p>The <em>delete_entry</em> function,</p>
<ul> def delete_entry(self,machine_name):<br />
try:<br />
self.dn=&#8217;mc=&#8217;+machine_name+&#8217;,dc=udms,dc=com&#8217;<br />
self.ldms_var.delete_s(self.dn)<br />
print &#8220;Machine &#8220;+machine_name+&#8221; removed&#8221;<br />
except ldap.LDAPError,error_message:<br />
print error_message</ul>
<p>Here we specify only the distinguished name (dn) to the ldap&#8217;s <em>delete_s </em>function</p>
<p>If you take the normal <em>ldapadd </em>and <em>ldapdelete</em> commands, you could easily figure out what we are doing with pyldap</p>
<p><em>ldapadd </em>example,</p>
<p>l<em>dapadd -x -W -D &#8220;cn=admin,dc=udms,dc=com&#8221; -f ldapuser.ldif</em></p>
<p>The <em>ldapuser.ldif</em> has all the attributes and dn specified.</p>
<p><em>ldapdelete </em>example,</p>
<p><em>ldapdelete -x -W -D &#8220;cn=admin,dc=udms,dc=com&#8221; &#8220;mc=client2,dc=udms,dc=com&#8221; </em></p>
<p><a href="http://creativecommons.org/licenses/by/2.5/" rel="license"><img src="http://creativecommons.org/images/public/somerights20.png" alt="Creative Commons License" style="border-width:0;" /></a> <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="license"><img src="http://i.creativecommons.org/l/by-sa/2.5/88x31.png" alt="Creative Commons License" style="border-width:0;" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chakkaradeep.wordpress.com/97/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chakkaradeep.wordpress.com/97/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chakkaradeep.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chakkaradeep.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chakkaradeep.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chakkaradeep.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chakkaradeep.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chakkaradeep.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chakkaradeep.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chakkaradeep.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chakkaradeep.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chakkaradeep.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=97&subd=chakkaradeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chakkaradeep.wordpress.com/2007/04/24/adding-entries-to-ldap-pyldap/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94894baff370de381988daaa0011ee42?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Chaks</media:title>
		</media:content>

		<media:content url="http://creativecommons.org/images/public/somerights20.png" medium="image">
			<media:title type="html">Creative Commons License</media:title>
		</media:content>

		<media:content url="http://i.creativecommons.org/l/by-sa/2.5/88x31.png" medium="image">
			<media:title type="html">Creative Commons License</media:title>
		</media:content>
	</item>
		<item>
		<title>Small Introduction to PyLDAP</title>
		<link>http://chakkaradeep.wordpress.com/2007/04/16/small-introduction-to-pyldap/</link>
		<comments>http://chakkaradeep.wordpress.com/2007/04/16/small-introduction-to-pyldap/#comments</comments>
		<pubDate>Mon, 16 Apr 2007 09:28:51 +0000</pubDate>
		<dc:creator>Chaks</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Research Work]]></category>

		<guid isPermaLink="false">http://chakkaradeep.wordpress.com/2007/04/16/small-introduction-to-pyldap/</guid>
		<description><![CDATA[PyLDAP is the Python LDAP API bindings which provides strong interface for python programs to access Directory Services.
I started off with PyLDAP today and thought let me help my friends too   and thus this entry to my  blog  
I have written a small LDAP class as a python module and a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=76&subd=chakkaradeep&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://python-ldap.sourceforge.net/" target="_blank">PyLDAP</a> is the Python LDAP API bindings which provides strong interface for python programs to access Directory Services.</p>
<p>I started off with PyLDAP today and thought let me help my friends too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and thus this entry to my  blog <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have written a small LDAP class as a python module and a main program which creates the ldap  class object and displays the current OUs and Users associated with the OUs.</p>
<p>First let me start with the <em>main.py</em> file (Please bear with the indentations as I am not able to bring the indentation here in wordpress)</p>
<p><span id="more-76"></span></p>
<ul> import ldap<br />
import udmsldap<br />
import stringdef main():<br />
ldms_ldap= udmsldap.UdmsLDAP(&#8220;udms-server.udms.com&#8221;,&#8221;cn=admin,dc=udms,dc=com&#8221;,&#8221;genius&#8221;)result_ous=ldms_ldap.get_ous()<br />
result_users=ldms_ldap.get_users()parse_ous(result_ous)print(&#8221; &#8220;)</p>
<p>parse_users(result_users)</p>
<p>ldms_ldap.add_entry()</p>
<p>def parse_ous(result_ous):<br />
print &#8220;Number of Organization Units : &#8221; + str(len(result_ous))<br />
for i in range(len(result_ous)):<br />
for entry in result_ous[i]:<br />
print entry[0].split(&#8220;,&#8221;)[0]</p>
<p>def parse_users(result_users):<br />
print &#8220;Number of Users : &#8221; + str(len(result_users))<br />
print &#8220;Users&#8221; + &#8221; &#8211;&gt; &#8221; + &#8220;OU&#8221;<br />
print &#8220;*************&#8221;<br />
for i in range(len(result_users)):<br />
for entry in result_users[i]:<br />
print entry[0].split(&#8220;,&#8221;)[0].split(&#8220;=&#8221;)[1] + &#8221; &#8211;&gt; &#8221; + entry[0].split(&#8220;,&#8221;)[1].split(&#8220;=&#8221;)[1]</p>
<p>if __name__==&#8217;__main__&#8217;:<br />
main()</ul>
<p>Explanation is simple, I create an object for <em>UdmsLDAP Class</em> which is in the module <em>udmsldap </em>(see in the import section) and call two member functions  <em>get_ous </em>and <em>get_users</em> and parse the ou and users using the functions <em>parse_ous</em> and <em>parse_users</em> and display the same, respectively.</p>
<ul> import ldap<br />
import string<br />
import ldap.modlistclass UdmsLDAP:<br />
def __init__(self,domain_str,bind_dn,bind_pwd):<br />
self.timeout=0<br />
self.result_set=[]self.ldms_var=ldap.open(domain_str)try:<br />
self.ldms_var.simple_bind(bind_dn,bind_pwd)<br />
except ldap.LDAPError, error_message:<br />
print &#8220;Couldnt connect to ldap server&#8221;</p>
<p>def get_ous(self):<br />
self.result_set=[]<br />
try:<br />
result_id=self.ldms_var.search(&#8220;dc=udms,dc=com&#8221;,ldap.SCOPE_SUBTREE,&#8221;ou=*&#8221;,None)<br />
while 1:<br />
result_type, result_data = self.ldms_var.result(result_id, self.timeout)<br />
if result_data == []:<br />
break<br />
else:<br />
if result_type == ldap.RES_SEARCH_ENTRY:<br />
self.result_set.append(result_data)<br />
except ldap.LDAPError, error_message:<br />
print error_message<br />
return self.result_set</p>
<p>def get_users(self):<br />
self.result_set=[]<br />
try:<br />
result_id=self.ldms_var.search(&#8220;dc=udms,dc=com&#8221;,ldap.SCOPE_SUBTREE,&#8221;uid=*&#8221;,None)<br />
while 1:<br />
result_type, result_data = self.ldms_var.result(result_id, self.timeout)<br />
if result_data == []:<br />
break<br />
else:<br />
if result_type == ldap.RES_SEARCH_ENTRY:<br />
self.result_set.append(result_data)<br />
except ldap.LDAPError, error_message:<br />
print error_message<br />
return self.result_set</p>
<p>def add_entry(self):<br />
try:<br />
self.dn=&#8217;mc=client2,dc=udms,dc=com&#8217;<br />
self.modlist=[]<br />
self.modlist.append((&#8216;objectClass&#8217;,['top','udms']))<br />
self.modlist.append((&#8216;mc&#8217;,'client2&#8242;))<br />
self.modlist.append((&#8216;ip&#8217;,'192.168.1.4&#8242;))</p>
<p>self.ldms_var.add_s(self.dn,self.modlist)<br />
except ldap.LDAPError,error_message:<br />
print error_message</ul>
<p>I start off with initializing the ldap variable in the constructor. The two things which are to be noted are,</p>
<p><em>self.ldms_var=ldap.open(domain_str) </em></p>
<p>the <em>open</em> function opens a connection to the ldap server.</p>
<p><em>self.ldms_var.simple_bind(bind_dn,bind_pwd)</em></p>
<p>the <em>bind </em>function is to bind us with the ldap server to perform the directory services functions.</p>
<p>Then, we have our member functions,</p>
<p><u><em>get_ous</em></u></p>
<p>Here I perform a <em>ldap search </em>for the object class Organization Unit.</p>
<p><em>self.ldms_var.search(&#8220;dc=ldms,dc=com&#8221;,ldap.SCOPE_SUBTREE,&#8221;ou=*&#8221;,None)</em></p>
<p>And get the results in the resultant set of arrays and return back to <em>main.py </em>for parsing and displaying them.</p>
<p><u><em>get_users</em></u></p>
<p>Here I perform a <em>ldap search </em>for the object class <em>uid</em>.</p>
<p><em>self.ldms_var.search(&#8220;dc=ldms,dc=com&#8221;,ldap.SCOPE_SUBTREE,&#8221;uid=*&#8221;,None)</em></p>
<p>And get the results in the resultant set of arrays and return back to <em>main.py </em>for parsing and displaying them.</p>
<p>The parsing done in <em>main.py </em>is self explanatory <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this helps to start off with PyLDAP <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://creativecommons.org/licenses/by/2.5/" rel="license"><img src="http://creativecommons.org/images/public/somerights20.png" alt="Creative Commons License" style="border-width:0;" /></a> <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="license"><img src="http://i.creativecommons.org/l/by-sa/2.5/88x31.png" alt="Creative Commons License" style="border-width:0;" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chakkaradeep.wordpress.com/76/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chakkaradeep.wordpress.com/76/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chakkaradeep.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chakkaradeep.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chakkaradeep.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chakkaradeep.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chakkaradeep.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chakkaradeep.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chakkaradeep.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chakkaradeep.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chakkaradeep.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chakkaradeep.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=76&subd=chakkaradeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chakkaradeep.wordpress.com/2007/04/16/small-introduction-to-pyldap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94894baff370de381988daaa0011ee42?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Chaks</media:title>
		</media:content>

		<media:content url="http://creativecommons.org/images/public/somerights20.png" medium="image">
			<media:title type="html">Creative Commons License</media:title>
		</media:content>

		<media:content url="http://i.creativecommons.org/l/by-sa/2.5/88x31.png" medium="image">
			<media:title type="html">Creative Commons License</media:title>
		</media:content>
	</item>
		<item>
		<title>Seeing a new world of Technology !</title>
		<link>http://chakkaradeep.wordpress.com/2007/02/26/seeing-a-new-world-of-technology/</link>
		<comments>http://chakkaradeep.wordpress.com/2007/02/26/seeing-a-new-world-of-technology/#comments</comments>
		<pubDate>Mon, 26 Feb 2007 08:34:54 +0000</pubDate>
		<dc:creator>Chaks</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSolaris]]></category>
		<category><![CDATA[Research Work]]></category>

		<guid isPermaLink="false">http://chakkaradeep.wordpress.com/2007/02/26/seeing-a-new-world-of-technology/</guid>
		<description><![CDATA[www.opensolaris.org
I think its quite late that I came to know about the OpenSolaris Project . I didnt knew till today that Sun is also moving in a direction similar way the OpenSource giants are (RedHat, Novell, Linspire etc.,)
From the FAQ Section
The OpenSolaris Project consists of three key elements: 

the OpenSolaris   source code,
 the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=45&subd=chakkaradeep&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.opensolaris.org">www.opensolaris.org</a></p>
<p>I think its quite late that I came to know about the <a href="http://www.opensolaris.org">OpenSolaris Project</a> . I didnt knew till today that Sun is also moving in a direction similar way the OpenSource giants are (RedHat, Novell, Linspire etc.,)</p>
<p>From the <a href="http://opensolaris.org/os/about/faq/general_faq/#opensolaris-solaris">FAQ Section</a></p>
<p><em>The OpenSolaris Project consists of three key elements: </em></p>
<ul>
<li><em>the OpenSolaris   source code,</em></li>
<li><em> the OpenSolaris developer community, and</em></li>
<li><em>a website for   collaboration: opensolaris.org. </em></li>
</ul>
<p><em>The Solaris OS, however, is Sun&#8217;s operating   system product, and future versions of Solaris will be based on technology   from the OpenSolaris project. Solaris is available as a free binary download,   and Sun offers service packages and regular updates. So, Solaris is a product   supported by a company; OpenSolaris is a development project run by an   community of developers. </em></p>
<p>Am pretty happy to see this and I have also ordered my <a href="http://www2.sun.de/dc/forms/reg_us_2211_391.jsp">Free Solaris Express free DVD</a> <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>There are many OpenSolaris based distributions and I think <a href="http://www.gnusolaris.org/gswiki">NexentaOS</a> seems to be promising.</p>
<p>I am very sure, this path, <strong>GNU/Solaris</strong> Community,  is also gonna rock like the<strong> </strong>normal <strong>GNU/Linux</strong> Communities and am happy that I would be using them pretty much in my Masters study <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I downloaded NexentaOS Alpha 6 and its ready to get tested tomorrow  !</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chakkaradeep.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chakkaradeep.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chakkaradeep.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chakkaradeep.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chakkaradeep.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chakkaradeep.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chakkaradeep.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chakkaradeep.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chakkaradeep.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chakkaradeep.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chakkaradeep.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chakkaradeep.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=45&subd=chakkaradeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chakkaradeep.wordpress.com/2007/02/26/seeing-a-new-world-of-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94894baff370de381988daaa0011ee42?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Chaks</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu on Sun&#8217;s UltraSparc (&#8220;Niagara&#8221;) Processor !</title>
		<link>http://chakkaradeep.wordpress.com/2007/02/23/ubuntu-on-suns-ultrasparc-niagara-processor/</link>
		<comments>http://chakkaradeep.wordpress.com/2007/02/23/ubuntu-on-suns-ultrasparc-niagara-processor/#comments</comments>
		<pubDate>Thu, 22 Feb 2007 23:26:51 +0000</pubDate>
		<dc:creator>Chaks</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Research Work]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://chakkaradeep.wordpress.com/2007/02/23/ubuntu-on-suns-ultrasparc-niagara-processor/</guid>
		<description><![CDATA[Well, I was really surprised to see Ubuntu being the first ever Linux Distribution/Operating System to join the Sun UltraSparc T1 Family !..kewl isnt it  
Here is the ISO to download 
Will be trying it out in the coming week,may be tuesday or wednesday.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=42&subd=chakkaradeep&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Well, I was really surprised to see Ubuntu being the first ever Linux Distribution/Operating System to join the Sun UltraSparc T1 Family !..kewl isnt it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://ubuntu-releases.cs.umn.edu//6.10/ubuntu-6.10-server-sparc.iso">Here is the ISO to download </a></p>
<p>Will be trying it out in the coming week,may be tuesday or wednesday.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/chakkaradeep.wordpress.com/42/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/chakkaradeep.wordpress.com/42/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chakkaradeep.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chakkaradeep.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chakkaradeep.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chakkaradeep.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chakkaradeep.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chakkaradeep.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chakkaradeep.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chakkaradeep.wordpress.com/42/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chakkaradeep.wordpress.com/42/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chakkaradeep.wordpress.com/42/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chakkaradeep.wordpress.com&blog=428358&post=42&subd=chakkaradeep&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://chakkaradeep.wordpress.com/2007/02/23/ubuntu-on-suns-ultrasparc-niagara-processor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/94894baff370de381988daaa0011ee42?s=96&#38;d=monsterid&#38;r=G" medium="image">
			<media:title type="html">Chaks</media:title>
		</media:content>
	</item>
	</channel>
</rss>