<?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>Shibumi Dojo &#187; GNU Linux</title>
	<atom:link href="http://www.shibumidojo.org/index.php/category/gnu-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.shibumidojo.org</link>
	<description></description>
	<lastBuildDate>Mon, 16 Jan 2012 07:48:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Ubuntu Network Disabled Problem</title>
		<link>http://www.shibumidojo.org/index.php/2010/09/22/ubuntu-network-disabled-problem/</link>
		<comments>http://www.shibumidojo.org/index.php/2010/09/22/ubuntu-network-disabled-problem/#comments</comments>
		<pubDate>Wed, 22 Sep 2010 12:27:12 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[network disabled]]></category>
		<category><![CDATA[network disabled bug]]></category>
		<category><![CDATA[wireless bug]]></category>
		<category><![CDATA[wireless disabled]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=394</guid>
		<description><![CDATA[I had a Network Disabled issue which caused wireless disabled too. After that issue i could connect to Internet via cable however there was no wireless connection and no wlan0 interface too. I tried everything about network disabled problem but had no chance. When I tried to run &#34;ifconfig wlan0 up&#34;, I got &#34;no such [...]]]></description>
			<content:encoded><![CDATA[<p>I had a Network Disabled issue which caused wireless disabled too. After that issue i could connect to Internet via cable however there was no wireless connection and no wlan0 interface too. I tried everything about network disabled problem but had no chance. <span id="more-394"></span></p>
<p>When I tried to run &quot;ifconfig wlan0 up&quot;, I got &quot;no such file or directory&quot;. After that i realized that that is different bug than known &quot;Network Disabled&quot; bug. Anyway i found a solution that worked for me.</p>
<ul>
<li>Enter http://linuxwireless.org/en/users/Download/stable/</li>
<li>Find correct kernel driver</li>
<li>sudo apt-get install build-essential</li>
<li>wget http://intellinuxwireless.org/iwlwifi/downloads/iwlwifi-5000-ucode-5.4.A.11.tar.gz</li>
<li>tar -xzvf iwlwifi*</li>
<li>sudo cp iwlwifi-5000-ucode-5.4.A.11/iwlwifi-5000-1.ucode /lib/firmware</li>
<li>bunzip2 compat-wireless-old</li>
<li>tar xf compat-wireless-old</li>
<li>cd compat-wireless*old*</li>
<li>make</li>
<li>sudo make install</li>
<li>sudo make unload</li>
<li>sudo make load</li>
</ul>
<p>Reboot your system. That solution should fix your Wireless and Network Disabled problem.</p>
<p>&nbsp;</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2010/09/22/ubuntu-network-disabled-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wget and downloading the entire directory</title>
		<link>http://www.shibumidojo.org/index.php/2009/06/28/wget-and-downloading-the-enrite-directory/</link>
		<comments>http://www.shibumidojo.org/index.php/2009/06/28/wget-and-downloading-the-enrite-directory/#comments</comments>
		<pubDate>Sun, 28 Jun 2009 14:44:02 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=176</guid>
		<description><![CDATA[Sometimes I need to retrieve the whole remote directory. Normally, using graphical user interface is the simplest way to download the directory, however, sometimes we do not prefer to use or we have no chance to use graphical user interfaces like working with GNU Linux servers without any desktop environments. In that case, we can [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I need to retrieve the whole remote directory. Normally, using graphical user interface is the simplest way to download the directory, however, sometimes we do not prefer to use or we have no chance to use graphical user interfaces like working with GNU Linux servers without any desktop environments. In that case, we can use <em><strong>wget</strong></em> to get the whole directory. <span id="more-176"></span>Most of you heard something about <em><strong>wget </strong></em>and now I will give you some specific information about it which helps you to download a directory from remote URL. I should thank you <span style="color: #800000;"><strong>&#8220;Andrea Ben Benini&#8221;</strong></span> for this useful tip.</p>
<blockquote><p><span style="color: #33cccc;">wget -r &#8211;level=0 -E &#8211;ignore-length -x -k -p -erobots=off -np -N http://www.shibumidojo.org/something/directory</span></p></blockquote>
<p><em><span style="text-decoration: underline;">Here are the options:</span></em></p>
<p><strong>-r</strong> : Recursive retrieving (important)<br />
<strong>&#8211;level=0</strong>: Specify recursion maximum depth level (0 for no limit), very important<br />
<strong>-E</strong>: append &#8220;.html&#8221; extension to every document declared as &#8220;<strong>application/html</strong>&#8221;<br />
useful when you deal with dirs (that are not dirs but index.html files)<br />
<strong>&#8211;ignore-lenght</strong>: Ignore &#8220;Content-length&#8221; http headers, sometimes useful when dealing with bugged CGI programs<br />
<strong>-x</strong>: Force dirs, create an hierarchy of directories even if one would not been created otherwise<br />
<strong>-k</strong>: here&#8217;s one of the most useful options, it converts remote links to local for best viewing<br />
<strong>-p</strong>: download ll the files that are necessary for proper display of the page<br />
(not so reliable when dealing with JS code but useful)<br />
<strong>-erobots=off</strong>: turn off http robots.txt usage<br />
<strong>-np</strong>: no parent, do not ascend to parent dir when retrieving recursively,<br />
one of the most useful function I&#8217;ve seen</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2009/06/28/wget-and-downloading-the-enrite-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HP Photosmart 2600 and Ubuntu</title>
		<link>http://www.shibumidojo.org/index.php/2009/06/12/hp-photosmart-2600-and-ubuntu/</link>
		<comments>http://www.shibumidojo.org/index.php/2009/06/12/hp-photosmart-2600-and-ubuntu/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 16:46:30 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=115</guid>
		<description><![CDATA[Ubuntu always recognize the printer of my HP but other properties were nightmare. I found a driver which solves this problem almost perfectly. The only thing you need to do download the file here and install it to your Linux. This should solve your HP all in one problems.]]></description>
			<content:encoded><![CDATA[<div align="justify">Ubuntu always recognize the printer of my HP but other properties were nightmare. I found a driver which solves this problem almost perfectly. The only thing you need to do download the file <a href="http://www.shibumidojo.org/files/hplip-3.9.4b.tar.gz">here</a> and install it to your Linux. This should solve your HP all in one problems.</div>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2009/06/12/hp-photosmart-2600-and-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OSSTMM OPST</title>
		<link>http://www.shibumidojo.org/index.php/2009/05/05/osstmm-opst/</link>
		<comments>http://www.shibumidojo.org/index.php/2009/05/05/osstmm-opst/#comments</comments>
		<pubDate>Tue, 05 May 2009 21:34:19 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[isecom]]></category>
		<category><![CDATA[opst]]></category>
		<category><![CDATA[osstmm]]></category>
		<category><![CDATA[pentest]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=97</guid>
		<description><![CDATA[Today, I had good news from ISECOM. They sent me an e-mail about the OSSTMM OPST Professional Security Tester Exam and I&#8217;ve passed the exam. From that point, I am starting to study for CISSP.]]></description>
			<content:encoded><![CDATA[<p><img align="left" src="http://www.isecom.org/pix/opst_logo100.jpg" alt="" />Today, I had good news from ISECOM. They sent me an e-mail about the OSSTMM OPST Professional Security Tester Exam and I&#8217;ve passed the exam. From that point, I am starting to study for CISSP.</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2009/05/05/osstmm-opst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing XAMMP on Ubuntu</title>
		<link>http://www.shibumidojo.org/index.php/2008/12/21/installing-xammp-on-ubuntu/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/12/21/installing-xammp-on-ubuntu/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 20:06:29 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xammp]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=82</guid>
		<description><![CDATA[PHP+MySQL+Apache+phpmyadmin, these are requirements of developing php web applications. Using XAMMP is eisiest way to install all the requirements. This manual helps you to install xammp to you ubuntu and&#160; any linux distro with small changes. As you guess easliy, the first thing that you have to do is download the latest version of xammp [...]]]></description>
			<content:encoded><![CDATA[<p>PHP+MySQL+Apache+phpmyadmin, these are requirements of developing php web applications. Using <strong>XAMMP </strong>is eisiest way to install all the requirements. This manual helps you to install <em>xammp </em>to you ubuntu and&nbsp; any linux distro with small changes. As you guess easliy, the first thing that you have to do is download the latest version of <em>xammp</em> from <a href="http://www.apachefriends.org/en/xampp-linux.html">here</a>. <span id="more-82"></span></p>
<p>After the downloading, you should extract the files you downloaded to <strong>/opt </strong></p>
<p><quote>tar xvfz yourxammp.tar.gz -C /opt</quote></p>
<p>If everthing goes ok, you have to start the lammp at first with <em><strong>&quot;/opt/lammp/lammp start&quot;</strong></em></p>
<p>Then you can try if it works or not with your browser by trying to enter the <em><strong>http://localhost</strong></em></p>
<p>The parameters you can use for XAMMP below</p>
<p><strong>start, stop, restart, startapache, startssl, startmysql, startftp, security</strong></p>
<p>Ex. <em>/opt/lammp/</em>lammp restart</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/12/21/installing-xammp-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intrepid and Fixing Sound Problem</title>
		<link>http://www.shibumidojo.org/index.php/2008/11/30/intrepid-and-fixing-sound-problem/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/11/30/intrepid-and-fixing-sound-problem/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 20:47:33 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=67</guid>
		<description><![CDATA[After the installation of&#160; the Intrepid, there was a sound problem which I could not hear the flash video sounds on my browser. In order to fix the problems like that, you can fallow the procedures above. at First you need to backup and delete after the backup your old confiiguration with the command; $ [...]]]></description>
			<content:encoded><![CDATA[<p>After the installation of&nbsp; the Intrepid, there was a sound problem which I could not hear the flash video sounds on my browser. In order to fix the problems like that, you can fallow the procedures above.<span id="more-67"></span></p>
<p>at First you need to backup and delete after the backup your old confiiguration with the command;</p>
<p style="background-color: rgb(192, 192, 192);">$ mkdir ~/pulse-backup &amp;&amp; cp -r ~/.pulse ~/.asound* /etc/asound.conf /etc/pulse -t ~/pulse-backup/<br />
$ sudo rm -r ~/.pulse ~/.asound* /etc/asound.conf</p>
<p>&nbsp;after that you have to ensure you have Adobe Flash &amp; the necessary PulseAudio libraries and configuration utilities installed</p>
<p><span style="background-color: rgb(153, 153, 153);"> <span style="background-color: rgb(192, 192, 192);">$ sudo apt-get install libasound2-plugins padevchooser libao-pulse libsdl1.2debian-pulseaudio flashplugin-nonfree</span></span></p>
<p>and also if you have <em>libflashsupport </em>package, you should remove it with that command</p>
<p><span style="background-color: rgb(192, 192, 192);"> $ sudo apt-get remove &#8211;purge libflashsupport flashplugin-nonfree-extrasound</span></p>
<p>Open <em>System/Preferences/Sound</em>. In the <em>Devices</em> section, ensure that all <em>&quot;Sound playback</em>&quot; options are set to <em>Autodetect.</em> Set the<em> &quot;Sound capture&quot;</em> item to<em> &quot;PulseAudio&quot;</em>. Close the application when you&#8217;re finished.</p>
<p>After all of these steps, you need to add the fallowing repos to you /etc/sources.list</p>
<p><strong>deb http://ppa.launchpad.net/psyke83/ubuntu intrepid main<br />
deb-src http://ppa.launchpad.net/psyke83/ubuntu intrepid main</strong></p>
<p>and do <strong>apt-get update</strong> also do<strong> apt-get dist-upgrade</strong></p>
<p>&nbsp;</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/11/30/intrepid-and-fixing-sound-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Arch and VMWare</title>
		<link>http://www.shibumidojo.org/index.php/2008/09/20/arch-and-vmware/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/09/20/arch-and-vmware/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 06:54:21 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[kernel problem]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=41</guid>
		<description><![CDATA[I really love archlinux and using it as my main operating system. However, i am in a trouble a little about OS and Server virtualization. As you know arch is very current GNU Linux distro and that causes some problems about the things depended on Kernel and requires less then recent kernel. It is very [...]]]></description>
			<content:encoded><![CDATA[<p>I really love archlinux and using it as my main operating system. However, i am in a trouble a little about OS and Server virtualization. As you know arch is very current GNU Linux distro and that causes some problems about the things depended on Kernel and requires less then recent kernel. <span id="more-41"></span>  It is very difficult to keep VMWare patches sync with kernel stuff. I installed the VMWare Server to my archlinux with related any-any patches. After the successful installation, I got errors when I tried to run any operating system. When tried to see the logs from /var/log/vmware I got some clues about the problem. The error is below;</p>
<blockquote><p><font color="#0000ff"><span class="Code">Sep 18 18:02:54: app| Msg_Post: Version mismatch with vmmon module: expecting 138.0, got 168.0. Sep 18 18:02:54: app| You have an incorrect version of the `vmmon&#8217; kernel module. Sep 18 18:02:54: app| Try reinstalling VMware Server. Sep 18 18:02:54: app| Sep 18 18:02:54: app| Msg_Post: Error Sep 18 18:02:54: app| [msg.vmmonPosix.initFailed] Failed to initialize monitor device. Sep 18 18:02:54: app| [localized] Failed to initialize monitor device.</span></font></p></blockquote>
<p>My kernel is 2.6.26 and with VMWare patch 117d any-any.  OS and Server virtualization is quite important for me, because i am working in an information security company and i have to run multiple operating systems on my GNU Linux disto.  I have to change my operating system to Ubuntu according to the things above, but my archlove is not finishing. I am still translating Arch Wikis to my own language and also write small scripts fot her <img src='http://www.shibumidojo.org/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/09/20/arch-and-vmware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GNU Privacy Guard</title>
		<link>http://www.shibumidojo.org/index.php/2008/09/13/gnu-privacy-guard/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/09/13/gnu-privacy-guard/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 18:43:56 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[gnupg]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=32</guid>
		<description><![CDATA[GPG is a PGP suite of cryptographic software of GNU which is part of Free Software Foundation, was developed by Werner Koch. You can send encrypted files via gnuPG to anyone just has public key. It is based on assymetric cryptography. Let me tell about public-key encryption(assymetric cryptography) more. In this technique, it is possible [...]]]></description>
			<content:encoded><![CDATA[<p>GPG is a PGP suite of cryptographic software of GNU which is part of Free Software Foundation, was developed by Werner Koch. You can send encrypted files via gnuPG to anyone just has public key. It is based on assymetric cryptography. Let me tell about public-key encryption(assymetric cryptography) more. <span id="more-32"></span></p>
<p><img hspace="1" height="182" border="1" align="left" width="185" vspace="1" alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f9/Public_key_encryption.svg/280px-Public_key_encryption.svg.png" /></p>
<p>In this technique, it is possible to divide the key into two parts, public keys and private keys. Public keys are public =). You can share it with anyone you want, but the private one must be kept secret. Incoming messages would have been encrypted with the recipient&#8217;s public key, and can only be decrypted with corresponding private key. The keys are related mathematically, but cannot be derived each other practically.</p>
<p>As you can see in the figure, Bob wants to send a message to Alice. Bob encrypts the data (Hello Alice) using Alice&#8217;s public key and sends it. When the encrypted data receives Alice, she has to use her private keys in order to decrypt it.</p>
<p>After a short brief, lets come back to our topic. First you have to install the gnupg programme according to install procedure of your operating system or distro.</p>
<p>In order to communicate in an encrypted way, you have to generate your keys.</p>
<p>To generate the keys, open a terminal and type <strong><em>&quot;gpg &#8211; -gen &#8211; -key&quot;</em></strong>.<em> </em>In order to export your public key out, type <strong>&quot;<em>gpg &#8211; - export [UID]</em>&quot;&nbsp; </strong>or you may need to other people&#8217;s public keys. In that situation, save the public key in a file name is for example &quot;Bob.txt&quot; or &quot;Bob.asc&quot;, then type in terminal <strong>&quot;gpg &#8211; -import Bob.txt&quot;</strong>.</p>
<p>Now we have our public and private keys and also Bob&#8217;s public key has already imported. Assume that we have data.pdf as a document which we want to send in encrypted way. The only thing that we should do is, <strong>&quot;gpg -u [sender] -r [Bob] &#8211;armor &#8211;encrypt [filepath]&quot;. </strong>If we want to decrypted the file that is sent by one of our friends, assume that that files is &quot;abc.doc&quot;, the we should type <strong>&quot;gpg &#8211; - output [filename] &#8211; -decrypt [encryptedfilepath]&quot;</strong>.</p>
<p>&nbsp;After these information, i want to give you some extras;</p>
<p><strong>gpg &#8211;list &#8211;keys </strong>list of all keys imported your system</p>
<p><strong>gpg &#8211;list &#8211;sigs </strong>list of all signs imported your system</p>
<p><strong>gpg &#8211;fingerprint </strong>list fingerprints as HEX</p>
<p><strong>gpg &#8211;list-secret-keys </strong>shows imported secret keys</p>
<p><strong>gpg &#8211;delete-key [UID] </strong>deletes any key according to User ID</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/09/13/gnu-privacy-guard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faster Firefox</title>
		<link>http://www.shibumidojo.org/index.php/2008/09/02/faster-firefox/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/09/02/faster-firefox/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 09:40:30 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[faster firefox]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=21</guid>
		<description><![CDATA[While i am using the firefox, the most irritating thing is slowness. And that makes me crazy sometimes. After a little searching, i found out how i can make firefox faster in a few operations. Please write about:config on the adress bar and press enter. network.http.pipelining find it and change its value to &#34;true&#34; network.http.pipelining.maxrequests&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>While i am using the firefox, the most irritating thing is slowness. And that makes me crazy sometimes. After a little searching, i found out how i can make firefox faster in a few operations.<span id="more-21"></span></p>
<p>Please write <strong>about:config</strong> on the adress bar and press enter.</p>
<p><strong>network.http.pipelining </strong>find it and change its value to &quot;true&quot;</p>
<p><strong>network.http.pipelining.maxrequests&nbsp; </strong>find it and change its value to &quot;8&quot;</p>
<p><strong>network.http.proxy.pipelining </strong>find it and change its value to &quot;true&quot;</p>
<p><strong>network.dns.disableIPv6 </strong>find it and change its value to &quot;true&quot;</p>
<p><strong>plugin.expose_full_path </strong>find it and change its value to &quot;true&quot;</p>
<p>After all of these modifications, the adding new integers turn. Right click anywhere you want and click new/integer and spesify the name of the new integer.</p>
<p>These are the new integers;</p>
<ul>
<li><strong>nglayout.initialpaint.delay </strong>is the name of integer and please make its value &quot;0&quot;</li>
<li><strong>content.notify.backoffcount </strong>is the name of integer and please make its value &quot;5&quot;</li>
<li><strong>ui.submenuDelay </strong>is the name of integer and please make its value &quot;0&quot;&nbsp;</li>
<li><strong>browser.cache.memory.capacity </strong>is the name of integer. And the value of that integer is depends on what size RAM you want to use. I want 32MB that&#8217;s why i make its value &quot;32768&quot; You can change the value whatever you want firefox to use your system RAM.</li>
</ul>
<p>After all of these steps you restart your system.</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/09/02/faster-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://www.shibumidojo.org/index.php/2008/08/31/hello-world/</link>
		<comments>http://www.shibumidojo.org/index.php/2008/08/31/hello-world/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 23:09:31 +0000</pubDate>
		<dc:creator>CorpusCallosum</dc:creator>
				<category><![CDATA[Do]]></category>
		<category><![CDATA[GNU Linux]]></category>
		<category><![CDATA[Network]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.shibumidojo.org/?p=3</guid>
		<description><![CDATA[% in Prolog hello :- display(&#8216;Hello World!&#8217;) , nl .]]></description>
			<content:encoded><![CDATA[<p>% in Prolog</p>
<p>hello :- display(&#8216;Hello World!&#8217;) , nl .</p>
<ul class="related_post"></ul>]]></content:encoded>
			<wfw:commentRss>http://www.shibumidojo.org/index.php/2008/08/31/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

