<?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>Techstroke - Technology Gadgets  Blogging Softwares &#187; Solution</title>
	<atom:link href="http://www.techstroke.com/tag/solution/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techstroke.com</link>
	<description>Technology News Tips &#38; Tricks Social Media Blogging Wordpress</description>
	<lastBuildDate>Sat, 31 Jul 2010 17:17:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Some Very Cool Linux Commands to get Complex Things Done Easily</title>
		<link>http://www.techstroke.com/some-very-cool-linux-commands-to-get-complex-things-done-easily.html</link>
		<comments>http://www.techstroke.com/some-very-cool-linux-commands-to-get-complex-things-done-easily.html#comments</comments>
		<pubDate>Tue, 17 Feb 2009 23:07:22 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[Command]]></category>
		<category><![CDATA[Help]]></category>
		<category><![CDATA[Problem]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[trick]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/some-very-cool-linux-commands-to-get-complex-things-done-easily.html</guid>
		<description><![CDATA[&#160; Linux is ultimately the most versatile and Powerful OS ever built and that is why it attracts hackers and tech savvy guys&#160; lot, now I have collected some Special linux commands that will help you do complex things easy and will also help you save your precious time &#160; &#160; &#160; To Serve Current [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Fsome-very-cool-linux-commands-to-get-complex-things-done-easily.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Fsome-very-cool-linux-commands-to-get-complex-things-done-easily.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<h3 id="__2" ><a href="http://www.techstroke.com/wp-content/uploads/2009/02/image3.png" ><img height="135" alt="image" src="http://www.techstroke.com/wp-content/uploads/2009/02/image-thumb3.png" width="136" align="left" border="0"/></a></h3>
<p>&nbsp; Linux is ultimately the most versatile and Powerful OS ever built and that is why it attracts hackers and tech savvy guys&nbsp; lot, now I have collected some Special linux commands that will help you do complex things easy and will also help you save your precious time</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3 id="_to-serve-current-dir_2" >To Serve Current Directory on Web without Installing a Web Server &#8211; Use it Share your Files to your friend over the Web</h3>
<blockquote><p><code>$ python -m SimpleHTTPServer 8080</code></p>
</blockquote>
<p>This Command will serve the current directory tree at <strong><a href="http://$HOSTNAME:8080/"  rel="nofollow">http://$HOSTNAME:8080/</a> </strong> </p>
<p>So if you wished to share some files with your friend over the Internet streaming them right from your pc then just run this script, check your IP using whatismyip.com and then ask your friend to open,  </p>
<p><a href="http://Your">http://Your</a> IP:8080/&nbsp; for example <a href=" http://123.34.56.12:8080/" rel="nofollow">http://123.34.56.12:8080/</a>&nbsp; and he/she can copy your files immediately  </p>
<p>&nbsp;<br />
<h3 id="_to-run-a-linux-comma_2" >To Run a Linux Command at a Given Time</h3>
<blockquote><p>echo &#8220;ls -l&#8221; | at midnight  </p>
<p>OR  </p>
<p>echo &#8220;ls -l&#8221; | at 10am Jul 21&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
</blockquote>
<p>Now , the first command will do a &#8220;ls -l&#8221; at&nbsp; midnight&nbsp; , and to run any other command at a specific time just type in the command then the pipe operator(|) follwed by <em>&#8220;at time&#8221;</em>  </p>
<p>Like the second command will do a &#8220;ls -l&#8221; at 10 am on july 21st </p>
<p><span id="more-541"></span>
</p>
<p>&nbsp;<br />
<h3 id="_update-twitter-from-_1" >Update Twitter From the Linux Command Line</h3>
<blockquote><p>curl -u user:pass -d status=&#8221;I am Tweeting from the shell&#8221; <a href="http://twitter.com/statuses/update.xml"  rel="nofollow">http://twitter.com/statuses/update.xml</a></p>
</blockquote>
<p>Now all you have to do is replace user by your twitter username , pass by your password and the text inside status to whatever you wish to set your status too .</p>
<p>It uses cUrl library to post your messsage </p>
<h3 id="_to-display-programsp_1" >To Display Programs/Process consuming Maximum Memory </h3>
<blockquote><p>ps aux | sort -nk +4 | tail</p>
<p>&nbsp;</p>
</blockquote>
<p>The above command displays the 10 most resource hogging process consuming big share of your memory.</p>
<p>&nbsp;</p>
<h3 id="_an-impressive-one-li_1" >An Impressive One &#8211; List of Commands you use Often at Shell</h3>
<blockquote><p>history | awk &#8216;{a[$2]++}END{for(i in a){print a[i] &#8221; &#8221; i}}&#8217; | sort -rn | head</p>
</blockquote>
<p><font style="background-color: #dfdfd1" color="#336699"></font>&nbsp;</p>
<h3 id="_see-what-is-stored-i_1" >See What is Stored inside your RAM</h3>
<p>This command will display all strings currently stored in your RAM , will sure make you feel Good if you love to play with your PC</p>
<blockquote><p>sudo dd if=/dev/mem | cat | strings</p>
</blockquote>
<p>I would add more of such problem solving and time saving commands for Linux in this post&nbsp; later On</p>
<p>Hope these commands made you feel like the king of Linux&nbsp; <img src='http://www.techstroke.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/some-very-cool-linux-commands-to-get-complex-things-done-easily.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unable to send files-call through Gtalk &#8211; The Solution</title>
		<link>http://www.techstroke.com/unable-to-send-files-call-through-gtalk-the-solution.html</link>
		<comments>http://www.techstroke.com/unable-to-send-files-call-through-gtalk-the-solution.html#comments</comments>
		<pubDate>Mon, 13 Oct 2008 14:01:34 +0000</pubDate>
		<dc:creator>Vivek</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[Tips&Tricks]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[Send Files]]></category>
		<category><![CDATA[Solution]]></category>
		<category><![CDATA[Voice Chat]]></category>

		<guid isPermaLink="false">http://www.techstroke.com/unable-to-send-files-call-through-gtalk-the-solution.html</guid>
		<description><![CDATA[Have you ever&#160; been frustrated at your Gtalk just because it would not send files or would not allow you to call your friend , I have been hit by thing several time until I saw the solution somewhere and I am writing the solution here and now, Now you might be remembering these error [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.techstroke.com%2Funable-to-send-files-call-through-gtalk-the-solution.html"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.techstroke.com%2Funable-to-send-files-call-through-gtalk-the-solution.html&amp;source=techstroke&amp;style=normal&amp;service=bit.ly" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.techstroke.com/wp-content/uploads/2008/10/image4.png" ><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="109" alt="Unable to send files call in Gtalk" src="http://www.techstroke.com/wp-content/uploads/2008/10/image-thumb4.png" width="103" align="left" border="0" /></a> </p>
<p>Have you ever&#160; been frustrated at your Gtalk just because it would not send files or would not allow you to call your friend , I have been hit by thing several time until I saw the solution somewhere and I am writing the solution here and now, </p>
<p>Now you might be remembering these error messages in google talk,</p>
<p>&#160;</p>
<blockquote><p>You cannot call because &quot;Your Friend&quot; is using chat in Gmail or another chat program other than Google Talk.</p>
<p>You cannot send files because &quot;Your Friend&quot; is using chat in Gmail or is using another chat program.</p>
</blockquote>
<p><strong></strong></p>
<p> <span id="more-459"></span>
<p><strong>The solution is easy and simple,</strong> </p>
<p>1. Logout of Gmail if it is open in your browser ( firefox,IE,safri,opera anything)</p>
<p>2. Now sign out of Gtalk and login again , this time you would be able to send files and call your frinds</p>
<p>So, the real culprit is the currently open Gmail&#160; tab/window just logout of it and logout of your Gtalk too , and relogin in Gtalk to get the things going smooth and the problem is resolved then .</p>
<p>Hope it helped , </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techstroke.com/unable-to-send-files-call-through-gtalk-the-solution.html/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
