<?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>Vinod S R's Blog &#187; Linux</title>
	<atom:link href="http://www.vinodsr.com/myblog/chapters/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vinodsr.com/myblog</link>
	<description>think tech talk tek</description>
	<lastBuildDate>Sun, 23 Oct 2011 09:20:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Asianet dataline Autologin Script for linux</title>
		<link>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/</link>
		<comments>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/#comments</comments>
		<pubDate>Sat, 10 Sep 2011 15:16:10 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/?p=105</guid>
		<description><![CDATA[I had created one simple script to make it easy to login using asianet dataline without using any browser. Requirements  1. Curl (http://bit.ly/bH7jSK) Tested on Ubuntu &#160; #!/bin/bash ##################################################################################################### #ASIANET DATALINE AUTOLOGGER SCRIPT #BY VINOD SURENDRAN #(SMARTVINU@GMAIL.COM) ##################################################################################################### # Set your consumer Id customer=TV7000 # Set your Password password=mypassword ##################################################################################################### ######### DONT EDIT BELOW ########################################################################## [...]]]></description>
			<content:encoded><![CDATA[<p>I had created one simple script to make it easy to login using asianet dataline without using any browser.</p>
<p><strong>Requirements </strong></p>
<p>1. Curl (<a href="http://bit.ly/bH7jSK" rel="nofollow">http://bit.ly/bH7jSK</a>)</p>
<p><strong>Tested on Ubuntu</strong></p>
<blockquote><p><strong><br />
</strong></p></blockquote>
<p>&nbsp;</p>
<blockquote><p>#!/bin/bash</p>
<p>#####################################################################################################</p>
<p>#ASIANET DATALINE AUTOLOGGER SCRIPT</p>
<p>#BY VINOD SURENDRAN<br />
#(SMARTVINU@GMAIL.COM)</p>
<p>#####################################################################################################</p>
<p># Set your consumer Id<br />
customer=TV7000<br />
# Set your Password<br />
password=mypassword</p>
<p>#####################################################################################################<br />
######### DONT EDIT BELOW ##########################################################################<br />
#####################################################################################################</p>
<p>if [ -n "`ifconfig | grep -A 1 wlan0 | grep "inet addr"`" ];<br />
then<br />
echo &#8220;Going to connect &#8230;.&#8221;<br />
echo &#8220;Getting server URL &#8230; &#8221;<br />
targetUrl=`curl -v <a href="http://www.google.com" rel="nofollow">http://www.google.com</a> 2&gt;&amp;1 | grep &#8220;Location:&#8221;|awk {&#8216;print $3&#8242;} | cut -d? -f1`<br />
echo &#8220;Got targetUrl as $targetUrl&#8221;<br />
echo $targetUrl | grep &#8220;mwcp&#8221;<br />
if [ $? -ne 0 ]; then<br />
echo &#8220;Seems like you are logged in.&#8221;<br />
echo &#8220;Preparing to logout&#8221;<br />
curl <a href="https://myaccount.adlkerala.com/login.php" rel="nofollow">https://myaccount.adlkerala.com/login.php</a> &#8211;data &#8220;username=${customer}&amp;pass=${password}&#8221; -c tempCookie<br />
curl <a href="https://myaccount.adlkerala.com/disconn.php" rel="nofollow">https://myaccount.adlkerala.com/disconn.php</a> &#8211;data &#8220;confirm=1&#8243; -b tempCookie<br />
echo &#8220;Logged out.&#8221;<br />
rm -f tempCookie<br />
echo &#8220;Getting server URL &#8230; &#8221;<br />
targetUrl=`curl -v <a href="http://www.google.com" rel="nofollow">http://www.google.com</a> 2&gt;&amp;1 | grep &#8220;Location:&#8221;|awk {&#8216;print $3&#8242;} | cut -d? -f1`<br />
echo &#8220;Got targetUrl as $targetUrl&#8221;<br />
fi;</p>
<p>curl $targetUrl &#8211;data &#8220;auth_user=$customer&amp;auth_pass=$password&amp;accept=Login&#8221; &amp;&gt; /dev/null</p>
<p>echo &#8220;Connected <img src='http://www.vinodsr.com/myblog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> &#8221;<br />
SKIP=0<br />
while true</p>
<p>do<br />
echo &#8220;Waiting &#8230; &#8221;<br />
COUNT=0<br />
if [ $SKIP -eq 0 ]; then<br />
while true<br />
do<br />
sleep 1<br />
echo -ne \\b\\b\\b\\b\\\b$COUNT<br />
COUNT=`echo $COUNT + 1 | bc `<br />
if [ $COUNT -gt 250 ]; then<br />
break;<br />
fi;<br />
done<br />
fi;<br />
echo<br />
echo &#8220;Sending alive &#8230; &#8221;<br />
curl $targetUrl &#8211;data &#8220;alive=y&amp;un=$customer&#8221;<br />
if [ $? -eq 0 ]; then<br />
echo &#8220;done&#8221;<br />
else<br />
echo &#8220;failed.retrying &#8230; &#8221;<br />
fi;</p>
<p>done</p>
<p>else</p>
<p>echo &#8220;Wifi not connected&#8221;;</p>
<p>fi</p></blockquote>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2011/09/asianet-dataline-autologin-script-inlinux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Driver for BSNL Evdo</title>
		<link>http://www.vinodsr.com/myblog/2010/05/linux-driver-for-bsnl-evdo/</link>
		<comments>http://www.vinodsr.com/myblog/2010/05/linux-driver-for-bsnl-evdo/#comments</comments>
		<pubDate>Fri, 07 May 2010 11:20:00 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[evdo]]></category>
		<category><![CDATA[modem]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/05/linux-driver-for-bsnl-evdo/</guid>
		<description><![CDATA[In most sites and forum i found some tedious steps to make the evdo work in linux. lot of scripts. Making evdo workable in linux is very simple &#8230; Goto http://www.ztemt.com/ennewzte/service/ziliao.action and there download the appropriate version, install it. Now you are having the dialer with you . Input the username and password in the options [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_64" class="wp-caption alignright" style="width: 330px"><a href="http://www.ztemt.com/ennewzte/service/ziliao.action"><br />
<img class="size-full wp-image-64 " title="EVDO Client on Ubuntu 10.04" src="http://www.vinodsr.com/myblog/wp-content/uploads/2010/05/Screen2.gif" alt="EVDO Client on Ubuntu 10.04" width="320" height="240" /></a><p class="wp-caption-text">EVDO Client on Ubuntu 10.04</p></div>
<p>In most sites and forum i found some tedious steps to make the evdo work in linux. lot of scripts.</p>
<p>Making evdo workable in linux is very simple &#8230;<br />
Goto <a href="http://www.ztemt.com/ennewzte/service/ziliao.action" target="_blank">http://www.ztemt.com/ennewzte/service/ziliao.action</a></p>
<p><a href="http://www.ztemt.com/ennewzte/service/ziliao.action" target="_blank"></a> and there download the appropriate version, install it.<br />
Now you are having the dialer with you . Input the username and password in the options / setting window of the dialog , then click on connect button .. <strong>Bingoo</strong> ..</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/05/linux-driver-for-bsnl-evdo/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 is here</title>
		<link>http://www.vinodsr.com/myblog/2010/05/ubuntu-10-04-is-here/</link>
		<comments>http://www.vinodsr.com/myblog/2010/05/ubuntu-10-04-is-here/#comments</comments>
		<pubDate>Sun, 02 May 2010 06:29:32 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/2010/05/ubuntu-10-04-is-here/</guid>
		<description><![CDATA[The latest release of ubuntu is here. Get it from http://www.ubuntu.com]]></description>
			<content:encoded><![CDATA[<p>The latest release of ubuntu is here. Get it from <a href="http://www.ubuntu.com" rel="nofollow">http://www.ubuntu.com</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2010/05/ubuntu-10-04-is-here/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finally its here</title>
		<link>http://www.vinodsr.com/myblog/2009/12/finally-its-here/</link>
		<comments>http://www.vinodsr.com/myblog/2009/12/finally-its-here/#comments</comments>
		<pubDate>Fri, 25 Dec 2009 08:10:04 +0000</pubDate>
		<dc:creator>Vinod Surendran</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://www.vinodsr.com/myblog/?p=42</guid>
		<description><![CDATA[Now google chrome is available in linux flavours also .. Get your copies at http://www.google.com/chrome/ A new competitor for firefox in linux]]></description>
			<content:encoded><![CDATA[<p>Now <strong>google chrome</strong> is available in linux flavours also ..</p>
<p>Get your copies at <a title="Google Chrome" href="http://www.google.com/chrome/" target="_blank">http://www.google.com/chrome/</a></p>
<p>A new competitor for firefox in linux</p>]]></content:encoded>
			<wfw:commentRss>http://www.vinodsr.com/myblog/2009/12/finally-its-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

