<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Gaurish Sharma Live &#187; Guides and Howtos</title>
	<atom:link href="http://www.gaurishsharma.com/category/guides-and-howtos/feed" rel="self" type="application/rss+xml" />
	<link>http://www.gaurishsharma.com</link>
	<description>Gaurish Sharma&#039;s blog foccused on Technology,Broadband,Latest Offers. He seldomly writes about his life experiances</description>
	<lastBuildDate>Fri, 03 Sep 2010 21:08:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>[Howto] Direct Server site transfer via FTP(recursive)</title>
		<link>http://www.gaurishsharma.com/2010/06/direct-server-data-transfer-ftp-recursive.html</link>
		<comments>http://www.gaurishsharma.com/2010/06/direct-server-data-transfer-ftp-recursive.html#comments</comments>
		<pubDate>Thu, 03 Jun 2010 13:34:32 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[Internet]]></category>

		<guid isPermaLink="false">http://www.gaurishsharma.com/?p=418</guid>
		<description><![CDATA[Ever want to move a your website from one server to another  but facing difficulty due to large size of data? Read on..]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/06/wglobe.jpg"><img class="size-thumbnail wp-image-422 alignright" title="wglobe" src="http://www.gaurishsharma.com/wp-content/uploads/2010/06/wglobe-150x150.jpg" alt="Internet-Globe" width="150" height="150" /></a>Recently, I faced a situation whiling moving fairly large image sharing website from shared hosting to a dedicated as it was taking too much resources. there were few challenges in this site transfer:</p>
<ul>
<li> Number of images were over 90,000 and size of about 95GB which rules of conventional method of first downloading everything from old server  on your own machine and then uploading to new server is not feasible.</li>
<li>Shared hosting provider only gave FTP access. so it rules out rsync,scp,bittorrent or anything similar based transfers. host even refused to achieve the 90,000 files.</li>
</ul>
<p>In short, you will have to move all files and database via FTP.  Here is how:<span id="more-418"></span></p>
<h3>Get the Database Dump:</h3>
<ol>
<li>Download <a title="SQLBuddy" href="http://www.sqlbuddy.com/download/" target="_self">SQLBuddy</a>, extract it &amp; upload it to your old server via FTP. <a href="http://www.sqlbuddy.com/download/" target="_self">Download Link</a></li>
<li>Now open webbroswer, Now goto the localisation where you extracted it. For example, location for me was http://gaurishsharma.com/sqlbuddy(this is no longer accessible). yours might be similar.</li>
<li>Login with your username and password.Click on <strong>Export </strong>and follow on screen instruction. now a database dump file *.SQL will be create in <em>../sqlbuddy/exports/export.sql</em>. Which you can use to restore database.</li>
</ol>
<h3><span style="color: #0000ff;">Moving All Files</span></h3>
<ol>
<li>Login to your new server via shell account.</li>
<li>For transfer we will use wget &#8211; which is available on all linux based servers. we will use the following command</li>
</ol>
<pre>wget -r -c -nH -l0 ftp://USERNAME:PASSWORD@ftp.domain.com/ --append-output=websitedownload-wget.log -b</pre>
<p>Where:</p>
<p>USERNAME: username of old server<br />
PASSWORD: actual password of old server<br />
ftp.domain.com: is the URL or IP address of your old FTP server</p>
<p>Now, after you run its command. you get a output like this</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">Continuing in background, pid 16554.</span></p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">-jailshell-3.2$</span></p>
<p>This means that wget is now downloading all the files from your old server in background, so you can go for sleep and check back. to check the process you can read logfile <span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;"><em>websitedownload-wget.log</em></span></p>
<h3><strong>Explanation of Options</strong></h3>
<p>-r flag: recursively download all files and directories.<br />
-c flag: not re-download everything that’s already been downloaded (and continue everything that’s been half done).<br />
-nH flag: to make wget not create a directory with the name of the host prior to fetching the files.<br />
-l0 flag: to make sure wget goes down every directory and downloads. By default, wget only goes down 4 directories.<br />
&#8211;append-output: it will save the entire download output to file, so you can read it later.<br />
-b flag: it will run wget into background so you can close the terminal and the transfer will still be running.</p>
<p>I Personally tried this method and it works great! The biggest advantage of wget method is that incase transfer gets interrupted or the server goes down,can you can &#8216;resume&#8217; from where you left.</p>
<p>Hope this help you when you are moving large websites</p>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=418&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2010/04/facebook-chat-jabbe-windows-linux-desktop.html' rel='bookmark' title='Permanent Link: Run Facebook Chat directly from Desktop(New method)'>Run Facebook Chat directly from Desktop(New method)</a> <small>Its possible to use Facebook chat without open Facebook website,...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/08/get-windows-home-server-evaluation-kit.html' rel='bookmark' title='Permanent Link: Get Windows Home server Evaluation Kit absolutely FREE!!'>Get Windows Home server Evaluation Kit absolutely FREE!!</a> <small>Microsoft &#8211; A tech giant company is aggressively promoting its...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html' rel='bookmark' title='Permanent Link: Dummies Guide to Scheduling Downloads(Linux Version)'>Dummies Guide to Scheduling Downloads(Linux Version)</a> <small>Linux is a stable OpenSource Operating system.It has a ability...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2010/06/direct-server-data-transfer-ftp-recursive.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Run Facebook Chat directly from Desktop(New method)</title>
		<link>http://www.gaurishsharma.com/2010/04/facebook-chat-jabbe-windows-linux-desktop.html</link>
		<comments>http://www.gaurishsharma.com/2010/04/facebook-chat-jabbe-windows-linux-desktop.html#comments</comments>
		<pubDate>Thu, 08 Apr 2010 17:50:23 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.gaurishsharma.com/?p=396</guid>
		<description><![CDATA[Its possible to use Facebook chat without open Facebook website, by using a standalone facebook chat application.]]></description>
			<content:encoded><![CDATA[<p>Ever wanted to use Facebook chat without logging into Facebook website? Looking are a Desktop application for Facebook chat? Do you hate Facebook chat because it makes your browser go crazy ? If answer is &#8220;<strong>Yes</strong>&#8221; then Read On&#8230;</p>
<p><a title="Facebook Blog" href="http://developers.facebook.com/news.php?blog=1&amp;story=361" target="_self">Recently</a>, Facebook has enabled support for XMPP/Jabber protocol which means that now you can using standalone Instant Messengers like Pidgin(Works on Windows,Mac &amp; Linux),<a title="Apple iChat - Mac IM client" href="http://www.apple.com/macosx/what-is-macosx/ichat.html" target="_self">iChat</a>(Mac only).  This works on Windows,Linux and Mac on any application that support jabber protocol.</p>
<p>here I would demonstrate to do this on Windows with pidgin.<span id="more-396"></span></p>
<p><strong>Step 1)</strong> Set your Facebook username by going <a title="Set your Facebook username" href="http://www.facebook.com/username/" target="_blank">here</a>. if your profile url is facebook.com/xxxxx then xxxxx will be your username. please remember it, we will need in later steps.</p>
<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/get-fb-username.png"><img class="size-large wp-image-400 alignleft" title="get-fb-username" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/get-fb-username-1024x257.png" alt="" width="574" height="144" /></a></p>
<p><strong>Step 2)</strong> <a href="http://pidgin.im">Download &amp; install Pidgin</a>: Pidgin is Open Source IM App which can be freely downloaded from <a href="http://www.pidgin.im/" target="_self">Pidgin.im</a>. Please visit the site and <a href="http://www.pidgin.im/" target="_self">download</a> &amp; Install. Installation is pretty straightforward &#8211; typical windows style. Just keep Clicking Next,Next,Next and pidgin would be install automatically.</p>
<p style="text-align: center;"><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-install-step1.png"><img class="size-thumbnail wp-image-401 aligncenter" title="pidgin-install-step1" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-install-step1-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Strep 3)</strong> Configuration: now Launch Pidgin. you will be greeted with Account Dialog Box  click on &#8220;<strong>Add Account</strong>&#8221; to a facebook account</p>
<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addcount-1-alt.png"><img class="aligncenter size-thumbnail wp-image-402" title="pidgin-addcount-1-alt" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addcount-1-alt-150x150.png" alt="" width="150" height="150" /></a><strong>Step 4)</strong> Now in Add Account Screen, enter the following &amp; leave rest to default:</p>
<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addaccount-2.png"><img class="aligncenter size-full wp-image-403" title="pidgin-addaccount-2" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addaccount-2.png" alt="" width="331" height="509" /></a></p>
<ul>
<li>protocol: XMPP</li>
<li>username: your facebook username . Its the same which you get in step-1</li>
<li>Domain: chat.facebook.com</li>
<li>password: &lt;<em>enter your facebook password</em>&gt;</li>
<li>Check Remember Password</li>
</ul>
<p><strong>Step 5)</strong> In the Advanced Tab, Do the following</p>
<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addaccount-3.png"><img class="aligncenter size-full wp-image-404" title="pidgin-addaccount-3" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-addaccount-3.png" alt="" width="325" height="516" /></a></p>
<ul>
<li>Uncheck &#8220;<em>Require SSL/TLS</em>&#8220;</li>
<li>Check &#8220;<em>Allow plaintext auth over unencrypted streams</em>&#8220;</li>
<li>Connect port: 5222</li>
<li>Connect Server: <em>chat.facebook.com </em></li>
</ul>
<p><strong>Step 6</strong>) Click on Save and wait for few seconds while pidgin connects to facebook. If you have configured the settings correctly then you should be able to see this:</p>
<p><a href="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-contactlist-final.png"><img class="aligncenter size-full wp-image-405" title="pidgin-contactlist-final" src="http://www.gaurishsharma.com/wp-content/uploads/2010/04/pidgin-contactlist-final.png" alt="" width="386" height="428" /></a></p>
<p>Congrats! you can start chatting with your friends rightway</p>
<p><strong>Bonus Tip:</strong>Pidgin supports multiple protocols. so you can also add your GTalk,Yahoo Messenger or MSN accounts same way you added your Facebook account and chat on all of them at the same time. no need to install separate client program for each protocols.  Great Nice eh?</p>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=396&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2010/06/direct-server-data-transfer-ftp-recursive.html' rel='bookmark' title='Permanent Link: [Howto] Direct Server site transfer via FTP(recursive)'>[Howto] Direct Server site transfer via FTP(recursive)</a> <small>Ever want to move a your website from one server...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html' rel='bookmark' title='Permanent Link: Dummies Guide to Scheduling Downloads(Linux Version)'>Dummies Guide to Scheduling Downloads(Linux Version)</a> <small>Linux is a stable OpenSource Operating system.It has a ability...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/06/linux-bible-2008.html' rel='bookmark' title='Permanent Link: Linux Bible, 2008'>Linux Bible, 2008</a> <small>&gt; The Linux Bible 2008 Edition is the best first...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2010/04/facebook-chat-jabbe-windows-linux-desktop.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>[Howto] Understanding HDD&#8217;s Model Naming Convention</title>
		<link>http://www.gaurishsharma.com/2009/02/howto-understanding-hdds-model-naming-convention.html</link>
		<comments>http://www.gaurishsharma.com/2009/02/howto-understanding-hdds-model-naming-convention.html#comments</comments>
		<pubDate>Mon, 09 Feb 2009 09:23:28 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[HDD]]></category>
		<category><![CDATA[model]]></category>
		<category><![CDATA[Seagate]]></category>
		<category><![CDATA[Western Digitial]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/?p=32</guid>
		<description><![CDATA[Now you can just find out specs of HDDs just by looking at model no. No need to depend on not-so-informed salesman at your local shop. Read below]]></description>
			<content:encoded><![CDATA[<p>Ever wondered why Hard drive model carry 10-14digit string, why not simple names. because model number of a hard drive can say lot of information about it e.g storage capacity,cache size &amp; connector interface.storage companies use a set of conventions</p>
<p>Understanding a model no. would help you know about features of it by simply checking it label &amp; you would no longer have to be dependent on not-so-informed salesman in your local shop. many times there are different model no. of exact same capacity but they differ in cache size which has a direct result on performance. more cache means faster performance</p>
<p>Now we will try to understand model number of various hard drives from different manufacturers.</p>
<p>Note: i would discuss only about consumer series internal hard drives from popular manufacturers. discussing others are beyond the scope of this guide.</p>
<p><strong>Where do i find model no?</strong><br />
Its written clearly on faceplate of hard drive with bold characters along the serial no and other information like date of manufacturing etc.</p>
<p><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SIYdMz9ZLTI/AAAAAAAAAOE/gWWTORPoqmQ/s1600-h/547px-Seagate_logo.svg.png"><img style="float:right;cursor:pointer;margin:0 10px 10px 0;" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SIYdMz9ZLTI/AAAAAAAAAOE/gWWTORPoqmQ/s200/547px-Seagate_logo.svg.png" border="0" alt="" /></a><br />
1)<strong><span style="font-size: medium;">Seagate</span></strong></p>
<p>sample model number:ST3500630AS<br />
we break is as: <span style="color: #ff99cc;">ST</span>-<span style="color: #ff00ff;">3</span>-<span style="color: #3366ff;">500</span>-6-30-AS</p>
<ul>
<li>ST: Company initials. ST= &#8220;Seagate Technology&#8221;, STM &#8211;   Seagate Technology Maxtor(Maxtor Hard drive).</li>
<li>3: Form factor. 3 = Standard 3.5&#8243; inch drives; 9 = 2.5&#8243; inch Laptop drive.</li>
<li>500: Total Capacity in Gigabytes(1000mb = 1GB). this is a 500GB model.</li>
<li>6:Cache Size. 0 = 2MB, 2 = 2MB, 3 = 8MB,4 = 16MB, 6 = 16MB and  8 = 8MB. Note:the <strong class="highlight">cache</strong> is the buffer memory between the controller and the mechanical <strong class="highlight">hdd</strong>. the more <strong class="highlight">cache</strong> it has &#8211; the more data it can store to transmit off to the controller. the faster data access on the <strong class="highlight">hdd</strong> will be.please don&#8217;t confuse it with CPU Cache.</li>
<li>AS: Connector Interface type, A= 40pin PATA or IDE and AS=SATA interface.</li>
</ul>
<h3>Link:<a href="http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=204763">How to interpret Seagate model numbers</a></h3>
<h3>2) <span style="font-size: medium;">Western Digital</span></h3>
<p><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SJXROcLTsYI/AAAAAAAAAOw/JJZ1NSfe660/s1600-h/western-digital.JPG"><img style="float:right;cursor:pointer;margin:0 10px 10px 0;" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SJXROcLTsYI/AAAAAAAAAOw/JJZ1NSfe660/s200/western-digital.JPG" border="0" alt="" /></a>sample model number::WD6400AAKS<br />
we break it as: <span style="color:#3333ff;">WD</span>-<span style="color:#cc33cc;">640</span>-0-A-A-K-S</p>
<p>WD:Company initials</p>
<p>640: drive capacity in Gigabytes. its a 640GB drive</p>
<p>A:Form factor.</p>
<p>A:Brand/Series</p>
<p>K:RPM/Buffer Size or Attribute<br />
S:Interface Type</p>
<h3>Link: <a href="http://www.westerndigital.com/en/library/2579-001028.pdf">Model Number Format for WD Products</a></h3>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=32&type=feed" alt="" />

<p>&nbsp</p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2009/02/howto-understanding-hdds-model-naming-convention.html/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Migrating from Blogger to selfhosted WordPress</title>
		<link>http://www.gaurishsharma.com/2009/01/migrating-from-blogger-to-selfhosted-wordpress.html</link>
		<comments>http://www.gaurishsharma.com/2009/01/migrating-from-blogger-to-selfhosted-wordpress.html#comments</comments>
		<pubDate>Thu, 22 Jan 2009 21:36:10 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.gaurishsharma.com/?p=75</guid>
		<description><![CDATA[Google&#8217;s blogger software for blogging is easy to use and effective. But the major drawback is that, blogger is not fully flexible to suit everyone needs, it does not support additional static  pages. In short, with blogger you can&#8217;t have full control over your blog. this is where wordpress scores the most. Being of  Open [...]]]></description>
			<content:encoded><![CDATA[<p>Google&#8217;s blogger software for blogging is easy to use and effective. But the major drawback is that, blogger is not fully flexible to suit everyone needs, it does not support additional static  pages. In short, with blogger you can&#8217;t have full control over your blog. this is where wordpress scores the most. Being of  Open Source nature, you can modify it to your needs &amp; extend its functionality further with help of plug-ins.</p>
<p>I myself have migrated to a self-hosted wordpress driven blog and would share my experience; the most seamless way to make the switch.</p>
<p>Please Note: As i was running blogger with a custom domain(<em>gaurishsharma.com</em>) so switch was relatively easier for me, as i didn&#8217;t have to use any dirty scripts to redirect traffic from old blogger blog to new wordpress blog.<br />
<strong><br />
</strong></p>
<h2><strong> <span style="color: #3366ff;">Aims of this Guide:</span></strong></h2>
<ol>
<li>Move all the posts and comments data from old blogger blog to your new wordpress blog.</li>
<li>Maintain the permalinks of your old blog, so links from search engines and bookmarks don&#8217;t get broken in process.Thereby maintaining backlinks for a good Page Rank</li>
<li>Carry Over your RSS feed subscribers to new blog.</li>
<li>Making the switch as seamless as possible with least amount of downtime possible.</li>
</ol>
<h2><span style="color: #3366ff;"><strong>Assumptions while making this guide:</strong></span></h2>
<ul>
<li>You use feedburner service, for feed syndication</li>
<li>you are publishing your blog on a custom domain(eg. yourname.com) and if you are still stuck on sub-domain of blogspot(like xxx.blopspot.com) its time to take the plunge, go register your own domain(yourname.com).A custom domain helps build a unique online identity and shows that you are really serious about blogging.  these days Domain are really affordable around Rs.350INR per year.</li>
</ul>
<h2><span style="color: #3366ff;"><strong>The Procedure Explained, Step-by-step:</strong></span></h2>
<ol>
<li><strong>Moving to custom domain:</strong> If you are publishing on subdomain of blogspot(xxx.blogspot.com). First step is switch to a custom domain, instrutions can be found on <a href="http://help.blogger.com/bin/answer.py?hl=en&amp;answer=55373">Google Help page</a>.After changing to a new address, kindle wait for atleast 3-6months, so all traffic from your old blog&#8217;s URL its automatically your new custom domain. I realize 3months is a long period but its necessary  for making a smooth switch, but if you are less patient then try this hack.</li>
<li><strong>Importing Data</strong>: Since, all of your traffic is coming to your new custom domain(yourname.com). its time make a switch. Go to WordPress.com and sign-up for a free blog. choose whatever address you like as that&#8217;s gonna be temp. Now, Import data from your blogger blog by logging into wordpress dashboard &amp; Tools &#8211;&gt; Import &#8211;&gt; Blogger.Next authorize wordpress to access your blogger blog and press magic Import Button. importing post would take some time. so please be patient.after importing completes, set the author name.<img class="aligncenter size-medium wp-image-81" title="acces_authroise" src="http://www.gaurishsharma.com/wp-content/uploads/2009/01/4-grant-access-blogger-google-account-1-600x322-300x161.png" alt="acces_authroise" width="300" height="161" /><img class="aligncenter size-medium wp-image-80" title="2-import-data-from-blogger-into-wordpress" src="http://www.gaurishsharma.com/wp-content/uploads/2009/01/2-import-data-from-blogger-into-wordpress-300x80.png" alt="2-import-data-from-blogger-into-wordpress" width="300" height="80" /></li>
<li> <strong>Exporting Data</strong>: Now navigate to Tools &#8211;&gt; Export.Save this file to your computer.now all your posts &amp; comment are saved on your computer disk. at this point we no longer require that free wordpress blog we registered in step 2</li>
<li> <strong>Installing WordPress</strong>:Login to your webmaster&#8217;s Control Panel. most webhost have Cpanel installed which has <span class="menubi">Fantastico</span> feature, with its help you can install wordpress in few clicks. else you could The famous manual install, the only extra step in manual method is database creation by phpadmin.</li>
<li><strong>Importing final data</strong>: Login into your newly installed wordpress&#8217;s dashboard. Goto Tools &#8211;&gt; Import &gt; WordPress. broswe to the location of file which you saved in step-3.</li>
<li> <strong>Maintaining Permalinks</strong>: Now we need to use the exact URL stucture as we had in our blogger blog. First Install plugin called &#8211; <a title="Download Plugin" href="http://justinsomnia.org/files/wp-maintain-blogger-permalinks-1.0.zip">Maintain Blogger Permalinks</a> by uploading this to your<em> wp-content/plugins/</em> dir. Activate the plugin once and run it via <em>Tools &gt; Permalinks</em>. This is one time task and you can safely remove this plugin afterwards.</li>
<li>Next go to <em>Settings &#8211;&gt; Permalinks &#8211;&gt; Custom</em> &amp; enter the following stucture:- <em>/%year%/%monthnum%/%postname%.html</em></li>
<li>Importing feed: Login to your feedburner account. and click on Edit Feed Details. In feed url enter <em>http://www.your-domain-name-here.com/feed/rss</em> eg. http://www.gaurishsharma.com/feed/rss</li>
</ol>
<p>Thats all.<br />
Now you change update NS records of your domain, to redict visitor to your new wordpress blog. Remember: It takes about 24-48 in Dns propagation.</p>
<p>Happy Blogging</p>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=75&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2008/07/ubuntu-linux-as-family-pc.html' rel='bookmark' title='Permanent Link: Ubuntu Linux as Family PC'>Ubuntu Linux as Family PC</a> <small>We know Linux is a operating system where everything can...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/09/make-your-presence-felt-on-web-in-about.html' rel='bookmark' title='Permanent Link: Make your presence felt on the Web in about $8USD/Rs350INR'>Make your presence felt on the Web in about $8USD/Rs350INR</a> <small>Do you want to have a Personal blog with a...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2009/01/migrating-from-blogger-to-selfhosted-wordpress.html/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>ICICI B2 Banking &#8211; True Internet Banking</title>
		<link>http://www.gaurishsharma.com/2008/12/icici-b2-banking-true-internet-banking.html</link>
		<comments>http://www.gaurishsharma.com/2008/12/icici-b2-banking-true-internet-banking.html#comments</comments>
		<pubDate>Thu, 25 Dec 2008 16:07:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[Recommended]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/12/25/icici-b2-banking-true-internet-banking/</guid>
		<description><![CDATA[Unhappy with your bank&#8217;s crippled net banking facility? How many times have you have wished that you had a fully featured Internet banking service which has all the features which would help you transact on the Internet smartly. want to change to another bank&#8217;s net banking service but don&#8217;t want ditch your old savings account. [...]]]></description>
			<content:encoded><![CDATA[<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SVOpHKZinuI/AAAAAAAAAZs/m7dcTm_r1G8/s1600-h/icici_b2_logo.gif"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SVOpHKZinuI/AAAAAAAAAZs/m7dcTm_r1G8/s400/icici_b2_logo.gif" /></a></div>
<p><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SVOpGU-fLnI/AAAAAAAAAZk/IJenv3M3C0c/s1600-h/b2_logo.gif"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SVOpGU-fLnI/AAAAAAAAAZk/IJenv3M3C0c/s320/b2_logo.gif" /></a>Unhappy with your bank&#8217;s crippled net banking facility? How many times have you have wished that you had a fully featured Internet banking service which has all the features which would help you transact on the Internet smartly. want to change to another bank&#8217;s net banking service but don&#8217;t want ditch your old savings account.<br />
ICICI bank has product which they call &#8220;<b>b2 Branch Banking</b>&#8220;.It is a fully online direct banking service in which everything is done online, zero transaction charges on the savings account, no cheque book, no branch access, savings account with quantum optima facility. It is too simple, easy and saves your time</p>
<ul>
<li><u><b>What a b2 account offers: </b></u> </p>
<ul>
<li>Zero Balance and Zero Transaction Charges &#8211; There are no charges on transaction done in b2 savings account. Also, unlike regular savings account you don&#8217;t have maintain a minimum amount in your account.
</li>
<li>Virtual Credit Card(VCC) -&nbsp; It enables to transact online with a credit limit of your choices. This card has limited balance which user specifies while generating so even if it fails in wrong hands you stand no risk.
</li>
<li>No Penalty for premature withdrawal of FDs &#8211; you can make a premature withdrawal(breaking it before its full term) in your b2 saving account without having to incur the 1% penalty applicable on regular FDs.
</li>
<li>E-wallet &#8211; An e-wallet gives you the conform of using a debit card online without having to expose your entire savings account for online transactions.
</li>
<li>Greater Acceptability -&nbsp; ICICI payment gateway is supported by most e-commerce Website. where as name of your good old bank may not appear while you are shopping on your favorite Website&nbsp; .
</li>
<li>Online Prepaid Mobile Recharge &#8211; you can recharge your mobile right from your b2 account itself and money would be automatically debited from your account. not a big feature but still useful. maybe you can use to refill when your talktime runs out in middle of night while talking to your girlfriend.
</li>
<li>Absolutely No Making Charges on Demand Draft
</li>
<li>No Charges on NEFT
</li>
<li>SMS Alerts</li>
</ul>
</li>
</ul>
<p>Now, we know that B2 savings account is not a regular savings account. then obviously we must not be getting facilities of normal savings account. below is the difference between normal saving account &amp; b2 savings account </p>
<ul>
<li><b><u>What a b2 account does not offer:</u></b>&nbsp; </p>
<ul>
<li>No branches, no cheque books &#8211; You will not have access to any ICICI Bank branches. For instance, you won&#8217;t be able to withdraw cash from a branch. since, you can move money online in easy ways, there will be no cheque book with account.
</li>
<li>No debit card, no ATM access &#8211; Since this is a truly online account &#8211; you can move money from your b2 account to your other bank(S) very easily as and when you wish &#8211; you will not need a debit card or access to an ATM
</li>
<li>No physical statements and passbook &#8211; you will not get any passbook or statement. instead you can see them, in your b2 account itself.</li>
</ul>
</li>
</ul>
<p>To Apply for ICICI b2 account, you have to visit <a href="http://www.b2.icicibank.com/">ICICI B2 Page</a> and click on <b>Apply Here. </b>A simple online Application form has to be filled with all your details. After filling up the form an ICICI bank executive would come to you for collecting required documents. <br />
One problem you might face is in step-3 that name of your employer might not be on the list. no problem, simply click on &#8220;O&#8221; and select &#8220;Others&#8221;. if you are unemployed like you are still studying then simply write &#8220;NOT APPLICABLE&#8221;.</p>
<ul>
<li><u>How to move money into your b2 account<b>: </b></u>there are many ways of doing that but the best one is dropping a cheque into any ICICI bank ATM&#8217;s Dropbox. just write your name and b2 account no in pay field and the amount would be debited to your account in 5 days.
</li>
<li><u>How to move money out of b2 account</u><b>:</b> Again, there are many ways. the best is to transfer money into some other account by NEFT.</li>
</ul>
<p>
This service is useful for people you do lot of electronic transactions on regular basis.b2 can exist in perfect harmony with your regular savings account. use b2 for electronic transactions and your regular account for other offline transactions.&nbsp;&nbsp; <br />
It is a real Internet banking facility which is absolutely free to use. I wonder how ICICI plans to earn from this service.&nbsp; I have been using this service from past 2months and I am very happy with it. I would certainly suggest you to sign up for it.</p>
<p><b>Links:&nbsp;&nbsp; </b><a href="http://www.b2.icicibank.com/">ICICI b2 Home Page</a>&nbsp; |&nbsp; <a href="https://b2.icicibank.co.in/BANKAWAY?Action.DBanking.RedirectApplication.Init.001=Y&amp;AppSignonBankId=ICI&amp;AppType=directbanking">Apply for ICICI b2</a>&nbsp; |&nbsp;&nbsp;&nbsp; <a href="https://b2.icicibank.co.in/BANKAWAY?Action.DBanking.RedirectApplication.Init.001=Y&amp;AppSignonBankId=ICI&amp;AppType=directbanking">ICICI b2 in the news</a>
<div class="blogger-post-footer">Did you enjoy this Post?.Please give your feedback at contact at gaurishsharma.com.<br />
Read more at GaurishSharma.com</div>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=62&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2009/03/online-mobile-recharge-review.html' rel='bookmark' title='Permanent Link: Recharge prepaid mobile online'>Recharge prepaid mobile online</a> <small>If you have ever tried on recharging your pre-paid mobile...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/06/free-1-year-kaspersky-internet-security.html' rel='bookmark' title='Permanent Link: FREE 1 Year Kaspersky Internet Security 2009 Genuine License'>FREE 1 Year Kaspersky Internet Security 2009 Genuine License</a> <small>Kaspersky Internet Security 2009 is the all-in-one security solution that...</small></li>
<li><a href='http://www.gaurishsharma.com/2009/07/national-roaming-bsnl-evdo-data-card.html' rel='bookmark' title='Permanent Link: National Roaming is Now available on BSNL Data Card'>National Roaming is Now available on BSNL Data Card</a> <small>A good news for all Bsnl Evdo &amp; NIC card...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/12/icici-b2-banking-true-internet-banking.html/feed</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>[Orkut] Get Latest Updates By SMS for Free</title>
		<link>http://www.gaurishsharma.com/2008/11/orkut-get-latest-updates-by-sms-for.html</link>
		<comments>http://www.gaurishsharma.com/2008/11/orkut-get-latest-updates-by-sms-for.html#comments</comments>
		<pubDate>Thu, 06 Nov 2008 06:55:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[orkut]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/11/06/orkut-get-latest-updates-by-sms-for-free/</guid>
		<description><![CDATA[Orkut has started a new service called &#8220;Orkut SMS&#8221; by which you can receive latest scraps from your scrapbook as text sms on your Mobile. It means, now you would be able to get scraps from your orkut profile right onto your mobile phone. so it would work on crappiest mobile phones which don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SFGwHOlLlEI/AAAAAAAAAFs/qY-Va1iYOIQ/s1600-h/orkut_logo.gif"><img alt="" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SFGwHOlLlEI/AAAAAAAAAFs/qY-Va1iYOIQ/s320/orkut_logo.gif" border="0" /></a><br />Orkut has started a new service called &#8220;<b>Orkut SMS</b>&#8221; by which you can receive latest scraps from your scrapbook as text sms on your Mobile. It means, now you would be able to get scraps from your orkut profile right onto your mobile phone. so it would work on crappiest mobile phones which don&#8217;t have fancy features like GPRS or EDGE. Further you can also reply to scraps from your mobile itself.</p>
<p>Its Advantage is that this service does not require GPRS connection on mobile. It is entirely SMS based.if you are looking for GPRS based service try http://m.orkut.com.</p>
<p>It is to be noted that Receive SMS is entirely free but you would be Charged Rs.2/- per SMS(1/- for MTNL) for sending a SMS. In my opnion  the best utilization of service is to Receive scraps, sending scraps from mobile should be generally avoided unless urgent as its charged.</p>
<p><b>What is orkut SMS?</b><br />orkut SMS allows you to stay in touch with your orkut friends using text messages   from your mobile phone.<br /><b>How does orkut SMS work? </b>     <br />
<table border="0" cellpadding="0" cellspacing="2">
<tbody>
<tr>
<td valign="top">1. </td>
<td><a href="http://www.orkut.com/MobileSetupSettings.aspx">Register your phone</a> on the orkut website. </td>
</tr>
<tr>
<td valign="top">2. </td>
<td>Send SMS commands from your phone to the appropriate orkut SMS number. Number for India:- <b>56555</b></td>
<td></td>
</tr>
</tbody>
</table>
<p><b>SMS Commands</b>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SRKjWuuM6hI/AAAAAAAAAYQ/s9ldLMliBUs/s1600-h/2008-11-06-132518_1024x768_scrot.png"><img src="http://3.bp.blogspot.com/_wMAC6frBFdw/SRKjWuuM6hI/AAAAAAAAAYQ/s9ldLMliBUs/s400/2008-11-06-132518_1024x768_scrot.png" border="0" /></a> </div>
<div class="separator" style="clear:both;text-align:left;"></div>
<p>I am Using this on my Vodafone Mobile number from past week. I must say its very fast, i am getting scraps on SMS even before e-mail notifications.</p>
<p>If you are a Orkut user, you should try it at-least for receiving scrap which is free.<br /><b>Currently Supported Operators:</b>
<ul>
<li> TATA</li>
<li> BPL</li>
<li> Aircel</li>
<li> Reliance</li>
<li> Spice</li>
<li> MTNL </li>
<li> Vodafone</li>
</ul>
<p><a href="http://help.orkut.com/support/bin/answer.py?answer=50317&amp;hl=en-US">More Details</a>
<div class="blogger-post-footer">Did you enjoy this Post?.Please give your feedback at contact at gaurishsharma.com.<br />
Read more at GaurishSharma.com</div>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=56&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2008/06/what-to-do-when-person-uses-your-name.html' rel='bookmark' title='Permanent Link: What to do when a Person uses your name &amp; Photo on Orkut'>What to do when a Person uses your name &amp; Photo on Orkut</a> <small>Orkut, a Social networking by google which is a rage...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/11/orkut-get-latest-updates-by-sms-for.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Everything About BSNL EvDO Data Card</title>
		<link>http://www.gaurishsharma.com/2008/10/everything-about-bsnl-evdo-data-card.html</link>
		<comments>http://www.gaurishsharma.com/2008/10/everything-about-bsnl-evdo-data-card.html#comments</comments>
		<pubDate>Mon, 06 Oct 2008 19:57:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Bsnl Data Card]]></category>
		<category><![CDATA[Guides and Howtos]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/10/06/everything-about-bsnl-evdo-data-card/</guid>
		<description><![CDATA[What is Evdo Data Card? In Simple terms, EvDo is a Technology which works on CDMA networks and it provides high speed Internet access on Mobile. it can also be termed as Mobile Broadband since you don&#8217;t have stick at one place, you can move freely move and still be able to check your e-mail [...]]]></description>
			<content:encoded><![CDATA[<p><!-- google_ad_client = "pub-8985332373283902"; /* 300x250, created 10/6/08 */ google_ad_slot = "2348389197"; google_ad_width = 300; google_ad_height = 250; //--></p>
<h4>What is Evdo Data Card?</h4>
<p><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SOppxeWHLCI/AAAAAAAAAXI/4ebrv5BSPbs/s1600-h/evdo4.jpg"><img src="http://1.bp.blogspot.com/_wMAC6frBFdw/SOppxeWHLCI/AAAAAAAAAXI/ftE2Mnh8Cl8/s320-R/evdo4.jpg" border="0" alt="" /></a>In Simple terms, EvDo is a Technology which works on CDMA networks and it provides high speed Internet access on Mobile. it can also be termed as Mobile Broadband since you don&#8217;t have stick at one place, you can move freely move and still be able to check your e-mail as long as you are in coverage area. Just like you do  with GRPS service with your mobile phone. A much more, technically correct definition is given below:-<br />
Evolution-Data Optimized(Evdo) is a telecommunications standard for the wireless transmission of data through radio signals, typically for broadband Internet access. It is based on <a href="http://en.wikipedia.org/wiki/Code_division_multiple_access" target="_blank">CDMA</a> Technology.The EV-DO feature of CDMA2000 networks provides access to mobile devices with forward link air interface speeds of up to 2.4 Mbit/s with Rev. 0 and up to 3.1 Mbit/s with Rev. A.</p>
<h4><strong>What are Features of Bsnl Evdo?</strong></h4>
<ul>
<li>Personal broadband wireless service for a wide range of customers, from business people to students</li>
<li>Always on<strong> </strong>&amp; Unlimited Access</li>
<li>Advantages over WiFi: It does not need a <a href="http://en.wikipedia.org/wiki/Hotspot_%28Wi-Fi%29" target="_blank"><em>wifi hotspot</em></a><em>. </em>You take the internet with you and surf the web in your car, on the train, in the airport, at a convention, on the road. just about anywhere.</li>
<li>High-Speed Internet Access supported upto 2.4mbps</li>
</ul>
<h4><strong>What is the cost of BSNL EVDO service?</strong></h4>
<p>BSNL EVDO is an unlimited bandwidth service, which means you can use as much as you want, there are no data limits on the service. you just have to pay the monthly rental of Rs.650/-. its Truly Unlimited service, no extra costs</p>
<h4><strong>Do I need any special Device to use this service?</strong></h4>
<p>You can need EVDO wireless usb modem/card. Bsnl currently gives <a href="http://www.ztemt.com.cn/ennewzte/product/productLoad.action?model.id=ff808081175ed16c01175f4ad37a0006" target="_blank">EV-DO card AC8700</a> by <a href="http://wwwen.zte.com.cn/" target="_blank">ZTE Mobile</a> Tech.This device stylish device plug directly in USB port of your computer/laptop.It Weights about 40g.The device costs 3,500 Rs.(May vary +/- few Rs in few regions). In case you don&#8217;t want to purchase it outright, you have a rental option available. Here are a few pics of the Device</p>
<h4><strong>Can I see a complete Traffic card, which its all the charges i have to pay?</strong></h4>
<p>When i went to bsnl office for enquiry of the service, i was given a Tariff card. the same has been upload for your kind reference. I got this card from BSNL jaipur, so Charges maybe slightly different for different states.<br />
<a title="View BSNL Data Card Tariff document on Scribd" href="http://www.scribd.com/doc/6415778/BSNL-Data-Card-Tariff">BSNL Data Card Tariff</a></p>
<h5><a href="http://docs.google.com/Doc?id=ddg89q2c_9ckwbhkhr">BSNL Data Card Tariff</a></h5>
<h4>Presently, in which cities service is available?</h4>
<p>Please contact your nearest exchange for availability.unofficial list <a href="http://bsnlevdoclub.com/bsnl-evdo-coverage/bsnl-evdo-enabled-cities-in-india/" target="_blank">BSNL EVDO Enabled Cities in India</a></p>
<h4><strong>Does this device work with Mac &amp; Linux?</strong></h4>
<p>Yes, it works with Mac &amp; Linux.</p>
<h4><strong>How do I get the BSNL EVDO service?</strong></h4>
<p>You need to visit the main BSNL office in your area to get EVDO connection.In Jaipur,Rajasthan. I went to Bajaj Nagar Telephone Exchange but before you get your own connection, please ask them for a demonstration. Also, ask them but the coverage details &amp; what likely speeds would get in your area.</p>
<h4><strong>What is CDMA 1x ?</strong></h4>
<p>CDMA 1x is the previous version or the older version of EVDO which has speed upto 144kbps. As EvDO is still in Nascent stage of deployment very few areas have Evdo BTS (base transmitting stations), rest are still CDMA 1x. If BTS near you is not Evdo enabled then you will get CDMA 1x speeds of upto144kbps.</p>
<h4>What about the speeds &amp; performance<strong>? </strong></h4>
<p>Speeds &amp; Performance depend on Signal Strength which varies  place to place . some people have reported to get about 1.5mbps speed and some only get around 100kbps only. so i would suggest you to contact your nearest local exchange and ask for a live demo.   here is a brief account of my personnel experience.</p>
<ul><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SOppuBfz2KI/AAAAAAAAAW4/gduVyX9GXMQ/s1600-h/EVDO.JPG"><img src="http://4.bp.blogspot.com/_wMAC6frBFdw/SOppuBfz2KI/AAAAAAAAAW4/dz5fxbzHt9E/s320-R/EVDO.JPG" border="0" alt="" /></a></p>
<li>With about 4Signal bars; speeds were around 200-600kbps range. placing the device at specific positions helps in signal reception.</li>
<li>Speed was constantly fluctuating &amp; were not stable; however average speeds of 300kbps were observed over the period of 2hours.</li>
<li>Websites like orkut,yahoo,rediff loaded speedily but video playback on youtube was not smooth due to constant fluctuations of bandwidth availability.</li>
</ul>
<h4>Troubleshooting EvDo Connectivity</h4>
<p>ZTE Device comes with LED light which shows us status of Internet connectivity. it has 2 colors &amp; various states which inform us about the current network. Additionally, top bar of bundled ZTE application provides a lot of useful information on current connection state. For a Smooth working Connection, you have have minimum 3 signal bars, else would face connectivity problems.</p>
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SOppvxtTa8I/AAAAAAAAAXA/xWUOAssALS8/s1600-h/evdo2.jpg"><img src="http://3.bp.blogspot.com/_wMAC6frBFdw/SOppvxtTa8I/AAAAAAAAAXA/fJU9gFdptZI/s320-R/evdo2.jpg" border="0" alt="" /></a></div>
<div class="separator" style="clear: both; text-align: center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SOpqpkvkIpI/AAAAAAAAAXg/63pl1glCYk4/s1600-h/evdo3.png"><img src="http://3.bp.blogspot.com/_wMAC6frBFdw/SOpqpkvkIpI/AAAAAAAAAXg/AG68hrzGSfI/s400-R/evdo3.png" border="0" alt="" /></a></div>
<h4>Special Note for torrent &amp; Rapidshare Users; Others can skip this</h4>
<p><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SOpqVSnL5JI/AAAAAAAAAXY/WUqx1Ooeba0/s1600-h/evdo5.png"><img src="http://1.bp.blogspot.com/_wMAC6frBFdw/SOpqVSnL5JI/AAAAAAAAAXY/woXy5fr0QFA/s320-R/evdo5.png" border="0" alt="" /></a>In Bsnl EvDO you aren&#8217;t directly connected to Internet.instead you are connected to a Proxy server on bsnl&#8217;s network which has a private IP, in 10.xx.xx.xx range. that proxy server then connects to Internet Gateway aka National Internet Backbone. so as a result, proxy server blocks all incoming connections to it, except those coming from known ports like port 80,443 etc.Every Proxy server has a unique Public IP address, and all subscribers connected to it will share that Public IP address. Its entirely different from convention when every Subscriber has unique Public Ip address<br />
This Approach was two shortcomings:</p>
<ul>
<li><strong>Rapidshare</strong>: As a single public IP address is shared among lot of users, there is a great chance at someone from your IP address would have already download from Rapidshare. so now for next 30days you can&#8217;t download from that same IP, as its a limitation imposed by rapidshare on free users. however premium account holder<br />
won&#8217;t be affected due to this.</li>
<li><strong>Torrents</strong>:Currently BSNL has set the proxy in such a way that it blocks all incoming connections other than of known ports like port 80,443 etc. as a result you aren&#8217;t connectable to other users. you can only download a torrent and can&#8217;t upload. on private trackers you would be banned shortly for a bad ratio and on public trackers you would get slow speeds</li>
</ul>
<h3>Pros</h3>
<ul>
<li>Fast, cheap &amp; portable</li>
<li>Unlimited Usage</li>
<li><span style="text-decoration: line-through;">Unique, presently this is only Evdo service in INDIA, rest operators have networks which are many times slower. </span>dsadadother operators have started similar services namly tata photon,reliance netconnect plus but none of them is unlimited. Even Unlimited Plans have data limits under Fair Usage Policy. so if you want Truly unlimited Internet access on the move at affordable prices, Bsnl Evdo is your best bet.</li>
</ul>
<h3>Cons</h3>
<ul>
<li>Constant fluctuations of speed which depends on signal</li>
<li><span style="text-decoration: line-through;">No All india Roaming; you can roam in your state only </span>Now Available: <a title="Permanent Link: National Roaming is Now available on BSNL Data Card" rel="bookmark" href="../2009/07/national-roaming-bsnl-evdo-data-card.html" class="broken_link">National Roaming is Now available on BSNL Data Card</a></li>
<li>Limited Coverage: Evdo network is under deployment, it is available in selected cities only. other area will get speeds upto 144kbps(CDMA 1x)</li>
</ul>
<h2>Conclusion</h2>
<p>Bsnl Evdo is good service with gives excellent speeds on the move comparing to other alternatives like GPRS. The technology involved is quite new in India, this can be judged from the fact the DOT has not issued any format licenses for 3G CDMA. when licenses are issues we would expect similar roll outs from other operators also.<br />
I would recommend people to try this service atleast once, if they find it suitable they should subscribe to it<br />
<strong>Further Reading:</strong></p>
<ul>
<li><a href="http://www.bsnl.co.in/newsdetailed.php?news_id=370" target="_blank" class="broken_link"> </a>
<div style="font-family: inherit;"><a href="http://www.kerala.bsnl.co.in/broadband/evdo.asp" class="broken_link"><span style="font-size: small; color: blueviolet;"><span style="text-decoration: underline;">CDMA EVDO SERVICES &#8211; Kerala Telecom Circle</span></span></a><span style="font-size: small; color: blueviolet;"><span style="text-decoration: underline;"> </span></span></div>
</li>
<li><a href="http://www.jayson.in/technology-tips/bsnl-evdo-review-high-speed-3g-broadband-in-india.html" target="_blank">BSNL EVDO Review &#8211; High speed 3G Broadband in India</a></li>
<li><a href="http://bsnlevdoclub.com/">BSNL EVDO CLUB &#8211; UnOfficial BSNL EVDO Website</a></li>
<li><a href="http://www.chennai.bsnl.co.in/News/EVDO.htm">EVDO Service &#8211; Chennai Telecom Circle </a></li>
</ul>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=52&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2009/05/bsnl-evdo-data-card-drivers.html' rel='bookmark' title='Permanent Link: Bsnl Evdo Data card Drivers'>Bsnl Evdo Data card Drivers</a> <small>Download driver software for bsnl Evdo data card.Although these drivers...</small></li>
<li><a href='http://www.gaurishsharma.com/2009/07/national-roaming-bsnl-evdo-data-card.html' rel='bookmark' title='Permanent Link: National Roaming is Now available on BSNL Data Card'>National Roaming is Now available on BSNL Data Card</a> <small>A good news for all Bsnl Evdo &amp; NIC card...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/08/solutionsome-random-sites-do-not-open.html' rel='bookmark' title='Permanent Link: Solution:Some Random sites do not open with BSNL Broadband'>Solution:Some Random sites do not open with BSNL Broadband</a> <small>BSNL Broadband is a broadband internet service from state owned...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/10/everything-about-bsnl-evdo-data-card.html/feed</wfw:commentRss>
		<slash:comments>97</slash:comments>
		</item>
		<item>
		<title>Dummies Guide to Scheduling Downloads(Linux Version)</title>
		<link>http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html</link>
		<comments>http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:41:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Bsnl Broadband]]></category>
		<category><![CDATA[Guides and Howtos]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/10/02/dummies-guide-to-scheduling-downloadslinux-version/</guid>
		<description><![CDATA[Linux is a stable OpenSource Operating system.It has a ability to run for long hours and crashes are rarely seen.On top of it, it has a inbuilt scheduler which is robust and&#160; it never misses tasks. All this Characteristics make Linux a perfect choice for downloading. Yeah almost perfect choice (discussed later). In This Guide [...]]]></description>
			<content:encoded><![CDATA[<div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SOUABh3ZuBI/AAAAAAAAAWw/iRu3TE2iwg4/s1600-h/3810-linux-logo.jpg"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SOUABh3ZuBI/AAAAAAAAAWw/X0FgKa48o0U/s200-R/3810-linux-logo.jpg" /></a></div>
<p>Linux is a stable OpenSource Operating system.It has a ability to run for long hours and crashes are rarely seen.On top of it, it has a inbuilt scheduler which is robust and&nbsp; it never misses tasks. All this Characteristics make Linux a perfect choice for downloading. Yeah almost perfect choice (discussed later).<br />
In This Guide we would learn how to smartly schedule downloads. This way files would be automatically downloaded while you sleep. This Guide is mainly for BSNL/MTNL broadband subscribers. I have Tried to prescribe a general procedure which is applicable on all major Distributions.so distribution specific goodies are not discussed here.</p>
<p>Mainly there are two mode of this, you need to pick a method which applies to you.</p>
<ul>
<li><b>Router Reboot method</b>: Suitable when your connection is configured as always-on and router is PPPoE mode. so you don&#8217;t need to dial your connection every time you connect to Internet. it works with selected routers which supports telnet connectivity.Dependant upon routers.
</li>
<li><b>Bridge Mode:</b> Suitable when you dial to connect to Internet using a Dialer program on your PC. in this setting your PC is in Bridge mode.it works with every router.
</li>
</ul>
<div align="left"><big><b>Understanding Cron</b></big> <big><b>Daemon</b></big><br />
Before we begin we should know how about cron &#8211; default linux scheduler <br />
Cron Daemon is a default scheduler for Linux based systems.Cron Daemon is&nbsp; responsible for scanning the crontab files and running the commands at the appropriate time. It always runs in background, wakes up every minute to check for any scheduled taks pending for execution. then it executes them and goes back to sleep. </p>
<p>Crond reads tasks from crontab, anything you write in your crontab with proper syntax will be read &amp; excuted by crond. Crontab as name suggests, is basically a file where sheduled tasks are arranged in tabular forum.The syntax of crontab is fairly simple.</p>
<table border="1">
<tbody>
<tr>
<th>Minutes</th>
<th>Hours</th>
<th>Day</th>
<th>Month</th>
<th>Day of the month</th>
<th>command</th>
</tr>
<tr>
<td>enter the minutes part of time, legal values 0-60</td>
<td>Enter the hours, in 24hr format. legal values 0-24</td>
<td>Enter the Day number starting from Monday, legal values 0-7</td>
<td>Enter the month,legal values 1-12</td>
<td>Enter a Date, legal values 1-31</td>
<td>Command you want to execute at scheduled time</td>
</tr>
</tbody>
</table>
<p>use command &#8220;visudo&#8221; to edit crontab.it would load a editor depending upon your $EDITOR variable. on Ubuntu you would get nano<br />
<a href="http://www.gentoo.org/doc/en/nano-basics-guide.xml">how to use nano</a>(easy)<br />
<a href="http://mirror1.linuxcbt.com/demos/classic_edition/LinuxCBT_Classic_vi.html" class="broken_link">how to use vi</a> (advanced)</p>
<p><big><b>Things Which are common among both methods</p>
<p></b></big>1) Create a simple text file in your home folder and name it <b>&#8220;downloads.txt</b>&#8221; &amp; notedown its full path. Insert the *Direct* links of files you want to download into this newly created file. The files given in this would be downloaded by wget automactically.wget can handle http &amp; ftp downloads. After download completes remove the link and enter new ones. insert one link per line. Remember to add direct link only.</p>
<p>2) If you use torrents, install your torrent client and notedown its full path to its binary. you can use &#8220;whereis&#8221; command to find its exact location. generally its /usr/share/sbin. If you are looking for worthy torrent clients, look for <a href="http://deluge-torrent.org/">deluge</a> or azurus now vuze</p>
<div align="center" style="color:red;"><big><big><b>Router Reboot Method</b></big></big></div>
<p>1) I wrote a simple Shell script for rebooting router. it works nicely on D-link GLB 502T. although you may need to change userid,password &amp; command values.copy paste this script in a file and save it as <i>router-reboot.sh</i>. make it excutable by </p>
<p><i>chmod a+x router-reboot.sh</i></p>
<p></p>
<pre class="alt2" style="border:1px inset;height:354px;overflow:auto;text-align:left;width:640px;margin:0;padding:6px;">#!/bin/sh
#############################################
#Script Written By Gaurish Sharma
#change the password,userid &amp; command values with your own set
#the default password &amp; username
# in most cased is 'admin'
#use it in terminal as sh router-reboot.sh | telnet
#(C) GaurishSharma.com
#############################################
add='open 192.168.1.1'
userid='root'
password='your_passoword'
command='reboot'
echo $add
sleep 1
echo $userid
sleep 1
echo $password
sleep 1
echo $command
sleep 1</pre>
<p>
2) Open Terminal and enter &#8220;crontab -e&#8221;. enter the following in your crontab and save it</p>
<pre class="alt2" style="border:1px inset;height:98px;overflow:auto;text-align:left;width:640px;margin:0;padding:6px;"># m h  dom mon dow   command
# Reboot Entry, please replace with correct path
10 2 * * * cd /home/gaurish/scripts &amp;&amp; sh router-reboot.sh | telnet
# Start Torrent client, please replace with correct path of your router
12 2 * * * DISPLAY=:0.0 /opt/azureus/azureus
# Downloads via wget, Please replace with corrent path
13 2 * * * wget -ci /home/gaurish/downloads.txt
# Reboot Entry, please replace with correct path
50 7 * * * cd /home/gaurish/scripts &amp;&amp; sh router-reboot.sh | telnet</pre>
<p>
3) Now we need to enter command to shutdown computer everyday at 7.51AM.this only can be done via root user. so now the enter command as &#8220;sudo crontab -e&#8221; and Insert this line.</p>
<pre class="alt2" style="border:1px inset;height:34px;overflow:auto;text-align:left;width:640px;margin:0;padding:6px;">50 7 * * * /sbin/shutdown -h 0</pre>
<p>
4) (Optional) you can install mailx package to see the log of what happened while you were sleeping</p>
<p></p>
<div align="center">
<div style="color:red;"><b><big><big>Bridge Mode</big></big></b></div>
<div align="left"></div>
</div>
<p>1) we would be using default command which you use to dial to internet. on most cases its pon dsl-provider for connectinig and poff for disconnection . in case the command are diffrent on your machine please replace them.</p>
<p>2) Open Terminal and enter <i>&#8220;crontab -e&#8221;</i> now paste the following in it</p>
<pre class="alt2" style="border:1px inset;height:82px;overflow:auto;text-align:left;width:640px;margin:0;padding:6px;"># m h  dom mon dow   command
# Start Torrent client, please replace with correct path of your torrent program
10 2 * * * DISPLAY=:0.0 /opt/azureus/azureus
# please replace with correct path of download.txt
13 2 * * * wget -ci /home/gaurish/downloads.txt</pre>
<p>
3) Now we need to use root crontab, use &#8220;sudo crontab -e&#8221; to access it.</p>
<pre class="alt2" style="border:1px inset;height:66px;overflow:auto;text-align:left;width:640px;margin:0;padding:6px;">10 2 * * *  /usr/bin/pon dsl-provider
49 7 * * * /usr/bin/poff
50 7 * * * /sbin/shutdown -h 0</pre>
<p>
4) (Optional) you can install mailx package to see the log of what happened while you were sleeping.</div>
</div>
<p><b>What you are missing in Linux, comparing to windows?</b><br />
In starting of this post i said,&nbsp;<b> </b>almost perfect choice for downloading. so you gotta missing something. which is ability to power on your PC automatically.<br />
I am still searching for a method to start a Linux box automatically at a specific time. <br />
As a workaround you can do the same thing via your BIOS, but a limited no of BIOS support this. so either leave your machine running with monitor turn off or use the BIOS trick.</p>
<p><b>Related Posts:</b><span style="font-size:small;">&nbsp;</span></p>
<ul>
<li><span style="font-size:small;"><a href="http://www.gaurishsharma.com/2008/09/dummies-guide-to-scheduling-downloads.html">Dummies Guide to Scheduling Downloads(Windows)</a></span><span style="font-size:small;">&nbsp;</span></li>
<li><span style="font-size:small;"><a href="http://www.gaurishsharma.com/2008/08/solutionsome-random-sites-do-not-open.html">Solution:Some Random sites do not open with BSNL Broadband</a></span></li>
</ul>
<div class="blogger-post-footer">Did you enjoy this Post?.Please give your feedback at contact at gaurishsharma.com.<br />
Read more at GaurishSharma.com</div>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=51&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2008/09/dummies-guide-to-scheduling-downloads.html' rel='bookmark' title='Permanent Link: Dummies Guide to Scheduling Downloads'>Dummies Guide to Scheduling Downloads</a> <small>Since state owned Bharat Sanchar Nigam Ltd (BSNL) launched its...</small></li>
<li><a href='http://www.gaurishsharma.com/2010/06/direct-server-data-transfer-ftp-recursive.html' rel='bookmark' title='Permanent Link: [Howto] Direct Server site transfer via FTP(recursive)'>[Howto] Direct Server site transfer via FTP(recursive)</a> <small>Ever want to move a your website from one server...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/07/ubuntu-linux-as-family-pc.html' rel='bookmark' title='Permanent Link: Ubuntu Linux as Family PC'>Ubuntu Linux as Family PC</a> <small>We know Linux is a operating system where everything can...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make your presence felt on the Web in about $8USD/Rs350INR</title>
		<link>http://www.gaurishsharma.com/2008/09/make-your-presence-felt-on-web-in-about.html</link>
		<comments>http://www.gaurishsharma.com/2008/09/make-your-presence-felt-on-web-in-about.html#comments</comments>
		<pubDate>Wed, 24 Sep 2008 14:48:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Guides and Howtos]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/09/24/make-your-presence-felt-on-the-web-in-about-8usdrs350inr/</guid>
		<description><![CDATA[Do you want to have a Personal blog with a address of yourname.com and a personnel email id of you@yourname.com but you were shy because it costs too much very year. Check again now prices has fallen drastically it is possible to register a Domain for about $8USD/Rs.350INR per year. Now, many of you would [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to have a Personal blog with a address of yourname.com and a personnel email id of <a href="mailto:you@yourname.com">you@yourname.com</a> but you were shy because it costs too much very year. Check again now prices has fallen drastically it is possible to register a Domain for about $8USD/Rs.350INR per year. <br />
Now, many of you would like to ask &#8220;can I make your blog &amp; email with just a domain?&#8221;. The Answer is &#8220;No, you need other things&#8221;.but good part is almost all other things needed for a personnel email &amp; blog solution can be brought for FREE!. <br />
Here is the list of things we would be needing:-<br />
1) <b>.Com or any other </b><a href="http://en.wikipedia.org/wiki/GTLD" target="_blank"><b>gTLD</b></a><b> with Managed DNS service</b>: you can buy a domain from any <a href="http://en.wikipedia.org/wiki/ICANN" target="_blank">ICANN</a> accredited registrar but I would recommend buying from namecheap.com as you also get ability to create CNAME,MX records, which need for brought separately for all other hosts. although Namecheap.com says Price at$9.29USD but it can be reduced to $8.41 by using a Coupon code:<i>BACK2SCHOOL</i>(Source:<a href="http://www.retailmenot.com/view/namecheap.com" target="_blank" class="broken_link">Retailmenot</a>). if you have already brought a domain from a different registrar and it didn&#8217;t give Managed DNS. you can use <a href="http://freedns.afraid.org/" target="_blank">FreeDNS</a> service for no extra charge.<br />
2) <b>Google Account:</b> for Blogspot blogging service. Mostly Likely you would be having a Google account, if not then <a href="https://www.google.com/accounts/NewAccount" target="_blank">create one</a>. After you created a Google account, Goto <a href="https://www.blogger.com/start" target="_blank">Blogger.com/start</a> and create your own blog on Blogspot.com. choose available subdomain. if you already have a blog at Blogspot then no need to create a new one, you can transfer your existing blog to your new domain.</p>
<p><b>Note:</b>Instructions for configuring DNS are different for every registrar.  Hence,for clarity I would be using <a href="http://freedns.afraid.org/">FreeDNS</a> service. it would enable me to give specific easy to understand, step by step. Since free service which is open to everyone without paying any charge.Therefore, you are encouraged to use this service. </p>
<h3>PART-I</h3>
<h5>Setting up DNS Records</h5>
<p>1) <a href="http://freedns.afraid.org/signup/" target="_blank">Signup</a> for FreeDNS. Complete Registration by clicking on Activation link which would be sent to email address you provided at time of registration.Now your account activation is complete and you can proceed next step.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpOkCttyAI/AAAAAAAAAUY/0Dlkm4bF6es/s1600-h/Screenshot+-+9_24_2008+,+3_55_59+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpOkCttyAI/AAAAAAAAAUY/e_P8yO-isq0/s320-R/Screenshot+-+9_24_2008+,+3_55_59+PM.png" /></a></div>
<p>
2) <b>Add Domain: </b>From the Homepage, Click on <a href="http://freedns.afraid.org/domain/" target="_blank">Domains</a>. your would be asked to login to your newly created account. Now click on <a href="http://freedns.afraid.org/domain/add.php" target="_blank">Add a Domain</a><u>.</u>Now you should see a screen similar to what is given below. Enter the your Domain address, Choose Share State to <i>Private</i> and click on <b>Submit</b></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpOmpwpGYI/AAAAAAAAAUg/fiEBm7UedTQ/s1600-h/Screenshot+-+9_24_2008+,+4_09_18+PM.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpOmpwpGYI/AAAAAAAAAUg/7JjS9cnVCUI/s320-R/Screenshot+-+9_24_2008+,+4_09_18+PM.png" /></a></div>
<p>
3) <b>Change NameServers: </b>Most likely you would receive a warning that your Domain is marked <span style="color:red;">BROKEN. </span><span style="color:black;">It is because you need change your Domain NameServer configuration. Instead of using default server, you have to change to FreeDns supplied nameservers which are: </span></p>
<ul>
<li>NS1.AFRAID.ORG</li>
<li>NS2.AFRAID.ORG</li>
<li>NS3.AFRAID.ORG</li>
<li>NS4.AFRAID.ORG</li>
</ul>
<p>Changing Nameserver usually requires logging in to your Domain Control Panel and click on Option Named &#8220;Change Nameserver Records&#8221; or &#8220;Modify NameServer&#8221;. If you need help you can contact your registrar and Perform a Google search. in search box enter &#8220;Change Nameserver &lt;registrar name&gt;&#8221;. for example <a href="http://www.google.co.in/search?q=change+nameserver+namecheap" target="_blank">Namecheap</a>. A DNS change takes upto 24hrs after the change you should no longer see see the <span style="color:red;">broken</span> mark</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpOpUL_RlI/AAAAAAAAAUo/tpYkgGZAVxc/s1600-h/Screenshot+-+9_24_2008+,+4_12_20+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpOpUL_RlI/AAAAAAAAAUo/cnX8QBqxsR0/s400-R/Screenshot+-+9_24_2008+,+4_12_20+PM.png" /></a>&nbsp;</div>
<div class="separator" style="clear:both;text-align:center;">&nbsp;<a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpO0joBfWI/AAAAAAAAAUw/CR_AG9pFrYU/s1600-h/Screenshot+-+9_24_2008+,+4_40_01+PM.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpO0joBfWI/AAAAAAAAAUw/EP-YwBbJWCE/s320-R/Screenshot+-+9_24_2008+,+4_40_01+PM.png" /></a></div>
<p>.</p>
<p>4) Now Click on <a href="http://freedns.afraid.org/domain/" target="_blank">Domains</a>. you should get your newly added domain. to create DNS records click on Manage.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpO5yXNMXI/AAAAAAAAAU4/xdmGOxp8Hxo/s1600-h/Screenshot+-+9_24_2008+,+4_41_55+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpO5yXNMXI/AAAAAAAAAU4/0sbPisr3o2I/s400-R/Screenshot+-+9_24_2008+,+4_41_55+PM.png" /></a></div>
<p>
5) In the next Screen, click on <i>ADD </i>to add a new subdomain.In enter the following values and click Save.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpO88AjIWI/AAAAAAAAAVA/6tToWdur1GY/s1600-h/Screenshot+-+9_24_2008+,+4_45_59+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpO88AjIWI/AAAAAAAAAVA/32UcY3r6tWk/s320-R/Screenshot+-+9_24_2008+,+4_45_59+PM.png" /></a></div>
<ul>
<li>Type = CNAME</li>
<li>Subdomain = www</li>
<li>Destination = ghs.google.com&nbsp;</li>
</ul>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpO--alAPI/AAAAAAAAAVI/N5y8kZ6eTjo/s1600-h/Screenshot+-+9_24_2008+,+4_50_17+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpO--alAPI/AAAAAAAAAVI/n9Ezq3hQ9mI/s320-R/Screenshot+-+9_24_2008+,+4_50_17+PM.png" /></a></div>
<p>
6) Now click on yourdomain.com(remember there should not be any prefix  before it).In the Next screen Click on <i><u>Forward to a URL. </u></i>we should now create a Web Forward record.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPCw_elEI/AAAAAAAAAVQ/-nxqOR8HhM0/s1600-h/Screenshot+-+9_24_2008+,+5_00_30+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPCw_elEI/AAAAAAAAAVQ/pdt4l5XOazI/s320-R/Screenshot+-+9_24_2008+,+5_00_30+PM.png" /></a>&nbsp;</div>
<div class="separator" style="clear:both;text-align:center;">&nbsp;<a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPFjewP7I/AAAAAAAAAVY/uWs6Yqq_MYQ/s1600-h/Screenshot+-+9_24_2008+,+5_02_27+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPFjewP7I/AAAAAAAAAVY/K6pcBApLfVw/s320-R/Screenshot+-+9_24_2008+,+5_02_27+PM.png" /></a>&nbsp;</div>
<div class="separator" style="clear:both;text-align:center;"></div>
<p>
7) Leave the <u>Redirect From</u> field as blank. In <u>Redirect To </u>Enter <a href="http://www.yourdomain.com/">http://www.YourDomain.com</a>. Please ensure presence to www. leave rest options at defaults and click on <i>Save</i></p>
<div class="separator" style="clear:both;text-align:center;"></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPKUvR8oI/AAAAAAAAAVg/ydXSh3CzRZs/s1600-h/Screenshot+-+9_24_2008+,+6_23_09+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPKUvR8oI/AAAAAAAAAVg/qgXHix22djs/s400-R/Screenshot+-+9_24_2008+,+6_23_09+PM.png" /></a></div>
<p> <img src='http://www.gaurishsharma.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Go Back to <a href="http://freedns.afraid.org/domain/" target="_blank">Domains</a> &amp; Manage(refer to step 4). Now we would change the MX record. click the link on which is has a value MX and 10:mail.<i>yourdomain</i>.com</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpPOEf_UJI/AAAAAAAAAVo/rr_XswFSga8/s1600-h/Screenshot+-+9_24_2008+,+6_30_58+PM.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpPOEf_UJI/AAAAAAAAAVo/5xxEVMUQ6zs/s320-R/Screenshot+-+9_24_2008+,+6_30_58+PM.png" /></a></div>
<p>
9) In the next screen for change MX record. and click on save</p>
<ul>
<li>Type = MX</li>
<li>Subdomain = </li>
<li>Destination = 1:ASPMX.L.GOOGLE.COM</li>
</ul>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPQ8arqZI/AAAAAAAAAVw/I7H9jDdf2Tc/s1600-h/Screenshot+-+9_24_2008+,+6_38_33+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SNpPQ8arqZI/AAAAAAAAAVw/PW_b6PIwOoE/s320-R/Screenshot+-+9_24_2008+,+6_38_33+PM.png" /></a></div>
<p>
10) We are Done with this part, your current screen should look similar to that of screenshot given below but the Domain name should be different and it should not appear <span style="color:red;">broken </span><span style="color:black;">as in my case. mine is showing broken&nbsp;</span><br />
<span style="color:black;">because i am working on a imaginary Domain. for you if everything is fine it should show status as active.</span></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPVSo4GsI/AAAAAAAAAV4/GZPjOzD5pY4/s1600-h/Screenshot+-+9_24_2008+,+7_00_08+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPVSo4GsI/AAAAAAAAAV4/Umr4ykReLBo/s320-R/Screenshot+-+9_24_2008+,+7_00_08+PM.png" /></a></div>
<p>
11) (Optional)To check email you have to use <a href="http://mail.google.com/a/yourdomain.com">http://mail.google.com/a/yourdomain.com</a>. you want a shorter domain like <a href="http://mail.yourdomain.com/">http://mail.yourdomain.com</a> then you have create a CNAME record mail.yourdomain.com pointing to ghs.google.com. Refer to Step 5 for more help</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpPb04l71I/AAAAAAAAAWI/799TK-zAu-E/s1600-h/Screenshot+-+9_24_2008+,+7_17_34+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpPb04l71I/AAAAAAAAAWI/uSFbgK5Riqo/s320-R/Screenshot+-+9_24_2008+,+7_17_34+PM.png" /></a></div>
<p></p>
<h3>PART-II</h3>
<h5>Setting Up Email</h5>
<p>1) <a href="http://www.google.com/a/cpanel/domain/new" target="_blank">Signup</a> with Google Apps.Choose the <a href="http://www.google.com/apps/intl/en/business/editions.html" target="_blank">Standard Edition</a>. signup it pretty easy to figure out and you can read the inbuilt help in case of facing difficulty. After Sign you would be taken to your dashboard.</p>
<p>2) <b>Verify domain ownership</b>:You in your Dashboard you will be get a Prompt &#8220;To activate Google Apps services you must verify that you own your domain &#8211; example.com&#8221;. Click on Verify Domain Ownership.In Verification method choose create a CNAME record. Find the CNAME settings and enter the following as the CNAME value or alias: &lt;verification string&gt;.Set the CNAME destination to the following address:<br />
<b>google.com.</b>  Refer to PART-I Step 4-5, this time just enter the Verification string in place of www as sub domain.the Verification string would be different for every Domain.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPYkgnZkI/AAAAAAAAAWA/PLXuqmuZDO4/s1600-h/Screenshot+-+9_24_2008+,+7_13_36+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPYkgnZkI/AAAAAAAAAWA/yxIOatcsrqU/s400-R/Screenshot+-+9_24_2008+,+7_13_36+PM.png" /></a></div>
<p>3) <b>Active Email</b>:Now you need to active Email service by clicking on <i>Activate Email &gt; I Have Completed these steps</i>.<i>  </i>if everything is done correctly you can now proceed to adding more users in Dashboard.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpPhqiFyEI/AAAAAAAAAWY/zix1Jm52mN0/s1600-h/Screenshot+-+9_24_2008+,+7_22_44+PM.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SNpPhqiFyEI/AAAAAAAAAWY/GpPpa6wLIzc/s320-R/Screenshot+-+9_24_2008+,+7_22_44+PM.png" /></a></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPj9H6TnI/AAAAAAAAAWg/CfcJydW3pKE/s1600-h/Screenshot+-+9_24_2008+,+7_25_51+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SNpPj9H6TnI/AAAAAAAAAWg/WzhqNq0PkQE/s320-R/Screenshot+-+9_24_2008+,+7_25_51+PM.png" /></a></div>
<p></p>
<h3>PART-III</h3>
<h5>Setting Up your Blog</h5>
<p>1)  Open <a href="http://blogger.com/home" target="_blank">Blogger Dashboard</a>. if you don&#8217;t have a blogspot blog then get one<br />
&nbsp;2)  Under manage Blogs, click Settings  </p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpOe8ZpAUI/AAAAAAAAAUI/-Xc5HsEcDFI/s1600-h/Screenshot+-+9_23_2008+,+8_50_53+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpOe8ZpAUI/AAAAAAAAAUI/UQHkcK6Q-jQ/s320-R/Screenshot+-+9_23_2008+,+8_50_53+PM.png" /></a></div>
<p>3) Navigate to Settings Tab Publishing Tab. Click on Switch to <b>Custom Domain</b><br />
&nbsp;4) Now Publish your Blog at <a href="http://www.yourdomain.com/">www.yourdomain.com</a> and click on Save. Also check the Box which says &#8220;Redirect gaurishsharma.com to www.gaurishsharma.com&#8221; and click on Save.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpPkypt0rI/AAAAAAAAAWo/9KDRreEB2z0/s1600-h/Screenshot+-+9_24_2008+,+7_37_05+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SNpPkypt0rI/AAAAAAAAAWo/asH2kTexJUo/s400-R/Screenshot+-+9_24_2008+,+7_37_05+PM.png" /></a></div>
<p>
5) Wait for sometime for DNS changes to be replicated across the Internet Infrastructure. this normally takes upto 24hrs. </p>
<h3>Final Thoughts</h3>
<ul>
<li>To make setup Process more easier you can Purchase Domain Directly through google.  Google Takes $10. payment is done via Google Checkout</li>
<li>If you want a Static Website instead of a Blog, then you can use Google Apps&#8217;s Sites to Create one.</li>
<li>To check your mail you have to login at <a href="http://mail.google.com/a/yourdomain.com">http://mail.google.com/a/yourdomain.com</a> or <a href="http://mail.yourdomain.com/">http://mail.yourdomain.com</a> (If you created a Short URL)</li>
</ul>
<p>Enjoy, your new CyberSpace !
<div class="blogger-post-footer">Did you enjoy this Post?.Please give your feedback at contact at gaurishsharma.com.<br />
Read more at GaurishSharma.com</div>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=47&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2009/01/migrating-from-blogger-to-selfhosted-wordpress.html' rel='bookmark' title='Permanent Link: Migrating from Blogger to selfhosted WordPress'>Migrating from Blogger to selfhosted WordPress</a> <small>Google&#8217;s blogger software for blogging is easy to use and...</small></li>
<li><a href='http://www.gaurishsharma.com/2010/04/facebook-chat-jabbe-windows-linux-desktop.html' rel='bookmark' title='Permanent Link: Run Facebook Chat directly from Desktop(New method)'>Run Facebook Chat directly from Desktop(New method)</a> <small>Its possible to use Facebook chat without open Facebook website,...</small></li>
<li><a href='http://www.gaurishsharma.com/2009/02/secure-your-google-account.html' rel='bookmark' title='Permanent Link: Secure Your Google Account'>Secure Your Google Account</a> <small>Secure Your Google Account, Make it Hacker Proof!...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/09/make-your-presence-felt-on-web-in-about.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Dummies Guide to Scheduling Downloads</title>
		<link>http://www.gaurishsharma.com/2008/09/dummies-guide-to-scheduling-downloads.html</link>
		<comments>http://www.gaurishsharma.com/2008/09/dummies-guide-to-scheduling-downloads.html#comments</comments>
		<pubDate>Sun, 14 Sep 2008 12:35:00 +0000</pubDate>
		<dc:creator>gaurish</dc:creator>
				<category><![CDATA[Bsnl Broadband]]></category>
		<category><![CDATA[Guides and Howtos]]></category>

		<guid isPermaLink="false">http://gaurishsharma.wordpress.com/2008/09/14/dummies-guide-to-scheduling-downloads/</guid>
		<description><![CDATA[Since state owned Bharat Sanchar Nigam Ltd (BSNL) launched its broadband services under the brand name DataOne through out the country on 14th January 2005 , its users have one complaint lack of unlimited plans. Due to this users were forced to download their &#8220;stuff&#8221; in odd time of 200hrs to 800hrs(IST). some smart people [...]]]></description>
			<content:encoded><![CDATA[<p>Since state owned Bharat Sanchar Nigam Ltd (BSNL) <a href="http://www.bsnl.co.in/newsdetailed.php?news_id=188" class="broken_link">launched its broadband services</a> under the brand name DataOne through out the country on 14th January 2005 , its users have one complaint lack of unlimited plans. Due to this users were forced to download their &#8220;stuff&#8221; in odd time of 200hrs to 800hrs(IST). some smart people used to schedule download and sleep cool. others have been branded night watchman by folks around them. now lot of things have changed, speeds have in upgraded upto 2mbps and new Unlimited plans have been introduced.<br />
Still there are many users who still stuck with plans with data caps and Night Unlimited facility despite of Unlimited Plans being available. Mainly because of monthly rentals of data capped plans is lower and speeds are higher.<br />
In This post we would try to intellectually schedule our downloads. so that we can have a sound sleep while download finishes. Already their are guides available for this on Internet but&nbsp; this is for <a href="http://www.orkut.co.in/Profile.aspx?uid=17865906530842121749" target="_blank">Anshul Jain</a> &amp; <a href="http://www.orkut.co.in/Profile.aspx?uid=1455683984992943929" target="_blank">Rachit Atolia</a> who forced me to write this post. Damn, both of you !.</p>
<h6><span style="font-size:small;">What you would be able to do at end of this guide?</span></h6>
<p>Your computer would automatically power-on(if supported) &amp; connect to predestined time, your download would be automatically started. And at a predetermined time your PC would turn off. Best part is that all this occur when you are in deep sleep.</p>
<h5><span style="color:red;font-size:large;">Requirements Tools:-</span></h5>
<ul>
<li>BSNL Internet Connection in Bridge mode(dial-up mode). Bridge mode is that when you use dialer in connect Internet. Internet is not not always on.
</li>
<li>Tested on Windows XP 32bit, may or maybe not work on Vista
</li>
<li>Any Download manager which supports scheduling, I recommend Free Download Manager(FDM). <a href="http://www.freedownloadmanager.org/download.htm" target="_blank">Download FDM</a>
</li>
<li>Torrent Client like <a href="http://www.utorrent.com" target="_blank">utorrent</a>. required only is you regularly download via torrents, else FDM has inbuilt <a href="http://en.wikipedia.org/wiki/BitTorrent_%28protocol%29" target="_blank">bittorrent</a> support.</li>
</ul>
<h5><span style="color:red;font-size:large;">Procedure:-</span></h5>
<p>1. Click on <a href="http://upload.wikimedia.org/wikipedia/en/c/c0/StartMenuXP.png" class="broken_link"><i>Start menu</i></a> and Open Notepad from <i>All Programs&gt;Accessories&gt;Notepad</i> <br />
2.&nbsp; Type the following text and save the file as <i><b>connect.bat</b></i><br />
<i>rasdial   </i><br />
<i>where:</i><br />
Connection name have to be replaced with the name of dialer you created in xp. to find your connection name . Open<i> Start menu &gt; Control Panel &gt; Network and Internet Connections &gt; Network Connections.&nbsp; here you should find connection name. example for mine it is</i><br />
<i>rasdial Bsnl jp2555355 Hari-om</i></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SMz-_BlHm4I/AAAAAAAAARM/5nI70e2LM6E/s1600-h/netowork_connection.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SMz-_BlHm4I/AAAAAAAAARM/6JL7Sjs5jMU/s320-R/netowork_connection.png" /></a></div>
<p>
3. now create a similar file with following text and save it as <i><b>disconnect.bat</b></i><br />
rasdial &nbsp; /disconnect<br />
4. C<strike>reate another file similar to first two with following text and save as </strike><br />
<strike><i>shutdown -S -T 0</i></strike><i>&nbsp;&nbsp;&nbsp; </i><i><span style="font-size:small;"><b>See The [Update] at end of the post</b></span><br />
</i><br />
5. Enable Hibernation by Start control &gt; Run<b>. </b>type <i>powercfg.cpl </i>and check enable hibernation. ensure there is necessary free space available.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SMz--OopVbI/AAAAAAAAARE/ScHfdyFzenw/s1600-h/hibernate.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SMz--OopVbI/AAAAAAAAARE/WyiUPpwjYyE/s320-R/hibernate.png" /></a></div>
<p>
6.Open Scheduled tasks by tying &#8220;control scheduled&#8221; in run dialog box.<br />
<i>7. </i>Add a new schedule task by clicking on &#8220;<i>Add schedule task</i>&#8220;. you would be presented with Scheduled task Wizard. please click next to continue.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_CUN7o4I/AAAAAAAAARc/rLFMX1xOrnM/s1600-h/Screenshot+-+9_13_2008+,+9_02_32+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_CUN7o4I/AAAAAAAAARc/-C_pGwQMTV4/s320-R/Screenshot+-+9_13_2008+,+9_02_32+PM.png" /></a></div>
<p>
8. Now in Select applications window, Click on Browse and navigate to the location where you have saved <b>connect.bat</b>&nbsp; and click on Open</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SMz_Gkc4WiI/AAAAAAAAARs/a1lbQihhENE/s1600-h/Screenshot+-+9_13_2008+,+9_03_03+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SMz_Gkc4WiI/AAAAAAAAARs/BA5wHkLo0PM/s320-R/Screenshot+-+9_13_2008+,+9_03_03+PM.png" /></a></div>
<p></p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://2.bp.blogspot.com/_wMAC6frBFdw/SMz_ITBWXtI/AAAAAAAAAR0/oDmGosSl49M/s1600-h/Screenshot+-+9_13_2008+,+9_57_51+PM.png"><img border="0" src="http://2.bp.blogspot.com/_wMAC6frBFdw/SMz_ITBWXtI/AAAAAAAAAR0/BVd2yCweX_8/s320-R/Screenshot+-+9_13_2008+,+9_57_51+PM.png" /></a></div>
<p>
9.In perform this task, select <b>Daily </b>and click on next to continue.</p>
<div class="separator" style="clear:both;text-align:center;"></div>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_LYDXgqI/AAAAAAAAAR8/avpeT05FmCc/s1600-h/Screenshot+-+9_13_2008+,+10_08_23+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_LYDXgqI/AAAAAAAAAR8/nOpEtWzyrPg/s320-R/Screenshot+-+9_13_2008+,+10_08_23+PM.png" /></a></div>
<p>
10. In Select Time &amp; date screen, choose Start time as 2:10 AM and Perform this task daily. Click Next to Continue.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SM0BsILtWLI/AAAAAAAAASk/kE2NOCpMO-o/s1600-h/image_1.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SM0BsILtWLI/AAAAAAAAASk/2E6nnnWZc5c/s320-R/image_1.png" /></a></div>
<p>
11. Enter the password you use to logon, leave blank if there is no password. Click Next to Continue</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_a7QBvFI/AAAAAAAAASE/_De8cA4fpeo/s1600-h/Screenshot+-+9_13_2008+,+10_19_05+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_a7QBvFI/AAAAAAAAASE/fNWuWlmuG28/s320-R/Screenshot+-+9_13_2008+,+10_19_05+PM.png" /></a></div>
<p>
12. you will get a confirmation screen. Click on Check box &#8220;Open Advanced properties for this task when I click Finish.&#8221; and now finally click on Finish.if you didn&#8217;t enter a password you get a access it denied error. please ignore and proceed to next step.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://1.bp.blogspot.com/_wMAC6frBFdw/SMz_behZ4vI/AAAAAAAAASM/amT9U7I3A0I/s1600-h/Screenshot+-+9_13_2008+,+10_23_48+PM.png"><img border="0" src="http://1.bp.blogspot.com/_wMAC6frBFdw/SMz_behZ4vI/AAAAAAAAASM/SRq1igexEwU/s320-R/Screenshot+-+9_13_2008+,+10_23_48+PM.png" /></a></div>
<p>
13. In Advanced properties check &#8220;Run Only If Logged on&#8221; and click Apply.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SMz_b4wGpGI/AAAAAAAAASU/6jw3lvoHM0w/s1600-h/Screenshot+-+9_13_2008+,+10_25_26+PM.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SMz_b4wGpGI/AAAAAAAAASU/HED_TAVEf_8/s320-R/Screenshot+-+9_13_2008+,+10_25_26+PM.png" /></a></div>
<p>
14. Click on Settings tab and check &#8220;Wake computer&#8221; to run this task. Click okay</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_cnjWvMI/AAAAAAAAASc/XpfqIYlX7SE/s1600-h/Screenshot+-+9_13_2008+,+10_30_50+PM.png"><img border="0" src="http://3.bp.blogspot.com/_wMAC6frBFdw/SMz_cnjWvMI/AAAAAAAAASc/gG4NqYlHmbs/s320-R/Screenshot+-+9_13_2008+,+10_30_50+PM.png" /></a></div>
<p>
15. Now you can add any other task like FDM or utorrent, in exact same procedure to be run at 2:11 AM Daily. but just choose desired program from Application Window in place of connect.bat in Step 7 <br />
16. Now add <b>disconnect.bat</b> task to be run at 7:50 AM Daily<br />
17. Lastly, <b>Shutdown.bat </b>task to be run at 7:<br />
18. If you have done everything correctly,your scheduled task should be similar to to screenshot given below.</p>
<div class="separator" style="clear:both;text-align:center;"><a href="http://4.bp.blogspot.com/_wMAC6frBFdw/SM0CnXXrTFI/AAAAAAAAASs/gQSSwDQMxuM/s1600-h/image_2.png"><img border="0" src="http://4.bp.blogspot.com/_wMAC6frBFdw/SM0CnXXrTFI/AAAAAAAAASs/pWlqYE2_lqQ/s320-R/image_2.png" /></a></div>
<p></p>
<div class="separator" style="clear:both;text-align:center;"></div>
<h5><span style="color:red;font-size:large;">How To Use</span></h5>
<p>1. Set your downloads in FDM or utorrent in such a way that whenever they are started downloading begins.<br />
2. Put your Computer to Hibernate Mode. Hold down Shift key in Shut Down menu to see Hibernate option.<br />
3) Don&#8217;t Turn off main AC power. if you have a UPS, please keep it on. also router needs to need on. you can turn off your monitor Only.</p>
<p><b>Congrats!, you can now sleep cool which you download &#8220;Stuff&#8221;. Incase of any problems, please ask them here</b><br />
<b><br />
</b><br />
<b><br />
</b><br />
<b>[Update]</b><br />
You need a separate Utility like <a href="http://www.softpedia.com/get/System/System-Miscellaneous/PowerOff.shtml">Poweroff</a> to be able to shutdown computer.<br />
1) Download <a href="http://www.softpedia.com/get/System/System-Miscellaneous/PowerOff.shtml">Poweroff</a><br />
2) Schedule to power off automatically at&nbsp; 7.50 AM daily.<br />
3) Create a Service by Service&gt;Create Service<br />
4) Then Save Settings to the service<br />
<b> </b>
<div class="blogger-post-footer">Did you enjoy this Post?.Please give your feedback at contact at gaurishsharma.com.<br />
Read more at GaurishSharma.com</div>
<img src="http://www.gaurishsharma.com/?ak_action=api_record_view&id=43&type=feed" alt="" />

<p>Related posts:<ol><li><a href='http://www.gaurishsharma.com/2008/10/dummies-guide-to-scheduling.html' rel='bookmark' title='Permanent Link: Dummies Guide to Scheduling Downloads(Linux Version)'>Dummies Guide to Scheduling Downloads(Linux Version)</a> <small>Linux is a stable OpenSource Operating system.It has a ability...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/08/solutionsome-random-sites-do-not-open.html' rel='bookmark' title='Permanent Link: Solution:Some Random sites do not open with BSNL Broadband'>Solution:Some Random sites do not open with BSNL Broadband</a> <small>BSNL Broadband is a broadband internet service from state owned...</small></li>
<li><a href='http://www.gaurishsharma.com/2008/07/ubuntu-linux-as-family-pc.html' rel='bookmark' title='Permanent Link: Ubuntu Linux as Family PC'>Ubuntu Linux as Family PC</a> <small>We know Linux is a operating system where everything can...</small></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.gaurishsharma.com/2008/09/dummies-guide-to-scheduling-downloads.html/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
