<?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>A hitchhiker who has lost his guide!!</title>
	<atom:link href="http://starcrystal.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://starcrystal.wordpress.com</link>
	<description>A place where I talk about my Life, the Universe and Everything.</description>
	<lastBuildDate>Thu, 09 Jul 2009 05:07:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='starcrystal.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/ba3a6d6aa45809928c941f85f34f32f9?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>A hitchhiker who has lost his guide!!</title>
		<link>http://starcrystal.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://starcrystal.wordpress.com/osd.xml" title="A hitchhiker who has lost his guide!!" />
	<atom:link rel='hub' href='http://starcrystal.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Installing Debian in a chroot environment&#8230;even running GUI programs in the chroot environment</title>
		<link>http://starcrystal.wordpress.com/2009/07/09/installing-debian-in-a-chroot-environment/</link>
		<comments>http://starcrystal.wordpress.com/2009/07/09/installing-debian-in-a-chroot-environment/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 04:38:11 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/?p=62</guid>
		<description><![CDATA[There are a group of people in this world who try to force you to learn old and outdated stuff rather than teach you the new ones that would be more useful. The University under which I study belongs to this catagory. In the last semester we (the computer science students) had a course where [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=62&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There are a group of people in this world who try to force you to learn old and outdated stuff rather than teach you the new ones that would be more useful. The University under which I study belongs to this catagory. In the last semester we (the computer science students) had a course where we were supposed to learn how to use linux (thank god atleast they didn&#8217;t try to teach us how to use Windows, or maybe in a few years that too will be a part of the course). Anyway, most of the stuff that they teach is generally teach is outdated and useless. One such outdated stuff that they try to teach us is <strong>Linux Firewall Administration</strong> using <em><strong>ipfwadm</strong></em> and <em><strong>ipchains</strong></em>. The Version of Debian that I use is lenny that is <em><strong>Debian 5.0.1</strong></em>. the last version that properly supported ipfwadm and ipchains properly was Sarge i.e. <strong><em>Debian 3.1</em></strong>. So I decided to install sarge in a chroot environment. And here&#8217;s how it can be done.</p>
<p>Debian provides this amazingly beautiful tool called <em><strong>debootstrap</strong></em> that makes the work seem like a piece of cake.</p>
<p><strong>#apt-get install debootstrap</strong></p>
<p><strong>#mkdir -p /var/chroot/sarge</strong></p>
<p><strong>#debootstrap sarge /var/chroot/sarge http://archive.debian.org/debian-archive/debian/</strong></p>
<p>This will install a minimal version of sarge in the <strong><em>/var/chroot/sarge</em></strong> directory. You only need to chroot to this directory to do your work.</p>
<p><strong>#apt-get install chroot</strong></p>
<p>You may also install dchroot (I prefer dchroot)</p>
<p><strong>#apt-get install dchroot</strong></p>
<p>Now we need to change the /etc/fstab file a bit. Append the following lined to the <em><strong>/etc/fstab</strong></em> file.</p>
<p><strong>/home </strong><strong>/var/chroot/sarge</strong><strong>/home    none    bind    0    0<br />
/tmp </strong><strong>/var/chroot/sarge</strong><strong>/tmp    none    bind    0    0<br />
/dev </strong><strong>/var/chroot/sarge</strong><strong>/dev    none    bind    0    0<br />
/proc </strong><strong>/var/chroot/sarge</strong><strong>/proc    none    bind    0    0</strong></p>
<p>The home directory is required if you wish to follow the last part of this post.</p>
<p><strong>#mount -a</strong></p>
<p><strong>#chroot <strong>/var/chroot/sarge</strong></strong></p>
<p><strong># cat /etc/debian_version<br />
3.1</strong></p>
<p>If this is what you get than you are done.</p>
<p>If you wish to make your user settings work in the chroot environment then you have to work a little extra.</p>
<p>First come out of the chroot environment.</p>
<p>Open the <em><strong>/etc/passwd</strong></em> file and <span style="text-decoration:underline;">copy the line that has your user-name</span> to the <strong><em>/etc/passwd</em> file of the chroot installation</strong>.</p>
<p>Also make similar changes to the two <em><strong>/etc/group</strong></em> file. <strong><span style="text-decoration:underline;">Make sure that the changes are consistent</span></strong>. Add yourself to any group you feel required.</p>
<p><strong>[ N.B.: For chroot installation of any release the steps are similar. Also the steps are similar for chroot installation of Debian in any Linux distribution that has the debootstrap package. I think Fedora, Gentoo and Ubuntu has the package.]</strong></p>
<p>Now if you want to try out somethin extra&#8230;try this. Open urxvt or any GUI-terminal.</p>
<p><strong>#chroot /var/chroot/sarge</strong></p>
<p><strong>#apt-get install totem</strong></p>
<p>Try to play a Video file whose codec is by-default supported by Totem (like an MPEG file). See what happens.  Try installing and runing something like gedit too. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/62/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/62/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/62/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=62&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/07/09/installing-debian-in-a-chroot-environment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>File Sharing across subnets in Windows&#8230;&#8230;Continued&#8230;</title>
		<link>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnets-in-windows-continued/</link>
		<comments>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnets-in-windows-continued/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 18:00:03 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[File Sharing]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/?p=53</guid>
		<description><![CDATA[Well..so much for the sharing part. Now, how do we access the shared folders??? This cant be done the usual way i.e. view the computers in the WORKGROUP and then find the folders shared by them. This is a bit more complicated than that. For this you have to know the IP-address of the host [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=53&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well..so much for the sharing part. Now, how do we access the shared folders???</p>
<p>This cant be done the usual way i.e. view the computers in the WORKGROUP and then find the folders shared by them. This is a bit more complicated than that. For this <span style="text-decoration:underline;">you have to know the<strong> IP-address of the host</strong> whose shared stuff you want to access</span>.</p>
<ol>
<li>Goto <strong><em>Start</em> -&gt; <em>My Network Places</em></strong>.</li>
<li>In <strong>Network Tasks</strong> goto <strong>Add a Network Place</strong>.</li>
<li>Keep clicking Next until you get this window<img class="aligncenter size-medium wp-image-54" title="Win Fire-4" src="http://starcrystal.files.wordpress.com/2009/07/win-fire-4.jpg?w=300&#038;h=248" alt="Win Fire-4" width="300" height="248" />Here choose <em><strong>Choose another network location</strong></em> and click <strong>Next</strong>.</li>
<li>In the <em><strong>Internet or network address</strong></em> part write the shared folder address like :
<div style="text-align:center;"><em><strong>\\192.168.1.8\SharedFolder1</strong></em></div>
<p>as shown in this figure<img class="aligncenter size-medium wp-image-55" title="Shared folder location" src="http://starcrystal.files.wordpress.com/2009/07/win-fire-5.jpg?w=300&#038;h=248" alt="Shared folder location" width="300" height="248" />Click Next, give a name for the folder and that&#8217;s it.</li>
</ol>
<p>I think that ought to do the trick.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/53/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/53/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/53/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=53&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnets-in-windows-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>

		<media:content url="http://starcrystal.files.wordpress.com/2009/07/win-fire-4.jpg?w=300" medium="image">
			<media:title type="html">Win Fire-4</media:title>
		</media:content>

		<media:content url="http://starcrystal.files.wordpress.com/2009/07/win-fire-5.jpg?w=300" medium="image">
			<media:title type="html">Shared folder location</media:title>
		</media:content>
	</item>
		<item>
		<title>File Sharing across subnets in Windows</title>
		<link>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnet-in-windows/</link>
		<comments>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnet-in-windows/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 15:04:35 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[File Sharing]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnet-in-windows/</guid>
		<description><![CDATA[Time for another blogpost I guess. This time it&#8217;s something to do with (of all things) Windows. If you have read my previous post, you will know what I had to go through, just to implement a few seurity measures. I had effectively seperated every user into a different Subnet. Now it so happens that [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=43&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Time for another blogpost I guess. This time it&#8217;s something to do with<em><strong> (of all things) </strong></em><strong>Windows</strong>.</p>
<p>If you have read my previous post, you will know what I had to go through, just to implement a few seurity measures. I had effectively seperated every user into a different Subnet. Now it so happens that a few (pathetic) friends of mine still use<em> (things as useless, pathitic, outdated and primitive as)</em> Windows. They within a few days complained that they could not access the shared files of other (Windows) users on the network. After some tinkering about I found that this was because if file-sharing is turned on in windows it is normally done in something called WORKGROUPS. This (using the windows firewall) restricts the files shared to only the subnet to which the computer belongs.</p>
<p>There are two possible solutions to this problem :</p>
<ol>
<li><em><strong>If you have a problem with a leg just amputate it</strong></em> i.e. turn off the Windows firewall (it generally does not do anything useful). But somehow this is not an optimal solution (what if there is a problem with the head&#8230; <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ).</li>
<li>So here&#8217;s a better solution.
<ul>
<li> Goto <strong><em>Control Panel</em> -&gt; <em>Windows Firewall</em></strong>.</li>
<li>Uncheck the <strong>Don&#8217;t Allow Exceptions</strong> checkbox.</li>
<li>Goto the <strong><em>Exceptions</em></strong> tab, find <em><strong>File and Printer Sharing</strong></em> in the <strong>Program and Services</strong> list. This should be checked. Click on <strong>Edit</strong>. <img class="aligncenter size-full wp-image-47" title="Edit Service Dialog Box" src="http://starcrystal.files.wordpress.com/2009/07/win-fire-12.jpg?w=480" alt="Edit Service Dialog Box"   />Select each of those services and click <em><strong>Change Scope</strong></em>. You get something like this.<img class="aligncenter size-medium wp-image-48" title="Change Scope" src="http://starcrystal.files.wordpress.com/2009/07/win-fire-2.jpg?w=300&#038;h=206" alt="Change Scope" width="300" height="206" />Check the Radio button for <em><strong>Custom List</strong></em>. Here you may specify the IP addresses of the hosts you want to make your file available to mention an address and subnet mask as you may deem required.<img class="aligncenter size-medium wp-image-49" title="Scope Changed..." src="http://starcrystal.files.wordpress.com/2009/07/win-fire-3.jpg?w=300&#038;h=206" alt="Scope Changed..." width="300" height="206" />&#8230;Well its just clicking OKs after that. I think you can manage that.</li>
</ul>
</li>
</ol>
<p>This was just the sharing part.There is something left that I will give in the next post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=43&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/07/08/file-sharing-across-subnet-in-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>

		<media:content url="http://starcrystal.files.wordpress.com/2009/07/win-fire-12.jpg" medium="image">
			<media:title type="html">Edit Service Dialog Box</media:title>
		</media:content>

		<media:content url="http://starcrystal.files.wordpress.com/2009/07/win-fire-2.jpg?w=300" medium="image">
			<media:title type="html">Change Scope</media:title>
		</media:content>

		<media:content url="http://starcrystal.files.wordpress.com/2009/07/win-fire-3.jpg?w=300" medium="image">
			<media:title type="html">Scope Changed...</media:title>
		</media:content>
	</item>
		<item>
		<title>Solution: Managing access to Router</title>
		<link>http://starcrystal.wordpress.com/2009/07/05/solution-managing-access-to-router/</link>
		<comments>http://starcrystal.wordpress.com/2009/07/05/solution-managing-access-to-router/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 16:33:18 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Router Management]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[Linksys]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[WRT54g]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/?p=36</guid>
		<description><![CDATA[I discussed the problem with Sambit and came up with a very crude solution that at first appeared even harder to implement atleast using the platform and stuff that I had at hand. First I replaced the firmware in the router (i.e. the one provided by Linksys) with DDWRT, free Linux-based. So I had to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=36&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I discussed the problem with <a href="http://www.botcyb.org/" target="_blank">Sambit</a> and came up with a very crude solution that at first appeared even harder to implement atleast using the platform and stuff that I had at hand.</p>
<p>First I replaced the firmware in the router (i.e. the one provided by Linksys) with <a href="http://www.dd-wrt.com/" target="_blank">DDWRT</a>, free Linux-based.</p>
<p>So I had to resort to this very crude method.</p>
<ul>
<li>Use a 30 bit Subnet mask so as to restrict only one user per subnet.</li>
<li>Implement firewall rules to check traffic across subnets.</li>
</ul>
<p>Well it is easier said than done, especially on a router that has only 2 MB Flash memory and 8 MB RAM.</p>
<p>So, for anyone who is interested, here&#8217;s how it can be done.</p>
<ol>
<li>Goto <strong>Setup</strong> -&gt; <strong>Basic Setup</strong> . In the <em><strong><strong>Network Setup</strong></strong></em> part :
<ul>
<li>set the <em><strong>Subnet Mask</strong></em> to <strong>255.255.255.252</strong>.</li>
<li> Set the <em><strong>Maximum DHCP Users</strong></em> parameter to <strong>1</strong>.</li>
<li> Check the checkboxs for <em><strong>Use DNSMasq for DHCP </strong></em>and <strong><em>DHCP-Authoritative</em></strong>.</li>
</ul>
</li>
<li>Goto <strong>Services</strong> -&gt; <strong>Services</strong>.
<ul>
<li>In the <strong><em>DHCP Server</em></strong> part assign Static-IP to every host in the network by MAC-address in <em><strong>Static Leases</strong></em>.</li>
<li>Set <em><strong>DNSMasq</strong></em> and <em><strong>Local DNS</strong></em> to <strong>Enable</strong>. (LocalDNS is sometimes very useful. If you really don&#8217;t need it, you may disable it.)</li>
<li>In the <strong><em>Additional DNSMasq Options</em></strong>, create a virtual network for every host and assign its IP-range thus:
<div>interface=vlan0<br />
dhcp-range=192.168.1.2,192.168.1.2,255.255.255.252,1440m</div>
<p>This is to ensure that only one host is allowed in the subnet. If the Subnet-mask is <strong>30 bit</strong>, it allows for <strong>4 IP-addresses</strong>. Both the <strong>31<sup>st</sup> and 32<sup>nd</sup> bit</strong> as <strong>0</strong> is used as the network address and both the <strong>31<sup>st</sup> and 32<sup>nd</sup></strong> bit as <strong>1</strong> is used as the broadcast address. Thus only 2 are left as host address. But one is used by the router interface. So effectively only one host is allowed per subnet.</li>
</ul>
</li>
<li>Goto <strong>Administration</strong><strong>n</strong> -&gt; <strong>Management</strong> and set <em><strong>Cron</strong></em> to <strong>Enable</strong>.</li>
<li>Goto <strong>Administration</strong><strong>n</strong> -&gt; <strong>Commands</strong> and do the following.
<ul>
<li>Create a virtual interface for the bridge interface in each subnet :
<div>ifconfig br0:2<br />
ifconfig br0:2 192.168.1.5 netmask 255.255.255.252</div>
</li>
<li>Write iptables rules to restrict traffic to and from hosts with authorized MAC-address only (if you need help on this, write to me because its a bit hard to elaborate here if you do not know how to write iptables rules).</li>
</ul>
</li>
</ol>
<p>I may have missed out a few points. If you find any inconsistencies or anything missing or wrong, please write to me.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=36&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/07/05/solution-managing-access-to-router/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>Managing access to Routers</title>
		<link>http://starcrystal.wordpress.com/2009/07/05/managing-access-to-routers/</link>
		<comments>http://starcrystal.wordpress.com/2009/07/05/managing-access-to-routers/#comments</comments>
		<pubDate>Sun, 05 Jul 2009 15:05:05 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Network]]></category>
		<category><![CDATA[Router Management]]></category>
		<category><![CDATA[DD-WRT]]></category>
		<category><![CDATA[Linksys]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[WRT54g]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/?p=31</guid>
		<description><![CDATA[Quite a few days ago I had been trying hard to figure out a solution to a problem. You see, it&#8217;s like this. We were setting up a LAN (ethernet and WI-FI) with internet connection in my hostel. We are using a Linksys WRT54g v5.0 router. The problem with this router is that it has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=31&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quite a few days ago I had been trying hard to figure out a solution to a problem. You see, it&#8217;s like this. We were setting up a LAN (ethernet and WI-FI) with internet connection in my hostel. We are using a <strong>Linksys WRT54g v5.0</strong> router. The problem with this router is that it has very low Flash-memory (2 MB) and Ram(8 MB). There are in total 15 users (i.e. 15 people who are paying for the connection and setup). Then how could I stop other people i.e. people who are unwilling to pay and are more than willing to access stuff available in the network from accessing stuff on the network.</p>
<p>Now, if every user in the network had a laptop, I would have just forced them all to use WI-FI (which supports MAC address based filters as well as several wireless security protocols). But unfortunately almost all of them use desktops without WI-FI cards. Also I could stop unwanted users from accessing the Internet pretty easily simply by implementing a few basic Iptables rules.But I could not stop an unwanted user from just plugging one of our cables into his computer and access everything on the LAN. Even if I allowed only a specific number of DHCP users at a time, the problem is not solved as he could just use a Static-IP.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=31&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/07/05/managing-access-to-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing Sphinx3 for Ubuntu and Debian</title>
		<link>http://starcrystal.wordpress.com/2009/01/06/packaging-sphinx3-for-ubuntu-and-debian/</link>
		<comments>http://starcrystal.wordpress.com/2009/01/06/packaging-sphinx3-for-ubuntu-and-debian/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 14:41:42 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Sphinx3]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/?p=18</guid>
		<description><![CDATA[This is ment for people who do not read README files. If you have already read the README and followed it properly then you probably would not be needing this guide. However here are the steps. they are same for Ubuntu(Hardy) and Debian(Lenny). Download the source from here. Extract the files from the archive. Rename [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=18&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This is ment for people who do not read README files. If you have already read the README and followed it properly then you probably would not be needing this guide. However here are the steps. they are same for <strong>Ubuntu(Hardy)</strong> and <strong>Debian(Lenny)</strong>.</p>
<ol>
<li>Download the source from <a title="source sphinx3" href="http://sourceforge.net/project/showfiles.php?group_id=1904&amp;package_id=68406" target="_blank">here</a>.</li>
<li>Extract the files from the archive.</li>
<li>Rename the folder (which is named like <strong>sphinx3-x.x</strong>) to <strong>sphinx3</strong></li>
<li>Download &#8220;sphinxbase&#8221; from <a title="source sphinxbase" href="http://sourceforge.net/project/showfiles.php?group_id=1904&amp;package_id=199515" target="_blank">here</a>.</li>
<li>Extract the files and rename the folder( which is named <strong>sphinxbase-x.x.x</strong>) to sphinxbase.</li>
<li><strong>Note: sphinxbase and sphinx3 should be in the same path</strong>. ( eg: &#8220;<strong>..install/sphinxbase/</strong>&#8221; and &#8220;<strong>..install/sphinx3/</strong>&#8220;)</li>
<li>In the sphinxbase folder run the script &#8220;autogen.sh&#8221; twice.</li>
<li>Run: make. (N.B.: If this gives an error, check that all dependencies are met. I was getting errors because the header file Python.h was missing. It is included in the package &#8220;python-dev&#8221; for debian).</li>
<li>Just to check run: make check.</li>
<li>Run: make install.</li>
<li>Go to the sphinx3 folder.</li>
<li>Run the &#8220;autogen.sh&#8221; script twice (please do not run the &#8220;configure&#8221; script after this).</li>
<li>Run: make.</li>
<li>Just to check run: make check.</li>
<li>Run: make install.</li>
</ol>
<p>I am planning to package this application for both Debian and Ubuntu as soon as I have time enough to do it.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=18&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2009/01/06/packaging-sphinx3-for-ubuntu-and-debian/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>Launched at LAST!!</title>
		<link>http://starcrystal.wordpress.com/2007/03/16/launched-at-last/</link>
		<comments>http://starcrystal.wordpress.com/2007/03/16/launched-at-last/#comments</comments>
		<pubDate>Fri, 16 Mar 2007 05:33:59 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Apache]]></category>
		<category><![CDATA[Icecast]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/2007/03/16/launched-at-last/</guid>
		<description><![CDATA[At last I have been able to launch my website on my homeserver. As for now things are going preety fine . I am currently using Apache 2.0.55. The configuration was almost too easy. Also I am using Icecast for my &#8220;radio station&#8221;. But for that you need to configure your mpd too. See my [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=4&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>At last I have been able to launch my website on my homeserver. As for now things are going preety fine <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  . I am currently using Apache 2.0.55. The configuration was  almost too easy. Also I am using Icecast for my &#8220;radio station&#8221;. But for that you need to configure your mpd too. See my <a title="configuration files" href="http://starcrystal.files.wordpress.com/2007/03/icecast1.txt">configuration files</a> if you wish <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  .</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/starcrystal.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/starcrystal.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=4&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2007/03/16/launched-at-last/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>Problem with Screen Resolution in Ubuntu</title>
		<link>http://starcrystal.wordpress.com/2007/02/20/problem-with-screen-resolution-in-ubuntu/</link>
		<comments>http://starcrystal.wordpress.com/2007/02/20/problem-with-screen-resolution-in-ubuntu/#comments</comments>
		<pubDate>Tue, 20 Feb 2007 15:23:53 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://starcrystal.wordpress.com/2007/02/20/problem-with-screen-resolution-in-ubuntu/</guid>
		<description><![CDATA[It was only the other day that I installed Ubuntu Edgy in one of my friend&#8217;s computer. However when I started the GUI, I found the screen resolution was set to 640*480. I was further surprised when I found out that I couldn&#8217;t change the resolution . He has Radeon graphics card. If any one [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=3&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It was only the other day that I installed Ubuntu Edgy in one of my friend&#8217;s computer. However when I started the GUI, I found the screen resolution was set to 640*480. I was further surprised when I found out that I couldn&#8217;t change the resolution <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  . He has Radeon graphics card. If any one can help, please do so.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/starcrystal.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/starcrystal.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=3&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2007/02/20/problem-with-screen-resolution-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!!!</title>
		<link>http://starcrystal.wordpress.com/2007/02/17/hello-world/</link>
		<comments>http://starcrystal.wordpress.com/2007/02/17/hello-world/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 07:11:45 +0000</pubDate>
		<dc:creator>starcrystal</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hallo World!!! In this blog I will mostly talk about the problems that I face while I continue working with Linux. I would be equally glad to help you I can if you tell me about your problem and if there is any help that I can provide.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=1&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hallo World!!!</p>
<p>In this blog I will mostly talk about the problems that I face while I continue working with Linux. I would be equally glad to help you I can if you tell me about your problem and if there is any help that I can provide.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/starcrystal.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/starcrystal.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/starcrystal.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/starcrystal.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/starcrystal.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=starcrystal.wordpress.com&amp;blog=789275&amp;post=1&amp;subd=starcrystal&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://starcrystal.wordpress.com/2007/02/17/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/c016adb24965fe52863cc3dbff2c477f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">starcrystal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
