<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Linux Fanatic</title>
	<atom:link href="http://linuxfanatic.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxfanatic.wordpress.com</link>
	<description>Yet Another Linux Enthusiast (!YALE)</description>
	<lastBuildDate>Tue, 02 Aug 2011 07:19:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='linuxfanatic.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Linux Fanatic</title>
		<link>http://linuxfanatic.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://linuxfanatic.wordpress.com/osd.xml" title="Linux Fanatic" />
	<atom:link rel='hub' href='http://linuxfanatic.wordpress.com/?pushpress=hub'/>
		<item>
		<title>10 ways to finding things in linux</title>
		<link>http://linuxfanatic.wordpress.com/2011/02/10/10-ways-to-finding-things-in-linux/</link>
		<comments>http://linuxfanatic.wordpress.com/2011/02/10/10-ways-to-finding-things-in-linux/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 08:34:14 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2011/02/10/10-ways-to-finding-things-in-linux/</guid>
		<description><![CDATA[﻿Basically i am talking about Linux terminal and without installing any new programs. I will also not use any programming languages. I am not digging into regexp details, please refer to their documentations. Many programs have their own regexp and syntax so I usually pipe the output to the input of egrep or such to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=114&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>﻿Basically i am talking about Linux terminal and without installing any new programs. I will also not use any programming languages. I am not digging into regexp details, please refer to their documentations. Many programs have their own regexp and syntax so I usually pipe the output to the input of egrep or such to satisfy my needs. This document is for reference and only states how i use them. These are obviously not the only ways.
<p />1. ls (dir also does things similar) : List the contents. Ls is the first command I use to search in Linux. Obviously the very basic but also, very useful if you know in which directory your file is. This command was written partly by Richard stallman himself. To do a simple search just type ls followed by the file name. Other examples:
<p />&nbsp;&nbsp;&nbsp; # To search file names with a fixed file-type (Using Wildcard)<br />&nbsp;&nbsp;&nbsp; # Here I am searching for mp3 files in my current directory<br />&nbsp;&nbsp;&nbsp; ls -C *.mp3<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; * this matches everything that has a &#8216;.mp3&#8242; anywhere in the filename and puts it in a column (-C).<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To search for file whose filetype and first starting character I remember<br />&nbsp;&nbsp;&nbsp; # I am searching for mp3 files whose first character is y<br />&nbsp;&nbsp;&nbsp; ls | egrep &#8216;^[Yy].*.mp3$&#8217;<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; * this matches everything starting(&#8216;^&#8217; for starting character) with a &#8216;Y or y&#8217; and any number (here &#8216;*&#8217; for any number of times) of character (here &#8216;.&#8217; for any character) following it which ends in &#8220;.mp3&#8243; (here $ as end of line).<br />&nbsp;&nbsp;&nbsp; <br />2. locate : Locate is a command line file search utility which finds file by it&#8217;s name until regexp is used. Unlike ls, locate searches for files in all directories. But it has a major drawback. It uses a database(&#8216;/var/lib/mlocate/mlocate.db&#8217;) to search from, which might not be updated all the time.
<p />&nbsp;&nbsp;&nbsp; # To update the database use<br />&nbsp;&nbsp;&nbsp; updatedb
<p />3. who (also, finger and w) : While a little different, it searches for users who are logged into the computer right now. Finger provides a little more detail<br />&nbsp;&nbsp;&nbsp; # To find out who logged into the system after the computer booted type:<br />&nbsp;&nbsp;&nbsp; who -a -H<br />&nbsp;&nbsp;&nbsp; <br />4. whatis (apropos and man) : These commands searches for discription about some binaries, files whose manual pages are available. It is very useful to find out if an application is installed which additionally displays descriptions (short description in whatis and broader and long description in apropos and a complete manual with man) of the application. whatis and apropos supports regex and wildcards.
<p />&nbsp;&nbsp;&nbsp; # To find out if ls is installed in your system with whatis type:<br />&nbsp;&nbsp;&nbsp; whatis ls<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To do the same with apropos<br />&nbsp;&nbsp;&nbsp; apropos -e ls<br /><span id="more-114"></span><br />5. whereis : Whereis searches for binary files, source files and manual pages about the binary or source.<br />It is useful to find out where a binary is located and where is it executed from. It doesnot support regex and wildcards.<br />&nbsp;&nbsp;&nbsp; # To find out where ls is located type<br />&nbsp;&nbsp;&nbsp; whereis ls
<p />6. find: The most advance tool to search from command line installed by default is find. It searches for files in a directory hierarchy.
<p />&nbsp;&nbsp;&nbsp; # Ls like command from Find<br />&nbsp;&nbsp;&nbsp; find Desktop/ -print
<p />&nbsp;&nbsp;&nbsp; # Starting from root Find file with filename<br />&nbsp;&nbsp;&nbsp; find / -name fname<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # Starting from root find string &#8216;fname&#8217; in a filename<br />&nbsp;&nbsp;&nbsp; find / -name &#8220;*fname*&#8221;<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To Find all setuid and setgid programs on your host<br />&nbsp;&nbsp;&nbsp; sudo find / -type f -perm +6000 -ls 2&gt;/dev/null
<p />&nbsp;&nbsp;&nbsp; * &ldquo;Set-user-ID root&rdquo; programs run as the root user, regardless of who is executing them,<br />&nbsp;&nbsp;&nbsp; and are a frequent cause of buffer overflows. So, I&#8217;ll find them to remove selected ones.
<p />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # Find all world-writable files on your system<br />&nbsp;&nbsp;&nbsp; sudo find / -perm -2 ! -type l -ls 2&gt;/dev/null<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; * The stderr (here &#8217;2&#8242;) is sent to (with &#8216;&gt;&#8217;) /dev/null (a null file in linux).
<p />&nbsp;&nbsp;&nbsp; # Identify all files that do not have an owner or belong to a group<br />&nbsp;&nbsp;&nbsp; sudo find / -nouser -o -nogroup<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # Suppose that, I want to find out a file whose name I don&#8217;t remember but could decide which file it is by viewing &nbsp;&nbsp;&nbsp; the first line
<p />&nbsp;&nbsp;&nbsp; find Desktop/ -print0 | xargs -0 head &#8211;lines 1 2&gt;/dev/null<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; * Find prints full filenames of Desktop to stdout followed by null character. Which is piped to xargs which manages spaces and characters and blissfully redirects the output to child processes that prints 1 line from it&#8217;s start which are created every-time a filename is encountered.<br />&nbsp;&nbsp;&nbsp; <br />7. ps:ps displays information about a selection of the active processes. If<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; you want a repetitive update of the selection and the displayed<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; information, use top instead. Other ps like commands are (top,pgrep and pstree)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # To see every process in the system<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ps -ef<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # To print a process tree<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ps -ejH or a beautiful one with ps -ef &#8211;forest<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # To see every process running as root<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ps -U root -u root u<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Send Termination signal to Process &#8216;MySql&#8217; after finding it&#8217;s id<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sudo kill -s TERM &#8216;ps -C mysqld -o pid=&#8217;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Sort according to cpu usage<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ps u -e &#8211;sort cp<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # Sort according to memory uses<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ps u -e &#8211;sort pmem
<p />8. netstat: Netstat&nbsp; prints&nbsp; information about the Linux networking subsystem.
<p />&nbsp;&nbsp;&nbsp; # To display a complete information<br />&nbsp;&nbsp;&nbsp; netstat<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To display information interface wise<br />&nbsp;&nbsp;&nbsp; netstat -i<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To display information about routing<br />&nbsp;&nbsp;&nbsp; netstat -r
<p />&nbsp;&nbsp;&nbsp; # Show network statistics<br />&nbsp;&nbsp;&nbsp; netstat -s<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # Display lsof type result<br />&nbsp;&nbsp;&nbsp; netstat -p<br />&nbsp;&nbsp;&nbsp; <br />9. proc: Proc file system is a pseudo-file system which is a kernel and process information gathering virtual filesystem. To access a process and it&#8217;s information use syntax: &#8220;/proc/[pid]/&#8230;&#8221;
<p />&nbsp;&nbsp;&nbsp; # To Find a processes status<br />&nbsp;&nbsp;&nbsp; cat /proc/[pid]/stat<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To find the command line for a process<br />&nbsp;&nbsp;&nbsp; cat /proc/[pid]/cmdline<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To find the environment variable of the process<br />&nbsp;&nbsp;&nbsp; (cat /proc/1/environ; echo) | tr &#8217;00&#8242; &#8216;\n&#8217;<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To fetch information about your battery where BAT0 is battery id<br />&nbsp;&nbsp;&nbsp; cat /proc/acpi/battery/BAT0/info<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To fetch information about your cpu<br />&nbsp;&nbsp;&nbsp; cat /proc/cpuinfo<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # To fetch information about filesystems in your computer<br />&nbsp;&nbsp;&nbsp; cat /proc/filesystems<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # An alternative to fstab<br />&nbsp;&nbsp;&nbsp; cat /proc/mounts<br />&nbsp;&nbsp;&nbsp; <br />10. lsof : <br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # List open files used by internet<br />&nbsp;&nbsp;&nbsp; lsof -i<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # List files opened by internet and used by example.com and port 20<br />&nbsp;&nbsp;&nbsp; lsof -i @example.com:20<br />&nbsp;&nbsp;&nbsp; <br />&nbsp;&nbsp;&nbsp; # List all open files on device sda1<br />&nbsp;&nbsp;&nbsp; lsof /dev/sda1</p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=114&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2011/02/10/10-ways-to-finding-things-in-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Ubuntu 10.10. What I did to my computer.</title>
		<link>http://linuxfanatic.wordpress.com/2010/12/23/ubuntu-10-10-what-i-did-to-my-computer/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/12/23/ubuntu-10-10-what-i-did-to-my-computer/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 09:26:06 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/12/23/ubuntu-10-10-what-i-did-to-my-computer/</guid>
		<description><![CDATA[After installing Ubuntu 10.10 into my computer the following are the list of software and tweaks i did to my computer. If you like it you can use it. 1. Installed Firefox addons: a. Adblock Plus b. DownloadHelper c. Download Statusbar d. FaviconizeTab e. Fission f. Greasemonkey g. Omnibar h. Smart Stop/Reload i.  SmoothWheel j.  [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=109&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<p>After installing Ubuntu 10.10 into my computer the following are the list of software and tweaks i did to my computer. If you like it you can use it.</p>
<p>1. Installed Firefox addons:<br />
a. Adblock Plus<br />
b. DownloadHelper<br />
c. Download Statusbar<br />
d. FaviconizeTab<br />
e. Fission<br />
f. Greasemonkey<br />
g. Omnibar<br />
h. Smart Stop/Reload<br />
i.  SmoothWheel<br />
j.  Stylish (installed the style: Highlight Input&amp;Textarea)<br />
k. Firebug<br />
l. FireFTP<br />
m. Chromifox Basic</p>
<p>And Did the following Tweaks</p>
<p><span id="more-109"></span><br />
Typed about:config in url bar and changed the following values</p>
<p>a. media.autoplay.enabled-&gt;false<br />
b. network.buffer.cache.size-&gt;8192<br />
c. network.http.max-connections-per-server-&gt;30<br />
d. network.http.pipelining-&gt;true<br />
e. network.http.pipelining.maxrequests-&gt;20<br />
f.  network.http.pipelining.ssl-&gt;true<br />
g. network.http.request.max-start-delay-&gt;2<br />
h. plugins.hide_infobar_for_missing_plugin-&gt;true<br />
i.  plugins.hide_infobar_for_outdated_plugin-&gt;true<br />
j.  network.http.keep-alive-&gt;true<br />
k. network.http.max-persistent-connections-per-server-&gt;30</p>
<p>PS: you can enable pipelining for proxy in the same manner too.</p>
<p>2. Installed software in Ubuntu:<br />
1. Gimp<br />
2. Vlc Media Player<br />
3. Docky<br />
4. Clementine Music Player<br />
5. Zeitgeist Engine<br />
6. Gloobus-preview<br />
7. elementary desktop<br />
8. Nautilus elementary<br />
9.  Elementary theme for nautilus<br />
10  Recoll Search engine<br />
11. Artha Dictionary<br />
12. Hotot Twitter Client<br />
13. Geany<br />
14. Wine<br />
15. CCSM<br />
16. apt-fast<br />
17. nautilus-script-manager<br />
18. nautilus-terminal<br />
19. skype<br />
20. vim<br />
21. Global-Menu Applet<br />
22. Nmap<br />
23. Ethereal<br />
24. Wireshark<br />
25. Experimental Plugins for Compiz<br />
-&gt; sudo apt-fast install compiz-fusion-bcop compiz-dev \<br />
build-essential libtool \<br />
libglu1-mesa-dev libxss-dev \<br />
libcairo2-dev git-core<br />
-&gt; git close git://anongit.compiz.org/users/soreau/scripts<br />
-&gt; cd git<br />
-&gt; ./compiz-addons install all<br />
26. Ubuntu Tweak<br />
27. Pdf Suffler<br />
28. axel<br />
29. hugin<br />
30. bum<br />
31. pdfedit</p>
<p>3. Plugins/addons<br />
a. Adobe Flash Plugin<br />
b. OpenJDK<br />
c. Gstreamer Plugins<br />
d. Ubuntu Restricted Extras<br />
e. Any hardware drivers which i may need</p>
<p>4. Addons for gedit<br />
a. Auto Tab<br />
b. Browser Preview<br />
c. Class Browser<br />
d. Tabs Extended<br />
f.  File Browser Pane</p>
<p>5. Tweaks for ubuntu<br />
a. Sanitize panels<br />
b. Adjust fonts and resolution<br />
c. Put up nice background picture<br />
d. change vlc looks to minimalistic and without menus<br />
e. change desktop edge settings<br />
f. change number of workplaces and their arrangements<br />
g. Increase memory size in ooffice and choose small icon sets<br />
h. customize ooffice toolbars and fonts<br />
i. Disable help agent in ooffice<br />
j. Tweak vimrc file and bashrc files<br />
k. Stop unused application from starting up</p>
</div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/109/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/109/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/109/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=109&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/12/23/ubuntu-10-10-what-i-did-to-my-computer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>stop mysql from running at startup</title>
		<link>http://linuxfanatic.wordpress.com/2010/07/01/untitled/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/07/01/untitled/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 06:04:25 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Applications of Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[stop]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/07/01/untitled/</guid>
		<description><![CDATA[My Linux box was running mysql from the start and I did have no clue. It was not in my startup applications list, neither in my init.d folders. But whenever i did nmap of localhost, i could see the mysql port open. I could kill mysql service, need to kill it multiple times, only then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=105&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<p>My Linux box was running mysql from the start and I did have no clue. It was not in my startup applications list, neither in my init.d folders.</p>
<p>But whenever i did <em>nmap of localhost</em>, i could see the mysql port open. I could <strong>kill mysql service</strong>, need to kill it multiple times, only then it used to die.</p>
<p>I even installed &#8220;<strong>sysv-rc-conf</strong>&#8221; so that i could stop it at run levels, but it was not running at any runlevels. I then did &#8220;update-rc.d mysql disable&#8221;. Which didn&#8217;t work either.</p>
<p>Later I found that there was a file called &#8220;<strong>mysql.conf</strong>&#8221; in<em> /etc/init/</em> folder. I renamed the file to <strong>mysql.conf.disabled</strong> and it worked out. Hope this will help others who have the same problem.</p>
</div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=105&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/07/01/untitled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Lookup details of an IP or Domain (whois lookup) graphically</title>
		<link>http://linuxfanatic.wordpress.com/2010/05/26/lookup-details-of-an-ip-or-domain-whois-lookup-graphically/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/05/26/lookup-details-of-an-ip-or-domain-whois-lookup-graphically/#comments</comments>
		<pubDate>Wed, 26 May 2010 08:33:00 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/05/26/lookup-details-of-an-ip-or-domain-whois-lookup-graphically/</guid>
		<description><![CDATA[By using the following script you can easily lookup for an ip or domain using zenity and shell script. (sorry Windows folks, i just hate you).   #!/bin/bash# Get the domain nameZ=&#8221;/usr/bin/zenity&#8221;O=&#8221;/tmp/whois.o.$$&#8221;domain=$(${Z} &#8211;title  &#8220;Domain Information&#8221; \                &#8211;entry &#8211;text &#8220;Domain name who&#8217;s information you seek!&#8221; ) if [ $? -eq 0 ]then    whois $domain  &#124; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=103&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>By using the following script you can easily lookup for an ip or domain using zenity and shell script. (sorry Windows folks, i just hate you).</p>
<p> </p>
<p><span style="font-size:large;color:#ff9900;">#!/bin/bash</span><br /><span style="font-size:large;color:#ff9900;"># Get the domain name</span><br /><span style="font-size:large;color:#ff9900;">Z=&#8221;/usr/bin/zenity&#8221;</span><br /><span style="font-size:large;color:#ff9900;">O=&#8221;/tmp/whois.o.$$&#8221;</span><br /><span style="font-size:large;color:#ff9900;">domain=$(${Z} &#8211;title  &#8220;Domain Information&#8221; \</span><br /><span style="font-size:large;color:#ff9900;">                &#8211;entry &#8211;text &#8220;Domain name who&#8217;s information you seek!&#8221; )</span>
<p /><span style="font-size:large;color:#ff9900;">if [ $? -eq 0 ]</span><br /><span style="font-size:large;color:#ff9900;">then</span><br /><span style="font-size:large;color:#ff9900;">    whois $domain  | tee &gt;${O}</span><br /> <br /><span style="font-size:large;color:#ff9900;">  # Display back output</span><br /><span style="font-size:large;color:#ff9900;">  ${Z} &#8211;width=800 &#8211;height=600  \</span><br /><span style="font-size:large;color:#ff9900;">               &#8211;title &#8220;Whois info for $domain&#8221; \</span><br /><span style="font-size:large;color:#ff9900;">               &#8211;text-info &#8211;filename=&#8221;${O}&#8221;</span><br /><span style="font-size:large;color:#ff9900;">else</span><br /><span style="font-size:large;color:#ff9900;">  ${Z} &#8211;error \</span><br /><span style="font-size:large;color:#ff9900;">               &#8211;text=&#8221;No input provided&#8221;</span><br /><span style="font-size:large;color:#ff9900;">fi</span></p>
<p> </p>
<p>Enjoy. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tneupaney.posterous.com/lookup-details-of-an-ip-or-domain-whois-looku">Linux fanatic</a>  </p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/103/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/103/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/103/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=103&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/05/26/lookup-details-of-an-ip-or-domain-whois-lookup-graphically/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>oh i am back in ruby!</title>
		<link>http://linuxfanatic.wordpress.com/2010/04/08/oh-i-am-back-in-ruby/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/04/08/oh-i-am-back-in-ruby/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 11:18:03 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/04/08/oh-i-am-back-in-ruby/</guid>
		<description><![CDATA[After a long time, I am back and am back in ruby too.doing new things in ruby. class linuxfanatic    def says(message)      puts message    end  end    tushar = linuxfanatic.new  tushar.says &#8220;oh i am back in ruby!&#8221;    Posted via web from Linux fanatic<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=102&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>After a long time, I am back and am back in ruby too.<br />doing new things in ruby.</p>
<p><span style="font-size:x-small;color:#808000;"><span style="color:#ff9900;"><strong><span class="keyword">class</span></strong></span> linuxfanatic  </span><br /><span style="font-size:x-small;color:#808000;"><span style="color:#ff9900;"><strong>  <span class="keyword">def</span></strong></span> says(message)  </span><br /><span style="font-size:x-small;color:#808000;">    puts message  </span><br /><strong><span style="font-size:x-small;color:#ff9900;">  <span class="keyword">end</span>  </span></strong><br /><span style="color:#ff9900;"><strong><span style="font-size:x-small;"><span class="keyword">end</span>  </span></strong></span><br /><span style="font-size:x-small;color:#808000;">  </span><br /><span style="font-size:x-small;color:#808000;">tushar = linuxfanatic.<strong><span class="keyword" style="color:#ff9900;">new  </span></strong></span><br /><span><span style="font-size:x-small;color:#808000;">tushar.says <span class="string">&#8220;oh i am back in ruby!&#8221;</span></span><span>  </span></span></p>
<p> </p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tneupaney.posterous.com/oh-i-am-back-in-ruby">Linux fanatic</a>  </p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/102/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/102/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/102/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=102&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/04/08/oh-i-am-back-in-ruby/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Find latitute and longitute in google maps.</title>
		<link>http://linuxfanatic.wordpress.com/2010/03/30/find-latitute-and-longitute-in-google-maps/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/03/30/find-latitute-and-longitute-in-google-maps/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 11:09:14 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/03/30/find-latitute-and-longitute-in-google-maps/</guid>
		<description><![CDATA[To make this script work the map must have some point to the center. Else, click on the center of the map of whose you want longitute and latitute and then paste the following in your browser. You will get your result. javascript:void(prompt(&#8221;,gApplication.getMap().getCenter())); Posted via web from Tutorial Universe<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=101&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>To make this script work the map must have some point to the center. Else, click on the center of the map of whose you want longitute and latitute and then paste the following in your browser. You will get your result.</p>
<p><strong><span style="font-size:x-small;color:#808000;">javascript:void(prompt(&#8221;,gApplication.getMap().getCenter()));</span></strong></p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tutverse.posterous.com/find-latitute-and-longitute-in-google-maps">Tutorial Universe</a>  </p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/101/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/101/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/101/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=101&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/03/30/find-latitute-and-longitute-in-google-maps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>Make Your Linux Box Blazing fast!</title>
		<link>http://linuxfanatic.wordpress.com/2010/03/22/make-your-linux-box-blazing-fast/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/03/22/make-your-linux-box-blazing-fast/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 06:18:07 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/03/22/make-your-linux-box-blazing-fast/</guid>
		<description><![CDATA[This list is compiled for my personal use, should work for anyone. Try the followings: 1. Use lighter applications (Replace your default applications with them) Gedit &#62;&#62; MousepadPicture viewer (EOG &#8230;) &#62;&#62; GpicviewNetwork Manager &#62;&#62; WicdEvince &#62;&#62; epdfview 2. Increase Swappiness $ sudo vim /etc/sysctl.confEdit: vm.swappiness=10 3.&#160; For dual cores (Use Concurrency) $ sudo vim [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=100&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>This list is compiled for my personal use, should work for anyone. Try the followings:</p>
<p>1. Use lighter applications (Replace your default applications with them)</p>
<p style="padding-left:30px;">Gedit &gt;&gt; Mousepad<br />Picture viewer (EOG &#8230;) &gt;&gt; Gpicview<br />Network Manager &gt;&gt; Wicd<br />Evince &gt;&gt; epdfview</p>
<p>2. Increase Swappiness</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo vim /etc/sysctl.conf<br />Edit: vm.swappiness=10<br /></span></p>
<p>3.&nbsp; For dual cores (Use Concurrency)</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo vim /etc/init.d/rc<br /> Edit: CONCURRENCY=shell<br /></span></p>
<p><!-- more --></p>
<p>4. Clean up apt cache at /var/cache/apt/archives and unneccessary apt-sources list in /etc/apt/sources.list</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo apt-get autoclean</span></p>
<p>5. Install BUM (Boot Up manager)</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo apt-get install bum</span></p>
<p style="padding-left:30px;">Remove unneccessary applications and services from startup</p>
<p>6. Remove some unneccessary TTY&#8217;s</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo vim /etc/default/console-setup<br />Edit: ACTIVE_CONSOLES=&#8221;/dev/tty[1-3]&#8220;</span></p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">Note: goto /etc/event.d/ and change the tty&#8217;s files that you DONOT want. Edit them and comment lines starting with &ldquo;start on runlevel&rdquo;. So, in this case, you&rsquo;ll comment the start line in tty4..tty6 files.</span></p>
<p>7. Install Prelink</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo apt-get install prelink<br /></span><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo vim /etc/default/prelink<br />Edit</span>: PRELINKING=Yes<br /><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo /etc/cron.daily/prelink</span></p>
<p><span style="color:#333300;font-family:Verdana;font-size:x-small;">&nbsp;</span>8. Install Preload</p>
<p style="padding-left:30px;"><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo apt-get install preload</span></p>
<p>9. Get rid of kinit if you don&#8217;t use hibernate and sleep functions.</p>
<p><span style="color:#333300;font-family:Verdana;font-size:x-small;">$ sudo vim /etc/initramfs-tools/conf.d/resume<br />Edit: Comment (Put # in front of) RESUME=XXXX&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</span><span style="color:#333300;font-family:Verdana;font-size:x-small;"><br /></span></p>
<p>[Disclaimer] Administer the following at your own risk.</p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tneupaney.posterous.com/make-your-linux-box-blazing-fast">Linux fanatic</a>  </p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/100/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/100/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/100/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=100&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/03/22/make-your-linux-box-blazing-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>My .vimrc file</title>
		<link>http://linuxfanatic.wordpress.com/2010/01/14/my-vimrc-file/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/01/14/my-vimrc-file/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 06:30:05 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Applications of Linux]]></category>
		<category><![CDATA[Programming Linux]]></category>
		<category><![CDATA[.vimrc]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Editor]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vim]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/01/14/my-vimrc-file/</guid>
		<description><![CDATA[Vim is the editor of my choice for my linux box. I have configured my .vimrc file in my ubuntu. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- &#8221; Tushar Neupaney&#8217;s VIMRC File&#8221; Followme twitter.com/tneupaney&#8221; linuxfanatic.posterous.com &#8221; (sw)shiftwidth: how many columns text is indented with reindent operations&#8221; (sts)softtabstop: how many columns vim uses when you hit tab&#8221; (ts)tabstop: how many columns a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=97&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Vim</strong> is the <strong>editor</strong> of my choice for my <strong>linux</strong> box. I have configured my <strong>.vimrc</strong> file in my <strong>ubuntu</strong>.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>&#8221; Tushar Neupaney&#8217;s VIMRC File<br />&#8221; Followme twitter.com/tneupaney<br />&#8221; linuxfanatic.posterous.com</p>
<p>&#8221; (<strong>sw</strong>)<strong>shiftwidth</strong>: how many columns text is indented with reindent operations<br />&#8221; (<strong>sts</strong>)<strong>softtabstop</strong>: how many columns vim uses when you hit tab<br />&#8221; (<strong>ts</strong>)<strong>tabstop</strong>: how many columns a tab counts for<br />set ts=4 sw=4 sts=2</p>
<p>&#8221; <strong>expandtab</strong>: appropriate number of spaces in insert mode<br />set expandtab</p>
<p>&#8221; Make <strong>gvim</strong> <strong>colorscheme</strong> as evening<br />if v:progname =~? &#8220;gvim&#8221;<br /> colorscheme evening<br />endif</p>
<p>&#8221; Prevents keeping of <strong>backup</strong> after <strong>overwriting</strong> the file<br />set nobk</p>
<p>&#8221; To see <strong>line numbers</strong> on the left<br />set number</p>
<p>&#8221; <strong>autocomplete</strong> <strong>parenthesis</strong>, <strong>brackets</strong> and <strong>braces</strong><br />inoremap ( ()&lt;Left&gt;<br />inoremap [ []&lt;Left&gt;<br />inoremap { {}&lt;Left&gt;</p>
<p>&#8221; <strong>Syntax highlighting</strong> on<br />syntax on</p>
<p>&#8221; <strong>share windows clipboard</strong><br />set clipboard+=unnamed</p>
<p>&#8221; <strong>Hightlight</strong> the curent <strong>column</strong><br />set cursorcolumn</p>
<p>&#8221; <strong>Hightlight</strong> the <strong>current line</strong><br />set cursorline</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Here is the Screenshot!</p>
<p><img src="http://web12.twitpic.com/img/57140496-3edd8519112cf6ef603be002fc007236.4b4eb6d9-scaled.png" alt="" /></p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/97/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/97/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/97/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=97&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/01/14/my-vimrc-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>

		<media:content url="http://web12.twitpic.com/img/57140496-3edd8519112cf6ef603be002fc007236.4b4eb6d9-scaled.png" medium="image" />
	</item>
		<item>
		<title>[Solved] Wireless Driver for Compaq CQ40 (bcm4312)</title>
		<link>http://linuxfanatic.wordpress.com/2010/01/13/solved-wireless-driver-for-compaq-cq40-bcm4312/</link>
		<comments>http://linuxfanatic.wordpress.com/2010/01/13/solved-wireless-driver-for-compaq-cq40-bcm4312/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 12:23:19 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2010/01/13/solved-wireless-driver-for-compaq-cq40-bcm4312/</guid>
		<description><![CDATA[Trying out ubuntu in our new office laptops the Compaq CQ40, I found out that the wireless driver was not working. To find out the actual wirelss device installed in the system I tried the following commands: 1. lshw -C network This gave me the product result as BCM4312 802.11b/g from Broadcom Corporation. Tried a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=95&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>Trying out<strong> ubuntu</strong> in our new office laptops the <strong>Compaq CQ40</strong>, I found out that the<strong> wireless driver</strong> was not working. To find out the actual wirelss device installed in the system I tried the following commands:</p>
<p>1. lshw -C network</p>
<p>This gave me the product result as <strong>BCM4312</strong> 802.11b/g from Broadcom Corporation. Tried a lot of googling and found that you could download a file from broadcom <a href="http://www.broadcom.com/docs/linux_sta/hybrid-portsrc-x86_32-v5.10.91.9.3.tar.gz" title="here">here</a>. And do the following! While this works for me.</p>
<p># Removing previous instances of wireless drivers if any<br />1. lsmod | grep &#8220;b43\|ssb\|wl&#8221; <br />2. rmmod b43<br />3. rmmod ssb<br />4. rmmod wl</p>
<p># Prepare the device driver from the file that you&#8217;ve downloaded<br />5. cd to the downloaded file<br />6. make clean<br />7. make</p>
<p># Blacklist previous drivers<br />8. echo &#8220;blacklist ssb&#8221; &gt;&gt; /etc/modprobe.d/blacklist.conf<br />9. echo &#8220;blacklist b43&#8243; &gt;&gt; /etc/modprobe.d/blacklist.conf<br />10. echo &#8220;blacklist wl&#8221; &gt;&gt; /etc/modprobe.d/blacklist.conf</p>
<p># Install the driver<br />11. insmod wl.ko</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tneupaney.posterous.com/solved-wireless-driver-for-compaq-cq40-bcm431">Linux fanatic</a>  </p>
</p></div><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/95/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/95/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/95/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=95&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2010/01/13/solved-wireless-driver-for-compaq-cq40-bcm4312/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>
	</item>
		<item>
		<title>10 finest Gifts for the geeks (Under $10)</title>
		<link>http://linuxfanatic.wordpress.com/2009/12/04/10-finest-gifts-for-the-geeks-under-10/</link>
		<comments>http://linuxfanatic.wordpress.com/2009/12/04/10-finest-gifts-for-the-geeks-under-10/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 03:16:26 +0000</pubDate>
		<dc:creator>Tushar Neupaney</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://linuxfanatic.wordpress.com/2009/12/04/10-finest-gifts-for-the-geeks-under-10/</guid>
		<description><![CDATA[So what does a geek want? Don&#8217;t know in certain than try out the new Under $10 Gifts from thinkgeek. If you have already been to thinkgeek.com you might have realized the wonderful and exciting things they collect which are humorously creative. Obviously, the gifts that I am talking about are also salient yet pleasing [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=89&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So what does a geek want? Don&#8217;t know in certain than try out the new <a href="http://www.thinkgeek.com/interests/giftsunder10/feature/desc/0/all">Under $10 Gifts</a> from thinkgeek. If you have already been to thinkgeek.com you might have realized the wonderful and exciting things they collect which are humorously creative. Obviously, the gifts that I am talking about are also salient yet pleasing to any geek or nerd around. Some of my personal favourite are:-</p>
<p><img src="http://www.thinkgeek.com/images/products/front/einstein.jpg" height="186" alt="" width="79" /> <img src="http://www.thinkgeek.com/images/products/zoom/9405_starwars_sd_plush.jpg" height="171" alt="" width="181" /> <img src="http://www.thinkgeek.com/images/products/additional/large/snowbot_army.jpg" height="174" alt="" width="229" /> <img src="http://www.thinkgeek.com/images/products/front/b640_control_a_cat_remote_control.jpg" height="196" alt="" width="133" /> <img src="http://www.thinkgeek.com/images/products/zoom/b21b_origami_sticky_notes.jpg" height="147" alt="" width="184" /></p>
<p>&nbsp;</p>
<p><strong>1. Albert Einstein action figure: </strong>Dressed for intense classroom action, this Albert Einstein Action Figure stands with a piece of chalk in his hand, poised to explain relativity or do battle with the forces of entropy</p>
<p><strong>2. </strong><strong>3-D Paper Notepad</strong>: Now you can practice origami in the office and make use of all the old sticky notes you have plastered to your desk. Each pad has printed instructions on each sheet for 10 different origami shapes. From UK-based design company Suck UK.</p>
<p><strong>3. Control-A-Cat-Remote:</strong> Simply point at your cat, press buttons on the remote and hope for the best. With buttons for &#8220;Stop Scratching&#8221;, &#8220;Show Affection&#8221;, &#8220;Remain Aloof&#8221; and others, you&#8217;ll be in control in no time. It&#8217;s finally your turn to make your cat do what <em>you</em> want.</p>
<p><strong>4. Paper E-mail:</strong> Paper E-mail is perhaps the funniest way to pass messages in your office. Why? Because it will confuse the person you send it to. &#8216;Why didn&#8217;t they just e-mail this to me?&#8217; they&#8217;ll wonder, &#8216;is their computer down?&#8217;</p>
<p><strong>5. Star Wars dolls:</strong> Each one is officially licensed by Lucasfilm and crafted by only the finest plush-clone engineers Kamino has to offer. They are huggable and throwable and small enough to hide in a back pack or on your desk.</p>
<p><strong>6. Infectious Cute Microbes:</strong> Most folks never realize how cute microbes can be when expanded 1,000,000 times and then fashioned into cuddly plush. Until now, that is. Keep one on your desktop to remind yourself that there is an &#8220;invisible&#8221; universe out there filled with very small things that can do incredible damage to much bigger things.</p>
<p><strong>7. Tiny Remote:</strong> The Micro Spy Remote&#8217;s powers will work on a wide variety of televisions (Sony, Panasonic, Samsung, Toshiba, Sanyo, Aiwa, Mitsubishi, Philips, JVC, Sharp, etc) and its small size will safeguard you against discovery. Remember, Agent 002, if you are caught, the Department will not save you. You are on your own. Good luck, Mr. Blond.</p>
<p><strong>8. Usb SnowBot:</strong> Powered by a simple USB port, the Snowbot has a scanning light just like the robots from the future. You can change the speed of the scan, turn on/off the scanning noise, and (for future protection) change the scan color (red or blue). So no matter which robot army storms your home or office, a quick flick of a switch and you are rooting for the invader&#8217;s color.</p>
<p><strong>9. Utili-Key 6-in-1 Tool:</strong> The lightest, most compact multiple tool ever developed! If you feel lost without your trusty knife at your side, this tiny multi-tool can give you some great company. Easily closes to attach to any key ring, making it super easy to carry.</p>
<p><strong>10. Cool Shooters Ice Shotglasses:</strong> The two biggest problems in hosting a truly epic party are keeping the drinks cold, and glass breakage. So, the good scientists at ThinkGeek Hootenanny Industries, L.L.C. realized there was a need begging for a product. After weeks of study and drinking well into the night, we found the Cool Shooters Ice shotglasses tray.</p>
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via web</a>   from <a href="http://tneupaney.posterous.com/10-finest-gifts-for-the-geeks-under-10">Linux fanatic</a>  </p><br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/linuxfanatic.wordpress.com/89/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/linuxfanatic.wordpress.com/89/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/linuxfanatic.wordpress.com/89/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=linuxfanatic.wordpress.com&amp;blog=4103092&amp;post=89&amp;subd=linuxfanatic&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://linuxfanatic.wordpress.com/2009/12/04/10-finest-gifts-for-the-geeks-under-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5c596e09b167f36adbd2db4d145f418d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Tushar Neupaney</media:title>
		</media:content>

		<media:content url="http://www.thinkgeek.com/images/products/front/einstein.jpg" medium="image" />

		<media:content url="http://www.thinkgeek.com/images/products/zoom/9405_starwars_sd_plush.jpg" medium="image" />

		<media:content url="http://www.thinkgeek.com/images/products/additional/large/snowbot_army.jpg" medium="image" />

		<media:content url="http://www.thinkgeek.com/images/products/front/b640_control_a_cat_remote_control.jpg" medium="image" />

		<media:content url="http://www.thinkgeek.com/images/products/zoom/b21b_origami_sticky_notes.jpg" medium="image" />
	</item>
	</channel>
</rss>
