<?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>Jimmy's Blog &#187; fixing</title>
	<atom:link href="http://jimmod.com/blog/tag/fixing/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimmod.com/blog</link>
	<description>My name is Jimmy, and this is my story... ;)</description>
	<lastBuildDate>Mon, 05 Jul 2010 06:59:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Solving (fixing) ubuntu 10.04 (lucid) screen flicker/distortion</title>
		<link>http://jimmod.com/blog/2010/06/solving-fixing-ubuntu-10-04-lucid-screen-flickerdistortion/</link>
		<comments>http://jimmod.com/blog/2010/06/solving-fixing-ubuntu-10-04-lucid-screen-flickerdistortion/#comments</comments>
		<pubDate>Wed, 23 Jun 2010 04:18:18 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[distortion]]></category>
		<category><![CDATA[fixing]]></category>
		<category><![CDATA[flicker]]></category>
		<category><![CDATA[lucid]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[Solving]]></category>
		<category><![CDATA[ubuntu 10.04]]></category>

		<guid isPermaLink="false">http://jimmod.com/blog/?p=174</guid>
		<description><![CDATA[
I experiencing random screen distortion &#38; flicker after upgrading to Ubuntu 10.04, I&#8217;m using Acer Notebook.
After searching in internet, there&#8217;s many forum thread &#38; bug report discuss about this but mostly they have different hardware.
Finally I tried this method and no flickering so far.
What I do is I change my grub configuration, adding kernel parameter [...]


Related posts:<ol><li><a href='http://jimmod.com/blog/2009/06/solving-failed-starting-mysql-service-with-non-default-datadir-ubuntu/' rel='bookmark' title='Permanent Link: Solving failed starting mysql service with non default datadir (Ubuntu)'>Solving failed starting mysql service with non default datadir (Ubuntu)</a></li><li><a href='http://jimmod.com/blog/2010/03/updating-pidgin-to-latest-version-in-ubuntu/' rel='bookmark' title='Permanent Link: Updating Pidgin to latest version in Ubuntu'>Updating Pidgin to latest version in Ubuntu</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } --></p>
<p style="margin-bottom: 0in;">I experiencing random screen distortion &amp; flicker after upgrading to Ubuntu 10.04, I&#8217;m using Acer Notebook.<br />
After searching in internet, there&#8217;s many forum thread &amp; bug report discuss about this but mostly they have different hardware.<br />
Finally I tried this method and no flickering so far.</p>
<p style="margin-bottom: 0in;">What I do is I change my grub configuration, adding kernel parameter “i915.powersave=0”.</p>
<p style="margin-bottom: 0in;">For Linux expert probably this is not an issue, so I dedicate this step for the newbies like <img src='http://jimmod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>
<li>What I do is I modify the grub configuration which is located on /boot/grub/grub.cfg (backup before you edit it)</li>
<li>Because the access right is set to read only, let&#8217;s change it so the owner can modify it.<br />
<em>&gt; sudo chmod -c u+w /boot/grub/grub.cfg</em></li>
<li>Use vi or your other prefered editor to edit it.<br />
&gt; sudo vim /boot/grub/grub.cfg</li>
<li>Locate the menuentry of your Linux. Example:<br />
<em>menuentry &#8216;Ubuntu, with Linux 2.6.32-22-generic&#8217; &#8211;class ubuntu &#8211;class gnu-linux &#8211;class gnu &#8211;class os {<br />
recordfail<br />
insmod ext2<br />
set root=&#8217;(hd0,4)&#8217;<br />
search &#8211;no-floppy &#8211;fs-uuid &#8211;set xxx-xxx-xxx</em><br />
<em><strong> linux	/vmlinuz-2.6.32-22-generic root=UUID=xx-xx-xxx-x-xx ro quiet splash</strong><br />
initrd	/initrd.img-2.6.32-22-generic<br />
}</em></li>
<li>Add “i915.powersave=0” to the linux kernel line as parameter. It will become:<br />
menuentry &#8216;Ubuntu, with Linux 2.6.32-22-generic&#8217; &#8211;class ubuntu &#8211;class gnu-linux &#8211;class gnu &#8211;class os {<br />
recordfail<br />
insmod ext2<br />
set root=&#8217;(hd0,4)&#8217;<br />
<em> search &#8211;no-floppy &#8211;fs-uuid &#8211;set xxx-xxx-xxx</em><br />
<em><strong>linux	/vmlinuz-2.6.32-22-generic root=UUID=xx-xx-xxx-x-xx ro </strong></em><strong>i915.powersave=0</strong><em><strong> quiet splash</strong></em><br />
initrd	/initrd.img-2.6.32-22-generic<br />
}</li>
<li>Save &amp; restart to check if you still experiencing screen flicker</li>
</ol>
<p>That&#8217;s it <img src='http://jimmod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Hope it can work on other Notebook/PC</p>
<p style="margin-bottom: 0in;">


<p>Related posts:<ol><li><a href='http://jimmod.com/blog/2009/06/solving-failed-starting-mysql-service-with-non-default-datadir-ubuntu/' rel='bookmark' title='Permanent Link: Solving failed starting mysql service with non default datadir (Ubuntu)'>Solving failed starting mysql service with non default datadir (Ubuntu)</a></li><li><a href='http://jimmod.com/blog/2010/03/updating-pidgin-to-latest-version-in-ubuntu/' rel='bookmark' title='Permanent Link: Updating Pidgin to latest version in Ubuntu'>Updating Pidgin to latest version in Ubuntu</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://jimmod.com/blog/2010/06/solving-fixing-ubuntu-10-04-lucid-screen-flickerdistortion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing network slow transfer in Windows Vista</title>
		<link>http://jimmod.com/blog/2009/10/fixing-network-slow-transfer-in-windows-vista/</link>
		<comments>http://jimmod.com/blog/2009/10/fixing-network-slow-transfer-in-windows-vista/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 17:22:00 +0000</pubDate>
		<dc:creator>jimmy</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[fix]]></category>
		<category><![CDATA[fixing]]></category>
		<category><![CDATA[lan]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[solved]]></category>
		<category><![CDATA[transfer]]></category>
		<category><![CDATA[vista]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://jimmod.com/blog/?p=103</guid>
		<description><![CDATA[If you find that copying from your Windows Vista extremely slow  (50KB/s) from wifi you must try this.
Go to your device manager:

Start &#8211; Control panel &#8211; Device manager


 Select your wifi device in &#8216;Network Adapter&#8217;. Mine is &#8220;Intel (R) Wifi Link 5100&#8230;)
Right click, select &#8216;properties&#8217;
Select tab &#8216;Advanced&#8217;
Select &#8216;Ad Hoc Channel 802.11 b/g&#8221;. Change the value [...]


Related posts:<ol><li><a href='http://jimmod.com/blog/2007/11/using-svnssh-with-netbeans-55-windows/' rel='bookmark' title='Permanent Link: Using svn+ssh with Netbeans 5.5 + Windows'>Using svn+ssh with Netbeans 5.5 + Windows</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>If you find that copying from your Windows Vista extremely slow  (50KB/s) from wifi you must try this.</p>
<p>Go to your device manager:<span id="more-103"></span></p>
<ul>
<li>Start &#8211; Control panel &#8211; Device manager</li>
</ul>
<div id="attachment_104" class="wp-caption aligncenter" style="width: 160px"><img class="size-thumbnail wp-image-104" title="controlpanel" src="http://jimmod.com/blog/wp-content/uploads/2009/10/controlpanel-150x150.jpg" alt="Control Panel - Device Manager" width="150" height="150" /><p class="wp-caption-text">Control Panel - Device Manager</p></div>
<ul>
<li> Select your wifi device in &#8216;Network Adapter&#8217;. Mine is &#8220;Intel (R) Wifi Link 5100&#8230;)</li>
<li>Right click, select &#8216;properties&#8217;</li>
<li>Select tab &#8216;Advanced&#8217;</li>
<li>Select &#8216;Ad Hoc Channel 802.11 b/g&#8221;. Change the value to 1 (default is 11)</li>
</ul>
<p style="text-align: center;"><img class="alignnone size-thumbnail wp-image-105" title="wifi adhoc" src="http://jimmod.com/blog/wp-content/uploads/2009/10/wifi-adhoc-150x150.jpg" alt="wifi adhoc" width="150" height="150" /></p>
<ul>
<li style="text-align: left;">Press OK</li>
</ul>
<p>Now try again to copy files from Network.. If everything work perfectly you should able to get 2MB/s</p>
<p> <img src='http://jimmod.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>


<p>Related posts:<ol><li><a href='http://jimmod.com/blog/2007/11/using-svnssh-with-netbeans-55-windows/' rel='bookmark' title='Permanent Link: Using svn+ssh with Netbeans 5.5 + Windows'>Using svn+ssh with Netbeans 5.5 + Windows</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://jimmod.com/blog/2009/10/fixing-network-slow-transfer-in-windows-vista/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
