<?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>ArnaBlog</title>
	<atom:link href="http://arnabonweb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://arnabonweb.wordpress.com</link>
	<description>I write because I like to share my thoughts</description>
	<lastBuildDate>Mon, 21 Sep 2009 03:46:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='arnabonweb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/fc53499d9d6ccb87f59d954fcfcfe3af?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>ArnaBlog</title>
		<link>http://arnabonweb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://arnabonweb.wordpress.com/osd.xml" title="ArnaBlog" />
	<atom:link rel='hub' href='http://arnabonweb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Tutorial: Configuring Ubuntu as PDC</title>
		<link>http://arnabonweb.wordpress.com/2009/09/21/tutorial-configuring-ubuntu-as-pdc/</link>
		<comments>http://arnabonweb.wordpress.com/2009/09/21/tutorial-configuring-ubuntu-as-pdc/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 03:46:09 +0000</pubDate>
		<dc:creator>Arnab</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[domain server]]></category>
		<category><![CDATA[pdc]]></category>
		<category><![CDATA[Primary domain server]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://arnabonweb.wordpress.com/?p=19</guid>
		<description><![CDATA[After a lot of effort I was able to configure Ubuntu (in my sister&#8217;s workplace) as a Primary Domain Server for client machines running Windows. I am going to tell you the process step by step. I think it will solve your problem. If not comment here with what is the error you are getting. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=19&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After a lot of effort I was able to configure Ubuntu (in my sister&#8217;s workplace) as a Primary Domain Server for  client machines running Windows. I am going to tell you the process step by step. I think it will solve your problem. If not comment here with what is the error you are getting.</p>
<p><span id="more-19"></span></p>
<p>Now as I was experimenting on this in my home, I installed Windows XP SP2 in VirtualBox(Guest OS) on my Ubuntu 9.04 (Host OS). [ If you have more than one PC for testing you can do it without installing Windows in Virtual Machine. ]</p>
<p>This is for who is using Windows in VirtualBox:</p>
<p>Configure network of the virtual machine as in the following screenshot.</p>
<div id="attachment_20" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-20" title="vb" src="http://arnabonweb.files.wordpress.com/2009/09/vb.jpg?w=300&#038;h=246" alt="network configuration" width="300" height="246" /><p class="wp-caption-text">network configuration</p></div>
<p>Set proper IP in both your Host &amp; Guest OS. Done! We are ready to setup our Ubuntu as a PDC.</p>
<p>We are going to use the following shell script to install samba &amp; configure it.  You can download the script from link below.</p>
<p>Please change the bold text as your need. I mean you can use server name, directory you wanna share &amp; the username through which you wanna login form Windows clients as you wish.</p>
<blockquote><p>domainname=&#8221;<strong>mydomain</strong>&#8220;<br />
fileshare=&#8221;<strong>/home/mypdc/data</strong>&#8220;<br />
# \\machinename\fileshare<br />
homeshare=&#8221;<strong>\\\\pdcserver\data</strong>&#8220;</p>
<p>apt-get -y install samba<br />
mv /etc/samba/smb.conf /etc/smb.conf.orig<br />
echo &#8220;[global]<br />
workgroup = $domainname<br />
passwd chat = *New*Password* %n\n*Re-enter*new*password* %n\n *Password*changed*<br />
username map = /etc/samba/smbusers</p>
<p>passdb backend = tdbsam</p>
<p>add user script = /usr/sbin/useradd -m -G users &#8216;%u&#8217;<br />
delete user script = /usr/sbin/userdel -r &#8216;%u&#8217;<br />
add group script = /usr/sbin/groupadd &#8216;%g&#8217;<br />
delete group script = /usr/sbin/groupdel &#8216;%g&#8217;<br />
add user to group script = /usr/sbin/usermod -A &#8216;%g&#8217; &#8216;%u&#8217;<br />
add machine script = /usr/sbin/useradd -s /bin/false -d /var/lib/nobody &#8216;%u&#8217;</p>
<p>logon script = logon.bat<br />
logon path =<br />
logon drive = H:<br />
logon home = \\%n\%u</p>
<p>domain logons = Yes<br />
preferred master = Yes<br />
wins support = Yes</p>
<p>[homes]<br />
comment = Home Directories<br />
valid users = %S<br />
read only = No<br />
browseable = No</p>
<p>[netlogon]<br />
comment = Network Logon Service<br />
path = /var/lib/samba/netlogon<br />
guest ok = Yes<br />
valid users = %S<br />
read only = Yes</p>
<p>[data]<br />
path = $fileshare<br />
valid users = %G<br />
read only = No&#8221; &gt; /etc/samba/smb.conf</p>
<p>echo &#8220;<strong>myuser</strong> = Administrator&#8221;&gt; /etc/samba/smbusers</p>
<p>mkdir /var/lib/samba/netlogon<br />
echo &#8220;net use H: $homeshare&#8221;&gt;/var/lib/samba/netlogon/logon.bat</p>
<p>echo &#8220;Enter samba&#8217;s root password:&#8221;<br />
smbpasswd -a <strong>myuser</strong></p>
<p>addgroup domadm<br />
adduser <strong>myuser</strong> domadm<br />
net groupmap add ntgroup=&#8221;Domain Admins&#8221;  unixgroup=domadm rid=512 type=d<br />
net groupmap add ntgroup=&#8221;Domain Users&#8221;   unixgroup=users type=d<br />
net groupmap add ntgroup=&#8221;Domain Guests&#8221;  unixgroup=nobody type=d</p>
<p>/etc/init.d/samba restart</p></blockquote>
<h2><strong><a href="http://arnabonweb.webs.com/files/sambapdc.sh">Download the file here.</a></strong></h2>
<p>After you done all changes save it with name sambapdc.sh (you can use any name). Now open terminal. Navigate to the directory where you had kept the file. Run the following command.</p>
<blockquote><p>sudo chmod +x ./sambapdc.sh</p>
<p>sudo ./sambapdc.sh</p></blockquote>
<p>Now if you want to add more user to login from different Windows client just do the follwing.</p>
<ul>
<li>Create the user from <strong>System -&gt;Administration -&gt; User and Groups</strong>.</li>
<li>After that un these commands for each user.</li>
</ul>
<blockquote><p>adduser <strong>username</strong> domadm</p>
<p>smbpasswd -a <strong>username</strong></p></blockquote>
<p>Replace username with your usernames. Now server side configuration is done!</p>
<p>Login to your client (In my case its Windows XP SP2). Do the following:</p>
<ul>
<li>Right click on my computer. Select <strong>Properties</strong>.</li>
<li>Select <strong>Computer Name</strong> tab.</li>
<li>Click Change to rename you computer.</li>
</ul>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 283px"><img class="size-medium wp-image-24" title="Screenshot" src="http://arnabonweb.files.wordpress.com/2009/09/screenshot.png?w=273&#038;h=300" alt="set domain name" width="273" height="300" /></dt>
</dl>
<p>set domain name</p></div>
<dd class="wp-caption-dd">xp login</dd>
<ul>
<li> Set your domain name as you have given in Ubuntu.</li>
<li>Click OK.</li>
<li>Done! You will have to restart your Windows PC. And After you login you will see your login like this</li>
</ul>
<div class="mceTemp mceIEcenter">
<dl class="wp-caption aligncenter">
<dt class="wp-caption-dt"><img class="size-medium wp-image-25" title="Screenshot-1" src="http://arnabonweb.files.wordpress.com/2009/09/screenshot-1.png?w=300&#038;h=170" alt="xp login" width="300" height="170" /><p class="wp-caption-text">xp login</p></div>
<div id="attachment_26" class="wp-caption aligncenter" style="width: 310px"><img class="size-medium wp-image-26" title="Screenshot-2" src="http://arnabonweb.files.wordpress.com/2009/09/screenshot-2.png?w=300&#038;h=218" alt="domain login" width="300" height="218" /><p class="wp-caption-text">domain login</p></div>
<p>Choose your given domain name. And you will be able to login to the domain.</p>
<p>Hope that helps!! Happy computing&#8230;.. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arnabonweb.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arnabonweb.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arnabonweb.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=19&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arnabonweb.wordpress.com/2009/09/21/tutorial-configuring-ubuntu-as-pdc/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a44fcd1434cafef9b0bb672c21cb43c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arnabonweb</media:title>
		</media:content>

		<media:content url="http://arnabonweb.files.wordpress.com/2009/09/vb.jpg?w=300" medium="image">
			<media:title type="html">vb</media:title>
		</media:content>

		<media:content url="http://arnabonweb.files.wordpress.com/2009/09/screenshot.png?w=273" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>

		<media:content url="http://arnabonweb.files.wordpress.com/2009/09/screenshot-1.png?w=300" medium="image">
			<media:title type="html">Screenshot-1</media:title>
		</media:content>

		<media:content url="http://arnabonweb.files.wordpress.com/2009/09/screenshot-2.png?w=300" medium="image">
			<media:title type="html">Screenshot-2</media:title>
		</media:content>
	</item>
		<item>
		<title>My new website is up! XD</title>
		<link>http://arnabonweb.wordpress.com/2009/03/15/my-new-website-is-up-xd/</link>
		<comments>http://arnabonweb.wordpress.com/2009/03/15/my-new-website-is-up-xd/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 07:28:37 +0000</pubDate>
		<dc:creator>Arnab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[redesign]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://arnabonweb.wordpress.com/2009/03/15/my-new-website-is-up-xd/</guid>
		<description><![CDATA[Finally, I&#8217;ve redesigned my website! U can visit it @  www.arnabdatta.co.nr<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=16&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Finally, I&#8217;ve redesigned my website! U can visit it @  <a href="http://www.arnabdatta.co.nr" target="_blank">www.arnabdatta.co.nr</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arnabonweb.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arnabonweb.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arnabonweb.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=16&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arnabonweb.wordpress.com/2009/03/15/my-new-website-is-up-xd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a44fcd1434cafef9b0bb672c21cb43c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arnabonweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Treasures of India we hardly know</title>
		<link>http://arnabonweb.wordpress.com/2009/03/14/treasures-of-india-we-hardly-know/</link>
		<comments>http://arnabonweb.wordpress.com/2009/03/14/treasures-of-india-we-hardly-know/#comments</comments>
		<pubDate>Sat, 14 Mar 2009 03:06:44 +0000</pubDate>
		<dc:creator>Arnab</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[journey]]></category>
		<category><![CDATA[talent]]></category>
		<category><![CDATA[village]]></category>

		<guid isPermaLink="false">http://arnabonweb.wordpress.com/?p=9</guid>
		<description><![CDATA[Yesterday I was in Nawhata (a village near Bangaon) to attend a wedding ceremony of one of my elder sister&#8217;s relative. My parents and I started our journey at about 1.30 pm. The journey was beautiful. I came to know from driver that our total journey will be through Jashore Road. He also told me [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=9&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was in Nawhata (a village near Bangaon) to attend a wedding ceremony of one of my elder sister&#8217;s relative. My parents and I started our journey at about 1.30 pm. The journey was beautiful. I came to know from driver that our total journey will be through Jashore Road. He also told me that we would be very near to Bangladesh Border. The journey took about two and half hours. The village is lovely. We were cordially invited.</p>
<p>I was sitting in a small room when a showcase full of art work,models caught my attention. Then my elder sister&#8217;s (we call her &#8216;didi&#8217; in Bengali) maternal uncle(&#8216;chotomama&#8217; in Bengali) told me that he had made these. I was amazed to see that he has a truly different eye to see things. He collects roots of many trees and try to make models from that. After seeing that I was interested he started to show those works to me. He also told me how he had made that, what kind of root it was, how he managed to get that shape&#8230;. Among the artworks he showed me a model in which 10 characters can be seen from different angle. I insisted him to organize an exhibition but he told me, &#8220;I can&#8217;t create these again exactly that&#8217;s why I don&#8217;t wanna sell these.&#8221; When I asked how he had done such wonderful works he replied, &#8220;My family is very helpful. That&#8217;s the main reason I have build these!&#8221;</p>
<p>In evening my uncle took me to one of his friend&#8217;s home. In the way he told me that his friend had won &#8216;National Teacher&#8217; award from the president of India. I was eager to talk with his friend. At their home I also got a hearty welcome. His name was Satyajit Sarkar. After little chatting he took me to a room where he kept all his awards. I asked him for what he was awarded. He told me that he is a primary school teacher. His aim is to provide his school children a better school (with electricity, toilet&#8230;.) He had worked in his school for 30 years. And he had done a terrific job for which he was awarded, to make his school better in those years. He told me that he loves teaching and he wants to do more work for villages in India. I was amazed to see his enthusiasm. He also showed me the medal he got from president. He told me that there is huge work that has to be done for villages of India.</p>
<p>At about 8 pm we were ready to come back. I was truly amazed to see such talents in a small village. I wondered thousands of such treasures of India,we hardly know, are trying hard to make India better. When our car was near Dumdum Airport I saw a plane was taking off from runway&#8230; It was going high, high and high&#8230;&#8230;.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arnabonweb.wordpress.com/9/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arnabonweb.wordpress.com/9/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arnabonweb.wordpress.com/9/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=9&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arnabonweb.wordpress.com/2009/03/14/treasures-of-india-we-hardly-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a44fcd1434cafef9b0bb672c21cb43c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arnabonweb</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows 7 is the official name of the next MS OS</title>
		<link>http://arnabonweb.wordpress.com/2008/10/15/windows-7-is-the-final-name-of-the-next-ms-os/</link>
		<comments>http://arnabonweb.wordpress.com/2008/10/15/windows-7-is-the-final-name-of-the-next-ms-os/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 18:37:11 +0000</pubDate>
		<dc:creator>Arnab</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows seven]]></category>

		<guid isPermaLink="false">http://arnabonweb.wordpress.com/?p=3</guid>
		<description><![CDATA[Windows 7 is the official name of the next Microsoft Operation System Windows.  &#8220;The codename Windows 7 has turned out to be more than just a codename this time around for Microsoft, as the company has agreed to keep things simple and keep the name Windows 7 for the final release of the operating system [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=3&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Windows 7 is the official name of the next Microsoft Operation System Windows. </p>
<p>&#8220;The codename Windows 7 has turned out to be more than just a codename this time around for Microsoft, as the company has agreed to keep things simple and keep the name Windows 7 for the final release of the operating system as well.&#8221;</p>
<p><a href="http://www.windowsvienna.com/windows-7-no-longer-just-a-codename-a25.html">Read More</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/arnabonweb.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/arnabonweb.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/arnabonweb.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=arnabonweb.wordpress.com&amp;blog=5187584&amp;post=3&amp;subd=arnabonweb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://arnabonweb.wordpress.com/2008/10/15/windows-7-is-the-final-name-of-the-next-ms-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/8a44fcd1434cafef9b0bb672c21cb43c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">arnabonweb</media:title>
		</media:content>
	</item>
	</channel>
</rss>
