<?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>The Troll&#039;s factory</title>
	<atom:link href="http://trollfactory.fr/feed" rel="self" type="application/rss+xml" />
	<link>http://trollfactory.fr</link>
	<description>Geekeries &#38; pensées</description>
	<lastBuildDate>Mon, 09 Jun 2014 19:43:25 +0000</lastBuildDate>
	<language>fr-FR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>Output Popen subprocess stdout (and stderr) in real-time in Python</title>
		<link>http://trollfactory.fr/output-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731</link>
		<comments>http://trollfactory.fr/output-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731#comments</comments>
		<pubDate>Mon, 09 Jun 2014 19:43:25 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[astuces]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Scripts, astuces, dév. web]]></category>
		<category><![CDATA[popen]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[subprocess]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=731</guid>
		<description><![CDATA[So you&#8217;re writing a Python script and you are launching some other external command. To achieve that, you are using the subprocess.Popen command, right. But the subprocess is very slow, and it outputs data during it runtime, so you would like to output this data to the user as well, so that the user does [...]]]></description>
				<content:encoded><![CDATA[<p>So you&rsquo;re writing a Python script and you are launching some other external command.</p>
<p>To achieve that, you are using the <b>subprocess.Popen</b> command, right.</p>
<p>But the subprocess is very slow, and it outputs data during it runtime, so you would like to output this data to the user as well, so that the user does not wait for the end of the subprocess before getting the information?</p>
<p>Example of a slow subprocess:</p>
<pre>
#!/bin/bash
for i in 1 2 3 4 5 6; do sleep 5 &#038;&#038; echo "${i}th output" &#038;&#038; echo "err output num ${i}" >&#038;2; done
</pre>
<p>Well, that&rsquo;s fairly easy, just redirect the subprocess&rsquo;s stdout to your own stdout:</p>
<pre>
import sys
from subprocess import Popen
Popen("./slow_cmd_output.sh", stdout=sys.stdout, stderr=sys.stderr).communicate()
</pre>
<p>Although the catch here is the <b>.communicate()</b>. This will allow your program to wait for the end of the subprocess before executing the next line of code. So that your programm does not terminate execution before its subprocess, for instance.</p>
<p>Not that if you want to deamonize the script / zombify it, you can remove the <b>.communicate()</b> and the redirection of stdout and stderr will still work after your program&rsquo;s termination.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python%20-%20http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;t=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=So%20you%27re%20writing%20a%20Python%20script%20and%20you%20are%20launching%20some%20other%20external%20command.%0D%0A%0D%0ATo%20achieve%20that%2C%20you%20are%20using%20the%20subprocess.Popen%20command%2C%20right.%0D%0A%0D%0ABut%20the%20subprocess%20is%20very%20slow%2C%20and%20it%20outputs%20data%20during%20it%20runtime%2C%20so%20you%20would%20like%20t" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;bodytext=So%20you%27re%20writing%20a%20Python%20script%20and%20you%20are%20launching%20some%20other%20external%20command.%0D%0A%0D%0ATo%20achieve%20that%2C%20you%20are%20using%20the%20subprocess.Popen%20command%2C%20right.%0D%0A%0D%0ABut%20the%20subprocess%20is%20very%20slow%2C%20and%20it%20outputs%20data%20during%20it%20runtime%2C%20so%20you%20would%20like%20t" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;notes=So%20you%27re%20writing%20a%20Python%20script%20and%20you%20are%20launching%20some%20other%20external%20command.%0D%0A%0D%0ATo%20achieve%20that%2C%20you%20are%20using%20the%20subprocess.Popen%20command%2C%20right.%0D%0A%0D%0ABut%20the%20subprocess%20is%20very%20slow%2C%20and%20it%20outputs%20data%20during%20it%20runtime%2C%20so%20you%20would%20like%20t" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;annotation=So%20you%27re%20writing%20a%20Python%20script%20and%20you%20are%20launching%20some%20other%20external%20command.%0D%0A%0D%0ATo%20achieve%20that%2C%20you%20are%20using%20the%20subprocess.Popen%20command%2C%20right.%0D%0A%0D%0ABut%20the%20subprocess%20is%20very%20slow%2C%20and%20it%20outputs%20data%20during%20it%20runtime%2C%20so%20you%20would%20like%20t" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;t=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;title=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Foutput-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731&amp;submitHeadline=Output%20Popen%20subprocess%20stdout%20%28and%20stderr%29%20in%20real-time%20in%20Python&amp;submitSummary=So%20you%27re%20writing%20a%20Python%20script%20and%20you%20are%20launching%20some%20other%20external%20command.%0D%0A%0D%0ATo%20achieve%20that%2C%20you%20are%20using%20the%20subprocess.Popen%20command%2C%20right.%0D%0A%0D%0ABut%20the%20subprocess%20is%20very%20slow%2C%20and%20it%20outputs%20data%20during%20it%20runtime%2C%20so%20you%20would%20like%20t&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/output-popen-subprocess-stdout-and-stderr-in-real-time-in-python-731/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Increase the maximum zoom in Mapnik tiles server (Apache + mod_tile + renderd) to 19</title>
		<link>http://trollfactory.fr/increase-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726</link>
		<comments>http://trollfactory.fr/increase-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726#comments</comments>
		<pubDate>Fri, 14 Mar 2014 09:48:04 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[OSM]]></category>
		<category><![CDATA[mapnik]]></category>
		<category><![CDATA[mod_tile]]></category>
		<category><![CDATA[openstreetmap]]></category>
		<category><![CDATA[osm]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=726</guid>
		<description><![CDATA[This is assuming that you followed this tutorial at: http://switch2osm.org/serving-tiles/manually-building-a-tile-server-12-04/ in order to setup your tiles server If you want to increase the default maximum zoom (18) to 19, for instance, do the following: vi /usr/local/etc/renderd.conf Then, under the section [default], add: MAXZOOM=19 Share and Enjoy:]]></description>
				<content:encoded><![CDATA[<p>This is assuming that you followed this tutorial at: http://switch2osm.org/serving-tiles/manually-building-a-tile-server-12-04/ in order to setup your tiles server</p>
<p>If you want to increase the default maximum zoom (18) to 19, for instance, do the following:</p>
<p><code>vi /usr/local/etc/renderd.conf</code></p>
<p>Then, under the section <strong style="font-family: Courier new;">[default]</strong>, add: <strong style="font-family: Courier new;">MAXZOOM=19</strong></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019%20-%20http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;t=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=This%20is%20assuming%20that%20you%20followed%20this%20tutorial%20at%3A%20http%3A%2F%2Fswitch2osm.org%2Fserving-tiles%2Fmanually-building-a-tile-server-12-04%2F%20in%20order%20to%20setup%20your%20tiles%20server%0D%0A%0D%0AIf%20you%20want%20to%20increase%20the%20default%20maximum%20zoom%20%2818%29%20to%2019%2C%20for%20instance%2C%20do%20the%20f" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;bodytext=This%20is%20assuming%20that%20you%20followed%20this%20tutorial%20at%3A%20http%3A%2F%2Fswitch2osm.org%2Fserving-tiles%2Fmanually-building-a-tile-server-12-04%2F%20in%20order%20to%20setup%20your%20tiles%20server%0D%0A%0D%0AIf%20you%20want%20to%20increase%20the%20default%20maximum%20zoom%20%2818%29%20to%2019%2C%20for%20instance%2C%20do%20the%20f" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;notes=This%20is%20assuming%20that%20you%20followed%20this%20tutorial%20at%3A%20http%3A%2F%2Fswitch2osm.org%2Fserving-tiles%2Fmanually-building-a-tile-server-12-04%2F%20in%20order%20to%20setup%20your%20tiles%20server%0D%0A%0D%0AIf%20you%20want%20to%20increase%20the%20default%20maximum%20zoom%20%2818%29%20to%2019%2C%20for%20instance%2C%20do%20the%20f" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;annotation=This%20is%20assuming%20that%20you%20followed%20this%20tutorial%20at%3A%20http%3A%2F%2Fswitch2osm.org%2Fserving-tiles%2Fmanually-building-a-tile-server-12-04%2F%20in%20order%20to%20setup%20your%20tiles%20server%0D%0A%0D%0AIf%20you%20want%20to%20increase%20the%20default%20maximum%20zoom%20%2818%29%20to%2019%2C%20for%20instance%2C%20do%20the%20f" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;t=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;title=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fincrease-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726&amp;submitHeadline=Increase%20the%20maximum%20zoom%20in%20Mapnik%20tiles%20server%20%28Apache%20%2B%20mod_tile%20%2B%20renderd%29%20to%2019&amp;submitSummary=This%20is%20assuming%20that%20you%20followed%20this%20tutorial%20at%3A%20http%3A%2F%2Fswitch2osm.org%2Fserving-tiles%2Fmanually-building-a-tile-server-12-04%2F%20in%20order%20to%20setup%20your%20tiles%20server%0D%0A%0D%0AIf%20you%20want%20to%20increase%20the%20default%20maximum%20zoom%20%2818%29%20to%2019%2C%20for%20instance%2C%20do%20the%20f&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/increase-the-maximum-zoom-in-mapnik-tiles-server-apache-mod_tile-renderd-to-19-726/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installer HubiC sur Fedora 19</title>
		<link>http://trollfactory.fr/installer-hubic-sur-fedora-19-717</link>
		<comments>http://trollfactory.fr/installer-hubic-sur-fedora-19-717#comments</comments>
		<pubDate>Thu, 02 Jan 2014 10:28:40 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[fc19]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[hubic]]></category>
		<category><![CDATA[ovh]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=717</guid>
		<description><![CDATA[Télécharger le .tar.gz ici : http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/1.1.13/ L&#8217;extraire (tar zvxf). Aller dans le dossier en console et taper : sudo make (cela suppose que vous avez make installé&#8230;) Installer mono, mono-data et mono-sqlite : sudo yum install mono-core mono-data-sqlite mono-data Exporter la variable de session DBUS comme indiqué sur leurs forums : $ dbus-launch --sh-syntax DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-XXXX,guid=XXXXXXX [...]]]></description>
				<content:encoded><![CDATA[<p>Télécharger le .tar.gz ici : <a href="http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/1.1.13/" target="_blank">http://mir7.ovh.net/ovh-applications/hubic/hubiC-Linux/1.1.13/</a></p>
<p>L&rsquo;extraire (tar zvxf). Aller dans le dossier en console et taper :</p>
<p><code>sudo make</code><br />
(cela suppose que vous avez <em>make</em> installé&#8230;)</p>
<p>Installer mono, mono-data et mono-sqlite :</p>
<p><code>sudo yum install mono-core mono-data-sqlite mono-data</code></p>
<p>Exporter la variable de session DBUS comme indiqué sur <a href="https://forums.hubic.com/showthread.php?272-hubiC-for-Linux-beta-is-out-!" title="forums HubiC d'OVH" target="_blank">leurs forums</a> :</p>
<p><code><br />
$ dbus-launch --sh-syntax<br />
    DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-XXXX,guid=XXXXXXX<br />
    DBUS_SESSION_BUS_PID=1234<br />
    $ export DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-XXXX,guid=XXXXXXX</code><br />
<em>(les lignes précédées de &laquo;&nbsp;$&nbsp;&raquo; sont les lignes que vous devez exécuter, en mode utilisateur (sans sudo), les lignes sans &laquo;&nbsp;$&nbsp;&raquo; devant sont juste un exemple de retour/sortie de la commande exécutée)<br />
</em></p>
<p>Lancer le service <strong>d&rsquo;abord</strong> :</p>
<p><code>/usr/local/lib/hubic/hubic-service</code></p>
<p>Et effectuer le login <strong>après</strong> :</p>
<p><code>hubic login votre@email.tld /dossier/de/synchro/hubic</code></p>
<p>Vous devriez voir, dans la console où vous avez lancé le service hubic, des lignes du genre :</p>
<p><code>[INFO | 1/2/2014 11:15:43 AM | Ovh.Hubic.Sync.Linux.CLI.Server.MainLoop] Application starts (Version: 1.1.13.22-64; Platform: Unix 3.12.5.200)<br />
[ERROR | 1/2/2014 11:15:45 AM | Ovh.Hubic.Sync.Model.OnLogin] Can't connect: (Calling: https://ws.ovh.com/hubic/r5/rest.dispatcher/getHubics, Status: NOT_FOUND) Compte non trouvé<br />
[WARN | 1/2/2014 11:16:15 AM | Ovh.Hubic.Sync.AI.Indexer.Index] Synchronization default has never been synced. Synchronize it from scratch.<br />
[INFO | 1/2/2014 11:16:15 AM | Ovh.Hubic.Sync.AI.ChangeProcessor.DoLocalMkdir] Local mkdir: /home/vous/hubic/Videos (for {default}/Videos)<br />
[INFO | 1/2/2014 11:16:15 AM | Ovh.Hubic.Sync.AI.ChangeProcessor.DoLocalMkdir] Local mkdir: /home/vous/hubic/Images (for {default}/Images)<br />
[INFO | 1/2/2014 11:16:15 AM | Ovh.Hubic.Sync.AI.ChangeProcessor.DoLocalMkdir] Local mkdir: /home/vous/hubic/Documents (for {default}/Documents)<br />
[INFO | 1/2/2014 11:16:15 AM | Ovh.Hubic.Sync.AI.ChangeProcessor.DoSetSyncTag] Set synchronization tag on default.</code></p>
<p>Pour la partie concernant DBus, il est possible que cela marche sans la faire, à vous de tester. Le plus important est de bien lancer d&rsquo;abord le service et le login ensuite.</p>
<p>(note : Merci également à MLO où j&rsquo;ai trouvé des infos : <a href="http://www.mageialinux-online.org/forum/topic-16704+synchronization-hubic.php" target="_blank">http://www.mageialinux-online.org/forum/topic-16704+synchronization-hubic.php</a> )</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Installer%20HubiC%20sur%20Fedora%2019%20-%20http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;t=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=T%C3%A9l%C3%A9charger%20le%20.tar.gz%20ici%20%3A%20http%3A%2F%2Fmir7.ovh.net%2Fovh-applications%2Fhubic%2FhubiC-Linux%2F1.1.13%2F%0D%0A%0D%0AL%27extraire%20%28tar%20zvxf%29.%20Aller%20dans%20le%20dossier%20en%20console%20et%20taper%20%3A%0D%0A%0D%0A%0D%0Asudo%20make%0D%0A%0D%0A%28cela%20suppose%20que%20vous%20avez%20make%20install%C3%A9...%29%0D%0A%0D%0AInstaller%20mono%2C%20mo" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019&amp;bodytext=T%C3%A9l%C3%A9charger%20le%20.tar.gz%20ici%20%3A%20http%3A%2F%2Fmir7.ovh.net%2Fovh-applications%2Fhubic%2FhubiC-Linux%2F1.1.13%2F%0D%0A%0D%0AL%27extraire%20%28tar%20zvxf%29.%20Aller%20dans%20le%20dossier%20en%20console%20et%20taper%20%3A%0D%0A%0D%0A%0D%0Asudo%20make%0D%0A%0D%0A%28cela%20suppose%20que%20vous%20avez%20make%20install%C3%A9...%29%0D%0A%0D%0AInstaller%20mono%2C%20mo" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019&amp;notes=T%C3%A9l%C3%A9charger%20le%20.tar.gz%20ici%20%3A%20http%3A%2F%2Fmir7.ovh.net%2Fovh-applications%2Fhubic%2FhubiC-Linux%2F1.1.13%2F%0D%0A%0D%0AL%27extraire%20%28tar%20zvxf%29.%20Aller%20dans%20le%20dossier%20en%20console%20et%20taper%20%3A%0D%0A%0D%0A%0D%0Asudo%20make%0D%0A%0D%0A%28cela%20suppose%20que%20vous%20avez%20make%20install%C3%A9...%29%0D%0A%0D%0AInstaller%20mono%2C%20mo" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019&amp;annotation=T%C3%A9l%C3%A9charger%20le%20.tar.gz%20ici%20%3A%20http%3A%2F%2Fmir7.ovh.net%2Fovh-applications%2Fhubic%2FhubiC-Linux%2F1.1.13%2F%0D%0A%0D%0AL%27extraire%20%28tar%20zvxf%29.%20Aller%20dans%20le%20dossier%20en%20console%20et%20taper%20%3A%0D%0A%0D%0A%0D%0Asudo%20make%0D%0A%0D%0A%28cela%20suppose%20que%20vous%20avez%20make%20install%C3%A9...%29%0D%0A%0D%0AInstaller%20mono%2C%20mo" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Installer%20HubiC%20sur%20Fedora%2019&amp;url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&title=Installer%20HubiC%20sur%20Fedora%2019&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;t=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;title=Installer%20HubiC%20sur%20Fedora%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Finstaller-hubic-sur-fedora-19-717&amp;submitHeadline=Installer%20HubiC%20sur%20Fedora%2019&amp;submitSummary=T%C3%A9l%C3%A9charger%20le%20.tar.gz%20ici%20%3A%20http%3A%2F%2Fmir7.ovh.net%2Fovh-applications%2Fhubic%2FhubiC-Linux%2F1.1.13%2F%0D%0A%0D%0AL%27extraire%20%28tar%20zvxf%29.%20Aller%20dans%20le%20dossier%20en%20console%20et%20taper%20%3A%0D%0A%0D%0A%0D%0Asudo%20make%0D%0A%0D%0A%28cela%20suppose%20que%20vous%20avez%20make%20install%C3%A9...%29%0D%0A%0D%0AInstaller%20mono%2C%20mo&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/installer-hubic-sur-fedora-19-717/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#171;&#160;Press Control-D to continue&#160;&#187; error message at Fedora Startup</title>
		<link>http://trollfactory.fr/press-control-d-to-continue-error-message-at-fedora-startup-714</link>
		<comments>http://trollfactory.fr/press-control-d-to-continue-error-message-at-fedora-startup-714#comments</comments>
		<pubDate>Wed, 01 Jan 2014 13:53:16 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=714</guid>
		<description><![CDATA[Just a quick tip, it seems that in some cases, when Fedora startup scripts do not manage to do a fsck check on the root volume, they will not start X server and just display a message saying something went wrong and you cannot either type the root password and figure it out yourself or [...]]]></description>
				<content:encoded><![CDATA[<p>Just a quick tip, it seems that in some cases, when Fedora startup scripts do not manage to do a fsck check on the root volume, they will not start X server and just display a message saying something went wrong and you cannot either type the root password and figure it out yourself or press Control-D to continue.</p>
<p>So, this might not be the right solution for you but check out whether you got something like that in your logs : </p>
<p><code><br />
- Unit systemd-remount-fs.service has begun starting up.<br />
Jan 01 15:06:08 fedora-user.localdomain systemd[1]: Unit systemd-fsck-root.service entered failed state.<br />
Jan 01 15:06:08 fedora-user.localdomain systemd[1]: Failed to start File System Check on Root Device.<br />
</code></p>
<p>In order to check that, when you&rsquo;re asked whether to type Ctrl-D or your root password, at startup, type the root password and press Enter.</p>
<p>Then, type &laquo;&nbsp;journcalctl -xb&nbsp;&raquo; and look at the red lines to see if you have something like that. Note that the newest lines will be at the bottom, so you might have to scroll quite a bit. Also note that you might have red lines that are not very important and not what you&rsquo;re looking for, don&rsquo;t stop at the first red lines.</p>
<p>If you do have some error messages like the ones I pasted above, the only way I found was to boot into a LiveUSB, access my LVM Group using this very useful how-to: http://stevedowe.me/2012/01/how-to-recover-that-encrypted-ext4-formatted-logical-volume-you-allowed-fedora-to-create.html<br />
and run the fsck.ext4 check so that it corrects the partition corruptions / errors that were present.</p>
<p>I then rebooted&#8230; and everything went smooth !</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup%20-%20http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;t=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Just%20a%20quick%20tip%2C%20it%20seems%20that%20in%20some%20cases%2C%20when%20Fedora%20startup%20scripts%20do%20not%20manage%20to%20do%20a%20fsck%20check%20on%20the%20root%20volume%2C%20they%20will%20not%20start%20X%20server%20and%20just%20display%20a%20message%20saying%20something%20went%20wrong%20and%20you%20cannot%20either%20type%20the%20root%20pa" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;bodytext=Just%20a%20quick%20tip%2C%20it%20seems%20that%20in%20some%20cases%2C%20when%20Fedora%20startup%20scripts%20do%20not%20manage%20to%20do%20a%20fsck%20check%20on%20the%20root%20volume%2C%20they%20will%20not%20start%20X%20server%20and%20just%20display%20a%20message%20saying%20something%20went%20wrong%20and%20you%20cannot%20either%20type%20the%20root%20pa" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;notes=Just%20a%20quick%20tip%2C%20it%20seems%20that%20in%20some%20cases%2C%20when%20Fedora%20startup%20scripts%20do%20not%20manage%20to%20do%20a%20fsck%20check%20on%20the%20root%20volume%2C%20they%20will%20not%20start%20X%20server%20and%20just%20display%20a%20message%20saying%20something%20went%20wrong%20and%20you%20cannot%20either%20type%20the%20root%20pa" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;annotation=Just%20a%20quick%20tip%2C%20it%20seems%20that%20in%20some%20cases%2C%20when%20Fedora%20startup%20scripts%20do%20not%20manage%20to%20do%20a%20fsck%20check%20on%20the%20root%20volume%2C%20they%20will%20not%20start%20X%20server%20and%20just%20display%20a%20message%20saying%20something%20went%20wrong%20and%20you%20cannot%20either%20type%20the%20root%20pa" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;t=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;title=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fpress-control-d-to-continue-error-message-at-fedora-startup-714&amp;submitHeadline=%22Press%20Control-D%20to%20continue%22%20error%20message%20at%20Fedora%20Startup&amp;submitSummary=Just%20a%20quick%20tip%2C%20it%20seems%20that%20in%20some%20cases%2C%20when%20Fedora%20startup%20scripts%20do%20not%20manage%20to%20do%20a%20fsck%20check%20on%20the%20root%20volume%2C%20they%20will%20not%20start%20X%20server%20and%20just%20display%20a%20message%20saying%20something%20went%20wrong%20and%20you%20cannot%20either%20type%20the%20root%20pa&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/press-control-d-to-continue-error-message-at-fedora-startup-714/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MTP on Fedora Linux 19 // Le MTP sur Fedora Linux 19</title>
		<link>http://trollfactory.fr/mtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710</link>
		<comments>http://trollfactory.fr/mtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710#comments</comments>
		<pubDate>Mon, 09 Dec 2013 21:58:56 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=710</guid>
		<description><![CDATA[Version en Français en bas de la version Anglaise&#8230; In order to get MTP to work on Fedora 19 with Nautilus (sorry if you&#8217;re using another file browser, I did not test other ones (does not work with Thunar, that I normally use, I just switch to Nautilus for MTP and then back to Thunar&#8230;) [...]]]></description>
				<content:encoded><![CDATA[<p>Version en Français en bas de la version Anglaise&#8230; </p>
<p>In order to get MTP to work on Fedora 19 with Nautilus (sorry if you&rsquo;re using another file browser, I did not test other ones (does not work with Thunar, that I normally use, I just switch to Nautilus for MTP and then back to Thunar&#8230;) run the following command :</p>
<p><code>sudo yum install -y gvfs-mtp</code></p>
<p>Maybe online forums will tell you &laquo;&nbsp;install gvfs&nbsp;&raquo; but <b>in fact this is not enough</b>! You have to install <strong>gvfs-mtp</strong> in order to get it to work.</p>
<p>Note that it works with MTP, not PTP, at least for me&#8230;</p>
<p>===============================================</p>
<p>Afin de faire marcher le MTP sur Fedora 19 avec Nautilus (désolé si vous utilisez un autre gestionnaire de fichier, je n&rsquo;ai testé qu&rsquo;avec Nautilus (je sais que ça ne fonctionne pas avec Thunar notamment, que j&rsquo;utilise notamment&#8230; sauf pour le MTP, du coup)), lancez la commande suivante dans un terminal :<br />
<code>sudo yum install -y gvfs-mtp</code></p>
<p>Vous trouverez plein de forums en ligne qui vous diront &laquo;&nbsp;installe gvfs&nbsp;&raquo; mais ça ne suffit pas ! Il faut installer <strong>gvfs-mtp</strong> afin que ça fonctionne vraiment.</p>
<p>Remarque : Ça ne fonctionne qu&rsquo;avec MTP, pas PTP&#8230; en tout cas pour moi&#8230;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019%20-%20http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;t=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Version%20en%20Fran%C3%A7ais%20en%20bas%20de%20la%20version%20Anglaise...%20%0D%0A%0D%0AIn%20order%20to%20get%20MTP%20to%20work%20on%20Fedora%2019%20with%20Nautilus%20%28sorry%20if%20you%27re%20using%20another%20file%20browser%2C%20I%20did%20not%20test%20other%20ones%20%28does%20not%20work%20with%20Thunar%2C%20that%20I%20normally%20use%2C%20I%20just%20switch%20to%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;bodytext=Version%20en%20Fran%C3%A7ais%20en%20bas%20de%20la%20version%20Anglaise...%20%0D%0A%0D%0AIn%20order%20to%20get%20MTP%20to%20work%20on%20Fedora%2019%20with%20Nautilus%20%28sorry%20if%20you%27re%20using%20another%20file%20browser%2C%20I%20did%20not%20test%20other%20ones%20%28does%20not%20work%20with%20Thunar%2C%20that%20I%20normally%20use%2C%20I%20just%20switch%20to%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;notes=Version%20en%20Fran%C3%A7ais%20en%20bas%20de%20la%20version%20Anglaise...%20%0D%0A%0D%0AIn%20order%20to%20get%20MTP%20to%20work%20on%20Fedora%2019%20with%20Nautilus%20%28sorry%20if%20you%27re%20using%20another%20file%20browser%2C%20I%20did%20not%20test%20other%20ones%20%28does%20not%20work%20with%20Thunar%2C%20that%20I%20normally%20use%2C%20I%20just%20switch%20to%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;annotation=Version%20en%20Fran%C3%A7ais%20en%20bas%20de%20la%20version%20Anglaise...%20%0D%0A%0D%0AIn%20order%20to%20get%20MTP%20to%20work%20on%20Fedora%2019%20with%20Nautilus%20%28sorry%20if%20you%27re%20using%20another%20file%20browser%2C%20I%20did%20not%20test%20other%20ones%20%28does%20not%20work%20with%20Thunar%2C%20that%20I%20normally%20use%2C%20I%20just%20switch%20to%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;t=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;title=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fmtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710&amp;submitHeadline=MTP%20on%20Fedora%20Linux%2019%20%2F%2F%20Le%20MTP%20sur%20Fedora%20Linux%2019&amp;submitSummary=Version%20en%20Fran%C3%A7ais%20en%20bas%20de%20la%20version%20Anglaise...%20%0D%0A%0D%0AIn%20order%20to%20get%20MTP%20to%20work%20on%20Fedora%2019%20with%20Nautilus%20%28sorry%20if%20you%27re%20using%20another%20file%20browser%2C%20I%20did%20not%20test%20other%20ones%20%28does%20not%20work%20with%20Thunar%2C%20that%20I%20normally%20use%2C%20I%20just%20switch%20to%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/mtp-on-fedora-linux-19-le-mtp-sur-fedora-linux-19-710/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyboard shortcuts are gone / not working after XFCE upgrade to 4.10 // Raccourcis claviers ne fonctionnent plus après mise à jour vers XFCE 4.10</title>
		<link>http://trollfactory.fr/keyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704</link>
		<comments>http://trollfactory.fr/keyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704#comments</comments>
		<pubDate>Thu, 07 Nov 2013 16:50:20 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=704</guid>
		<description><![CDATA[(version Française en bas de la version Anglaise) Keyboard shortcuts have been a thing that&#8217;s being broken at one upgrade over two on XFCE for a while, but there&#8217;s usually a way to find the workaround on the Internets. Except&#8230; This time. (Murphy&#8217;s law). I have not had any chance finding the answer to this [...]]]></description>
				<content:encoded><![CDATA[<p>(version Française en bas de la version Anglaise)</p>
<p>Keyboard shortcuts have been a thing that&rsquo;s being broken at one upgrade over two on XFCE for a while, but there&rsquo;s usually a way to find the workaround on the Internets.</p>
<p>Except&#8230; This time. (Murphy&rsquo;s law). I have not had any chance finding the answer to this new broken keyboard shortcuts (ALT + F2, among others) <strong>after upgrading to XFCE 4.10</strong> (on Fedora Linux 19 x64, but that might probably apply for other distros as well :D).</p>
<p>So, not sure if it&rsquo;s going to work for you, but after trying one by one to remove files of my XFCE config folder, I found that this one is the faulty: <strong>~/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml</strong></p>
<p><strong>Removing it</strong> (outside of a XFCE session, in TTY or using another Desktop Manager for instance) and restarting XFCE has <strong>solved the issue for me</strong>.</p>
<p>Just for reference, here&rsquo;s the content of the file in my case : <a href="http://pastebin.com/y2Mdiwyt">http://pastebin.com/y2Mdiwyt</a> (in case someone is interested in debugging XFCE 4.10 <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> ).</p>
<p><strong>IF THIS DOES NOT WORK FOR YOU</strong>, here&rsquo;s a tip: make a backup of your .config/xfce4 directory (<em>cp ~/.config/xfce4 ~/.config/xfce4_bak -vR</em>) and try to remove one by one <strong>files located in <strong>~/.config/xfce4/xfconf/xfce-perchannel-xml/</strong></strong> and restart XFCE4 between each attempt, it will most likely come from one of them. Once you&rsquo;ve found the faulty one, restore the rest of your backup and remove the one you&rsquo;ve found is faulty. That&rsquo;s what I did to figure out displays.xml was causing the bug.</p>
<p>During your tests, it&rsquo;s also best to do a <em>mv ~/.cache/sessions ~/.cache/sessions_bak</em> in order not to interfere with your attemps, and restore it at the end.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Et en bon vieux Français pour les Anglophobes (et les autres) :</p>
<p>Les raccourcis claviers ont toujours été une partie de XFCE4 qui est plus ou moins cassée à chaque mise à jour&#8230; Cependant, il y a généralement la solution quelque-part sur les Internetz&#8230;</p>
<p>Sauf&#8230; cette fois ! (Loi de Murphy). Ou alors je n&rsquo;ai juste pas eu de chance en cherchant&#8230; Mais impossible de trouver de bidouille pour rectifier le souci cette fois-ci. <img src="//trollfactory.fr/wp-includes/images/smilies/icon_sad.gif" alt=":(" class="wp-smiley" /> Le souci ? Après <strong>mise à jour de XFCE vers la version 4.10 plus aucun raccourci clavier géré par XFCE</strong> ne fonctionne (ALT + F2 notamment).</p>
<p>Du coup, pas sûr que cela fonctionne pour vous, mais voici comment j&rsquo;ai résolu le problème dans mon cas précis et après divers tentatives : supprimer le fichier <strong>~/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml</strong></p>
<p>La suppression de ce fichier (en dehors d&rsquo;une session XFCE, en TTY ou depuis un autre gestionnaire de bureau (KDE, Gnome&#8230;)) et redémarrage de XFCE4 sont venus à bout de mon souci <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>Si ça en intéresse certains, voici ce que contenait mon fichier : <a href="http://pastebin.com/y2Mdiwyt">http://pastebin.com/y2Mdiwyt</a> (des fois que quelqu&rsquo;un ait envie de débugger XFCE :))</p>
<p>SI CELA NE FONCTIONNE PAS POUR VOUS, je vous conseille : sauvegarde de votre dossier .config/xfce4 (<em>cp ~/.config/xfce4 ~/.config/xfce4_bak -vR</em>), puis tentez de supprimer un par un (en redémarrage XFCE4 entre chaque (juste réouvrir la session XFCE4)) les fichiers situés dans le dossier :<strong> <strong>~/.config/xfce4/xfconf/xfce-perchannel-xml/</strong></strong></p>
<p>Cela viendra probablement d&rsquo;un de ces fichiers <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> Une fois que vous avez trouvé celui qui fait planter. Remettez votre dossier xfce4 original et supprimez ce fichier et cela devrait marcher <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> C&rsquo;est ce qui m&rsquo;a permis de trouver le fichier, dans mon cas.</p>
<p>De plus, pendant que vous cherchez le fichier coupable, je vous conseille d&rsquo;aussi virer temporairement le cache de session : <em>mv ~/.cache/sessions ~/.cache/sessions_bak</em> et le restaurer une fois le bug trouvé.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10%20-%20http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;t=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=%28version%20Fran%C3%A7aise%20en%20bas%20de%20la%20version%20Anglaise%29%0D%0A%0D%0AKeyboard%20shortcuts%20have%20been%20a%20thing%20that%27s%20being%20broken%20at%20one%20upgrade%20over%20two%20on%20XFCE%20for%20a%20while%2C%20but%20there%27s%20usually%20a%20way%20to%20find%20the%20workaround%20on%20the%20Internets.%0D%0A%0D%0AExcept...%20This%20time.%20%28Mu" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;bodytext=%28version%20Fran%C3%A7aise%20en%20bas%20de%20la%20version%20Anglaise%29%0D%0A%0D%0AKeyboard%20shortcuts%20have%20been%20a%20thing%20that%27s%20being%20broken%20at%20one%20upgrade%20over%20two%20on%20XFCE%20for%20a%20while%2C%20but%20there%27s%20usually%20a%20way%20to%20find%20the%20workaround%20on%20the%20Internets.%0D%0A%0D%0AExcept...%20This%20time.%20%28Mu" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;notes=%28version%20Fran%C3%A7aise%20en%20bas%20de%20la%20version%20Anglaise%29%0D%0A%0D%0AKeyboard%20shortcuts%20have%20been%20a%20thing%20that%27s%20being%20broken%20at%20one%20upgrade%20over%20two%20on%20XFCE%20for%20a%20while%2C%20but%20there%27s%20usually%20a%20way%20to%20find%20the%20workaround%20on%20the%20Internets.%0D%0A%0D%0AExcept...%20This%20time.%20%28Mu" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;annotation=%28version%20Fran%C3%A7aise%20en%20bas%20de%20la%20version%20Anglaise%29%0D%0A%0D%0AKeyboard%20shortcuts%20have%20been%20a%20thing%20that%27s%20being%20broken%20at%20one%20upgrade%20over%20two%20on%20XFCE%20for%20a%20while%2C%20but%20there%27s%20usually%20a%20way%20to%20find%20the%20workaround%20on%20the%20Internets.%0D%0A%0D%0AExcept...%20This%20time.%20%28Mu" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;t=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;title=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fkeyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704&amp;submitHeadline=Keyboard%20shortcuts%20are%20gone%20%2F%20not%20working%20after%20XFCE%20upgrade%20to%204.10%20%2F%2F%20Raccourcis%20claviers%20ne%20fonctionnent%20plus%20apr%C3%A8s%20mise%20%C3%A0%20jour%20vers%20XFCE%204.10&amp;submitSummary=%28version%20Fran%C3%A7aise%20en%20bas%20de%20la%20version%20Anglaise%29%0D%0A%0D%0AKeyboard%20shortcuts%20have%20been%20a%20thing%20that%27s%20being%20broken%20at%20one%20upgrade%20over%20two%20on%20XFCE%20for%20a%20while%2C%20but%20there%27s%20usually%20a%20way%20to%20find%20the%20workaround%20on%20the%20Internets.%0D%0A%0D%0AExcept...%20This%20time.%20%28Mu&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/keyboard-shortcuts-are-gone-not-working-after-xfce-upgrade-to-4-10-raccourcis-claviers-ne-fonctionnent-plus-apres-mise-a-jour-vers-xfce-4-10-704/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#171;&#160;No files found.&#160;&#187; error during Cyanogen Installation on Galaxy S</title>
		<link>http://trollfactory.fr/no-files-found-error-during-cyanogen-installation-on-galaxy-s-697</link>
		<comments>http://trollfactory.fr/no-files-found-error-during-cyanogen-installation-on-galaxy-s-697#comments</comments>
		<pubDate>Thu, 02 May 2013 18:21:49 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[cyanogenmod]]></category>
		<category><![CDATA[jelly bean]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=697</guid>
		<description><![CDATA[Just a quick post to make the information widely available. I will see later if I can directly edit the CM wiki but for now: If you are following the CyanogenMod Galaxy S Installation Guide, you might run into some issues. Indeed, at the step where you have to do &#171;&#160;Wipe data / Factory reset&#160;&#187; [...]]]></description>
				<content:encoded><![CDATA[<p>Just a quick post to make the information widely available. I will see later if I can directly edit the CM wiki but for now:</p>
<p>If you are <strong>following the <a title="CyanogenMod Galaxy S Installation Guide" href="http://wiki.cyanogenmod.org/w/Install_CM_for_galaxysmtd" target="_blank">CyanogenMod Galaxy S Installation Guide</a>,</strong> you might run into some <strong>issues</strong>.</p>
<p>Indeed, at the step where you have to do &laquo;&nbsp;Wipe data / Factory reset&nbsp;&raquo; and then &laquo;&nbsp;Install zip from SDCard&nbsp;&raquo; you will likely have an error message: <strong>&laquo;&nbsp;No files found.&nbsp;&raquo;</strong></p>
<p>And, until recently, I thought I was simply skewed&#8230;</p>
<p>Guess what? Not exactly! For some reason, <strong>you have to select the &laquo;&nbsp;power off&nbsp;&raquo; option </strong>in the root menu of the Semaphore recovery. Then, re-power on the phone and go into recovery mode&nbsp;&raquo; (using the 3 buttons combo : Ctrl Up + Power + Home) and re-try&#8230; and it&rsquo;ll certainly work then.</p>
<p><strong>I don&rsquo;t know why, don&rsquo;t ask, it&rsquo;s magic. </strong></p>
<p>&nbsp;</p>
<p><em>(actually, it could an issue with reloading the partition table, from the GNU/Linux knowledge I have <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" />  But I don&rsquo;t know why it did not do that before recent versions of CM/Semaphore&#8230;)</em></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S%20-%20http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;t=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Just%20a%20quick%20post%20to%20make%20the%20information%20widely%20available.%20I%20will%20see%20later%20if%20I%20can%20directly%20edit%20the%20CM%20wiki%20but%20for%20now%3A%0D%0A%0D%0AIf%20you%20are%20following%20the%20CyanogenMod%20Galaxy%20S%20Installation%20Guide%2C%20you%20might%20run%20into%20some%20issues.%0D%0A%0D%0AIndeed%2C%20at%20the%20step%20w" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;bodytext=Just%20a%20quick%20post%20to%20make%20the%20information%20widely%20available.%20I%20will%20see%20later%20if%20I%20can%20directly%20edit%20the%20CM%20wiki%20but%20for%20now%3A%0D%0A%0D%0AIf%20you%20are%20following%20the%20CyanogenMod%20Galaxy%20S%20Installation%20Guide%2C%20you%20might%20run%20into%20some%20issues.%0D%0A%0D%0AIndeed%2C%20at%20the%20step%20w" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;notes=Just%20a%20quick%20post%20to%20make%20the%20information%20widely%20available.%20I%20will%20see%20later%20if%20I%20can%20directly%20edit%20the%20CM%20wiki%20but%20for%20now%3A%0D%0A%0D%0AIf%20you%20are%20following%20the%20CyanogenMod%20Galaxy%20S%20Installation%20Guide%2C%20you%20might%20run%20into%20some%20issues.%0D%0A%0D%0AIndeed%2C%20at%20the%20step%20w" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;annotation=Just%20a%20quick%20post%20to%20make%20the%20information%20widely%20available.%20I%20will%20see%20later%20if%20I%20can%20directly%20edit%20the%20CM%20wiki%20but%20for%20now%3A%0D%0A%0D%0AIf%20you%20are%20following%20the%20CyanogenMod%20Galaxy%20S%20Installation%20Guide%2C%20you%20might%20run%20into%20some%20issues.%0D%0A%0D%0AIndeed%2C%20at%20the%20step%20w" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;t=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;title=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fno-files-found-error-during-cyanogen-installation-on-galaxy-s-697&amp;submitHeadline=%22No%20files%20found.%22%20error%20during%20Cyanogen%20Installation%20on%20Galaxy%20S&amp;submitSummary=Just%20a%20quick%20post%20to%20make%20the%20information%20widely%20available.%20I%20will%20see%20later%20if%20I%20can%20directly%20edit%20the%20CM%20wiki%20but%20for%20now%3A%0D%0A%0D%0AIf%20you%20are%20following%20the%20CyanogenMod%20Galaxy%20S%20Installation%20Guide%2C%20you%20might%20run%20into%20some%20issues.%0D%0A%0D%0AIndeed%2C%20at%20the%20step%20w&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/no-files-found-error-during-cyanogen-installation-on-galaxy-s-697/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Docs : les alineas // paragraph first line indent</title>
		<link>http://trollfactory.fr/google-docs-les-alineas-paragraph-first-line-indent-680</link>
		<comments>http://trollfactory.fr/google-docs-les-alineas-paragraph-first-line-indent-680#comments</comments>
		<pubDate>Thu, 30 Aug 2012 18:39:03 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[astuces]]></category>
		<category><![CDATA[alinea]]></category>
		<category><![CDATA[astuce]]></category>
		<category><![CDATA[ggdocs]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[google documents]]></category>
		<category><![CDATA[indent]]></category>
		<category><![CDATA[paragraph]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=680</guid>
		<description><![CDATA[English readers: See English version at the bottom of the French one &#160; &#160; Si vous cherchez sur Internet comment faire automatiquement des alineas dans Google Docs pour tous vos paragraphes, vous allez sûrement trouver plein de ressources qui vous disent d’aller éditer du CSS etc. &#8230; Non seulement la plupart des gens ne vont [...]]]></description>
				<content:encoded><![CDATA[<p><strong><span style="color: #0000ff;">English readers: See English version at the bottom of the French one</span></strong></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Si vous cherchez sur Internet comment faire automatiquement des alineas dans Google Docs pour tous vos paragraphes, vous allez sûrement trouver plein de ressources qui vous disent d’aller éditer du CSS etc. &#8230; Non seulement la plupart des gens ne vont pas comprendre grand chose à ce qu&rsquo;il sont en train de faire, mais en plus personnellement je n&rsquo;ai jamais trouvé cette option !</p>
<p>Alors voici une vraie méthode qui marche et qui est simple :</p>
<p>Mettez le curseur sur un de vos paragraphe (le curseur d&rsquo;écriture, pas juste votre pointeur)</p>
<p>Appliquer le style &laquo;&nbsp;Normal&nbsp;&raquo; à votre parapraphe en faisant : Format &gt; Style de paragraphe &gt; Normal &gt; Appliquer le style</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/google-docs-style-paragraphe.png"><img class="aligncenter size-medium wp-image-682" title="google-docs-style-paragraphe" src="//trollfactory.fr/wp-content/uploads/google-docs-style-paragraphe-300x216.png" alt="" width="300" height="216" /></a></p>
<p>Ensuite, déplacez la petite barre bleu horizontale en haut de la règle vers la droite de la largeur de l&rsquo;alinea que vous voulez (1cm par exemple):</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/gg-docs-aliena.png"><img class="aligncenter size-full wp-image-683" title="gg-docs-aliena" src="//trollfactory.fr/wp-content/uploads/gg-docs-aliena.png" alt="" width="279" height="109" /></a></p>
<p>Enfin, retournez dans les style de paragraphe mais cette fois choisissez &laquo;&nbsp;Mettre à jour&nbsp;&raquo;, comme ceci : Format &gt; Style de paragraphe &gt; Normal &gt; &laquo;&nbsp;Mettre à jour le texte Normal en fonction de&nbsp;&raquo;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/google-docs-style-paragraphe-update.png"><img class="aligncenter size-medium wp-image-684" title="google-docs-style-paragraphe-update" src="//trollfactory.fr/wp-content/uploads/google-docs-style-paragraphe-update-300x134.png" alt="" width="300" height="134" /></a></p>
<p>Et hop ! Tous les paragraphes qui ont ce style auront dorénavant un alinea !</p>
<p>&nbsp;</p>
<p><span style="color: #0000ff; font-size: 120%; text-align:center;">&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; English version &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</span></p>
<p>&nbsp;</p>
<p>If you look on the Internet how to automatically have indentation on the first line of a paragraph in Google Docs, you will certainly find a lot of resources telling you to edit some CSS etc. &#8230; Not only most of the people will not understand what they are doing by doing that but I also never found this option, personally !</p>
<p>So here is a way to do it that works and is simple:</p>
<p>Place the cursor inside one of your parapraphs (the writing / keyboard cursor, not you mouse pointer!)</p>
<p>Apply the &laquo;&nbsp;Normal&nbsp;&raquo; paragraph style to your current paragraph by doing : Format &gt; Paragraph styles &gt; Normal &gt; Apply</p>
<p>&nbsp;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/gg-docs-paragraph-style.png"><img class="aligncenter size-medium wp-image-685" title="gg-docs-paragraph-style" src="//trollfactory.fr/wp-content/uploads/gg-docs-paragraph-style-300x157.png" alt="" width="300" height="157" /></a></p>
<p>&nbsp;</p>
<p>Them, move the small blue bar at the top of the rule to the right. Move it of how many cm you want for your indentation (1cm for instance):</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/gg-docs-aliena.png"><img class="aligncenter" title="gg-docs-aliena" src="//trollfactory.fr/wp-content/uploads/gg-docs-aliena.png" alt="" width="279" height="109" /></a></p>
<p>Finally, go back in paragraph styles but this time choose the &laquo;&nbsp;Update to match&nbsp;&raquo; option: Format &gt; Paragraph styles &gt; Normal &gt; Update Normal to match</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/gg-docs-style-paragraph-update-match.png"><img class="aligncenter size-medium wp-image-686" title="gg-docs-style-paragraph-update-match" src="//trollfactory.fr/wp-content/uploads/gg-docs-style-paragraph-update-match-300x157.png" alt="" width="300" height="157" /></a></p>
<p>And here you go! All your paragraph that have this style (which is the default one) will now be indented!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent%20-%20http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;t=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=English%20readers%3A%20See%20English%20version%20at%20the%20bottom%20of%20the%20French%20one%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ASi%20vous%20cherchez%20sur%20Internet%20comment%20faire%20automatiquement%20des%20alineas%20dans%20Google%20Docs%20pour%20tous%20vos%20paragraphes%2C%20vous%20allez%20s%C3%BBrement%20trouver%20plein%20de%20ress" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;bodytext=English%20readers%3A%20See%20English%20version%20at%20the%20bottom%20of%20the%20French%20one%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ASi%20vous%20cherchez%20sur%20Internet%20comment%20faire%20automatiquement%20des%20alineas%20dans%20Google%20Docs%20pour%20tous%20vos%20paragraphes%2C%20vous%20allez%20s%C3%BBrement%20trouver%20plein%20de%20ress" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;notes=English%20readers%3A%20See%20English%20version%20at%20the%20bottom%20of%20the%20French%20one%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ASi%20vous%20cherchez%20sur%20Internet%20comment%20faire%20automatiquement%20des%20alineas%20dans%20Google%20Docs%20pour%20tous%20vos%20paragraphes%2C%20vous%20allez%20s%C3%BBrement%20trouver%20plein%20de%20ress" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;annotation=English%20readers%3A%20See%20English%20version%20at%20the%20bottom%20of%20the%20French%20one%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ASi%20vous%20cherchez%20sur%20Internet%20comment%20faire%20automatiquement%20des%20alineas%20dans%20Google%20Docs%20pour%20tous%20vos%20paragraphes%2C%20vous%20allez%20s%C3%BBrement%20trouver%20plein%20de%20ress" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;t=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;title=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fgoogle-docs-les-alineas-paragraph-first-line-indent-680&amp;submitHeadline=Google%20Docs%20%3A%20les%20alineas%20%2F%2F%20paragraph%20first%20line%20indent&amp;submitSummary=English%20readers%3A%20See%20English%20version%20at%20the%20bottom%20of%20the%20French%20one%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ASi%20vous%20cherchez%20sur%20Internet%20comment%20faire%20automatiquement%20des%20alineas%20dans%20Google%20Docs%20pour%20tous%20vos%20paragraphes%2C%20vous%20allez%20s%C3%BBrement%20trouver%20plein%20de%20ress&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/google-docs-les-alineas-paragraph-first-line-indent-680/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Humour à la Google (Suggest) &#8211; La compil&#8217;</title>
		<link>http://trollfactory.fr/humour-a-la-google-suggest-la-compil-601</link>
		<comments>http://trollfactory.fr/humour-a-la-google-suggest-la-compil-601#comments</comments>
		<pubDate>Sun, 19 Aug 2012 17:51:04 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[dimanche]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google suggest]]></category>
		<category><![CDATA[stereotype]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=601</guid>
		<description><![CDATA[Google Suggest est vraiment un outil génial pour se détendre le dimanche. À vrai dire, c&#8217;est la seule chose pour laquelle il est utile à mon goût mais passons, voici de quoi vous faire sourire même s&#8217;il pleut des cordes en plein été chez vous : &#160; Je vais dans un premier temps prendre des [...]]]></description>
				<content:encoded><![CDATA[<p>Google Suggest est vraiment un outil génial pour se détendre le dimanche.</p>
<p>À vrai dire, c&rsquo;est la seule chose pour laquelle il est utile à mon goût mais passons, voici de quoi vous faire sourire même s&rsquo;il pleut des cordes en plein été chez vous :</p>
<p>&nbsp;</p>
<p>Je vais dans un premier temps prendre des requêtes en <strong>français</strong>. Ce qui signifie qu&rsquo;à part les autres pays francophones, a priori, elles ont quand même majoritairement été tapées par des français&#8230; Eh bien, regardez-donc :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/les-francais.png"><img class="aligncenter size-full wp-image-647" title="les-francais" src="//trollfactory.fr/wp-content/uploads/les-francais.png" alt="" width="584" height="145" /></a></p>
<p>&nbsp;</p>
<p>Bon, on a une sacrée réputation. On déteste les anglais et on est pessimistes. Encore, ca passe. En effet certains pays n&rsquo;ont pas autant de chance que nous, quelques exemples :<br />
<a href="http://trollfactory.fr/wp-content/uploads/allemands.png"><img class="aligncenter size-full" title="allemands" src="//trollfactory.fr/wp-content/uploads/allemands.png" alt="allemands" /></a></p>
<p>Les allemands ont effectivement tué des juifs mais bon&#8230; Alors comme ça, il ne sauraient pas flirter ? En tant que geek, je leur pardonne <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>Les indiens eux, sont moches, et ont visiblement un autre cliché très fort, ils regardent au loin !<br />
<a href="http://trollfactory.fr/wp-content/uploads/indiens.png"><img class="aligncenter size-full" title="indiens" src="//trollfactory.fr/wp-content/uploads/indiens.png" alt="indiens" /></a></p>
<p>Quant aux italiens, ces racistes&#8230; (humour, hein)</p>
<p>On remarquera le passage des J.O et du foot récemment qui a un peu biaisé les statistiques de Google Suggest. Vous le verrez également dans d&rsquo;autres exemples un peu plus loins.<br />
<a href="http://trollfactory.fr/wp-content/uploads/italiens.png"><img class="aligncenter size-full" title="italiens" src="//trollfactory.fr/wp-content/uploads/italiens.png" alt="italiens" /></a></p>
<p>Côté stéréotypes, les portugais ne sont pas gâtés :<br />
<a href="http://trollfactory.fr/wp-content/uploads/portugais.png"><img class="aligncenter size-full" title="portugais" src="//trollfactory.fr/wp-content/uploads/portugais.png" alt="portugais" /></a></p>
<p>&nbsp;</p>
<p>Bon, il est évident que les populations du monde ne sont pas égales devant les suggestions de Google Suggest.</p>
<p>Vous allez voir que si on met la requête au féminin, les écarts sont encore plus flagrants !</p>
<p>Si certains pays sont plutôt gâtés :</p>
<p>&nbsp;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/bresiliennes.png"><img class="aligncenter size-full" title="bresiliennes" src="//trollfactory.fr/wp-content/uploads/bresiliennes.png" alt="bresiliennes" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/italiennes.png"><img class="aligncenter size-full" title="italiennes" src="//trollfactory.fr/wp-content/uploads/italiennes.png" alt="italiennes" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/indiennes.png"><img class="aligncenter size-full" title="indiennes" src="//trollfactory.fr/wp-content/uploads/indiennes.png" alt="indiennes" /></a></p>
<p>&nbsp;</p>
<p>D&rsquo;autres le sont carrément moins :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/anglaises.png"><img class="aligncenter size-full" title="anglaises" src="//trollfactory.fr/wp-content/uploads/anglaises.png" alt="anglaises" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/allemandes.png"><img class="aligncenter size-full" title="allemandes" src="//trollfactory.fr/wp-content/uploads/allemandes.png" alt="allemandes" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/portuguaises.png"><img class="aligncenter size-full" title="portugaises" src="//trollfactory.fr/wp-content/uploads/portugaises.png" alt="portugaises" /></a></p>
<p>Tandis que d&rsquo;autres intriguent par leurs qualités exceptionnelles :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/les-francaises.png"><img class="aligncenter size-full" title="les-francaises" src="//trollfactory.fr/wp-content/uploads/les-francaises.png" alt="les-francaises" /></a><br />
<em>Les Françaises de grossissent pas&#8230; j&rsquo;en connais pas mal qui aimeraient bien que Google ait raison.</em></p>
<p>Les <em>Françaises aiment les noirs ! Merde, suis fichu&#8230; Vais aller vivre au japon tiens, puisqu&rsquo;elles vieillissent pas là-bas :</em></p>
<p>&nbsp;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/japonaises.png"><img class="aligncenter size-full" title="japonaises" src="//trollfactory.fr/wp-content/uploads/japonaises.png" alt="japonaises" /></a></p>
<p><em>Les Japonaises, elles, ont toutes les qualit<em>é</em>s, en plus de ne pas grossirent elles ne vieillissent pas ! Par contre, elles auraient hérité des cowboys, étrange tout ça&#8230;</em></p>
<p>&nbsp;</p>
<p>Pour certains pays, on s&rsquo;inquiètera (ou on se ravira) du fait que même les requêtes en anglais disent la même chose :<br />
<a href="http://trollfactory.fr/wp-content/uploads/british-women.png"><img class="aligncenter size-full" title="british-women" src="//trollfactory.fr/wp-content/uploads/british-women.png" alt="british-women" /></a></p>
<p style="text-align: center;"><em>C&rsquo;est définitifs, les Anglaises sont classées &laquo;&nbsp;moches&nbsp;&raquo;.</em></p>
<p><a href="http://trollfactory.fr/wp-content/uploads/french-2.png"><img class="aligncenter size-full" title="french-2" src="//trollfactory.fr/wp-content/uploads/french-2.png" alt="french-2" /></a></p>
<p style="text-align: center;"><em>Et les Françaises définitivement &laquo;&nbsp;minces&nbsp;&raquo;.</em></p>
<p><a href="http://trollfactory.fr/wp-content/uploads/spanish-women.png"><img class="aligncenter size-full" title="spanish-women" src="//trollfactory.fr/wp-content/uploads/spanish-women.png" alt="spanish-women" /></a></p>
<p style="text-align: center;"><em> Les espagnoles, elles, qui n&rsquo;avaient aucune suggestion en Français, sont plutôt appréciées par les anglophones.</em></p>
<p>Allez, maintenant, je vous offre un gros packer cadeau de stéréotypes en tout genre, certains prévus d&rsquo;avance mais d&rsquo;autres bien marrants car louffoques et inattendus :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/amazoniens.png"><img class="aligncenter size-full" title="amazoniens" src="//trollfactory.fr/wp-content/uploads/amazoniens.png" alt="amazoniens" /></a></p>
<p>Le peuples des &laquo;&nbsp;Amazoniens&nbsp;&raquo;, vous connaissez, vous ?</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/australiens.png"><img class="aligncenter size-full" title="australiens" src="//trollfactory.fr/wp-content/uploads/australiens.png" alt="australiens" /></a></p>
<p>Ben oui, c&rsquo;est vrai ça, ils sont de l&rsquo;autre côté de la Terre après tout&#8230;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/brazilians.png"><img class="aligncenter size-full" title="brazilians" src="//trollfactory.fr/wp-content/uploads/brazilians.png" alt="brazilians" /></a></p>
<p>Bon, le jour où je travaille avec des Brésiliens je mets la réunion 30 minute plus tôt.</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/chinois.png"><img class="aligncenter size-full" title="chinois" src="//trollfactory.fr/wp-content/uploads/chinois.png" alt="chinois" /></a></p>
<p>Mais c&rsquo;est dégueuuuuu !</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/espagnols.png"><img class="aligncenter size-full" title="espagnols" src="//trollfactory.fr/wp-content/uploads/espagnols.png" alt="espagnols" /></a></p>
<p>Les espagnols se sont révoltés contre les Français ? What !?</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/french.png"><img class="aligncenter size-full" title="french" src="//trollfactory.fr/wp-content/uploads/french.png" alt="french" /></a></p>
<p>Damn, c&rsquo;est pas vrai !</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/hollandais.png"><img class="aligncenter size-full" title="hollandais" src="//trollfactory.fr/wp-content/uploads/hollandais.png" alt="hollandais" /></a></p>
<p>C&rsquo;est vrai qu&rsquo;ils sont pas petits &#8230;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/australians.png"><img class="aligncenter size-full" title="australians" src="//trollfactory.fr/wp-content/uploads/australians.png" alt="australians" /></a></p>
<p>En raison du climat peut-etre ?</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/indians.png"><img class="aligncenter size-full" title="indians" src="//trollfactory.fr/wp-content/uploads/indians.png" alt="indians" /></a></p>
<p>Avis partagés pour nos amis asiatiques on dirait.</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/spanish.png"><img class="aligncenter size-full" title="spanish" src="//trollfactory.fr/wp-content/uploads/spanish.png" alt="spanish" /></a></p>
<p>Damn, ils pas l&rsquo;air appréciés nos amis Espagnols.</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/tunisiens.png"><img class="aligncenter size-full" title="tunisiens" src="//trollfactory.fr/wp-content/uploads/tunisiens.png" alt="tunisiens" /></a></p>
<p>Tiens, peut-être parce-quelle sont rares, au Maghreb, non ?</p>
<p>Bon, mais ne désespérez par car en fait personne n&rsquo;a de suggestion sympa sur Google Suggest, pas même Google lui-même :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/pourquoi-google.png"><img class="aligncenter size-full" title="pourquoi-google" src="//trollfactory.fr/wp-content/uploads/pourquoi-google.png" alt="pourquoi-google" /></a></p>
<p>Ni les concurrents d&rsquo;ailleurs :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/pourquoi-microsoft.png"><img class="aligncenter size-full" title="pourquoi-microsoft" src="//trollfactory.fr/wp-content/uploads/pourquoi-microsoft.png" alt="pourquoi-microsoft" /></a></p>
<p><em>Bon, en même temps Microsoft, ils l&rsquo;ont un peu cherché hein&#8230;</em></p>
<p>&nbsp;</p>
<p>Bon, maintenant qu&rsquo;on a vexé tout le monde, on va passer sur des requêtes un peu plus &laquo;&nbsp;impersonnelles&nbsp;&raquo; pour oublier tout ça :<br />
<a href="http://trollfactory.fr/wp-content/uploads/philosophie.png"><img class="aligncenter size-full" title="philosophie" src="//trollfactory.fr/wp-content/uploads/philosophie.png" alt="philosophie" /></a></p>
<p>Philosophie, quand tu nous tiens&#8230;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/pourquoiil.png"><img class="aligncenter size-full" title="pourquoiil" src="//trollfactory.fr/wp-content/uploads/pourquoiil.png" alt="pourquoiil" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoiils.png"><img class="aligncenter size-full" title="pourquoiils" src="//trollfactory.fr/wp-content/uploads/pourquoiils.png" alt="pourquoiils" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoije.png"><img class="aligncenter size-full" title="pourquoije" src="//trollfactory.fr/wp-content/uploads/pourquoije.png" alt="pourquoije" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoiles.png"><img class="aligncenter size-full" title="pourquoiles" src="//trollfactory.fr/wp-content/uploads/pourquoiles.png" alt="pourquoiles" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoinous.png"><img class="aligncenter size-full" title="pourquoinous" src="//trollfactory.fr/wp-content/uploads/pourquoinous.png" alt="pourquoinous" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoi-s.png"><img class="aligncenter size-full" title="pourquoi-s" src="//trollfactory.fr/wp-content/uploads/pourquoi-s.png" alt="pourquoi-s" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoitu.png"><img class="aligncenter size-full" title="pourquoitu" src="//trollfactory.fr/wp-content/uploads/pourquoitu.png" alt="pourquoitu" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoi-u.png"><img class="aligncenter size-full" title="pourquoi-u" src="//trollfactory.fr/wp-content/uploads/pourquoi-u.png" alt="pourquoi-u" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoivous.png"><img class="aligncenter size-full" title="pourquoivous" src="//trollfactory.fr/wp-content/uploads/pourquoivous.png" alt="pourquoivous" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/pourquoielle.png"><img class="aligncenter size-full" title="pourquoielle" src="//trollfactory.fr/wp-content/uploads/pourquoielle.png" alt="pourquoielle" /></a><br />
Bon ça fait ressortir quelques complexes tout ça&#8230;</p>
<p>Et pour finir, toujours un grand plaisir, les relations humaines :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/ma-copine.png"><img class="aligncenter size-full" title="ma-copine" src="//trollfactory.fr/wp-content/uploads/ma-copine.png" alt="ma-copine" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/ma-femme.png"><img class="aligncenter size-full" title="ma-femme" src="//trollfactory.fr/wp-content/uploads/ma-femme.png" alt="ma-femme" /></a></p>
<p><em>Je suis particulèrement fier de ma trouvaille pour celle-ci : &laquo;&nbsp;Ma femme s&rsquo;appelle reviens&nbsp;&raquo;. Vraiment. Une pépite.</em></p>
<p>Pour, hey, on dirait pas que je suis pas équitable, voici les mêmes pour le genre opposé :</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/mon-copain.png"><img class="aligncenter size-full" title="mon-copain" src="//trollfactory.fr/wp-content/uploads/mon-copain.png" alt="mon-copain" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/mon-mari.png"><img class="aligncenter size-full" title="mon-mari" src="//trollfactory.fr/wp-content/uploads/mon-mari.png" alt="mon-mari" /></a></p>
<p>Ce qui est marrant ici, c&rsquo;est que si on compare avec les suggestions en anglais on a une différence assez marquée. Les requêtes au féminin font majoritairement ressortir des noms de bouquins / films tandis que que celles au masculins sont plus proches des résultats francophones :<br />
<a href="http://trollfactory.fr/wp-content/uploads/wife.png"><img class="aligncenter size-full" title="wife" src="//trollfactory.fr/wp-content/uploads/wife.png" alt="wife" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/girlfriend.png"><img class="aligncenter size-full" title="girlfriend" src="//trollfactory.fr/wp-content/uploads/girlfriend.png" alt="girlfriend" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/husband.png"><img class="aligncenter size-full" title="husband" src="//trollfactory.fr/wp-content/uploads/husband.png" alt="husband" /></a><br />
<a href="http://trollfactory.fr/wp-content/uploads/boyfriend.png"><img class="aligncenter size-full" title="boyfriend" src="//trollfactory.fr/wp-content/uploads/boyfriend.png" alt="boyfriend" /></a></p>
<p><em>J&rsquo;aime particulièrement cette dernière : &laquo;&nbsp;Mon copain a écrit un livre sur moi&nbsp;&raquo;. Allez, on finira sur cet instant poétique.</em><br />
<strong>Si vous en avez de meilleurs, postez-les dans les commentaires et je les ajouterai ! Bon dimanche !</strong></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27%20-%20http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;t=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Google%20Suggest%20est%20vraiment%20un%20outil%20g%C3%A9nial%20pour%20se%20d%C3%A9tendre%20le%20dimanche.%0D%0A%0D%0A%C3%80%20vrai%20dire%2C%20c%27est%20la%20seule%20chose%20pour%20laquelle%20il%20est%20utile%20%C3%A0%20mon%20go%C3%BBt%20mais%20passons%2C%20voici%20de%20quoi%20vous%20faire%20sourire%20m%C3%AAme%20s%27il%20pleut%20des%20cordes%20en%20plein%20%C3%A9t%C3%A9%20chez%20v" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;bodytext=Google%20Suggest%20est%20vraiment%20un%20outil%20g%C3%A9nial%20pour%20se%20d%C3%A9tendre%20le%20dimanche.%0D%0A%0D%0A%C3%80%20vrai%20dire%2C%20c%27est%20la%20seule%20chose%20pour%20laquelle%20il%20est%20utile%20%C3%A0%20mon%20go%C3%BBt%20mais%20passons%2C%20voici%20de%20quoi%20vous%20faire%20sourire%20m%C3%AAme%20s%27il%20pleut%20des%20cordes%20en%20plein%20%C3%A9t%C3%A9%20chez%20v" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;notes=Google%20Suggest%20est%20vraiment%20un%20outil%20g%C3%A9nial%20pour%20se%20d%C3%A9tendre%20le%20dimanche.%0D%0A%0D%0A%C3%80%20vrai%20dire%2C%20c%27est%20la%20seule%20chose%20pour%20laquelle%20il%20est%20utile%20%C3%A0%20mon%20go%C3%BBt%20mais%20passons%2C%20voici%20de%20quoi%20vous%20faire%20sourire%20m%C3%AAme%20s%27il%20pleut%20des%20cordes%20en%20plein%20%C3%A9t%C3%A9%20chez%20v" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;annotation=Google%20Suggest%20est%20vraiment%20un%20outil%20g%C3%A9nial%20pour%20se%20d%C3%A9tendre%20le%20dimanche.%0D%0A%0D%0A%C3%80%20vrai%20dire%2C%20c%27est%20la%20seule%20chose%20pour%20laquelle%20il%20est%20utile%20%C3%A0%20mon%20go%C3%BBt%20mais%20passons%2C%20voici%20de%20quoi%20vous%20faire%20sourire%20m%C3%AAme%20s%27il%20pleut%20des%20cordes%20en%20plein%20%C3%A9t%C3%A9%20chez%20v" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;t=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;title=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fhumour-a-la-google-suggest-la-compil-601&amp;submitHeadline=Humour%20%C3%A0%20la%20Google%20%28Suggest%29%20-%20La%20compil%27&amp;submitSummary=Google%20Suggest%20est%20vraiment%20un%20outil%20g%C3%A9nial%20pour%20se%20d%C3%A9tendre%20le%20dimanche.%0D%0A%0D%0A%C3%80%20vrai%20dire%2C%20c%27est%20la%20seule%20chose%20pour%20laquelle%20il%20est%20utile%20%C3%A0%20mon%20go%C3%BBt%20mais%20passons%2C%20voici%20de%20quoi%20vous%20faire%20sourire%20m%C3%AAme%20s%27il%20pleut%20des%20cordes%20en%20plein%20%C3%A9t%C3%A9%20chez%20v&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/humour-a-la-google-suggest-la-compil-601/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: USE concatenation NOT multiple echo / parameters</title>
		<link>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586</link>
		<comments>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586#comments</comments>
		<pubDate>Sun, 12 Aug 2012 22:21:54 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scripts, astuces, dév. web]]></category>
		<category><![CDATA[benchmark]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[print]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=586</guid>
		<description><![CDATA[Print vs. Echo I just went accross an interesting article about which of &#171;&#160;print&#160;&#187; or &#171;&#160;echo&#160;&#187; we should use in PHP. The author has benchmarked the two solutions (though the data are certainly a bit old) shows that, although there is not much difference between the two, echo seems to be more efficient. Great, I [...]]]></description>
				<content:encoded><![CDATA[<h2>Print vs. Echo</h2>
<p>I just went accross an interesting article about which of &laquo;&nbsp;print&nbsp;&raquo; or &laquo;&nbsp;echo&nbsp;&raquo; we should use in PHP.</p>
<p>The author has benchmarked the two solutions (though the data are certainly a bit old) shows that, although there is not much difference between the two, echo seems to be more efficient.</p>
<p>Great, I believe you.</p>
<h2>Echo multiple statements / arguments vs. Concatenation</h2>
<p>But at the end of the article, the author also suggest to use <strong>multiple parameters</strong> given to one echo statement <strong>instead of concatenation because concatenation is slow&#8230;</strong> bla bla&#8230;</p>
<p>As I have always been using concatenation (did not even know echo could take multiple arguments) and I never had any performance issue, I decided to check that and make a benchmark: echo 100,000 times two concatenated strings and do the same thing with two parameters and two echos statements&#8230;</p>
<p><strong>The benchmark was clear: concatenation IS FASTER</strong> than the two other solutions.</p>
<h2>String caching? Making a more relevant benchmark</h2>
<p>As it appeared a bit weird to me, having been doing Java / C# mostly recently (with their slow concatenation that recreated a new object blabla), I thought &laquo;&nbsp;maybe the PHP VM is <strong>caching</strong> the result of the concatenated string, thus the benchmark is not relevant&nbsp;&raquo;.</p>
<p>OK, let&rsquo;s check with a counter-possible-caching benchmark then:</p>
<pre>

$t0 = microtime(true);

define("MAX", 2000000);
File_put_ConTents("echobench._log", "");
function _log($str)
{
	File_put_ConTents("echobench._log", file_get_contents("echobench._log") . $str);
}

// Generating a bunch of string to concatenate to avoid PHP VM-caching
$strs = array();
for ($i=0; $i < MAX+1; $i++) { 
	$m = mt_rand(0, 200);
	$strs[$i] = '';
	for ($j=0; $j < $m; $j++) { 
		$strs[$i] .= chr(mt_rand(0, 255));
	}
}

// Loop where string concatenation caching is possible :
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" . "World! <br />";
}
$t2 = microtime(true);
_log("Concatenation, cached: " . ($t2-$t1) . "s\n");

// Loop where is is not :
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i] . $strs[$i + 1];
}
$t2 = microtime(true);
_log("Concatenation, not cached: " . ($t2-$t1) . "s\n");

// Other ways to display stuff, with and without caching possible each time:
$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i];
	echo $strs[$i + 1];
}
$t2 = microtime(true);
_log("Two echos, not cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" , "<br />";
	echo "World" , "<br />";
}
$t2 = microtime(true);
_log("Two echos, cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo $strs[$i], $strs[$i + 1];;
}
$t2 = microtime(true);
_log("Two parameters, not cached: " . ($t2-$t1) . "s\n");

$t1 = microtime(true);
for ($i=0; $i < MAX; $i++) { 
	echo "Hello" , "World!" , "<br />";
}
$t2 = microtime(true);
_log("Two parameters, cached: " . ($t2-$t1) . "s\n");

$t3 = microtime(true);

_log("Total benchmark time: " . ($t3-$t0)."\n");

</pre>
<p>I generated <strong>random strings</strong> at the beginning of the script. And I concatenate them after, in the loop. Thus, there is not even once the same concatenation happening, thus, no possible caching or whatever.</p>
<p>The benchmarked has been run on a 1.6GHz Atom processor, with the following command: </p>
<pre>sudo nice -n -19 php -q echobanchmark.php > /dev/null</pre>
<p>So the process was the most prioritized one on the OS and then there is no reason for any interference between the loops (moreover, the system was idle during the test (and there are 3 other virtual processors for doing whatever work the OS would need to do).</p>
<h3>And do you know the result?</h3>
<p>Here it goes: </p>
<p>Concatenation, cached: <strong>7.4381861686707s</strong><br />
Concatenation, not cached: <strong>9.9010219573975s</strong><br />
Two echos, not cached: <strong>10.4353120327s</strong><br />
Two echos, cached: <strong>14.883654117584s</strong><br />
Two parameters, not cached: <strong>10.179102897644s</strong><br />
Two parameters, cached: <strong>11.904446840286s</strong><br />
Total benchmark time: 928.97792601585</p>
<p><strong>Conclusion: Concatenation is fast, very fast.</strong> It is rougly <strong>30% faster</strong> than using the two parameters for echo (26.9268987% exactly) and roughly <strong>30% faster</strong> than two echo statements as well (28.720999% exactly) and <strong></p>
<p>The other conclusion here is that <srtong>PHP does not seem to be caching strings very well</strong>. Both the two-parameters and two-statements echo loops are <strong>much slower when using a fresh new string and much faster when using something from the previously generated array</strong>. The difference between cached / non-cached loop for the concatenation loop is also not that impressive if we observe that my &laquo;&nbsp;not cached&nbsp;&raquo; loop is using strings of random length that can go until 200 chars whereas the &laquo;&nbsp;cached&nbsp;&raquo; one is a very short string (so the difference of 2 seconds is certainly also due to the difference in length of the strings).</p>
<p>If you have any suggestion to improve the benchmark, feel free to post a comment.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters%20-%20http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;t=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;bodytext=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;notes=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;annotation=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;t=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;title=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fphp-use-concatenation-not-multiple-echo-parameters-586&amp;submitHeadline=PHP%3A%20USE%20concatenation%20NOT%20multiple%20echo%20%2F%20parameters&amp;submitSummary=Print%20vs.%20Echo%0D%0A%0D%0AI%20just%20went%20accross%20an%20interesting%20article%20about%20which%20of%20%22print%22%20or%20%22echo%22%20we%20should%20use%20in%20PHP.%0D%0A%0D%0AThe%20author%20has%20benchmarked%20the%20two%20solutions%20%28though%20the%20data%20are%20certainly%20a%20bit%20old%29%20shows%20that%2C%20although%20there%20is%20not%20much%20diffe&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/php-use-concatenation-not-multiple-echo-parameters-586/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Faire de l&#8217;énergie avec la mer/l&#8217;océan : Une bonne idée mise en pratique</title>
		<link>http://trollfactory.fr/faire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576</link>
		<comments>http://trollfactory.fr/faire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576#comments</comments>
		<pubDate>Sun, 04 Mar 2012 18:30:02 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[sciences]]></category>
		<category><![CDATA[bonne idée]]></category>
		<category><![CDATA[écolo]]></category>
		<category><![CDATA[écologie]]></category>
		<category><![CDATA[énergie]]></category>
		<category><![CDATA[ingéniérie]]></category>
		<category><![CDATA[mer]]></category>
		<category><![CDATA[océan]]></category>
		<category><![CDATA[searaser]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=576</guid>
		<description><![CDATA[À l&#8217;heure des énergies renouvelables, toutes les sources naturelles sont explorées, dès que la nature fournit un peu d&#8217;énergie sous un quelconque forme que ce soit, il y a toujours une personne pour essayer de concevoir un système pour transformer ça en notre bonne vieille électricité qui fait si bien fonctionner nos ordinateurs. Le problème, [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://trollfactory.fr/wp-content/uploads/searaser-diagram.png"><img class="size-full wp-image-579 alignright" title="searaser-diagram" src="//trollfactory.fr/wp-content/uploads/searaser-diagram.png" alt="" width="300" height="386" /></a><br />
À l&rsquo;heure des énergies renouvelables, toutes les sources naturelles sont explorées, dès que la nature fournit un peu d&rsquo;énergie sous un quelconque forme que ce soit, il y a toujours une personne pour essayer de concevoir un système pour transformer ça en notre bonne vieille électricité qui fait si bien fonctionner nos ordinateurs.</p>
<p>Le problème, c&rsquo;est que dans beaucoup de cas, la nature n&rsquo;a pas vraiment pensé à tout quand elle a fait les choses&#8230; et surtout, elle n&rsquo;a pas pensé à nous faire quelque-chose de simple à utiliser (la bougresse !).</p>
<p>En pratique, qu&rsquo;est-ce que cela veut dire ? Cela veut dire qu&rsquo;on va toujours savoi transformer de l&rsquo;énergie en électricité, on est assez bon pour faire ça, sauf que dans pas mal de cas, ça va coûter plus cher de mettre en place le système que de produire de l&rsquo;énergie autrement. Pire, certaines fois, on va consommer plus d&rsquo;énergie à faire fonctionner le système (ou à le maintenir ! Point très très important à ne pas négliger, comme nous allons le voir après) qu&rsquo;on ne va en produire.</p>
<p>C&rsquo;était un peu le cas de l&rsquo;énergie produite à partir de la <em>houle</em> (le mouvement des vagues sur la mer/l&rsquo;océan) jusqu&rsquo;à maintenant. Du fait que l&rsquo;environnement de production de l&rsquo;électricité était tout sauf fait pour y mettre des appareils de haute technologie (humidité + eau (humidité extrême !) + milieu corrosif), du coup les systèmes envisagés jusqu&rsquo;à présent coûtaient très chers à fabriquer et surtout à maintenir en fonctionnement (corrosion).</p>
<p>Mais heureusement, un ingénieur de génie (pléonasme ?) a finalement eu une <em>sacrée idée</em>, en utilisant une simple bouée (qui devrait pas trop souffrire de la corrosion et de l&rsquo;humidité) il a trouvé un moyen (à l&rsquo;aide d&rsquo;un piston) de <strong>pressuriser de l&rsquo;eau</strong> (stoker de l&rsquo;eau sous pression, en clair) et ce, sans intervention électrique / mécanique / électronique particulière.</p>
<p>Ah ! Bon, super ! Mais, vous allez me dire, qu&rsquo;est-ce qu&rsquo;on va en faire de notre Fanta maintenant qu&rsquo;il est plein de bulles ?<br />
Ben de l&rsquo;électricité ! Ce n&rsquo;est plus un secré qu&rsquo;on utilise des turbines et de l&rsquo;eau pour fabriquer de l&rsquo;électricité &#8230;</p>
<p>Cette solution a visiblement tout pour plaire puisque sa commercialisation est déjà prévue et qu&rsquo;elle sera soutenu par des instances anglo-saxones pour le développement durable (Department of Energy and Climate Change si ça vous intéresse !) et qu&rsquo;il y en as déjà un petit paquet qui ont été commandés par le gouvernement britanique pour mettre sur leurs loooongues côtés bien humides et bien houleuses !</p>
<p>L&rsquo;intérêt est aussi dans le fait que ce système permet de stocker de l&rsquo;énergie en vue d&rsquo;une régulation de la production sur l&rsquo;année (l&rsquo;hiver, hop, on branche le chauffage) en stockage tout bonnement l&rsquo;eau sous pression dans une bonne vieille bonbonne.</p>
<p>Ajoutons, pour finir, que contrairement au vent (qui varie quand même assez peu, mais qui varie) et au soleil (lui, il varie pas mal !), la houle a tendance a être quand même assez constante (si vous avez déjà vu l&rsquo;océan faire une &laquo;&nbsp;pause&nbsp;&raquo; et que vous avez pris une photo, envoyez-la moi, je publie immédiatement !).</p>
<p>Du coup, finissons sur un jeu de mot : c&rsquo;est effectivement une invention qui risque de faire des vagues sur le marché ! <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>Source &amp; détails ici : <a href="http://www.ecotricity.co.uk/our-green-energy/our-green-electricity/and-the-sea/seamills" target="_blank">SeaRaser</a></p>
<a href="http://trollfactory.fr/faire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576"><img src="//i.ytimg.com/vi/FfmgxNpprWQ/0.jpg" alt="YouTube Video"></a><br /><br /></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique%20-%20http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;t=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=%0D%0A%C3%80%20l%27heure%20des%20%C3%A9nergies%20renouvelables%2C%20toutes%20les%20sources%20naturelles%20sont%20explor%C3%A9es%2C%20d%C3%A8s%20que%20la%20nature%20fournit%20un%20peu%20d%27%C3%A9nergie%20sous%20un%20quelconque%20forme%20que%20ce%20soit%2C%20il%20y%20a%20toujours%20une%20personne%20pour%20essayer%20de%20concevoir%20un%20syst%C3%A8me%20pour%20transf" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;bodytext=%0D%0A%C3%80%20l%27heure%20des%20%C3%A9nergies%20renouvelables%2C%20toutes%20les%20sources%20naturelles%20sont%20explor%C3%A9es%2C%20d%C3%A8s%20que%20la%20nature%20fournit%20un%20peu%20d%27%C3%A9nergie%20sous%20un%20quelconque%20forme%20que%20ce%20soit%2C%20il%20y%20a%20toujours%20une%20personne%20pour%20essayer%20de%20concevoir%20un%20syst%C3%A8me%20pour%20transf" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;notes=%0D%0A%C3%80%20l%27heure%20des%20%C3%A9nergies%20renouvelables%2C%20toutes%20les%20sources%20naturelles%20sont%20explor%C3%A9es%2C%20d%C3%A8s%20que%20la%20nature%20fournit%20un%20peu%20d%27%C3%A9nergie%20sous%20un%20quelconque%20forme%20que%20ce%20soit%2C%20il%20y%20a%20toujours%20une%20personne%20pour%20essayer%20de%20concevoir%20un%20syst%C3%A8me%20pour%20transf" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;annotation=%0D%0A%C3%80%20l%27heure%20des%20%C3%A9nergies%20renouvelables%2C%20toutes%20les%20sources%20naturelles%20sont%20explor%C3%A9es%2C%20d%C3%A8s%20que%20la%20nature%20fournit%20un%20peu%20d%27%C3%A9nergie%20sous%20un%20quelconque%20forme%20que%20ce%20soit%2C%20il%20y%20a%20toujours%20une%20personne%20pour%20essayer%20de%20concevoir%20un%20syst%C3%A8me%20pour%20transf" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;t=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;title=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Ffaire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576&amp;submitHeadline=Faire%20de%20l%27%C3%A9nergie%20avec%20la%20mer%2Fl%27oc%C3%A9an%20%3A%20Une%20bonne%20id%C3%A9e%20mise%20en%20pratique&amp;submitSummary=%0D%0A%C3%80%20l%27heure%20des%20%C3%A9nergies%20renouvelables%2C%20toutes%20les%20sources%20naturelles%20sont%20explor%C3%A9es%2C%20d%C3%A8s%20que%20la%20nature%20fournit%20un%20peu%20d%27%C3%A9nergie%20sous%20un%20quelconque%20forme%20que%20ce%20soit%2C%20il%20y%20a%20toujours%20une%20personne%20pour%20essayer%20de%20concevoir%20un%20syst%C3%A8me%20pour%20transf&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/faire-de-lenergie-avec-la-merlocean-une-bonne-idee-mise-en-pratique-576/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spotify + Wine + Fedora 16 64 bits (FC16) : Solution !</title>
		<link>http://trollfactory.fr/spotify-wine-fedora-16-64-bits-fc16-solution-571</link>
		<comments>http://trollfactory.fr/spotify-wine-fedora-16-64-bits-fc16-solution-571#comments</comments>
		<pubDate>Sun, 29 Jan 2012 13:14:34 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=571</guid>
		<description><![CDATA[English readers : see at the bottom of the French version !! Bon, après avoir passé 1h45 à tenter de faire marcher une bonne fois pour toute Spotify via Wine sur ma Fedora 16 64 bits (alors que ça marchait parfaitement quand j&#8217;étais sur FC15 &#8230; ), je me sens l&#8217;envie de partager la solution, [...]]]></description>
				<content:encoded><![CDATA[<p><span style="color: #0000ff;"><strong>English readers : see at the bottom of the French version !!</strong></span></p>
<p>Bon, après avoir passé 1h45 à tenter de faire marcher une bonne fois pour toute Spotify via Wine sur ma Fedora 16 64 bits (alors que ça marchait parfaitement quand j&rsquo;étais sur FC15 &#8230; ), je me sens l&rsquo;envie de partager la solution, car aucune de celles trouvées sur le web ne marchait dans mon cas présent.</p>
<p>Symptômes :</p>
<ul>
<li>Soit vous n&rsquo;avez pas du tout de son dans Spotify</li>
<li>Soit vous entendez un espèce de grésillement correspondant de manière trèèèèès lointaine à la musique que vous devriez entendre</li>
</ul>
<p>&nbsp;</p>
<p>La solution est assez complexe, voici la procédure que j&rsquo;ai suivie afin de finalement arriver à avoir du son. Il en existe peut-être d&rsquo;autres, mais celle-ci a fonctionné pour moi !</p>
<p>&nbsp;</p>
<ol>
<li>Désinstaller tous les paquets relatifs à Wine</li>
<li>Supprimer le dossier ~/.wine</li>
<li>Installer Wine <strong>en version 32 bits : sudo yum install wine-core.i686 wine-wow.i686</strong></li>
<li>Installer le driver alsa (et uniquement lui) en <strong>version 32 bits</strong> : <strong>sudo yum install wine-alsa.i686</strong></li>
<li>Installer Spotify à l&rsquo;aide de l&rsquo;installateur pour Windows.</li>
<li>Modifier le raccourci de lancement de Spotify <em>(note : celui ci-dessous est le raccourci du menu &laquo;&nbsp;Applications&nbsp;&raquo; de Fedora. Si vous voulez éditer celui qui se met sur le bureau, la procédure est la même)</em> :<br />
<strong>vi ~/.local/share/applications/wine/Programs/Spotify.desktop</strong><br />
Ensuite, modifiez la ligne &laquo;&nbsp;EXEC&nbsp;&raquo; en rajoutant &laquo;&nbsp;<strong>padsp &nbsp;&raquo; au début</strong>. Cela donne ceci pour moi :&nbsp;</p>
<pre>[Desktop Entry]Name=SpotifyExec=padsp env WINEPREFIX="/home/troll/.wine" wine C:\\\\windows\\\\command\\\\start.exe /Unix /home/troll/.wine/dosdevices/c:/users/troll/Start\\ Menu/Programs/Spotify.lnkType=ApplicationStartupNotify=truePath=/home/troll/.wine/dosdevices/c:/users/troll/Application Data/SpotifyIcon=B29C_spotify.0</pre>
</li>
<li>Lancer winecfg et le configurer avec les périphériques virtuels PulseAudio : <strong>padsp winecfg</strong></li>
<li>Aller dans l&rsquo;onglet <strong>&laquo;&nbsp;Audio&nbsp;&raquo;</strong> puis choisissez dans les périphériques audios, ceux qui correspondent au même nom que ce que vous pouvez trouver dans les <em>Paramètres Systèmes</em> de Fedora 16. Pour moi, c&rsquo;était celui qui n&rsquo;était ni &laquo;&nbsp;default&nbsp;&raquo; ni &laquo;&nbsp;system default&nbsp;&raquo; mais qui avait le nom de ma carte son. Valider.</li>
<li>Installer <strong>le paquet alsa-oss en version 64 bits : sudo yum install alsa-oss</strong></li>
<li>Lancer Spotify via le raccourci qu&rsquo;on a édité à l&rsquo;étape 6.</li>
<li><strong>Enjoy !</strong></li>
</ol>
<p>(Note : Ca ne résoudra peut-être pas les problèmes de lecture de la musique &laquo;&nbsp;locale&nbsp;&raquo;, car là c&rsquo;est un problème de décodeur MP3, il y a des explications ici : <a href="http://xkahn.zoned.net/blog/2011/08/01/spotify/" target="_blank">Spotify and local storage music</a>[EN].)</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- English Version &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>After 1h45 of attempts to make Spotify working once for all via Wine on my Fedora 16 64 bits (whereas it worked perfectly on FC15 &#8230; ), I feel I want to share the solution, since none of the one I found on the web was actually working in my case !</p>
<p>Symptoms :</p>
<ul>
<li>Either you don&rsquo;t have any sound in dans Spotify</li>
<li>Or you only hear a sort of noise/garbage corresponding, from far and with super-ears, to the music you are actually trying to listen.</li>
</ul>
<p>&nbsp;</p>
<p>The solution is pretty complex, here is the steps I finally went through to get my Spotify via Wine on FC16 x84_64 working (it may exist some others, but these steps worked for me) :</p>
<p>&nbsp;</p>
<ol>
<li>Uninstall all Wine packages</li>
<li>Remove the ~/.wine directory</li>
<li>Install <strong>32 bits version</strong> of Wine : <strong>sudo yum install wine-core.i686 wine-wow.i686</strong></li>
<li>Install alsa driver (and only this one) in <strong>32 bits version</strong> : <strong>sudo yum install wine-alsa.i686</strong></li>
<li>Install Spotify using the Windows installer using Wine.</li>
<li>Edit the launch shortcut of Spotify <em>(note : the one below is the shortcut of the &laquo;&nbsp;Applications&nbsp;&raquo; Fedora menu. If you want to edit the one located on you Desktop, the procedure is the same)</em> :<br />
<strong>vi ~/.local/share/applications/wine/Programs/Spotify.desktop</strong><br />
Then, change the &laquo;&nbsp;EXEC&nbsp;&raquo; line by adding &laquo;&nbsp;<strong>padsp &nbsp;&raquo; at the beginning</strong>. This gave, for me :</p>
<pre>[Desktop Entry]Name=SpotifyExec=padsp env WINEPREFIX="/home/troll/.wine" wine C:\\\\windows\\\\command\\\\start.exe /Unix /home/troll/.wine/dosdevices/c:/users/troll/Start\\ Menu/Programs/Spotify.lnkType=ApplicationStartupNotify=truePath=/home/troll/.wine/dosdevices/c:/users/troll/Application Data/SpotifyIcon=B29C_spotify.0</pre>
</li>
<li>Launch <strong>winecfg</strong> with the PulseAudio virtual devices to configure it with them : <strong>padsp winecfg</strong></li>
<li>Go to <strong>&laquo;&nbsp;Audio&nbsp;&raquo;</strong> tab and choose, in the audio devices list, the ones corresponding to the name of those you can find in <em>&laquo;&nbsp;System Settings&nbsp;&raquo;</em> of Fedora. For me, it was neither &laquo;&nbsp;default&nbsp;&raquo; nor &laquo;&nbsp;system default&nbsp;&raquo; but the one which had the name of my sound card (HDA Intel blabla&#8230;). Validate.</li>
<li>Install <strong>the alsa-oss package in its 64 bits version : sudo yum install alsa-oss</strong></li>
<li>Launch Spotify using the shortcut you edited and step 6.</li>
<li><strong>Enjoy !</strong></li>
</ol>
<p>(Note : It surely won&rsquo;t solve the problems related to playing &laquo;&nbsp;local storage music&nbsp;&raquo; because it is a MP3 decoding problem, you can find out more about the &laquo;&nbsp;local storage&nbsp;&raquo; music problem here : <a href="http://xkahn.zoned.net/blog/2011/08/01/spotify/" target="_blank">Spotify and local storage music</a>.)</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21%20-%20http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;t=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%0D%0A%0D%0ABon%2C%20apr%C3%A8s%20avoir%20pass%C3%A9%201h45%20%C3%A0%20tenter%20de%20faire%20marcher%20une%20bonne%20fois%20pour%20toute%20Spotify%20via%20Wine%20sur%20ma%20Fedora%2016%2064%20bits%20%28alors%20que%20%C3%A7a%20marchait%20parfaitement%20quand%20j%27%C3%A9tais%20sur%20FC15%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;bodytext=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%0D%0A%0D%0ABon%2C%20apr%C3%A8s%20avoir%20pass%C3%A9%201h45%20%C3%A0%20tenter%20de%20faire%20marcher%20une%20bonne%20fois%20pour%20toute%20Spotify%20via%20Wine%20sur%20ma%20Fedora%2016%2064%20bits%20%28alors%20que%20%C3%A7a%20marchait%20parfaitement%20quand%20j%27%C3%A9tais%20sur%20FC15%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;notes=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%0D%0A%0D%0ABon%2C%20apr%C3%A8s%20avoir%20pass%C3%A9%201h45%20%C3%A0%20tenter%20de%20faire%20marcher%20une%20bonne%20fois%20pour%20toute%20Spotify%20via%20Wine%20sur%20ma%20Fedora%2016%2064%20bits%20%28alors%20que%20%C3%A7a%20marchait%20parfaitement%20quand%20j%27%C3%A9tais%20sur%20FC15%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;annotation=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%0D%0A%0D%0ABon%2C%20apr%C3%A8s%20avoir%20pass%C3%A9%201h45%20%C3%A0%20tenter%20de%20faire%20marcher%20une%20bonne%20fois%20pour%20toute%20Spotify%20via%20Wine%20sur%20ma%20Fedora%2016%2064%20bits%20%28alors%20que%20%C3%A7a%20marchait%20parfaitement%20quand%20j%27%C3%A9tais%20sur%20FC15%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;t=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;title=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fspotify-wine-fedora-16-64-bits-fc16-solution-571&amp;submitHeadline=Spotify%20%2B%20Wine%20%2B%20Fedora%2016%2064%20bits%20%28FC16%29%20%3A%20Solution%20%21&amp;submitSummary=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%0D%0A%0D%0ABon%2C%20apr%C3%A8s%20avoir%20pass%C3%A9%201h45%20%C3%A0%20tenter%20de%20faire%20marcher%20une%20bonne%20fois%20pour%20toute%20Spotify%20via%20Wine%20sur%20ma%20Fedora%2016%2064%20bits%20%28alors%20que%20%C3%A7a%20marchait%20parfaitement%20quand%20j%27%C3%A9tais%20sur%20FC15%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/spotify-wine-fedora-16-64-bits-fc16-solution-571/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>STOP ACTA : I wish I was Polish</title>
		<link>http://trollfactory.fr/stop-acta-i-wish-i-was-polish-566</link>
		<comments>http://trollfactory.fr/stop-acta-i-wish-i-was-polish-566#comments</comments>
		<pubDate>Sun, 29 Jan 2012 10:01:35 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Pensées]]></category>
		<category><![CDATA[politique]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=566</guid>
		<description><![CDATA[Depuis l&#8217;élection du clown en tant que premier homme de France, j&#8217;ai me suis très souvent répété à l&#8217;esprit &#171;&#160;J&#8217;ai honte d&#8217;être français&#160;&#187;. Cette semaine, j&#8217;ai découvert un autre sentiment similaire : Je serais fier d&#8217;être&#8230; Polonais ! On peut critiquer tout ce qu&#8217;on veut sur la société Polonaise, moi ce que je vois, c&#8217;est [...]]]></description>
				<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://trollfactory.fr/wp-content/uploads/acta-manif-2.jpg"><img class="aligncenter size-large wp-image-567" title="acta-manif-2" src="//trollfactory.fr/wp-content/uploads/acta-manif-2-1024x793.jpg" alt="" width="491" height="381" /></a></p>
<p>Depuis l&rsquo;élection du <strong>clown</strong> en tant que premier homme de France, j&rsquo;ai me suis très souvent répété à l&rsquo;esprit <strong>&laquo;&nbsp;J&rsquo;ai honte d&rsquo;être français&nbsp;&raquo;</strong>.</p>
<p>Cette semaine, j&rsquo;ai découvert un autre sentiment similaire : <strong>Je serais fier d&rsquo;être&#8230; Polonais !</strong></p>
<p>On peut critiquer tout ce qu&rsquo;on veut sur la société Polonaise, <strong>moi ce que je vois, c&rsquo;est <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=YPiV_SB-scM#!">qu&rsquo;en ce moment, eux, se bougent contre ACTA</a></strong> et que c&rsquo;est donc un pays où les gens ont encore conscience que la liberté d&rsquo;expression, on va la perdre.</p>
<p>Si je dis ça, c&rsquo;est parce que j&rsquo;étais aux manifs <strong>STOP ACTA</strong> hier et qu&rsquo;<strong>on devait être, sur le total de la France, autant qu&rsquo;il y en avait dans UNE ville de Pologne</strong>. Pourtant, nous sommes <strong>20 millions de plus</strong>, nous sommes certainement mieux payés en moyenne et pouvons donc <strong>nous passer d&rsquo;une journée de salaire pour aller défendre la liberté</strong> d&rsquo;un média qui, s&rsquo;il se retrouve <strong>censuré par des lois liberticides comme ACTA</strong>, pourrait bien faire couler toute une partie de l&rsquo;économie, justement, au-delà, bien entendu, de la suppression du DERNIER espace d&rsquo;expression libre en France.</p>
<p>Oui, le <strong>dernier</strong>, car qu&rsquo;on ne me fasse pas croire que la France est un pays où les médias sont libres quand <strong>les patrons des radios, des chaînes de télévision&#8230; sont nommés directement par le chef de la propagande</strong>, j&rsquo;ai nommé, M. le président.</p>
<p>Bien entendu, je vous parle du volet <em>Internet</em> du projet de loi <strong>ACTA</strong> (Anti-Counterfeiting Trade Agreement, ou Accord Commercial Anti-Contrefaçon). Cependant, <strong>ACTA au-delà de menacer notre liberté d&rsquo;expression, menace des milliers de vie.</strong> Le projet de loi qui découle de l&rsquo;accord, ouvre la possibilité de bloquer des acquis sociaux et médicaux comme <strong>les médicaments généralistes</strong>.</p>
<p>Il remet également en question des acquis alimentaires concernant les semences&#8230;</p>
<p>En bref : Je ne suis pas juriste et ne vais donc pas vous faire le détail de la loi, qui de toutes manières, est volontairement floue afin d&rsquo;être applicable à tout ce qu&rsquo;on veut, sur simple interprétation du pouvoir en place, mais ça sent pas bon&#8230; du tout. Encore moins que leurs conneries de <strong>Hadopi</strong> et autres <strong>LOPPSI</strong> tout autant liberticides.</p>
<p><strong>Alors, mot d&rsquo;ordre : appelez votre député</strong> et demandez-lui <strong>pourquoi on vote des lois liberticides négociées en secret</strong> par des gens qui ne sont même <strong>pas représentants du peuple</strong>. Demandez-lui s&rsquo;il a l&rsquo;intention de s&rsquo;opposer au bafouement de la démocratie qui l&rsquo;a élu et qui lui verse un salaire si gras chaque mois.</p>
<p>Si vous ne connaissez pas votre député : <a href="http://www.nosdeputes.fr/circonscription">Trouver mon député</a>.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish%20-%20http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;t=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=%0D%0ADepuis%20l%27%C3%A9lection%20du%20clown%20en%20tant%20que%20premier%20homme%20de%20France%2C%20j%27ai%20me%20suis%20tr%C3%A8s%20souvent%20r%C3%A9p%C3%A9t%C3%A9%20%C3%A0%20l%27esprit%20%22J%27ai%20honte%20d%27%C3%AAtre%20fran%C3%A7ais%22.%0D%0A%0D%0ACette%20semaine%2C%20j%27ai%20d%C3%A9couvert%20un%20autre%20sentiment%20similaire%20%3A%20Je%20serais%20fier%20d%27%C3%AAtre...%20Polonais%20%21%0D" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;bodytext=%0D%0ADepuis%20l%27%C3%A9lection%20du%20clown%20en%20tant%20que%20premier%20homme%20de%20France%2C%20j%27ai%20me%20suis%20tr%C3%A8s%20souvent%20r%C3%A9p%C3%A9t%C3%A9%20%C3%A0%20l%27esprit%20%22J%27ai%20honte%20d%27%C3%AAtre%20fran%C3%A7ais%22.%0D%0A%0D%0ACette%20semaine%2C%20j%27ai%20d%C3%A9couvert%20un%20autre%20sentiment%20similaire%20%3A%20Je%20serais%20fier%20d%27%C3%AAtre...%20Polonais%20%21%0D" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;notes=%0D%0ADepuis%20l%27%C3%A9lection%20du%20clown%20en%20tant%20que%20premier%20homme%20de%20France%2C%20j%27ai%20me%20suis%20tr%C3%A8s%20souvent%20r%C3%A9p%C3%A9t%C3%A9%20%C3%A0%20l%27esprit%20%22J%27ai%20honte%20d%27%C3%AAtre%20fran%C3%A7ais%22.%0D%0A%0D%0ACette%20semaine%2C%20j%27ai%20d%C3%A9couvert%20un%20autre%20sentiment%20similaire%20%3A%20Je%20serais%20fier%20d%27%C3%AAtre...%20Polonais%20%21%0D" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;annotation=%0D%0ADepuis%20l%27%C3%A9lection%20du%20clown%20en%20tant%20que%20premier%20homme%20de%20France%2C%20j%27ai%20me%20suis%20tr%C3%A8s%20souvent%20r%C3%A9p%C3%A9t%C3%A9%20%C3%A0%20l%27esprit%20%22J%27ai%20honte%20d%27%C3%AAtre%20fran%C3%A7ais%22.%0D%0A%0D%0ACette%20semaine%2C%20j%27ai%20d%C3%A9couvert%20un%20autre%20sentiment%20similaire%20%3A%20Je%20serais%20fier%20d%27%C3%AAtre...%20Polonais%20%21%0D" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;t=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;title=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fstop-acta-i-wish-i-was-polish-566&amp;submitHeadline=STOP%20ACTA%20%3A%20I%20wish%20I%20was%20Polish&amp;submitSummary=%0D%0ADepuis%20l%27%C3%A9lection%20du%20clown%20en%20tant%20que%20premier%20homme%20de%20France%2C%20j%27ai%20me%20suis%20tr%C3%A8s%20souvent%20r%C3%A9p%C3%A9t%C3%A9%20%C3%A0%20l%27esprit%20%22J%27ai%20honte%20d%27%C3%AAtre%20fran%C3%A7ais%22.%0D%0A%0D%0ACette%20semaine%2C%20j%27ai%20d%C3%A9couvert%20un%20autre%20sentiment%20similaire%20%3A%20Je%20serais%20fier%20d%27%C3%AAtre...%20Polonais%20%21%0D&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/stop-acta-i-wish-i-was-polish-566/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora 16 : Qt4 Failure to read QMAKESPEC conf file</title>
		<link>http://trollfactory.fr/fecora-16-qt4-failure-to-read-qmakespec-conf-file-556</link>
		<comments>http://trollfactory.fr/fecora-16-qt4-failure-to-read-qmakespec-conf-file-556#comments</comments>
		<pubDate>Tue, 06 Dec 2011 18:02:55 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Non classé]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[fc16]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 16]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[qt4]]></category>
		<category><![CDATA[qtcreator]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=556</guid>
		<description><![CDATA[English readers : see at the bottom of the French version !! Voulant installer Qt4 et QtCreator sur ma fedora 16 toute fraiche, je me suis heurté, lors de la première tentative de compilation, à une erreur pour le moins étonnante (lorsque j&#8217;ai fait &#171;&#160;run qmake&#160;&#187;) : /usr/share/qt4/mkspecs/linux-g++/qmake.conf. Après avoir fait une rapide recherche infructueuse [...]]]></description>
				<content:encoded><![CDATA[<p><span style="text-decoration: underline; color: #0000ff; font-size: 120%;"><strong>English readers : see at the bottom of the French version !! </strong></span></p>
<p>Voulant installer Qt4 et QtCreator sur ma fedora 16 toute fraiche, je me suis heurté, lors de la première tentative de compilation, à une erreur pour le moins étonnante (lorsque j&rsquo;ai fait &laquo;&nbsp;run qmake&nbsp;&raquo;) :</p>
<p><code>/usr/share/qt4/mkspecs/linux-g++/qmake.conf.</code></p>
<p>Après avoir fait une rapide recherche infructueuse sur le net, j&rsquo;ai fait une petite recherche sur mon disque dur sur le terme &laquo;&nbsp;mkspecs&nbsp;&raquo; et je trouve qu&rsquo;il se trouve en fait dans <strong>/usr/lib64/qt4/mkspecs</strong>.<br />
Dans une tentative un peu naïve, je tente le lien symbolique, me disant que ça doit encore être une histoire de 64bits pas super bien géré :</p>
<p><code>sudo ln -s /usr/lib64/qt4/mkspecs /usr/share/qt4/mkspecs</code></p>
<p>Eh bien&#8230; ça marche !! Problème semble résolu, on dirait bien que ça compile même ! <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /><br />
Avis aux amateurs qui auront le même souci, donc&#8230; <img src="//trollfactory.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> Et si ça ne résoud pas le souci mais que vous avez une autre solution, ou que vous voulez apporter une quelconque info supplémentaire, ajoutez un commentaire !!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- English Version &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Willing to install Qt4 &amp; QtCreator on my fresh installed fedora 16, I have gone into some trouble&#8230;, at my first compilation attempt (&laquo;&nbsp;run qmake&nbsp;&raquo; attempt, actually), a surprising error pops-up :</p>
<p><code>/usr/share/qt4/mkspecs/linux-g++/qmake.conf.</code></p>
<p>After a quick and unsuccessful search on Google, I decided to make a quick search on my hard disk on &laquo;&nbsp;mkspecs&nbsp;&raquo; and I found that it seems to be in fact in <strong>/usr/lib64/qt4/mkspecs</strong>.<br />
In a naive attempt, I try the symlink, thinking of a 64bits a bit bad-managed by the libraries paths :</p>
<p><code>sudo ln -s /usr/lib64/qt4/mkspecs /usr/share/qt4/mkspecs</code></p>
<p>Well&#8230; it works !! Issue solved, it seems, it even compiles ! <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /><br />
If you have any additional information / solution, please feel free to add it in the comments below !</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file%20-%20http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;t=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AVoulant%20installer%20Qt4%20et%20QtCreator%20sur%20ma%20fedora%2016%20toute%20fraiche%2C%20je%20me%20suis%20heurt%C3%A9%2C%20lors%20de%20la%20premi%C3%A8re%20tentative%20de%20compilation%2C%20%C3%A0%20une%20erreur%20pour%20le%20moins%20%C3%A9tonnante%20%28lorsque%20j%27a" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;bodytext=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AVoulant%20installer%20Qt4%20et%20QtCreator%20sur%20ma%20fedora%2016%20toute%20fraiche%2C%20je%20me%20suis%20heurt%C3%A9%2C%20lors%20de%20la%20premi%C3%A8re%20tentative%20de%20compilation%2C%20%C3%A0%20une%20erreur%20pour%20le%20moins%20%C3%A9tonnante%20%28lorsque%20j%27a" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;notes=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AVoulant%20installer%20Qt4%20et%20QtCreator%20sur%20ma%20fedora%2016%20toute%20fraiche%2C%20je%20me%20suis%20heurt%C3%A9%2C%20lors%20de%20la%20premi%C3%A8re%20tentative%20de%20compilation%2C%20%C3%A0%20une%20erreur%20pour%20le%20moins%20%C3%A9tonnante%20%28lorsque%20j%27a" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;annotation=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AVoulant%20installer%20Qt4%20et%20QtCreator%20sur%20ma%20fedora%2016%20toute%20fraiche%2C%20je%20me%20suis%20heurt%C3%A9%2C%20lors%20de%20la%20premi%C3%A8re%20tentative%20de%20compilation%2C%20%C3%A0%20une%20erreur%20pour%20le%20moins%20%C3%A9tonnante%20%28lorsque%20j%27a" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;t=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;title=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Ffecora-16-qt4-failure-to-read-qmakespec-conf-file-556&amp;submitHeadline=Fedora%2016%20%3A%20Qt4%20Failure%20to%20read%20QMAKESPEC%20conf%20file&amp;submitSummary=English%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AVoulant%20installer%20Qt4%20et%20QtCreator%20sur%20ma%20fedora%2016%20toute%20fraiche%2C%20je%20me%20suis%20heurt%C3%A9%2C%20lors%20de%20la%20premi%C3%A8re%20tentative%20de%20compilation%2C%20%C3%A0%20une%20erreur%20pour%20le%20moins%20%C3%A9tonnante%20%28lorsque%20j%27a&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/fecora-16-qt4-failure-to-read-qmakespec-conf-file-556/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clementine : Adieu Amarok 2 // Réflexion sur les logiciels libres</title>
		<link>http://trollfactory.fr/clementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551</link>
		<comments>http://trollfactory.fr/clementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551#comments</comments>
		<pubDate>Mon, 28 Nov 2011 08:21:07 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Coups de gueule]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Pensées]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[clementine]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[logiciel libre]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[oss]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=551</guid>
		<description><![CDATA[Après avoir été utilisateur de Amarok, le lecteur de musique de KDE pendant 6 ans, j&#8217;ai récemment découvert, grâce à un autre utilisateur de KDE et ancien utilisateur d&#8217;Amarok, le lecteur &#171;&#160;Clementine&#160;&#187;. Cette découverte sera fatale pour Amarok de mon côté, explications&#8230; Une lente agonie Tout comme de nombreux autres utilisateurs, tout d&#8217;abord, je n&#8217;ai [...]]]></description>
				<content:encoded><![CDATA[<p>Après avoir été utilisateur de Amarok, le lecteur de musique de KDE <strong>pendant 6 ans</strong>, j&rsquo;ai récemment découvert, grâce à un autre utilisateur de KDE et ancien utilisateur d&rsquo;Amarok, le lecteur &laquo;&nbsp;Clementine&nbsp;&raquo;. Cette découverte sera fatale pour Amarok de mon côté, explications&#8230;</p>
<h2>Une lente agonie</h2>
<p>Tout comme de nombreux autres utilisateurs, tout d&rsquo;abord, je n&rsquo;ai <strong>pas forcément apprécié le changement de version majeur de Amarok avec Amarok 2</strong>. D&rsquo;ailleurs, il suffit de taper &laquo;&nbsp;amarok 1 vs amarok 2&Prime; sur Google.com pour tomber sur des sujets <a href="http://ubuntuforums.org/showthread.php?t=1096880">comme celui-ci</a> où l&rsquo;on voit très bien que je ne suis pas le seul dans ce genre.</p>
<p>Ne voulant pas empêcher l&rsquo;évolution et surtout, me faire chier avec des paquets plus maintenant, je me suis tant bien que mal habitué à l&rsquo;interface d&rsquo;Amarok 2 dans laquelle il manquait tout un tas de fonctionnalités par rapport à Amarok 1.</p>
<h2>Un regain de vitalité</h2>
<p>Avec le temps, Amarok 2 s&rsquo;est amélioré ! Je défendais d&rsquo;ailleurs récemment son interface face aux critiques d&rsquo;un ami, mettant en avant que je la trouvais finalement pratique et facile à utiliser même si elle n&rsquo;était pas forcément optimale en terme d&rsquo;arrangement.</p>
<p>Ce qui ne s&rsquo;est pas, mais alors pas du tout amélioré avec le temps, par contre, c&rsquo;est sa consommation de ressources.</p>
<p>Étant tout le temps en manque de RAM alors que mon PC a pourtant 4Gio de RAM, je recherchais récemment les programmes gourmands en RAM de mon ordinateur&#8230; et j&rsquo;ai été surpris <strong>de trouver, aux côté de Firefox (800Mo), Opera (700Mo) et Thunderbird (300Mo)&#8230; Amarok 2 ! Avec 300Mo de consommation mémoire !!!</strong>.</p>
<p>Là, je me suis dit, &laquo;&nbsp;il y a un problème&nbsp;&raquo;. Un lecteur de musique, sans animation ni rien, NE DOIT PAS consommer 300Mo de RAM alors qu&rsquo;un navigateur avec 10 onglets (ce qui n&rsquo;est pas mon cas&#8230;. c&rsquo;est plutôt 30) consomme moins que ça pour 200 fois plus de fonctionnalités.</p>
<p><strong>J&rsquo;ai donc commencé à fermer Amarok 2 dès que c&rsquo;était possible&#8230; et à me dire qu&rsquo;une alternative serait la bienvenue.</strong></p>
<h2>Puis vint Clementine</h2>
<p>C&rsquo;est alors qu&rsquo;un jour je me souvenai d&rsquo;un ami qui m&rsquo;avais parlé d&rsquo;un certain &laquo;&nbsp;Klementin&nbsp;&raquo; (étant un logiciel pour KDE, j&rsquo;imaginais son orthographe ainsi&#8230;).</p>
<p>Après avoir découvert qu&rsquo;en fait, le logiciel s&rsquo;appelait réellement comme le fruit, c&rsquo;est-à-dire &laquo;&nbsp;Clementine&nbsp;&raquo;, je l&rsquo;essayais&#8230; Et là : <strong>révélation</strong>.</p>
<p>Ce logiciel fait tout ce que Amarok 1 faisait, et en 60Mo de RAM&#8230; et en mieux. Notification, bibliothèque, rangement, interface réactive, reconnaissance des boutons multimédia (intégration bonne avec KDE)&#8230; tout y est.</p>
<p><strong>Adieu Amarok 2 !</strong> Notre route se sépare ici, elle a commencé à se séparer <strong>quand les développeurs ont cessé d&rsquo;écouter les utilisateurs et ont voulu leur forcer la main</strong>, tout comme ma route s&rsquo;est séparé définitivement de Gnome lorsque Gnome 3 a voulu me forcer à utiliser une interface tout sauf pratique, qui fait perdre du temps et de la RAM pour aucune amélioration pour moi.</p>
<p>&nbsp;</p>
<h2>Un problème récurrent du Logiciel Libre</h2>
<p>C&rsquo;est au final un problème récurrent je trouve dans l&rsquo;évolution des logiciels libres à l&rsquo;heure actuelle : <strong>les développeurs veulent révolutionner le monde, certes, mais sans lui demander son avis !</strong> La France n&rsquo;aurait pas coupé la tête du Roi lors de la révolution à la fin du 18ème siècle si le peuple n&rsquo;avait pas été d&rsquo;accord. L&rsquo;Europe n&rsquo;aurait pas existait si les peuples n&rsquo;avaient pas voté &laquo;&nbsp;Oui&nbsp;&raquo; aux referenda. L&rsquo;URSS n&rsquo;aurait pas explosé sans guerrias internes. L&rsquo;Italie ne serait pas unifiée sans une volonté commune au sein de la péninsule&#8230;</p>
<p>Que les développeurs du Libre qui veulent bien, l&rsquo;entendent : On ne force pas la main à l&rsquo;utilisateur, c&rsquo;est contre les principes même du logiciel libre. L&rsquo;utilisateur DOIT être libre et ça passe entre autres par ne pas supprimer des options de configuration (et là je parle aussi à Mozilla !!).</p>
<p>C&rsquo;est sans doute pour vouloir imiter les grandes société du logiciel propriétaires que les développeurs font cela, afin de dire &laquo;&nbsp;nous aussi, on peut prendre des décisions uniquement en interne&nbsp;&raquo;, mais ça n&rsquo;a pas d&rsquo;intérêt, c&rsquo;est <strong>totalement stupide</strong>, car <strong>le logiciel libre n&rsquo;a pas et n&rsquo;aura jamais le même publique que les énormes logiciels propriétaires.</strong> Et <strong>au lieu de vouloir grapiller sur le grand public, quitte à faire des utilisateurs fidèles mécontents, les développeurs feraient mieux de garder leur vivier d&rsquo;utilisateur fidèles et satisfaits.</strong> A moins que le but soit de faire de la masse, dans le but unique de faire de l&rsquo;argent ? <strong>Dans ce cas, ce n&rsquo;est plus du logiciel libre.</strong></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres%20-%20http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;t=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Apr%C3%A8s%20avoir%20%C3%A9t%C3%A9%20utilisateur%20de%20Amarok%2C%20le%20lecteur%20de%20musique%20de%20KDE%20pendant%206%20ans%2C%20j%27ai%20r%C3%A9cemment%20d%C3%A9couvert%2C%20gr%C3%A2ce%20%C3%A0%20un%20autre%20utilisateur%20de%20KDE%20et%20ancien%20utilisateur%20d%27Amarok%2C%20le%20lecteur%20%22Clementine%22.%20Cette%20d%C3%A9couverte%20sera%20fatale%20pour%20Amarok" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;bodytext=Apr%C3%A8s%20avoir%20%C3%A9t%C3%A9%20utilisateur%20de%20Amarok%2C%20le%20lecteur%20de%20musique%20de%20KDE%20pendant%206%20ans%2C%20j%27ai%20r%C3%A9cemment%20d%C3%A9couvert%2C%20gr%C3%A2ce%20%C3%A0%20un%20autre%20utilisateur%20de%20KDE%20et%20ancien%20utilisateur%20d%27Amarok%2C%20le%20lecteur%20%22Clementine%22.%20Cette%20d%C3%A9couverte%20sera%20fatale%20pour%20Amarok" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;notes=Apr%C3%A8s%20avoir%20%C3%A9t%C3%A9%20utilisateur%20de%20Amarok%2C%20le%20lecteur%20de%20musique%20de%20KDE%20pendant%206%20ans%2C%20j%27ai%20r%C3%A9cemment%20d%C3%A9couvert%2C%20gr%C3%A2ce%20%C3%A0%20un%20autre%20utilisateur%20de%20KDE%20et%20ancien%20utilisateur%20d%27Amarok%2C%20le%20lecteur%20%22Clementine%22.%20Cette%20d%C3%A9couverte%20sera%20fatale%20pour%20Amarok" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;annotation=Apr%C3%A8s%20avoir%20%C3%A9t%C3%A9%20utilisateur%20de%20Amarok%2C%20le%20lecteur%20de%20musique%20de%20KDE%20pendant%206%20ans%2C%20j%27ai%20r%C3%A9cemment%20d%C3%A9couvert%2C%20gr%C3%A2ce%20%C3%A0%20un%20autre%20utilisateur%20de%20KDE%20et%20ancien%20utilisateur%20d%27Amarok%2C%20le%20lecteur%20%22Clementine%22.%20Cette%20d%C3%A9couverte%20sera%20fatale%20pour%20Amarok" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;t=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;title=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fclementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551&amp;submitHeadline=Clementine%20%3A%20Adieu%20Amarok%202%20%2F%2F%20R%C3%A9flexion%20sur%20les%20logiciels%20libres&amp;submitSummary=Apr%C3%A8s%20avoir%20%C3%A9t%C3%A9%20utilisateur%20de%20Amarok%2C%20le%20lecteur%20de%20musique%20de%20KDE%20pendant%206%20ans%2C%20j%27ai%20r%C3%A9cemment%20d%C3%A9couvert%2C%20gr%C3%A2ce%20%C3%A0%20un%20autre%20utilisateur%20de%20KDE%20et%20ancien%20utilisateur%20d%27Amarok%2C%20le%20lecteur%20%22Clementine%22.%20Cette%20d%C3%A9couverte%20sera%20fatale%20pour%20Amarok&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/clementine-adieu-amarok-2-reflexion-sur-les-logiciels-libres-551/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wifi sous Fedora 16 avec un Dell Vostro 1510</title>
		<link>http://trollfactory.fr/wifi-sous-fedora-16-avec-un-dell-vostro-1510-546</link>
		<comments>http://trollfactory.fr/wifi-sous-fedora-16-avec-un-dell-vostro-1510-546#comments</comments>
		<pubDate>Fri, 18 Nov 2011 08:46:07 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[fc16]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 16]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=546</guid>
		<description><![CDATA[Ayant récemment installé Fedora 16 (FC16) tout marchait bien&#8230; jusqu&#8217;à une malencontreuse mise à jour ! (laquelle, je ne sais pas, vu leur nombre !). Et là, plus de wifi&#8230; Après avoir cherché des heures et des heures à bidouiller avec modprobe etc&#8230; j&#8217;ai regardé mon dmesg : [ 239.100501] iwl3945 0000:06:00.0: iwlwifi-3945-2.ucode firmware file [...]]]></description>
				<content:encoded><![CDATA[<p>Ayant récemment installé Fedora 16 (FC16) tout marchait bien&#8230; jusqu&rsquo;à une malencontreuse mise à jour ! (laquelle, je ne sais pas, vu leur nombre !).</p>
<p>Et là, plus de wifi&#8230;</p>
<p>Après avoir cherché des heures et des heures à bidouiller avec modprobe etc&#8230; j&rsquo;ai regardé mon dmesg :</p>
<p><code>[  239.100501] iwl3945 0000:06:00.0: iwlwifi-3945-2.ucode firmware file req failed: -2<br />
[  239.103276] iwl3945 0000:06:00.0: iwlwifi-3945-1.ucode firmware file req failed: -2<br />
[  239.103281] iwl3945 0000:06:00.0: Could not read microcode: -2<br />
[  345.378949] iwl3945 0000:06:00.0: iwlwifi-3945-2.ucode firmware file req failed: -2<br />
[  345.382280] iwl3945 0000:06:00.0: iwlwifi-3945-1.ucode firmware file req failed: -2<br />
[  345.382284] iwl3945 0000:06:00.0: Could not read microcode: -2</code></p>
<p>J&rsquo;ai donc cherché si un driver correspondait, visiblement, je n&rsquo;avais pas le bon ! (alors que lsmod me renvoit bien iwl3945 !)</p>
<p><code>yum search 3945<br />
Repository google-chrome is listed more than once in the configuration<br />
===================================================================== N/S Matched: 3945 =====================================================================<br />
iwl3945-firmware.noarch : Firmware for Intel® PRO/Wireless 3945 A/B/G network adaptors</code></p>
<p>Il faut donc installer le paquet &laquo;&nbsp;iwl3945-firmware&nbsp;&raquo; :</p>
<p>(en root)<br />
<code>yum install iwl3945-firmware</code></p>
<p>Et voilà ! Maintenant, vous faites :</p>
<p><code>su<br />
ifup wlan0</code></p>
<p>Et votre LED Wifi va enfin, enfin, enfin s&rsquo;allumer <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510%20-%20http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;t=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Ayant%20r%C3%A9cemment%20install%C3%A9%20Fedora%2016%20%28FC16%29%20tout%20marchait%20bien...%20jusqu%27%C3%A0%20une%20malencontreuse%20mise%20%C3%A0%20jour%20%21%20%28laquelle%2C%20je%20ne%20sais%20pas%2C%20vu%20leur%20nombre%20%21%29.%0D%0A%0D%0AEt%20l%C3%A0%2C%20plus%20de%20wifi...%0D%0A%0D%0AApr%C3%A8s%20avoir%20cherch%C3%A9%20des%20heures%20et%20des%20heures%20%C3%A0%20bidouiller%20avec" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;bodytext=Ayant%20r%C3%A9cemment%20install%C3%A9%20Fedora%2016%20%28FC16%29%20tout%20marchait%20bien...%20jusqu%27%C3%A0%20une%20malencontreuse%20mise%20%C3%A0%20jour%20%21%20%28laquelle%2C%20je%20ne%20sais%20pas%2C%20vu%20leur%20nombre%20%21%29.%0D%0A%0D%0AEt%20l%C3%A0%2C%20plus%20de%20wifi...%0D%0A%0D%0AApr%C3%A8s%20avoir%20cherch%C3%A9%20des%20heures%20et%20des%20heures%20%C3%A0%20bidouiller%20avec" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;notes=Ayant%20r%C3%A9cemment%20install%C3%A9%20Fedora%2016%20%28FC16%29%20tout%20marchait%20bien...%20jusqu%27%C3%A0%20une%20malencontreuse%20mise%20%C3%A0%20jour%20%21%20%28laquelle%2C%20je%20ne%20sais%20pas%2C%20vu%20leur%20nombre%20%21%29.%0D%0A%0D%0AEt%20l%C3%A0%2C%20plus%20de%20wifi...%0D%0A%0D%0AApr%C3%A8s%20avoir%20cherch%C3%A9%20des%20heures%20et%20des%20heures%20%C3%A0%20bidouiller%20avec" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;annotation=Ayant%20r%C3%A9cemment%20install%C3%A9%20Fedora%2016%20%28FC16%29%20tout%20marchait%20bien...%20jusqu%27%C3%A0%20une%20malencontreuse%20mise%20%C3%A0%20jour%20%21%20%28laquelle%2C%20je%20ne%20sais%20pas%2C%20vu%20leur%20nombre%20%21%29.%0D%0A%0D%0AEt%20l%C3%A0%2C%20plus%20de%20wifi...%0D%0A%0D%0AApr%C3%A8s%20avoir%20cherch%C3%A9%20des%20heures%20et%20des%20heures%20%C3%A0%20bidouiller%20avec" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;t=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;title=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fwifi-sous-fedora-16-avec-un-dell-vostro-1510-546&amp;submitHeadline=Wifi%20sous%20Fedora%2016%20avec%20un%20Dell%20Vostro%201510&amp;submitSummary=Ayant%20r%C3%A9cemment%20install%C3%A9%20Fedora%2016%20%28FC16%29%20tout%20marchait%20bien...%20jusqu%27%C3%A0%20une%20malencontreuse%20mise%20%C3%A0%20jour%20%21%20%28laquelle%2C%20je%20ne%20sais%20pas%2C%20vu%20leur%20nombre%20%21%29.%0D%0A%0D%0AEt%20l%C3%A0%2C%20plus%20de%20wifi...%0D%0A%0D%0AApr%C3%A8s%20avoir%20cherch%C3%A9%20des%20heures%20et%20des%20heures%20%C3%A0%20bidouiller%20avec&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/wifi-sous-fedora-16-avec-un-dell-vostro-1510-546/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Résoudre un conflit sur le fichier .cproject (Eclipse) dans SVN/Subclipse // Conflict solving for .cproject with SVN/Subclipse</title>
		<link>http://trollfactory.fr/resoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547</link>
		<comments>http://trollfactory.fr/resoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547#comments</comments>
		<pubDate>Wed, 16 Nov 2011 18:15:32 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Scripts, astuces, dév. web]]></category>
		<category><![CDATA[conflict]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[subclipse]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=547</guid>
		<description><![CDATA[&#160; English readers : see at the bottom of the French version !! Hello les amis, Aujourd&#8217;hui, petite astuce qui pourrait faire gagner 1h à des gens qui comme moi, pensent qu&#8217;il suffit de résoudre un conflit pour&#8230; qu&#8217;il soit résolu ! Eh bien non, cela ne semble pas marcher tout à fait pareil avec [...]]]></description>
				<content:encoded><![CDATA[<p>&nbsp;</p>
<p><span style="text-decoration: underline; color: #0000ff; font-size: 120%;"><strong>English readers : see at the bottom of the French version !! </strong></span></p>
<p>Hello les amis,</p>
<p>Aujourd&rsquo;hui, petite astuce qui pourrait faire gagner 1h à des gens qui comme moi, pensent qu&rsquo;il suffit de résoudre un conflit pour&#8230; qu&rsquo;il soit résolu !</p>
<p>Eh bien non, cela ne semble pas marcher tout à fait pareil avec le <strong>plug-in Subclipse pour Eclipse</strong>.</p>
<p>Si vous avez le malheur d&rsquo;avoir un conflit, normalement, il vous suffit de faire <strong>clic-droit sur le fichier puis &laquo;&nbsp;Team&nbsp;&raquo; puis &laquo;&nbsp;Mark as resolved&nbsp;&raquo;</strong>.</p>
<p>SAUF QUE <strong>le .cproject n&rsquo;apparaît bien évidemment pas dans la perspective &laquo;&nbsp;ressources&nbsp;&raquo;</strong> (par défaut) de Eclipse !! Impossible donc de le résoudre !</p>
<p>Or, <strong>si vous le résolvez en utilisant SVN via la console par exemple, Subclipse ne s&rsquo;en &laquo;&nbsp;rendra pas compte&nbsp;&raquo;</strong> (ne me demandez pas pourquoi) et refusera encore et toujours de commiter les futurs changements.</p>
<p><strong>Pour résoudre le conflit, il faut que vous <span style="text-decoration: underline;">ouvriez la &laquo;&nbsp;perspective&nbsp;&raquo; &laquo;&nbsp;Team Synchronizing&nbsp;&raquo;</span></strong>, à ce moment-là, vous devriez enfin voir votre <strong>.cproject</strong> et vous pourrez alors faire <strong>Mark as resolved</strong> (en sélectionnant ensuite l&rsquo;option de votre choix sur la résolution du conflit).</p>
<p>Voilà ! Et <strong>Subclipse</strong> arrêtera de vous harceler avec ce conflit qui n&rsquo;en est plus un&#8230;</p>
<p>Bon dev&rsquo; !</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;English version (summerized) &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>Hi folks,</p>
<p>The <strong>.cproject file</strong> won&rsquo;t be displayed on the &laquo;&nbsp;resources&nbsp;&raquo; perspective (view), so you can&rsquo;t resolve the conflict by right-clicking and then selecting options <strong>&laquo;&nbsp;Team&nbsp;&raquo;</strong> and <strong>&laquo;&nbsp;Mark as resolved&nbsp;&raquo;</strong>.</p>
<p>Moreover, solving the conflict using the<strong> SVN command line interface won&rsquo;t work</strong>, Subclipse will &laquo;&nbsp;remember&nbsp;&raquo; the conflict.</p>
<p>To get this working, <strong><span style="text-decoration: underline;">you have to open the &laquo;&nbsp;Team Synchronizing&nbsp;&raquo; perspective</span> in Eclipse</strong>. There, you should be able to find the <strong>.cproject</strong> file and so <strong>Mark it as resolved</strong> (and then select the option you want for the conflict solving way).</p>
<p>Here it is ! <strong>Subclipse</strong> will stop harassing you !</p>
<p>&nbsp;</p>
<p>Have a nice dev&rsquo; !</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse%20-%20http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;t=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=%26nbsp%3B%0D%0A%0D%0AEnglish%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AHello%20les%20amis%2C%0D%0A%0D%0AAujourd%27hui%2C%20petite%20astuce%20qui%20pourrait%20faire%20gagner%201h%20%C3%A0%20des%20gens%20qui%20comme%20moi%2C%20pensent%20qu%27il%20suffit%20de%20r%C3%A9soudre%20un%20conflit%20pour...%20qu%27il%20soit%20r%C3%A9solu%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;bodytext=%26nbsp%3B%0D%0A%0D%0AEnglish%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AHello%20les%20amis%2C%0D%0A%0D%0AAujourd%27hui%2C%20petite%20astuce%20qui%20pourrait%20faire%20gagner%201h%20%C3%A0%20des%20gens%20qui%20comme%20moi%2C%20pensent%20qu%27il%20suffit%20de%20r%C3%A9soudre%20un%20conflit%20pour...%20qu%27il%20soit%20r%C3%A9solu%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;notes=%26nbsp%3B%0D%0A%0D%0AEnglish%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AHello%20les%20amis%2C%0D%0A%0D%0AAujourd%27hui%2C%20petite%20astuce%20qui%20pourrait%20faire%20gagner%201h%20%C3%A0%20des%20gens%20qui%20comme%20moi%2C%20pensent%20qu%27il%20suffit%20de%20r%C3%A9soudre%20un%20conflit%20pour...%20qu%27il%20soit%20r%C3%A9solu%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;annotation=%26nbsp%3B%0D%0A%0D%0AEnglish%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AHello%20les%20amis%2C%0D%0A%0D%0AAujourd%27hui%2C%20petite%20astuce%20qui%20pourrait%20faire%20gagner%201h%20%C3%A0%20des%20gens%20qui%20comme%20moi%2C%20pensent%20qu%27il%20suffit%20de%20r%C3%A9soudre%20un%20conflit%20pour...%20qu%27il%20soit%20r%C3%A9solu%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;t=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;title=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fresoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547&amp;submitHeadline=R%C3%A9soudre%20un%20conflit%20sur%20le%20fichier%20.cproject%20%28Eclipse%29%20dans%20SVN%2FSubclipse%20%2F%2F%20Conflict%20solving%20for%20.cproject%20with%20SVN%2FSubclipse&amp;submitSummary=%26nbsp%3B%0D%0A%0D%0AEnglish%20readers%20%3A%20see%20at%20the%20bottom%20of%20the%20French%20version%20%21%21%20%0D%0A%0D%0AHello%20les%20amis%2C%0D%0A%0D%0AAujourd%27hui%2C%20petite%20astuce%20qui%20pourrait%20faire%20gagner%201h%20%C3%A0%20des%20gens%20qui%20comme%20moi%2C%20pensent%20qu%27il%20suffit%20de%20r%C3%A9soudre%20un%20conflit%20pour...%20qu%27il%20soit%20r%C3%A9solu%20%21&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/resoudre-un-conflit-sur-le-fichier-cproject-eclipse-dans-svnsubclipse-conflict-solving-for-cproject-with-svnsubclipse-547/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN sous Eclipse avec Subclipse : &#171;&#160;Unable to load default SVN client&#160;&#187; toi-même ! // Eclipse and SVN with Subclipse</title>
		<link>http://trollfactory.fr/svn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539</link>
		<comments>http://trollfactory.fr/svn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539#comments</comments>
		<pubDate>Thu, 10 Nov 2011 06:59:38 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=539</guid>
		<description><![CDATA[For English Readers, see the English version of the article at the bottom of the French one. &#160; Un autre micro-billet pour signaler à tous ceux qui sont en train de s&#8217;arracher les cheveux en essayant de faire fonctionner sur très intéressant / pratique (néanmoins difficile à installer !) plug-in &#171;&#160;Subclipse&#160;&#187; pour Eclipse et SVNque [...]]]></description>
				<content:encoded><![CDATA[<p><span style="text-decoration: underline;"><span style="color: #0000ff;"><strong>For English Readers, see the English version of the article at the bottom of the French one.</strong></span></span></p>
<p>&nbsp;</p>
<p>Un autre micro-billet pour signaler à tous ceux qui sont en train de s&rsquo;arracher les cheveux en essayant de faire fonctionner sur très intéressant / pratique (néanmoins difficile à installer !) plug-in &laquo;&nbsp;Subclipse&nbsp;&raquo; pour Eclipse et SVN<strong>que la solution est ailleurs !</strong></p>
<p>&nbsp;</p>
<p>Ailleurs dans le sens où il ne faut pas chercher à résoudre le souci, il faut tout bonnement <strong>ne pas utiliser la dernière version de Subclipse (branche 1.8.x) mais la version 1.4.8 (branche 1.4.x).</strong></p>
<p>&nbsp;</p>
<p>Donc si on reprend l&rsquo;installation de Subclipse en rapide, ça donne :</p>
<ol>
<li>Lancer <strong>Eclipse</strong></li>
<li>Menu <strong>Help</strong> &gt; <strong>Install New Software</strong></li>
<li>Dans la barre de &laquo;&nbsp;<strong>sites</strong>&nbsp;&raquo; en haut, cliquer sur &laquo;&nbsp;<strong>Add</strong>&laquo;&nbsp;, en <strong>URL</strong> mettez : <em><strong>http://subclipse.tigris.org/update_1.4.x</strong></em> (mettez ce que vous voulez pour le nom)</li>
<li>Sélectionner ce site-là dans la liste</li>
<li>Environs 8 plug-ins apparaissent, cochez les <strong>tous</strong>. <strong>Sauf</strong> celui qui s&rsquo;appelle &laquo;&nbsp;Intégration avec Mylyn 3&Prime; (ou un truc très très très ressemblant).</li>
<li>Faites <strong>Next</strong>, etc. &#8230; ensuite, vous suivez les indications.</li>
</ol>
<p>&nbsp;</p>
<p><strong>Personnellement, il a aussi fallu que je décoche le paquet  &laquo;&nbsp;SVN Revision Graph&nbsp;&raquo;</strong>. Qui avait un souci de dépendance paraitrait-il&#8230; (je m&rsquo;en sers pas de toutes façons donc&#8230;.). Donc si vous avez un souci pour l&rsquo;installation, regardez les messages d&rsquo;erreurs et tentez de décocher <strong>SVN Revision Graph</strong> <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; English version &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>&nbsp;</p>
<p>Another micro-article to make available on the internet a useful information for those who are currently desperate at install Subclipse for Eclipse to use with SVN : <strong>solution is not where you think it should be !</strong></p>
<p>What does that mean ? This means don&rsquo;t try to troubleshoot by repairing libraries or things like that &#8230; <strong>No, just don&rsquo;t use the latest (1.8.x branch) version of Subclipse : Use the 1.4.8 (1.4.x branch) !</strong></p>
<p>&nbsp;</p>
<p>So, installation process from A to Z should be (sum-up) :</p>
<ol>
<li>Launch <strong>Eclipse</strong></li>
<li>Menu <strong>Help</strong> &gt; <strong>Install New Software</strong></li>
<li>In the &laquo;&nbsp;<strong>sites</strong>&nbsp;&raquo; select menu at the top, click on &laquo;&nbsp;<strong>Add</strong>&laquo;&nbsp;, in <strong>URL</strong> put : <em><strong>http://subclipse.tigris.org/update_1.4.x</strong></em> (and put what you want for the name)</li>
<li>Select this precise &laquo;&nbsp;site&nbsp;&raquo; in the select list.</li>
<li>About 8 plug-ins are appearing, <strong>check them all</strong>. <span style="text-decoration: underline;"><strong>Except</strong></span> the one called  &laquo;&nbsp;Integration with Mylyn 3&Prime; (or some name very similar).</li>
<li>Press  <strong>Next</strong>, etc. &#8230;then, just follow the directives.</li>
</ol>
<p>&nbsp;</p>
<p><strong>For my experience : I also had to uncheck the &laquo;&nbsp;SVN Revision Graph&nbsp;&raquo; package.</strong> Its seemed to have some dependencies issues&#8230; (I don&rsquo;t use it so&#8230;). So if you can any trouble for installing the 7 other packages, try to uncheck &laquo;&nbsp;<strong>SVN Revision Graph&nbsp;&raquo;</strong>, it may do the trick.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse%20-%20http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;t=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=For%20English%20Readers%2C%20see%20the%20English%20version%20of%20the%20article%20at%20the%20bottom%20of%20the%20French%20one.%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AUn%20autre%20micro-billet%20pour%20signaler%20%C3%A0%20tous%20ceux%20qui%20sont%20en%20train%20de%20s%27arracher%20les%20cheveux%20en%20essayant%20de%20faire%20fonctionner%20sur%20tr%C3%A8s%20int%C3%A9res" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;bodytext=For%20English%20Readers%2C%20see%20the%20English%20version%20of%20the%20article%20at%20the%20bottom%20of%20the%20French%20one.%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AUn%20autre%20micro-billet%20pour%20signaler%20%C3%A0%20tous%20ceux%20qui%20sont%20en%20train%20de%20s%27arracher%20les%20cheveux%20en%20essayant%20de%20faire%20fonctionner%20sur%20tr%C3%A8s%20int%C3%A9res" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;notes=For%20English%20Readers%2C%20see%20the%20English%20version%20of%20the%20article%20at%20the%20bottom%20of%20the%20French%20one.%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AUn%20autre%20micro-billet%20pour%20signaler%20%C3%A0%20tous%20ceux%20qui%20sont%20en%20train%20de%20s%27arracher%20les%20cheveux%20en%20essayant%20de%20faire%20fonctionner%20sur%20tr%C3%A8s%20int%C3%A9res" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;annotation=For%20English%20Readers%2C%20see%20the%20English%20version%20of%20the%20article%20at%20the%20bottom%20of%20the%20French%20one.%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AUn%20autre%20micro-billet%20pour%20signaler%20%C3%A0%20tous%20ceux%20qui%20sont%20en%20train%20de%20s%27arracher%20les%20cheveux%20en%20essayant%20de%20faire%20fonctionner%20sur%20tr%C3%A8s%20int%C3%A9res" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;t=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;title=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fsvn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539&amp;submitHeadline=SVN%20sous%20Eclipse%20avec%20Subclipse%20%3A%20%22Unable%20to%20load%20default%20SVN%20client%22%20toi-m%C3%AAme%20%21%20%2F%2F%20Eclipse%20and%20SVN%20with%20Subclipse&amp;submitSummary=For%20English%20Readers%2C%20see%20the%20English%20version%20of%20the%20article%20at%20the%20bottom%20of%20the%20French%20one.%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AUn%20autre%20micro-billet%20pour%20signaler%20%C3%A0%20tous%20ceux%20qui%20sont%20en%20train%20de%20s%27arracher%20les%20cheveux%20en%20essayant%20de%20faire%20fonctionner%20sur%20tr%C3%A8s%20int%C3%A9res&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/svn-sous-eclipse-avec-subclipse-unable-to-load-default-svn-client-toi-meme-eclipse-and-svn-with-subclipse-539/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lire les MP3 sur Amarok sous Fedora 16 (FC16)</title>
		<link>http://trollfactory.fr/lire-les-mp3-sur-amarok-sous-fedora-16-fc16-537</link>
		<comments>http://trollfactory.fr/lire-les-mp3-sur-amarok-sous-fedora-16-fc16-537#comments</comments>
		<pubDate>Wed, 09 Nov 2011 23:41:14 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Astuces Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Scripts, astuces, dév. web]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[fc16]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[mp3]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=537</guid>
		<description><![CDATA[Voici un micro-article (après la boulette de cette aprem&#8230; publication d&#8217;un brouillon par mégarde&#8230;) pour quand même mettre l&#8217;info à disposition sur Internet : Si vous cherchez sur Internet comment lire les MP3 sous Fedora vous allez tomber sur cette page : Lecture de fichiers multimédia sur Fedora. Tout d&#8217;abord, il vous faudra, si ce [...]]]></description>
				<content:encoded><![CDATA[<p>Voici un micro-article (après la boulette de cette aprem&#8230; publication d&rsquo;un brouillon par mégarde&#8230;) pour quand même mettre l&rsquo;info à disposition sur Internet : <strong>Si vous cherchez sur Internet comment lire les MP3 sous Fedora vous allez tomber sur cette page :</strong> <a href="http://doc.fedora-fr.org/wiki/Lecture_de_fichiers_multim%C3%A9dia" target="_blank">Lecture de fichiers multimédia sur Fedora</a>.<strong> </strong></p>
<p>Tout d&rsquo;abord, il vous faudra, si ce n&rsquo;est pas encore fait, installer les dépôts RPM Fusion (merci à Mezzo pour le rappel <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> ). Ces dépôts contiennent à peu près&#8230; beaucoup de choses dont vous aurez besoin ! Notamment les pilotes graphiques pour Nvidia&#8230; etc. etc. &#8230; Bref, c&rsquo;est un <strong>must-have</strong>, installons-les, pour cela, tapez les commandes suivantes dans une console (il va vous demander le mots de passe root, c&rsquo;est normal vous allez installer un logiciel !) :</p>
<p><code>su -lc ‘yum install --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm‘<br />
 su -lc ‘yum install --nogpgcheck http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm‘</code></p>
<p>Si cette page est très intéressant, <strong>elle n&rsquo;est cependant pas à jour.</strong> Dorénavant, Amarok sous Fedora utilise GStreamer, pour avoir les MP3 il vous faut donc installer les paquets suivants :</p>
<pre># yum install gstreamer-plugins-ugly gstreamer-ffmpeg</pre>
<p>Un petit redémarrage d&rsquo;Amarok peut s&rsquo;imposer afin que ça fonctionne&#8230;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29%20-%20http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;t=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Voici%20un%20micro-article%20%28apr%C3%A8s%20la%20boulette%20de%20cette%20aprem...%20publication%20d%27un%20brouillon%20par%20m%C3%A9garde...%29%20pour%20quand%20m%C3%AAme%20mettre%20l%27info%20%C3%A0%20disposition%20sur%20Internet%20%3A%20Si%20vous%20cherchez%20sur%20Internet%20comment%20lire%20les%20MP3%20sous%20Fedora%20vous%20allez%20tomber%20sur" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;bodytext=Voici%20un%20micro-article%20%28apr%C3%A8s%20la%20boulette%20de%20cette%20aprem...%20publication%20d%27un%20brouillon%20par%20m%C3%A9garde...%29%20pour%20quand%20m%C3%AAme%20mettre%20l%27info%20%C3%A0%20disposition%20sur%20Internet%20%3A%20Si%20vous%20cherchez%20sur%20Internet%20comment%20lire%20les%20MP3%20sous%20Fedora%20vous%20allez%20tomber%20sur" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;notes=Voici%20un%20micro-article%20%28apr%C3%A8s%20la%20boulette%20de%20cette%20aprem...%20publication%20d%27un%20brouillon%20par%20m%C3%A9garde...%29%20pour%20quand%20m%C3%AAme%20mettre%20l%27info%20%C3%A0%20disposition%20sur%20Internet%20%3A%20Si%20vous%20cherchez%20sur%20Internet%20comment%20lire%20les%20MP3%20sous%20Fedora%20vous%20allez%20tomber%20sur" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;annotation=Voici%20un%20micro-article%20%28apr%C3%A8s%20la%20boulette%20de%20cette%20aprem...%20publication%20d%27un%20brouillon%20par%20m%C3%A9garde...%29%20pour%20quand%20m%C3%AAme%20mettre%20l%27info%20%C3%A0%20disposition%20sur%20Internet%20%3A%20Si%20vous%20cherchez%20sur%20Internet%20comment%20lire%20les%20MP3%20sous%20Fedora%20vous%20allez%20tomber%20sur" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;t=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;title=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Flire-les-mp3-sur-amarok-sous-fedora-16-fc16-537&amp;submitHeadline=Lire%20les%20MP3%20sur%20Amarok%20sous%20Fedora%2016%20%28FC16%29&amp;submitSummary=Voici%20un%20micro-article%20%28apr%C3%A8s%20la%20boulette%20de%20cette%20aprem...%20publication%20d%27un%20brouillon%20par%20m%C3%A9garde...%29%20pour%20quand%20m%C3%AAme%20mettre%20l%27info%20%C3%A0%20disposition%20sur%20Internet%20%3A%20Si%20vous%20cherchez%20sur%20Internet%20comment%20lire%20les%20MP3%20sous%20Fedora%20vous%20allez%20tomber%20sur&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/lire-les-mp3-sur-amarok-sous-fedora-16-fc16-537/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Appel à don&#8230; Pour Haïti ? Oui, pour Haïti !</title>
		<link>http://trollfactory.fr/appel-a-don-pour-haiti-oui-pour-haiti-526</link>
		<comments>http://trollfactory.fr/appel-a-don-pour-haiti-oui-pour-haiti-526#comments</comments>
		<pubDate>Tue, 04 Oct 2011 16:16:08 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Non classé]]></category>
		<category><![CDATA[association]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[humanitaire]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=526</guid>
		<description><![CDATA[Note : Ce billet est un peu inhabituel, mais on m&#8217;a demandé directement si je pouvais relayer l&#8217;information, et l&#8217;association en question contient des personnes en qui j&#8217;ai plus confiance concernant la gestion des dons effectués que dans les grandes ONG internationales qui sont pour moi à moitié un tas de mafieux et de magouilleurs [...]]]></description>
				<content:encoded><![CDATA[<p><em>Note : Ce billet est un peu inhabituel, mais on m&rsquo;a demandé directement si je pouvais relayer l&rsquo;information, et l&rsquo;association en question contient des personnes en qui j&rsquo;ai plus confiance concernant la gestion des dons effectués que dans les grandes ONG internationales qui sont pour moi à moitié un tas de mafieux et de magouilleurs <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</em></p>
<p><em>&laquo;&nbsp;Comment ça, Haïti, ils sont pas encore sauvés, avec tout le fric qu&rsquo;on leur a envoyé ?&nbsp;&raquo;</em> vous allez vous dire &#8230; Eh bien&#8230; non. <strong>Aussi incroyable que cela puisse paraître, Haïti est très loin d&rsquo;être rétabli</strong>, par mauvaise gestion des dons, par l&rsquo;ampleur du problème&#8230; Bref, c&rsquo;est pas encore ça.</p>
<p>D&rsquo;ailleurs, des milliers de gamines vives dans les camps de réfugiés et, plutôt que d&rsquo;aller à l&rsquo;école, <strong>passent leur journées à tenter d&rsquo;échapper aux pulsions viriles incontrôlées des hommes qui vivent dans les mêmes camps&#8230;</strong></p>
<p>À ce titre, une association &laquo;&nbsp;Ensemble Haïti&nbsp;&raquo;, sur Grenoble notamment, organise des collectes de matériel scolaire et de fonds financiers pour permettre aux enfants en Haïti d&rsquo;aller à l&rsquo;école, de sortir de la misère et de leur vie traumatisante.</p>
<p>L&rsquo;association &laquo;&nbsp;Ensemble pour Haïti&nbsp;&raquo; s&rsquo;est notament récemment adressée aux entreprises à travers un <a href="http://trollfactory.fr/wp-content/uploads/courrier-aux-entreprises-haïti.doc.pdf">courrier visible ici</a>.</p>
<p>La collecte va jusqu&rsquo;au 15 Octobre et se déroule à ces endroits :</p>
<p>- (Grenoble) Sur le chantier du Monery où un carton de collecte est situé dans la base vie</p>
<p>- (Vénissieux) À la SACOVIV : 19, rue Emile Zola à VENISSIEUX.</p>
<p>Vous pouvez également visiter leur site Web ici : <a href="http://ensemblepourhaiti.blogspot.com/" target="_blank">http://ensemblepourhaiti.blogspot.com/</a></p>
<p>Les numéros de téléphone pour le contact avec l&rsquo;association sont disponibles dans le courrier (PDF) que j&rsquo;ai indiqué en lien plus haut.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21%20-%20http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;t=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Note%20%3A%20Ce%20billet%20est%20un%20peu%20inhabituel%2C%20mais%20on%20m%27a%20demand%C3%A9%20directement%20si%20je%20pouvais%20relayer%20l%27information%2C%20et%20l%27association%20en%20question%20contient%20des%20personnes%20en%20qui%20j%27ai%20plus%20confiance%20concernant%20la%20gestion%20des%20dons%20effectu%C3%A9s%20que%20dans%20les%20grande" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;bodytext=Note%20%3A%20Ce%20billet%20est%20un%20peu%20inhabituel%2C%20mais%20on%20m%27a%20demand%C3%A9%20directement%20si%20je%20pouvais%20relayer%20l%27information%2C%20et%20l%27association%20en%20question%20contient%20des%20personnes%20en%20qui%20j%27ai%20plus%20confiance%20concernant%20la%20gestion%20des%20dons%20effectu%C3%A9s%20que%20dans%20les%20grande" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;notes=Note%20%3A%20Ce%20billet%20est%20un%20peu%20inhabituel%2C%20mais%20on%20m%27a%20demand%C3%A9%20directement%20si%20je%20pouvais%20relayer%20l%27information%2C%20et%20l%27association%20en%20question%20contient%20des%20personnes%20en%20qui%20j%27ai%20plus%20confiance%20concernant%20la%20gestion%20des%20dons%20effectu%C3%A9s%20que%20dans%20les%20grande" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;annotation=Note%20%3A%20Ce%20billet%20est%20un%20peu%20inhabituel%2C%20mais%20on%20m%27a%20demand%C3%A9%20directement%20si%20je%20pouvais%20relayer%20l%27information%2C%20et%20l%27association%20en%20question%20contient%20des%20personnes%20en%20qui%20j%27ai%20plus%20confiance%20concernant%20la%20gestion%20des%20dons%20effectu%C3%A9s%20que%20dans%20les%20grande" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;t=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;title=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fappel-a-don-pour-haiti-oui-pour-haiti-526&amp;submitHeadline=Appel%20%C3%A0%20don...%20Pour%20Ha%C3%AFti%20%3F%20Oui%2C%20pour%20Ha%C3%AFti%20%21&amp;submitSummary=Note%20%3A%20Ce%20billet%20est%20un%20peu%20inhabituel%2C%20mais%20on%20m%27a%20demand%C3%A9%20directement%20si%20je%20pouvais%20relayer%20l%27information%2C%20et%20l%27association%20en%20question%20contient%20des%20personnes%20en%20qui%20j%27ai%20plus%20confiance%20concernant%20la%20gestion%20des%20dons%20effectu%C3%A9s%20que%20dans%20les%20grande&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/appel-a-don-pour-haiti-oui-pour-haiti-526/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Le saviez-vous : Les Russes aim[ai]ent la bière !</title>
		<link>http://trollfactory.fr/le-saviez-vous-les-russes-aimaient-la-biere-521</link>
		<comments>http://trollfactory.fr/le-saviez-vous-les-russes-aimaient-la-biere-521#comments</comments>
		<pubDate>Sun, 24 Jul 2011 16:33:28 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Non classé]]></category>
		<category><![CDATA[alcool]]></category>
		<category><![CDATA[russia]]></category>
		<category><![CDATA[russie]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=521</guid>
		<description><![CDATA[Qui a dit que les Russes n&#8217;étaient fans que de Vodka ? Un article de la BCC m&#8217;apprend aujourd&#8217;hui qu&#8217;en Russie, jusqu&#8217;à présent, tous les alcools de moins de 10° étaient considérés comme &#171;&#160;de la nourriture&#160;&#187;. Trop fort ces Russes . Il n&#8217;y avait donc absolument aucune restriction à la vente de bière par exemple. [...]]]></description>
				<content:encoded><![CDATA[<p>Qui a dit que les Russes n&rsquo;étaient fans que de Vodka ?</p>
<p><a href="http://www.bbc.co.uk/news/world-europe-14232970">Un article de la BCC</a> m&rsquo;apprend aujourd&rsquo;hui qu&rsquo;en Russie, jusqu&rsquo;à présent, <strong>tous les alcools de moins de 10° étaient considérés comme &laquo;&nbsp;de la nourriture&nbsp;&raquo;</strong>. Trop fort ces Russes <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
<p>Il n&rsquo;y avait donc <strong>absolument aucune</strong> restriction à la vente de bière par exemple. Les enfants de 8 ans pouvait allaient en acheter à la sortie de l&rsquo;école pour prendre l&rsquo;apéro avec leurs amis de grande section&#8230; <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
<p>On y apprend par la même occasion qu&rsquo;au cours de la dernière décennie, les ventes de bière en Russie ont augmenté de 40%, contre une baisse de 30% pour la Vodka ! Décidément, les Russes ne sont plus ce qu&rsquo;ils étaient&#8230;Ah ben si en fait, car ils sont toujours autant alcooliques : Le niveau de consommation d&rsquo;alcool y serait le double du seuil critique défini par l&rsquo;OMS, joli score <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
<p>&nbsp;</p>
<p>Mais le président va sauver tout ça ! En effet, faut sauver la Vodka quand même, donc la vente de bière sera dorénavant sous contrôle (la bière uniquement, visiblement&#8230;) !</p>
<p>Il paraît qu&rsquo;une floppée de lois pour éviter l&rsquo;alcoolisme en Russie serait aussi en préparation&#8230; Mais bon, faut pas changer les moeurs trop vite non plus : Le président a demandé à son gouvernement de préparer ces lois en 2009 et ils commencent à les faire sortir en 2011&#8230; pour une application en 2013 ! Qu&rsquo;on soit tranquille pour l&rsquo;instant, la Russie reste un pays d&rsquo;alcooliques pour un moment, vous inquiétez pas pour vos vacances dans la toundra <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21%20-%20http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;t=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Qui%20a%20dit%20que%20les%20Russes%20n%27%C3%A9taient%20fans%20que%20de%20Vodka%20%3F%0D%0A%0D%0AUn%20article%20de%20la%20BCC%20m%27apprend%20aujourd%27hui%20qu%27en%20Russie%2C%20jusqu%27%C3%A0%20pr%C3%A9sent%2C%20tous%20les%20alcools%20de%20moins%20de%2010%C2%B0%20%C3%A9taient%20consid%C3%A9r%C3%A9s%20comme%20%22de%20la%20nourriture%22.%20Trop%20fort%20ces%20Russes%20%3A%29%20.%0D%0A%0D%0AIl%20n" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;bodytext=Qui%20a%20dit%20que%20les%20Russes%20n%27%C3%A9taient%20fans%20que%20de%20Vodka%20%3F%0D%0A%0D%0AUn%20article%20de%20la%20BCC%20m%27apprend%20aujourd%27hui%20qu%27en%20Russie%2C%20jusqu%27%C3%A0%20pr%C3%A9sent%2C%20tous%20les%20alcools%20de%20moins%20de%2010%C2%B0%20%C3%A9taient%20consid%C3%A9r%C3%A9s%20comme%20%22de%20la%20nourriture%22.%20Trop%20fort%20ces%20Russes%20%3A%29%20.%0D%0A%0D%0AIl%20n" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;notes=Qui%20a%20dit%20que%20les%20Russes%20n%27%C3%A9taient%20fans%20que%20de%20Vodka%20%3F%0D%0A%0D%0AUn%20article%20de%20la%20BCC%20m%27apprend%20aujourd%27hui%20qu%27en%20Russie%2C%20jusqu%27%C3%A0%20pr%C3%A9sent%2C%20tous%20les%20alcools%20de%20moins%20de%2010%C2%B0%20%C3%A9taient%20consid%C3%A9r%C3%A9s%20comme%20%22de%20la%20nourriture%22.%20Trop%20fort%20ces%20Russes%20%3A%29%20.%0D%0A%0D%0AIl%20n" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;annotation=Qui%20a%20dit%20que%20les%20Russes%20n%27%C3%A9taient%20fans%20que%20de%20Vodka%20%3F%0D%0A%0D%0AUn%20article%20de%20la%20BCC%20m%27apprend%20aujourd%27hui%20qu%27en%20Russie%2C%20jusqu%27%C3%A0%20pr%C3%A9sent%2C%20tous%20les%20alcools%20de%20moins%20de%2010%C2%B0%20%C3%A9taient%20consid%C3%A9r%C3%A9s%20comme%20%22de%20la%20nourriture%22.%20Trop%20fort%20ces%20Russes%20%3A%29%20.%0D%0A%0D%0AIl%20n" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;t=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;title=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fle-saviez-vous-les-russes-aimaient-la-biere-521&amp;submitHeadline=Le%20saviez-vous%20%3A%20Les%20Russes%20aim%5Bai%5Dent%20la%20bi%C3%A8re%20%21&amp;submitSummary=Qui%20a%20dit%20que%20les%20Russes%20n%27%C3%A9taient%20fans%20que%20de%20Vodka%20%3F%0D%0A%0D%0AUn%20article%20de%20la%20BCC%20m%27apprend%20aujourd%27hui%20qu%27en%20Russie%2C%20jusqu%27%C3%A0%20pr%C3%A9sent%2C%20tous%20les%20alcools%20de%20moins%20de%2010%C2%B0%20%C3%A9taient%20consid%C3%A9r%C3%A9s%20comme%20%22de%20la%20nourriture%22.%20Trop%20fort%20ces%20Russes%20%3A%29%20.%0D%0A%0D%0AIl%20n&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/le-saviez-vous-les-russes-aimaient-la-biere-521/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OH MY GOD On pouvait faire comme ça !?</title>
		<link>http://trollfactory.fr/oh-my-god-on-pouvait-faire-comme-ca-515</link>
		<comments>http://trollfactory.fr/oh-my-god-on-pouvait-faire-comme-ca-515#comments</comments>
		<pubDate>Wed, 06 Jul 2011 18:06:35 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[astuce]]></category>
		<category><![CDATA[caractère]]></category>
		<category><![CDATA[char]]></category>
		<category><![CDATA[perl]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[string]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=515</guid>
		<description><![CDATA[(pour Google quand même : Récupérer le Xème caractère d&#8217;une string / chaîne de caractère en PHP ) Putain de programmeurs Perl, pourquoi ils savent faire des trucs en PHP que les programmeurs PHP savent pas faire ? Depuis le temps que je grognais contre le fait qu&#8217;en C ou même en Pascal on peut [...]]]></description>
				<content:encoded><![CDATA[<p>(pour Google quand même : <strong>Récupérer le Xème caractère d&rsquo;une string / chaîne de caractère en PHP</strong> )<br />
Putain de programmeurs Perl, pourquoi ils savent faire des trucs <strong>en PHP </strong>que les programmeurs PHP savent pas faire ?</p>
<p>Depuis le temps que je grognais contre le fait qu&rsquo;en C ou même en Pascal on peut accéder au caractère X d&rsquo;une chaine de caractère en faisant machaine[X] et qu&rsquo;en PHP on peut pas&#8230; Et depuis le temps que j&rsquo;utilisais à la place <strong>substr($str, X-1, X)</strong> !!!!</p>
<p>Eh ben en fait, suffit de faire ça :</p>
<p><code>$mastring{X}</code></p>
<p>Fuck, j&rsquo;m&rsquo;en veux là.</p>
<p>Bon ben du coup c&rsquo;est la révolution : je sais faire ça et en plus c&rsquo;est le deuxième billet super court que je fais en 2 jours.</p>
<p>Désolé pour les non-geeks qui auront rien compris à ce post, il faut bien des fois aussi hein, regardez, moi je comprends rien aux posts <a href="http://chroniquesdefemmes.com/">qui sont postés là-bas</a> eh ben tant pis, je me dis que c&rsquo;est normal ! <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F%20-%20http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;t=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=%28pour%20Google%20quand%20m%C3%AAme%20%3A%20R%C3%A9cup%C3%A9rer%20le%20X%C3%A8me%20caract%C3%A8re%20d%27une%20string%20%2F%20cha%C3%AEne%20de%20caract%C3%A8re%20en%20PHP%20%29%0D%0APutain%20de%20programmeurs%20Perl%2C%20pourquoi%20ils%20savent%20faire%20des%20trucs%20en%20PHP%20que%20les%20programmeurs%20PHP%20savent%20pas%20faire%20%3F%0D%0A%0D%0ADepuis%20le%20temps%20que%20je%20gr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;bodytext=%28pour%20Google%20quand%20m%C3%AAme%20%3A%20R%C3%A9cup%C3%A9rer%20le%20X%C3%A8me%20caract%C3%A8re%20d%27une%20string%20%2F%20cha%C3%AEne%20de%20caract%C3%A8re%20en%20PHP%20%29%0D%0APutain%20de%20programmeurs%20Perl%2C%20pourquoi%20ils%20savent%20faire%20des%20trucs%20en%20PHP%20que%20les%20programmeurs%20PHP%20savent%20pas%20faire%20%3F%0D%0A%0D%0ADepuis%20le%20temps%20que%20je%20gr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;notes=%28pour%20Google%20quand%20m%C3%AAme%20%3A%20R%C3%A9cup%C3%A9rer%20le%20X%C3%A8me%20caract%C3%A8re%20d%27une%20string%20%2F%20cha%C3%AEne%20de%20caract%C3%A8re%20en%20PHP%20%29%0D%0APutain%20de%20programmeurs%20Perl%2C%20pourquoi%20ils%20savent%20faire%20des%20trucs%20en%20PHP%20que%20les%20programmeurs%20PHP%20savent%20pas%20faire%20%3F%0D%0A%0D%0ADepuis%20le%20temps%20que%20je%20gr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;annotation=%28pour%20Google%20quand%20m%C3%AAme%20%3A%20R%C3%A9cup%C3%A9rer%20le%20X%C3%A8me%20caract%C3%A8re%20d%27une%20string%20%2F%20cha%C3%AEne%20de%20caract%C3%A8re%20en%20PHP%20%29%0D%0APutain%20de%20programmeurs%20Perl%2C%20pourquoi%20ils%20savent%20faire%20des%20trucs%20en%20PHP%20que%20les%20programmeurs%20PHP%20savent%20pas%20faire%20%3F%0D%0A%0D%0ADepuis%20le%20temps%20que%20je%20gr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;t=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;title=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Foh-my-god-on-pouvait-faire-comme-ca-515&amp;submitHeadline=OH%20MY%20GOD%20On%20pouvait%20faire%20comme%20%C3%A7a%20%21%3F&amp;submitSummary=%28pour%20Google%20quand%20m%C3%AAme%20%3A%20R%C3%A9cup%C3%A9rer%20le%20X%C3%A8me%20caract%C3%A8re%20d%27une%20string%20%2F%20cha%C3%AEne%20de%20caract%C3%A8re%20en%20PHP%20%29%0D%0APutain%20de%20programmeurs%20Perl%2C%20pourquoi%20ils%20savent%20faire%20des%20trucs%20en%20PHP%20que%20les%20programmeurs%20PHP%20savent%20pas%20faire%20%3F%0D%0A%0D%0ADepuis%20le%20temps%20que%20je%20gr&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/oh-my-god-on-pouvait-faire-comme-ca-515/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bon plan : Frais d&#8217;installation gratuits sur tout OVH !</title>
		<link>http://trollfactory.fr/bon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512</link>
		<comments>http://trollfactory.fr/bon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512#comments</comments>
		<pubDate>Wed, 06 Jul 2011 05:35:59 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[Non classé]]></category>
		<category><![CDATA[bon plan]]></category>
		<category><![CDATA[gratis]]></category>
		<category><![CDATA[gratuit]]></category>
		<category><![CDATA[ovh]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=512</guid>
		<description><![CDATA[Bon, un petit post quand même pour faire passer l&#8217;info qu&#8217;on nous a gentiment mis directement dans notre boîte mail (nous=les geeks qui suivent les ML de OVH) comme d&#8217;habitude avec Octave (OVH) : Pour fêter le passage des 100 000 serveurs dans les datacenters OVH, les frais d&#8217;installation sautent jusqu&#8217;à nouvel ordre ! C&#8217;est [...]]]></description>
				<content:encoded><![CDATA[<p>Bon, un petit post quand même pour faire passer l&rsquo;info qu&rsquo;on nous a gentiment mis directement dans notre boîte mail (nous=les geeks qui suivent les ML de OVH) comme d&rsquo;habitude avec Octave (OVH) : Pour fêter le passage des 100 000 serveurs dans les datacenters OVH, les frais d&rsquo;installation sautent jusqu&rsquo;à nouvel ordre ! C&rsquo;est l&rsquo;occasion d&rsquo;économiser 60€ sur un Kimsufi, ou plusieurs centaines d&rsquo;euros sur des serveurs dédiés MG-XX par exemple.</p>
<p>&nbsp;</p>
<p><strong>Vous pouvez avoir plus d&rsquo;infos ici : <a href="http://www.pcinfo-web.com/actualites/721-1-frais-d-installation-gratuits-chez-ovh--.php" target="_blank">Frais d&rsquo;installation gratuits chez OVH !</a></strong></p>
<p>&nbsp;</p>
<p>(Ouaip, ce billet est sacrément court et certain iront peut-être même jusqu&rsquo;à accuser de micro-blogging alors que y&rsquo;a Twitter pour ça&#8230; ben et alors ? Je fais ce que je veux <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> )</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21%20-%20http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;t=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Bon%2C%20un%20petit%20post%20quand%20m%C3%AAme%20pour%20faire%20passer%20l%27info%20qu%27on%20nous%20a%20gentiment%20mis%20directement%20dans%20notre%20bo%C3%AEte%20mail%20%28nous%3Dles%20geeks%20qui%20suivent%20les%20ML%20de%20OVH%29%20comme%20d%27habitude%20avec%20Octave%20%28OVH%29%20%3A%20Pour%20f%C3%AAter%20le%20passage%20des%20100%20000%20serveurs%20dans%20les" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;bodytext=Bon%2C%20un%20petit%20post%20quand%20m%C3%AAme%20pour%20faire%20passer%20l%27info%20qu%27on%20nous%20a%20gentiment%20mis%20directement%20dans%20notre%20bo%C3%AEte%20mail%20%28nous%3Dles%20geeks%20qui%20suivent%20les%20ML%20de%20OVH%29%20comme%20d%27habitude%20avec%20Octave%20%28OVH%29%20%3A%20Pour%20f%C3%AAter%20le%20passage%20des%20100%20000%20serveurs%20dans%20les" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;notes=Bon%2C%20un%20petit%20post%20quand%20m%C3%AAme%20pour%20faire%20passer%20l%27info%20qu%27on%20nous%20a%20gentiment%20mis%20directement%20dans%20notre%20bo%C3%AEte%20mail%20%28nous%3Dles%20geeks%20qui%20suivent%20les%20ML%20de%20OVH%29%20comme%20d%27habitude%20avec%20Octave%20%28OVH%29%20%3A%20Pour%20f%C3%AAter%20le%20passage%20des%20100%20000%20serveurs%20dans%20les" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;annotation=Bon%2C%20un%20petit%20post%20quand%20m%C3%AAme%20pour%20faire%20passer%20l%27info%20qu%27on%20nous%20a%20gentiment%20mis%20directement%20dans%20notre%20bo%C3%AEte%20mail%20%28nous%3Dles%20geeks%20qui%20suivent%20les%20ML%20de%20OVH%29%20comme%20d%27habitude%20avec%20Octave%20%28OVH%29%20%3A%20Pour%20f%C3%AAter%20le%20passage%20des%20100%20000%20serveurs%20dans%20les" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;t=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;title=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fbon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512&amp;submitHeadline=Bon%20plan%20%3A%20Frais%20d%27installation%20gratuits%20sur%20tout%20OVH%20%21&amp;submitSummary=Bon%2C%20un%20petit%20post%20quand%20m%C3%AAme%20pour%20faire%20passer%20l%27info%20qu%27on%20nous%20a%20gentiment%20mis%20directement%20dans%20notre%20bo%C3%AEte%20mail%20%28nous%3Dles%20geeks%20qui%20suivent%20les%20ML%20de%20OVH%29%20comme%20d%27habitude%20avec%20Octave%20%28OVH%29%20%3A%20Pour%20f%C3%AAter%20le%20passage%20des%20100%20000%20serveurs%20dans%20les&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/bon-plan-frais-dinstallation-gratuits-sur-tout-ovh-512/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gingerbread (2.3): Problème de fermeture forcée Market Android / force close issue Android Market</title>
		<link>http://trollfactory.fr/gingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504</link>
		<comments>http://trollfactory.fr/gingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504#comments</comments>
		<pubDate>Fri, 03 Jun 2011 13:25:21 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[High-tech]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=504</guid>
		<description><![CDATA[ENGLISH READERS: AS USUAL, SEE THE ARTICLE IN YOUR LANGUAGE AT THE BOTTOM OF THE FRENCH ONE. Bon, décidément, après m&#8217;être battu pour mettre mon SGS à jour vers Gingerbread puis pour le rooter (avec Odin) et même récupérer la sonnerie par défaut &#171;&#160;Samsung Tune&#160;&#187;, maintenant c&#8217;est le Market qui ne veut plus marcher. Chose [...]]]></description>
				<content:encoded><![CDATA[<p><span style="font-size: 150%;"><strong>ENGLISH READERS: AS USUAL, SEE THE ARTICLE IN YOUR LANGUAGE AT THE BOTTOM OF THE FRENCH ONE.</strong></span></p>
<p>Bon, décidément, après <a title="Mettre à jour son SGS-i9000 vers Android 2.3" href="../mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#post" target="_blank">m&rsquo;être battu pour mettre mon SGS à jour vers Gingerbread</a> puis <a title="Tuto rooter son Androphone toute version avec Odin" href="../comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">pour le rooter (avec Odin)</a> et même <a href="http://trollfactory.fr/samsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497#post" target="_blank">récupérer la sonnerie par défaut &laquo;&nbsp;Samsung Tune&nbsp;&raquo;</a>, maintenant c&rsquo;est le Market qui ne veut plus marcher.</p>
<p>Chose assez étonnante d&rsquo;ailleurs car il marchait avant-hier soir pour moi&#8230; bon, peut-être la manip&rsquo; pour le rooter qui a foutu le bordel ?</p>
<p>Alors on test : On essaie de vider les données stockées (Paramètres &gt; Applications &gt; Gérer les applications &gt; Market &gt; Effacer les données), on essaie de faire un &laquo;&nbsp;wipe cache partition&nbsp;&raquo; en Recovery Mode, on essaie plein de trucs&#8230; rien ne marche&#8230;</p>
<p>Pour finalement, dernier essaie, sans trop d&rsquo;espoir: <strong>Désinstaller les updates du Market</strong>&#8230; Et là, <strong>ça marche !!!</strong></p>
<p>Donc, si vous avez des problèmes avec le <strong>Market </strong>qui vous dit &laquo;&nbsp;<strong>L&rsquo;application a dû être arrêtée</strong>&nbsp;&raquo; ou ce genre de message depuis votre <a title="Mettre à jour son SGS-i9000 vers Android 2.3" href="../mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#post" target="_blank">mise à jour vers Android 2.3</a>, la manipulation qu&rsquo;il faut effectuer pour que ça remarche est la suivante :</p>
<ol>
<li>Vider les données de l&rsquo;application &laquo;&nbsp;Market&nbsp;&raquo; : <strong>Paramètres &gt; Applications &gt; Gérer les applications &gt; Market &gt; Effacer les données</strong></li>
<li>Désinstaller les mises à jour de l&rsquo;application Market : <strong>Paramètres &gt; Applications &gt; Gérer les applications &gt; Market &gt; Désinstaller les mises à jour</strong> (en haut à droite)</li>
<li>Il va vous demander confirmation plusieurs fois : <strong>confirmer à chaque fois</strong>, puis cliquez finalement sur &laquo;&nbsp;Désinstaller&nbsp;&raquo;. <strong>Ne vous inquiétez pas</strong> le Market restera installé (dans sa version d&rsquo;origine)</li>
<li>Et voooooiiiilà ! Maintenant vous pouvez réouvrir le Market, ré-accepter les termes et conditions de service et tout devrait rentrer dans l&rsquo;ordre <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></li>
</ol>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- FOR ENGLISH READERS, START HERE &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Well, definitely, <strong>Gingerbread </strong>update has been a big deal for me, after fighting against Android to <a title="Mettre à jour son SGS-i9000 vers Android 2.3" href="../mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#post" target="_blank">update my SGS to Gingerbread</a> and then <a title="Tuto rooter son Androphone toute version avec Odin" href="../comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">to root it (avec Odin)</a> and even after <a href="http://trollfactory.fr/samsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497#post" target="_blank">to get back the &laquo;&nbsp;Samsung Tune&nbsp;&raquo; default ringtone</a>, now the Market is not working anymore.</p>
<p>Quite surprising though, as it was working two days ago&#8230; well, maybe the procedure to root it which messed up all that?</p>
<p>Ok so let&rsquo;s test a few things: wiping Market application data (Settings &gt; Applications &gt; Manage Applications &gt; Market &gt; Clear Data), tested, did not do anything, wiping cache partition in Recovery Mode, tested, not better&#8230; Ok, so nothing&rsquo;s working&#8230;</p>
<p>But, finally, last try, a bit hopelessly: <strong>Uninstalling the Market updates&#8230;</strong> And, what!? <strong>IT WORKS !!</strong></p>
<p>So, if you are having difficulties with the <strong>Market </strong>saying &laquo;&nbsp;<strong>Force close</strong>&nbsp;&raquo; or things like that after <a href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#post" target="_blank">you updated to Android 2.3</a>, the thing you have to do is the following:</p>
<ol>
<li>Clear Market app data:application &laquo;&nbsp;Market&nbsp;&raquo; : <strong>Settings &gt; Applications &gt; Manage Applications &gt; Market &gt; Clear Data</strong></li>
<li>Uninstall Market updates: <strong>Settings &gt; Applications &gt; Manage Applications &gt; Market &gt;Uninstall updates</strong> (button at the top right)</li>
<li>You will be asked several times to <strong>confirm your choice</strong>, to finally hit the button &laquo;&nbsp;Uninstall&nbsp;&raquo;.<strong> Don&rsquo;t be concerned about losing the Market app</strong>, it will be conserved, in its factory version.</li>
<li>And voilà! Now you can reopen the Market, accept the Terms &amp; Conditions of Service and everything should be all right.</li>
</ol>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market%20-%20http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;t=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0ABon%2C%20d%C3%A9cid%C3%A9ment%2C%20apr%C3%A8s%20m%27%C3%AAtre%20battu%20pour%20mettre%20mon%20SGS%20%C3%A0%20jour%20vers%20Gingerbread%20puis%20pour%20le%20rooter%20%28avec%20Odin%29%20et%20m%C3%AAme%20r%C3%A9cup%C3%A9rer%20la%20sonnerie%20par%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;bodytext=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0ABon%2C%20d%C3%A9cid%C3%A9ment%2C%20apr%C3%A8s%20m%27%C3%AAtre%20battu%20pour%20mettre%20mon%20SGS%20%C3%A0%20jour%20vers%20Gingerbread%20puis%20pour%20le%20rooter%20%28avec%20Odin%29%20et%20m%C3%AAme%20r%C3%A9cup%C3%A9rer%20la%20sonnerie%20par%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;notes=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0ABon%2C%20d%C3%A9cid%C3%A9ment%2C%20apr%C3%A8s%20m%27%C3%AAtre%20battu%20pour%20mettre%20mon%20SGS%20%C3%A0%20jour%20vers%20Gingerbread%20puis%20pour%20le%20rooter%20%28avec%20Odin%29%20et%20m%C3%AAme%20r%C3%A9cup%C3%A9rer%20la%20sonnerie%20par%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;annotation=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0ABon%2C%20d%C3%A9cid%C3%A9ment%2C%20apr%C3%A8s%20m%27%C3%AAtre%20battu%20pour%20mettre%20mon%20SGS%20%C3%A0%20jour%20vers%20Gingerbread%20puis%20pour%20le%20rooter%20%28avec%20Odin%29%20et%20m%C3%AAme%20r%C3%A9cup%C3%A9rer%20la%20sonnerie%20par%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;t=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;title=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fgingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504&amp;submitHeadline=Gingerbread%20%282.3%29%3A%20Probl%C3%A8me%20de%20fermeture%20forc%C3%A9e%20Market%20Android%20%2F%20force%20close%20issue%20Android%20Market&amp;submitSummary=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0ABon%2C%20d%C3%A9cid%C3%A9ment%2C%20apr%C3%A8s%20m%27%C3%AAtre%20battu%20pour%20mettre%20mon%20SGS%20%C3%A0%20jour%20vers%20Gingerbread%20puis%20pour%20le%20rooter%20%28avec%20Odin%29%20et%20m%C3%AAme%20r%C3%A9cup%C3%A9rer%20la%20sonnerie%20par%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/gingerbread-2-3-probleme-de-fermeture-forcee-market-android-force-close-issue-android-market-504/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#171;&#160;Samsung Tune&#160;&#187; sonnerie manquante sur SGS 2.3 / missing ringtone in Android Gingerbread for Galaxy S</title>
		<link>http://trollfactory.fr/samsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497</link>
		<comments>http://trollfactory.fr/samsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497#comments</comments>
		<pubDate>Fri, 03 Jun 2011 10:27:35 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[High-tech]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=497</guid>
		<description><![CDATA[ENGLISH READERS: AS USUAL, SEE THE ARTICLE IN YOUR LANGUAGE AT THE BOTTOM OF THE FRENCH ONE. Après m&#8217;être battu avant-hier pour mettre mon SGS vers à jour vers Gingerbread et hier pour le rooter (avec Odin), je découvre aujourd&#8217;hui que ma sonnerie d&#8217;appel entrant par défaut, qui était celle par défaut de Samsung mais [...]]]></description>
				<content:encoded><![CDATA[<p><span style="font-size: 160%;"><strong>ENGLISH READERS: AS USUAL, SEE THE ARTICLE IN YOUR LANGUAGE AT THE BOTTOM OF THE FRENCH ONE.</strong></span></p>
<p><a href="http://trollfactory.fr/wp-content/uploads/samsung-galaxy-s_1.jpg"><img class="size-medium wp-image-498 alignright" title="Samsung Galaxy S i9000" src="//trollfactory.fr/wp-content/uploads/samsung-galaxy-s_1-300x225.jpg" alt="sgs-i9000-photo" width="300" height="225" /></a></p>
<p>Après <a title="Mettre à jour son SGS-i9000 vers Android 2.3" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#post" target="_blank">m&rsquo;être battu avant-hier pour mettre mon SGS vers à jour vers Gingerbread</a> et <a title="Tuto rooter son Androphone toute version avec Odin" href="http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">hier pour le rooter (avec Odin)</a>, <strong>je découvre aujourd&rsquo;hui que ma sonnerie d&rsquo;appel entrant par défaut</strong>, qui était celle par défaut de Samsung mais qui me convenait parfaitement, <strong>a été remplacée par un espèce de &laquo;&nbsp;driiing driiiing&nbsp;&raquo; assez affreux</strong>. Je cherche donc à remettre les choses en place, mais là, à mon grand désarroi, je me rends compte après avoir écouté 2/3 fois toutes les sonneries disponibles sur Android que&#8230; <strong>La sonnerie que je cherche n&rsquo;y est plus !</strong></p>
<p><strong>Commence donc</strong> une bonne heure de recherches sur Internet avec différents <strong>fichiers foireux </strong>avant d&rsquo;enfin <strong>trouver la perle rare, la sonneries &laquo;&nbsp;Samsung Tune&nbsp;&raquo; version Galaxy S !</strong> (version D900E aussi, qui est mon autre téléphone, sur lequel je l&rsquo;avais, mais sans la possibilité de l&rsquo;exporter&#8230; -_-&laquo;&nbsp;)</p>
<p>Pour vous éviter la même peine que moi, je vous mets donc le fichier à disposition sur RapidShare : <a href="https://rapidshare.com/files/1056211527/01_Samsung_tune.mp3" target="_blank">https://rapidshare.com/files/1056211527/01_Samsung_tune.mp3 </a></p>
<p>D&rsquo;ailleurs, cette sonnerie est extraite d&rsquo;un pack contenant toutes les sonneries originalement fournies avec le Samsung Galaxy S i9000, que vous pouvez télécharger ici : <a href="http://www.4shared.com/get/h4cZSdi1/Samsung_Galaxy_S_Original_Ring.html" target="_blank">http://www.4shared.com/get/h4cZSdi1/Samsung_Galaxy_S_Original_Ring.html</a> (et que je vous ai ré-uploadé ici au cas où le lien vient à mourir : <a href="https://rapidshare.com/files/2789186832/Samsung_Galaxy_S_Original_Ringtones___Mobile4arab.com__.zip" target="_blank">https://rapidshare.com/files/2789186832/Samsung_Galaxy_S_Original_Ringtones___Mobile4arab.com__.zip</a> )</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; FOR ENGLISH READERS &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>&nbsp;</p>
<p><a href="http://trollfactory.fr/wp-content/uploads/samsung-galaxy-s_1.jpg"><img class="alignright" title="Samsung Galaxy S i9000" src="//trollfactory.fr/wp-content/uploads/samsung-galaxy-s_1-300x225.jpg" alt="sgs-i9000-photo" width="300" height="225" /></a>After fighting <a title="Updating SGS-i9000 to Android 2.3" href="http://trollfactory.fr/update-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467#post" target="_blank">against Kies two days ago to update my SGS i900 Gingerbread (2.3)</a> and <a title="Tuto rooter son Androphone toute version avec Odin" href="http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">yesterday to root it (via Odin)</a>, today <strong>I am discovering the ringtone I used as incoming call ringtone by default,</strong> which was the default one from Samsung and which was perfect for me, <strong>has just been replaced by a sort of horrible &laquo;&nbsp;riiiiing riiiiing&nbsp;&raquo;. </strong>So, I begin trying to put everything back to what it was, but, after hearing 2-3 times the complete list of ringtones available on my Gingerbread Androphone, I realize that&#8230; <strong>there is just not my ringtone on my phone anymore!</strong></p>
<p><strong>So begins </strong>a entire hour of search on the Internet, with the finding of several <strong>half-assed files </strong>before finally <strong>finding the gem, the Galaxy S version of  &laquo;&nbsp;Samsung Tune&nbsp;&raquo; ringtone! </strong>(which is by the way also the D900E version, which is my other phone, on which I had this f***ing ringtone but without being able to export it&#8230; -_-&laquo;&nbsp;)</p>
<p>In order to avoid such pain to you guys, I put the file at your disposal on RapidShare: <a href="https://rapidshare.com/files/1056211527/01_Samsung_tune.mp3" target="_blank">https://rapidshare.com/files/1056211527/01_Samsung_tune.mp3 </a></p>
<p>By the way, the ringtone is extracted from a pack containting the complete list of the originally built-in ringtones of the Galaxy S that you may find here: <a href="http://www.4shared.com/get/h4cZSdi1/Samsung_Galaxy_S_Original_Ring.html" target="_blank">http://www.4shared.com/get/h4cZSdi1/Samsung_Galaxy_S_Original_Ring.html</a> (pack that I re-uploaded for you in case the previous link dies one day: <a href="https://rapidshare.com/files/2789186832/Samsung_Galaxy_S_Original_Ringtones___Mobile4arab.com__.zip" target="_blank">https://rapidshare.com/files/2789186832/Samsung_Galaxy_S_Original_Ringtones___Mobile4arab.com__.zip</a> )</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S%20-%20http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;t=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0A%0D%0A%0D%0AApr%C3%A8s%20m%27%C3%AAtre%20battu%20avant-hier%20pour%20mettre%20mon%20SGS%20vers%20%C3%A0%20jour%20vers%20Gingerbread%20et%20hier%20pour%20le%20rooter%20%28avec%20Odin%29%2C%20je%20d%C3%A9couvre%20aujourd%27hui%20que%20ma%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;bodytext=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0A%0D%0A%0D%0AApr%C3%A8s%20m%27%C3%AAtre%20battu%20avant-hier%20pour%20mettre%20mon%20SGS%20vers%20%C3%A0%20jour%20vers%20Gingerbread%20et%20hier%20pour%20le%20rooter%20%28avec%20Odin%29%2C%20je%20d%C3%A9couvre%20aujourd%27hui%20que%20ma%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;notes=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0A%0D%0A%0D%0AApr%C3%A8s%20m%27%C3%AAtre%20battu%20avant-hier%20pour%20mettre%20mon%20SGS%20vers%20%C3%A0%20jour%20vers%20Gingerbread%20et%20hier%20pour%20le%20rooter%20%28avec%20Odin%29%2C%20je%20d%C3%A9couvre%20aujourd%27hui%20que%20ma%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;annotation=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0A%0D%0A%0D%0AApr%C3%A8s%20m%27%C3%AAtre%20battu%20avant-hier%20pour%20mettre%20mon%20SGS%20vers%20%C3%A0%20jour%20vers%20Gingerbread%20et%20hier%20pour%20le%20rooter%20%28avec%20Odin%29%2C%20je%20d%C3%A9couvre%20aujourd%27hui%20que%20ma%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;t=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;title=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fsamsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497&amp;submitHeadline=%22Samsung%20Tune%22%20sonnerie%20manquante%20sur%20SGS%202.3%20%2F%20missing%20ringtone%20in%20Android%20Gingerbread%20for%20Galaxy%20S&amp;submitSummary=ENGLISH%20READERS%3A%20AS%20USUAL%2C%20SEE%20THE%20ARTICLE%20IN%20YOUR%20LANGUAGE%20AT%20THE%20BOTTOM%20OF%20THE%20FRENCH%20ONE.%0D%0A%0D%0A%0D%0A%0D%0AApr%C3%A8s%20m%27%C3%AAtre%20battu%20avant-hier%20pour%20mettre%20mon%20SGS%20vers%20%C3%A0%20jour%20vers%20Gingerbread%20et%20hier%20pour%20le%20rooter%20%28avec%20Odin%29%2C%20je%20d%C3%A9couvre%20aujourd%27hui%20que%20ma%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/samsung-tune-sonnerie-manquante-sur-sgs-2-3-missing-ringtone-in-android-gingerbread-for-galaxy-s-497/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Mettre à jour son Samsung Galaxy S i9000 vers Gingerbread (Android 2.3) avec Kies 2</title>
		<link>http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465</link>
		<comments>http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465#comments</comments>
		<pubDate>Thu, 02 Jun 2011 16:32:37 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[High-tech]]></category>
		<category><![CDATA[adroid 2.3]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[froyo]]></category>
		<category><![CDATA[galaxy s]]></category>
		<category><![CDATA[gingerbread]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[i9000]]></category>
		<category><![CDATA[kies]]></category>
		<category><![CDATA[mise à jour]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[spooffw]]></category>
		<category><![CDATA[tuto]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=465</guid>
		<description><![CDATA[FOR ENGLISH READERS, an English version of this article is available here: Update your Samsung Galaxy S i9000 to Gingerbread (Android 2.3) through Kies 2 &#160; Lors de la première mise à jour du Samsung Galaxy S (i9000), je vous avais expliqué comment effectuer les manipulations vous permettant de passer à Froyo même s&#8217;il n&#8217;était [...]]]></description>
				<content:encoded><![CDATA[<p><strong>FOR ENGLISH READERS</strong>, an English version of this article is available here: <a title="English version : Updat to Gingerbread (Android 2.3) using Kies 2" href="http://trollfactory.fr/update-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2467" target="_blank">Update your Samsung Galaxy S i9000 to Gingerbread (Android 2.3) through Kies 2</a></p>
<p>&nbsp;</p>
<p><a title="Mise à jour galaxy S i9000 vers Froyo" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-froyo-android-2-2-lagfix-283#post" target="_blank">Lors de la première mise à jour du Samsung Galaxy S (i9000)</a>, je vous avais expliqué comment effectuer les manipulations vous permettant de passer à Froyo même s&rsquo;il n&rsquo;était pas encore &laquo;&nbsp;disponible&nbsp;&raquo; (car il risquait de ne pas l&rsquo;être avant looooongtemps !) en France.</p>
<p>&nbsp;</p>
<p>Ce mois-ci, Samsung a enfin sorti l&rsquo;update vers Gingerbread pour le SGS&#8230; Mais une fois de plus, c&rsquo;est la galère pour l&rsquo;obtenir, et Kies ne vous laissera pas mettre à jour votre version Française (XEF) avant certainement un bon mois, voire plusieurs.</p>
<p>&nbsp;</p>
<p>Et une fois de plus, il existe une technique à suivre à la lettre pour le faire quand même ! Par contre, elle est réellement très difficile à trouver sur internet, je vous la réexplique donc tout en détails ici.</p>
<p><span style="text-decoration: underline; color: #ff0000;"><strong>JE VOUS CONSEILLE FORTEMENT DE FAIRE UNE SAUVEGARDE COMPLETE DE VOTRE TELEPHONE AVANT D&rsquo;EFFECTUER CES MANIPULATIONS.</strong></span></p>
<p><em>Je ne pourrai en aucun cas être tenu responsable d&rsquo;une quelconque détérioration de votre téléphone, vous faites ces manipulations (relativement peu risquées si vous suivez la procédure à la lettre) à vos propres risques.</em></p>
<p>Pour mettre à jour son Samsung Galaxy S i9000 vers Gingerbread (Android 2.3), suivez les instructions suivantes :</p>
<p>&nbsp;</p>
<ol>
<li><strong>Téléchargez la dernière version de Kies </strong>depuis le site officielle de Samsung et <strong>CHOISISSEZ &laquo;&nbsp;English&nbsp;&raquo; comme langue d&rsquo;installation </strong>(avec la version FR ça plante&#8230; du moins pour moi ça plantait). <strong>Si vous avez déjà Samsung Kies installé </strong>sur votre ordinateur, lancez-le et <strong>acceptez simplement le téléchargement de la mise à jour. </strong>(Si vous aviez déjà Kies 2.x et qu&rsquo;il ne vous propose pas de changer la langue d&rsquo;installation, vous pouvez essayez avec la version FR mais je ne garantie rien).</li>
<li><strong>Si votre téléphone n&rsquo;est pas rooté, </strong>rootez-le en suivant la <a href="http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">procédure de root Android pour n&rsquo;importe quelle version d&rsquo;Android</a>. (NOTE : Après mise à jour, le root sera retiré, donc si vous ne voulez pas rooter votre téléphone, ne vous inquiétez pas, à la fin, il ne sera plus rooté). <strong>S&rsquo;il est déjà rooté, passez à l&rsquo;étape 3. </strong><strong> </strong></li>
<li><strong>Si votre téléphone a un &laquo;&nbsp;LagFix&nbsp;&raquo; quelconque, RETIREZ LE LAGFIX AVANT D&rsquo;UTILISER SPOOFFW</strong>. Si par exemple vous avez utilisé celui &laquo;&nbsp;One Click LagFix&nbsp;&raquo; (OCLF) de RyanZa <a title="Update Froyo Galaxy S" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-froyo-android-2-2-lagfix-283" target="_blank">comme conseillé dans l&rsquo;article d&rsquo;update Froyo du Galaxy S</a>, relancez l&rsquo;application et sélectionnez &laquo;&nbsp;Undo LagFix&nbsp;&raquo;. <strong>REBOOTEZ APRES AVOIR RETIRE LE LAGFIX. Si vous n&rsquo;avez pas de LagFix, passez à l&rsquo;étape 4.<br />
</strong><strong> </strong></li>
<li><strong>Installez l&rsquo;application &laquo;&nbsp;Spooffw&nbsp;&raquo;</strong> depuis le Market Android ou depuis <a href="http://forum.xda-developers.com/showthread.php?t=959806" target="_blank">le thread Spooffw Android de XDA-Dev</a>.</li>
<li><strong>Lancez Spooffw et acceptez la demande de droits root</strong> (il est possible qu&rsquo;elle apparaisse avec un peu de retard, auquel cas n&rsquo;hésitez pas à relancer l&rsquo;application après avoir accepté de manière permanente l&rsquo;accès root pour Spooffw).</li>
<li>Appuyez sur la touche &laquo;&nbsp;<strong>Menu</strong>&nbsp;&raquo; du téléphone pour faire apparaître le menu</li>
<li>Cliquez sur &laquo;&nbsp;<strong>Update the presets</strong>&laquo;&nbsp;</li>
<li>Cliquez sur le bouton &laquo;&nbsp;<strong>Backup</strong>&laquo;&nbsp;</li>
<li>Re-cliquez sur &laquo;&nbsp;Menu&nbsp;&raquo;, puis sur &laquo;&nbsp;<strong>Presets</strong>&laquo;&nbsp;</li>
<li>Sélectionnez &laquo;&nbsp;<strong>Europe</strong>&nbsp;&raquo; (<span style="text-decoration: underline;"><strong>PAS</strong></span> &laquo;&nbsp;Europe 2.1&Prime;), vous devriez voir apparaître &laquo;&nbsp;I9000XXJPO&nbsp;&raquo; dans PDA et avoir un ProductCode terminant par &laquo;&nbsp;XEU&nbsp;&raquo;</li>
<li>Cliquez sur &laquo;&nbsp;Ok&nbsp;&raquo;.</li>
<li><strong>Rebootez </strong>le téléphone</li>
<li>Après reboot, <strong>relancez Spooffw</strong></li>
<li>Choisissez &laquo;&nbsp;<strong>Presets</strong>&nbsp;&raquo; puis une nouvelle fois &laquo;&nbsp;<strong>Europe</strong>&nbsp;&raquo; (<strong><span style="text-decoration: underline;">PAS</span></strong> &laquo;&nbsp;Europe 2.1&Prime;), vous devriez voir apparaître respectivement I9000XXJPP et I9000XAJPO.</li>
<li>Cliquez sur &laquo;&nbsp;Ok&nbsp;&raquo;.</li>
<li><strong>Fermez &laquo;&nbsp;Spooffw&nbsp;&raquo;</strong> et allez sur l&rsquo;écran d&rsquo;accueil.</li>
<li><strong>Branchez </strong>votre téléphone à l&rsquo;ordinateur, en mode Samsung Kies.</li>
<li>Lancez <strong>Samsung Kies</strong></li>
<li><strong>Samsung Kies vous propose alors la mise à jour vers la version JVO.</strong></li>
<li>Acceptez la mise à jour et suivez les instructions&#8230;</li>
<li>Voilà, votre téléphone Samsung Galaxy S i9000 est sous Gingerbread !</li>
</ol>
<p>&nbsp;</p>
<p>Si vous avez trouver cette astuce utile, laissez un commentaire, ça fait toujours plaisir <img src="//trollfactory.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> <strong>Vous pouvez également <a title="Follow _Troll on Twitter" href="http://twitter.com/_Troll" target="_blank">me suivre sur Twitter ici </a></strong>afin d&rsquo;être au courant des nouvelles astuces publiées sur la TrollFactory.</p>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%20-%20http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;t=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=FOR%20ENGLISH%20READERS%2C%20an%20English%20version%20of%20this%20article%20is%20available%20here%3A%20Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ALors%20de%20la%20premi%C3%A8re%20mise%20%C3%A0%20jour%20du%20Samsung%20Galaxy%20S%20%28i9000%29%2C%20je%20vous%20avais%20expliq" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;bodytext=FOR%20ENGLISH%20READERS%2C%20an%20English%20version%20of%20this%20article%20is%20available%20here%3A%20Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ALors%20de%20la%20premi%C3%A8re%20mise%20%C3%A0%20jour%20du%20Samsung%20Galaxy%20S%20%28i9000%29%2C%20je%20vous%20avais%20expliq" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;notes=FOR%20ENGLISH%20READERS%2C%20an%20English%20version%20of%20this%20article%20is%20available%20here%3A%20Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ALors%20de%20la%20premi%C3%A8re%20mise%20%C3%A0%20jour%20du%20Samsung%20Galaxy%20S%20%28i9000%29%2C%20je%20vous%20avais%20expliq" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;annotation=FOR%20ENGLISH%20READERS%2C%20an%20English%20version%20of%20this%20article%20is%20available%20here%3A%20Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ALors%20de%20la%20premi%C3%A8re%20mise%20%C3%A0%20jour%20du%20Samsung%20Galaxy%20S%20%28i9000%29%2C%20je%20vous%20avais%20expliq" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;t=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;title=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fmettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465&amp;submitHeadline=Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202&amp;submitSummary=FOR%20ENGLISH%20READERS%2C%20an%20English%20version%20of%20this%20article%20is%20available%20here%3A%20Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0ALors%20de%20la%20premi%C3%A8re%20mise%20%C3%A0%20jour%20du%20Samsung%20Galaxy%20S%20%28i9000%29%2C%20je%20vous%20avais%20expliq&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Update your Samsung Galaxy S i9000 to Gingerbread (Android 2.3) through Kies 2</title>
		<link>http://trollfactory.fr/update-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467</link>
		<comments>http://trollfactory.fr/update-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467#comments</comments>
		<pubDate>Thu, 02 Jun 2011 16:32:11 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[High-tech]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[android 2.3]]></category>
		<category><![CDATA[froyo]]></category>
		<category><![CDATA[galaxy s]]></category>
		<category><![CDATA[gingerbread]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[sgs]]></category>
		<category><![CDATA[spooffw]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=467</guid>
		<description><![CDATA[This is the English version of the article &#171;&#160;Mettre à jour son Samsung Galaxy S i9000 vers Gingerbread (Android 2.3) avec Kies 2&#171;&#160; &#160; When the first update of the Samsung Galaxy S (i9000) came out, I explained to you how to proceedd to get Froyo your phone even if it was not &#171;&#160;available&#160;&#187; for [...]]]></description>
				<content:encoded><![CDATA[<p>This is the English version of the article &laquo;&nbsp;<a title="Mise à jour vers Gingerbread, version Française" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-gingerbread-android-2-3-avec-kies-2-465" target="_blank">Mettre à jour son Samsung Galaxy S i9000 vers Gingerbread (Android 2.3) avec Kies 2</a>&laquo;&nbsp;</p>
<p>&nbsp;</p>
<p><a title="Update to Froyo through Samsung Kies" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-froyo-android-2-2-lagfix-283#post" target="_blank">When the first update of the Samsung Galaxy S (i9000) came out</a>,  I explained to you how to proceedd to get Froyo your phone even if it  was not &laquo;&nbsp;available&nbsp;&raquo; for your country yet (and there was chance it would  not be before a long time).</p>
<p>This month, Samsung finally  released the Gingerbread update for SGS&#8230; But, well, one more time, it  is really painful to get it, and Kies won&rsquo;t let you update your French,  UK, or anything, version until certainly a month, not to say two.</p>
<p>So  one more time, there exists a method to follow word by word to update  nevertheless ! As it is really hard to find it clearly explained on the  Internet, I will explain it in details here.out en détails ici.</p>
<p><span style="text-decoration: underline; color: #ff0000;"><strong>I STRONGLY ADVICE YOU TO DO A COMPLETE BACKUP BEFORE DOING SUCH MANIPULATIONS.</strong></span></p>
<p><em>I  won&rsquo;t be, in any case, responsible for the possible damage you phone  may get by doing the following manipulations (which are, though, not  really risky if  you follow the procedure to the letter). You are doing  them at your own risks and under your entire responsibility.</em></p>
<p>So, to update its Samsung Galaxy S i9000 to Gingerbread (Android 2.3), one follows the following directives :</p>
<p>&nbsp;</p>
<ol>
<li><strong>Download the last Kies version</strong> from the official Samsung website and <strong>CHOOSE &laquo;&nbsp;English&nbsp;&raquo;</strong> as installation language (I tested for instance with FR version and it  kind of crashed&#8230; to, maybe it works with non-English version, but did  not for me). <strong>If you already have Samsung Kies installed </strong>on your computer, launch it and <strong>simply accept downloading and updating to the new version</strong>.  (If you already had Kies 2.x and it does not ask your for an  installation language during the update, you can try with a non-English  version but I don&rsquo;t have any guaranty it will work).</li>
<li><strong>If you phone is not rooted yet, </strong>roote  it by following the <a href="http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#post" target="_blank">Android any-version root instructions</a> (NOTE : After  updating through Kies, the root will vanish, so if you don&rsquo;t want your  phone to be rooted, don&rsquo;t be concerned about rooting it now, it won&rsquo;t be  rooted at the end anyway). <strong>If it is already rooted, go to the step 3. </strong><strong> </strong></li>
<li><strong>If your phone has any sort of &laquo;&nbsp;LagFix&nbsp;&raquo;, UNDO IT NOW BEFORE USING SPOOFFW. </strong>If, for example you installed the &laquo;&nbsp;One Click LagFix&nbsp;&raquo; (OCLF) by RyanZa <a title="Update Froyo Galaxy S" href="http://trollfactory.fr/mettre-a-jour-son-samsung-galaxy-s-i9000-vers-froyo-android-2-2-lagfix-283" target="_blank">as adviced in this article about Froyo update on the Galaxy S</a>, just relaunch the OCLF application and click &laquo;&nbsp;Undo LagFix&nbsp;&raquo;. <strong>REBOOT AFTER UNDOING THE LAGFIX. If you don&rsquo;t have any lagfix, go to step 4.</strong><strong> </strong><strong> </strong></li>
<li><strong>Install the &laquo;&nbsp;Spooffw&nbsp;&raquo; app</strong> from Android Market or from <a href="http://forum.xda-developers.com/showthread.php?t=959806" target="_blank">the XDA-Dev thread about Spooffw</a>.</li>
<li><strong>Launch Spooffw and accept the root rights request </strong>(it  is possible that it does not appear immediatly, if this is the case,  accept it when it appears and resatart the application after having  accepted the permanent root access for Spooffw).</li>
<li>Push the &laquo;&nbsp;<strong>Menu</strong>&nbsp;&raquo; button on your phone to get the menu</li>
<li>Click &laquo;&nbsp;<strong>Update the presets</strong>&laquo;&nbsp;</li>
<li>Then click  &laquo;&nbsp;<strong>Backup</strong>&nbsp;&raquo; button</li>
<li>Reclick &laquo;&nbsp;Menu&nbsp;&raquo;, and then &laquo;&nbsp;<strong>Presets</strong>&laquo;&nbsp;</li>
<li>Select &laquo;&nbsp;<strong>Europe</strong>&nbsp;&raquo; (<span style="text-decoration: underline;"><strong>NOT</strong> </span>&laquo;&nbsp;Europe 2.1&Prime;), you should see &laquo;&nbsp;I9000XXJPO&nbsp;&raquo; for PDA and ProductCode ending with &laquo;&nbsp;XEU&nbsp;&raquo;</li>
<li>Click &laquo;&nbsp;Ok&nbsp;&raquo;.</li>
<li><strong>Reboot</strong> the phone</li>
<li>After reboot, <strong>relaunch Spooffw<br />
</strong></li>
<li>Choose &laquo;&nbsp;Menu&nbsp;&raquo; and &laquo;&nbsp;<strong>Presets</strong>&nbsp;&raquo; one more time and select &laquo;&nbsp;<strong>Europe</strong>&nbsp;&raquo; (<span style="text-decoration: underline;"><strong>NOT</strong> </span>&laquo;&nbsp;Europe 2.1&Prime;), you should see respectively I9000XXJPP and I9000XAJPO.</li>
<li>Click &laquo;&nbsp;Ok&nbsp;&raquo;.</li>
<li><strong>Close &laquo;&nbsp;Spooffw&nbsp;&raquo;</strong> and go home screen</li>
<li><strong>Connect</strong> the phone to the computer, in Samsung Kies mode.</li>
<li>Launch <strong>Samsung Kies</strong></li>
<li><strong>Samsung Kies suggests you to update to JVO version.</strong></li>
<li>Accept the update and follow the instructions&#8230;</li>
<li>Here is it, your Samsung Galaxy S i9000 is now running Gingerbread !</li>
</ol>
<p>&nbsp;</p>
<p>If you found this tip useful, don&rsquo;t hesitate to post a comment below, it is always pleasant to know people use your work <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> <strong>You can also <a title="Follow _Troll on Twitter" href="http://twitter.com/_Troll" target="_blank">follow me on Twitter here</a></strong> to keep up to date about the last tips published on the TrollFactory.</p>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202%20-%20http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;t=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=This%20is%20the%20English%20version%20of%20the%20article%20%22Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%22%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AWhen%20the%20first%20update%20of%20the%20Samsung%20Galaxy%20S%20%28i9000%29%20came%20out%2C%20%20I%20explained%20to%20you%20how%20to%20proceedd%20to%20get%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;bodytext=This%20is%20the%20English%20version%20of%20the%20article%20%22Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%22%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AWhen%20the%20first%20update%20of%20the%20Samsung%20Galaxy%20S%20%28i9000%29%20came%20out%2C%20%20I%20explained%20to%20you%20how%20to%20proceedd%20to%20get%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;notes=This%20is%20the%20English%20version%20of%20the%20article%20%22Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%22%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AWhen%20the%20first%20update%20of%20the%20Samsung%20Galaxy%20S%20%28i9000%29%20came%20out%2C%20%20I%20explained%20to%20you%20how%20to%20proceedd%20to%20get%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;annotation=This%20is%20the%20English%20version%20of%20the%20article%20%22Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%22%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AWhen%20the%20first%20update%20of%20the%20Samsung%20Galaxy%20S%20%28i9000%29%20came%20out%2C%20%20I%20explained%20to%20you%20how%20to%20proceedd%20to%20get%20" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;t=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;title=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fupdate-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467&amp;submitHeadline=Update%20your%20Samsung%20Galaxy%20S%20i9000%20to%20Gingerbread%20%28Android%202.3%29%20through%20Kies%202&amp;submitSummary=This%20is%20the%20English%20version%20of%20the%20article%20%22Mettre%20%C3%A0%20jour%20son%20Samsung%20Galaxy%20S%20i9000%20vers%20Gingerbread%20%28Android%202.3%29%20avec%20Kies%202%22%0D%0A%0D%0A%26nbsp%3B%0D%0A%0D%0AWhen%20the%20first%20update%20of%20the%20Samsung%20Galaxy%20S%20%28i9000%29%20came%20out%2C%20%20I%20explained%20to%20you%20how%20to%20proceedd%20to%20get%20&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/update-your-samsung-galaxy-s-i9000-to-gingerbread-android-2-3-through-kies-2-467/feed</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>Comment rooter son Android quelque-soit la version, avec Odin // Root your Android Phone any version using Odin</title>
		<link>http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473</link>
		<comments>http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473#comments</comments>
		<pubDate>Thu, 02 Jun 2011 15:04:43 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[High-tech]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[download mode]]></category>
		<category><![CDATA[easy root]]></category>
		<category><![CDATA[eclair]]></category>
		<category><![CDATA[froyo]]></category>
		<category><![CDATA[galaxy s]]></category>
		<category><![CDATA[gingerbread]]></category>
		<category><![CDATA[gingerbreak]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[odin]]></category>
		<category><![CDATA[recovery mode]]></category>
		<category><![CDATA[rom manager]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[rooting]]></category>
		<category><![CDATA[samsung]]></category>
		<category><![CDATA[spooffw]]></category>
		<category><![CDATA[tuto]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=473</guid>
		<description><![CDATA[For English readers, see the English version at the end of the French one. NOTE : LE &#171;&#160;PACKAGE&#160;&#187; FOURNI ICI CONTIENT LES KERNELS POUR LE SAMSUNG GALAXY S I9000. IL EST POSSIBLE QUE CELA MARCHE POUR D&#8217;AUTRES TELEPHONES MAIS SOYEZ SÛR D&#8217;AVOIR LES KERNELS CORRESPONDANTS A VOTRE TELEPHONE AVANT D&#8217;EFFECTUER LA MANIP (SOUVENT TROUVABLES FACILEMENT [...]]]></description>
				<content:encoded><![CDATA[<p><span style="color: #0000ff;"><span style="font-size: 170%;"><strong>For English readers, see the English version at the end of the French one</strong></span>.</span></p>
<p><strong><span style="color: #ff0000;">NOTE : LE &laquo;&nbsp;PACKAGE&nbsp;&raquo; FOURNI ICI CONTIENT LES KERNELS POUR LE SAMSUNG GALAXY S I9000. IL EST POSSIBLE QUE CELA MARCHE POUR D&rsquo;AUTRES TELEPHONES MAIS SOYEZ SÛR D&rsquo;AVOIR LES KERNELS CORRESPONDANTS A VOTRE TELEPHONE AVANT D&rsquo;EFFECTUER LA MANIP (SOUVENT TROUVABLES FACILEMENT SUR GOOGLE / XDA-DEV)</span></strong></p>
<p>Depuis Android 2.2 (Froyo), il est un peu compliqué de rooter son téléphone Android car les &laquo;&nbsp;update.zip&nbsp;&raquo; que l&rsquo;on utiliser pour appliquer les changements à partir du mode Recovery ne sont plus reconnus et on aboutit à l&rsquo;erreur &laquo;&nbsp;Unsigned package&nbsp;&raquo; ou &laquo;&nbsp;Signature invalid&nbsp;&raquo;.</p>
<p>Cependant, ce qu&rsquo;on ne sait pas, c&rsquo;est qu&rsquo;il existe un moyen de rooter le téléphone très simplement en utilisant Odin, sans perdre aucune, donnée, et ça marche avec toutes les versions d&rsquo;Android (Froyo, Gingerbread&#8230; et Eclair évidemment, vu que les update.zip ne posent pas de souci sous Eclair).</p>
<p><span style="text-decoration: underline; color: #ff0000;"><strong>CEPENDANT IL EST CONSEILLE DE NE PAS EFFECTUER CES MANIPULATIONS SI VOTRE TELEPHONE NE PEUT PAS ALLER EN MODE DOWNLOAD VIA LA COMBINAISON DE TROIS TOUCHES &laquo;&nbsp;VOLUME BAS&nbsp;&raquo; + &laquo;&nbsp;POWER&nbsp;&raquo; + &laquo;&nbsp;HOME&nbsp;&raquo; (comme toute manipulation via Odin) (OU UNE AUTRE COMBINAISON DE TOUCHES).</strong></span></p>
<p>Ce qu&rsquo;il vous faudra :</p>
<ol>
<li>Odin dans sa dernière version (incluse dans le PackageRootAnyVersion, voir ci-dessous)</li>
<li>Le kernel par défaut du i9000</li>
<li><strong>Le KERNEL (et uniquement le kernel) de <span style="color:red" >votre version d&rsquo;Android</span></strong></li>
<li>Un câble USB et le téléphone qui va avec !</li>
<li>Si vous n&rsquo;avez jamais installé Kies ou le CD fourni par Samsung avec votre Galaxy S sur votre ordinateur, il vous faudra aussi les pilotes Samsung pour Windows. Trouvables ici : <a href="http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x86.shtml" target="_blank" >WinXP32bits</a>, <a href="http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x64.shtml" target="_blank" >WinXP64bits</a></li>
</ol>
<p>&nbsp;</p>
<p>La manipulation à effectuer est la suivante :</p>
<ol>
<li><strong>Téléchargez </strong>le <a href="http://trollfactory.fr/dl/PackageRootAnyVersion.zip">PackageRootAnyVersion </a>et extrayez le tout. Il contient les versions JPC, JPY et JVO. Si cela ne correspond pas à votre version, regardez en bas de l&rsquo;article pour savoir comment obtenir celui de votre version.</li>
<li><strong>Mettez le fichier update.zip</strong> (contenu dans l&rsquo;archive téléchargée) à la racine de la mémoire interne du téléphone (de manière à ce que ça apparaisse en tant que <strong>/sdcard/update.zip</strong> pour le téléphone).</li>
<li><strong>Eteignez</strong> votre téléphone</li>
<li>Mettez votre téléphone en &laquo;&nbsp;<strong>Download mode</strong>&nbsp;&raquo; en appuyant simultanément sur les touches &laquo;&nbsp;POWER&nbsp;&raquo;,  &laquo;&nbsp;VOLUME BAS&nbsp;&raquo; et &laquo;&nbsp;HOME&nbsp;&raquo; jusqu&rsquo;à ce qu&rsquo;apparaisse le Download mode (écran avec un panneau triangulaire et &laquo;&nbsp;Downloading&nbsp;&raquo; écrit en jaune)</li>
<li><strong>VERIFIEZ QUE KIES N&rsquo;EST PAS LANCE SUR VOTRE ORDINATEUR</strong></li>
<li><strong>Branchez votre téléphone</strong> à votre ordinateur. SI KIES SE LANCE AUTOMATIQUEMENT, FERMEZ-LE</li>
<li>Lancez <strong>Odin</strong></li>
<li>Décochez &laquo;&nbsp;<strong>Auto-reboot</strong>&laquo;&nbsp;, puis cliquez sur &laquo;&nbsp;<strong>PDA</strong>&nbsp;&raquo; et sélectionnez le fichier <strong>KERNEL_i9000.tar</strong></li>
<li>Cliquez sur &laquo;&nbsp;<strong>Start</strong>&laquo;&nbsp;</li>
<li>Une fois que Odin vous dit &laquo;&nbsp;<strong>PASSED</strong>&laquo;&nbsp;. Redémarrez votre téléphone en &laquo;&nbsp;<strong>Recovery Mode</strong>&nbsp;&raquo; (en appuyant simultanément sur &laquo;&nbsp;VOLUME HAUT&nbsp;&raquo; + &laquo;&nbsp;POWER&nbsp;&raquo; + &laquo;&nbsp;HOME&nbsp;&raquo;, si votre téléphone ne redémarre pas quand vous appuyez longtemps sur la touche POWER, alors retirez la batterie, puis démarrez le en Mode Recovery).</li>
<li>En mode Recovery, sélectionnez &laquo;&nbsp;<strong>Apply update.zip</strong>&laquo;&nbsp;. Votre téléphone est maintenant rooté.</li>
<li>Une fois le fichier appliqué. Redémarrez votre téléphone en &laquo;&nbsp;<strong>Download Mode</strong>&nbsp;&raquo; (en appuyant simultanément  sur &laquo;&nbsp;VOLUME BAS&nbsp;&raquo; + &laquo;&nbsp;POWER&nbsp;&raquo; + &laquo;&nbsp;HOME&nbsp;&raquo;, si votre téléphone ne redémarre  pas quand vous appuyez longtemps sur la touche POWER, alors retirez la  batterie, puis démarrez le en Mode Download).</li>
<li><strong>VERIFIEZ QUE KIES N&rsquo;EST PAS LANCE SUR VOTRE ORDINATEUR</strong></li>
<li><strong>Branchez votre téléphone</strong> à votre ordinateur. SI KIES SE LANCE AUTOMATIQUEMENT, FERMEZ-LE</li>
<li>Lancez <strong>Odin</strong></li>
<li>Cochez &laquo;&nbsp;Auto-reboot&nbsp;&raquo;, puis cliquez sur &laquo;&nbsp;<strong>PDA</strong>&nbsp;&raquo; et sélectionnez le fichier <strong>KERNEL_VOTRE_VERSION.tar</strong></li>
<li>Cliquez sur &laquo;&nbsp;<strong>Start</strong>&laquo;&nbsp;</li>
<li>Votre téléphone redémarrera automatiquement une fois le Kernel remis en place. Il peut mettre un certain temps à se démarrer car le cache aura été vidé.</li>
</ol>
<p>&nbsp;</p>
<h3>Comment récupérer le Kernel de votre version d&rsquo;Android :</h3>
<p>&nbsp;</p>
<ol>
<li>Téléchargez la ROM complète en cherchant sur Google.</li>
<li>Ouvrez le fichier XXXX_PDA (.tar ou .tar.md5 ou .cequevousvoulez) avec un décompresseur (7-Zip par exemple) et <span style="text-decoration: underline;"><strong>extrayez le fichier &laquo;&nbsp;zImage&nbsp;&raquo;</strong></span>.</li>
<li><strong>Téléchargez et extrayez</strong> ensuite le fichier <a href="http://trollfactory.fr/dl/CreateTarForKernel.zip">CreateTarForKernel.zip</a> <strong>dans le même dossier </strong>que le fichier zImage que vous venez d&rsquo;extraire. Puis lancez le fichier<strong> tar.bat</strong> qui va créer un fichier KERNEL.tar</li>
<li><strong>Ce fichier KERNEL.tar</strong> est celui à utiliser avec Odin dans la dernière partie de la manipulation ci-dessus, pour remettre le Kernel correspondant à votre version sur votre téléphone.</li>
</ol>
<p>&nbsp;</p>
<p>Si vous avez trouver cette astuce utile, laissez un commentaire, ça fait toujours plaisir <img src="//trollfactory.fr/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> <strong>Vous pouvez également <a title="Follow _Troll on Twitter" href="http://twitter.com/_Troll" target="_blank">me suivre sur Twitter ici </a></strong>afin d&rsquo;être au courant des nouvelles astuces publiées sur la TrollFactory.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- FOR ENGLISH READERS, START HERE &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p><strong><span style="color: #ff0000;">NOTE : THE &laquo;&nbsp;PACKAGE&nbsp;&raquo; PROVIDED HERE CONTAINS THE KERNELS FOR THE SAMSUNG GALAXY  S I9000. IT MIGHT WORK WITH OTHER PHONES BUT BE SURE TO GET THE KERNELS CORRESPONDING TO YOUR PHONE BEFORE DOING SUCH MANIPULATIONS (THERE ARE VERY OFTEN FINDABLE USING GOOGLE OR ON XDA-DEV)</span></strong></p>
<p>From the time Android 2.2 (Froyo) came out, it has become a bit complicated to root its Android phone, with a new technique popping up at every version trying to exploit a security issue of the Android system because the &laquo;&nbsp;update.zip&nbsp;&raquo; can&rsquo;t be used anymore, since an error message appear like &laquo;&nbsp;Signature invalid&nbsp;&raquo; or &laquo;&nbsp;Unsigned package&nbsp;&raquo; when you try t o apply the update.zip in recovery mode.</p>
<p>However, one thing is mostly unkown: we can root the phone really easily via Odin, without losing any data or setting, and it works with any version of Android (Froyo, Gingerbread&#8230; and of course, Eclair, as the update.zip are working with Eclair).</p>
<p><span style="text-decoration: underline; color: #ff0000;"><strong>WARNING : IT IS STRONGLY ADVICED NOT TO DO ANY OF THESE MANIPULATIONS IF YOUR PHONE CANNOT GO INTO DOWNLOAD MODE VIA THE COMBINATION OF THREE BUTTONS &laquo;&nbsp;VOLUME DOWN&nbsp;&raquo; + &laquo;&nbsp;POWER&nbsp;&raquo; +  &laquo;&nbsp;HOME&nbsp;&raquo; (as any manipulation with Odin) (OR ANOTHER BUTTONS COMBINATION).</strong></span></p>
<p>What you will need:</p>
<ol>
<li>Odin  in its last version (included in PackageRootAnyVersion (see below)</li>
<li>Default i9000 kernel</li>
<li>Your Android particular version KERNEL (and Kernel only)</li>
<li>A USB cable and the phone which comes with !</li>
<li>If you have not ever installed Samsung Kies or the Samsung CD that comes with your Galaxy S on your computer, you will also need Samsung drivers for Windows. They can be found here: <a href="http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x86.shtml" target="_blank" >WinXP32bits</a>, <a href="http://drivers.softpedia.com/get/MOBILES/Samsung/Samsung-Galaxy-S-USB-Driver-for-Windows-x64.shtml" target="_blank" >WinXP64bits</a></li>
</ol>
<p>&nbsp;</p>
<p>The manipulation you have to do then is:</p>
<ol>
<li><strong>Download </strong>the <a href="../dl/PackageRootAnyVersion.zip">PackageRootAnyVersion</a> and extract the whole thing. It contains the JPC, JPY et JVO versions kernel. If it does not correspond to your version, look at he bottom of this article to get the instructions to grab your kernel version.</li>
<li>Put the <strong>update.zip</strong> file (contained in the archive you&rsquo;ve just downloaded (PackageRootAnyVersion) at the root of your phone internal memory (&laquo;&nbsp;internal sd card&nbsp;&raquo;) (such that it appears as <strong>/sdcard/update.zip</strong> for Android).</li>
<li><strong>Switch off</strong> your Androidphone</li>
<li>Put your phone in &laquo;&nbsp;<strong>Download mode</strong>&nbsp;&raquo; by pushing simultaneously the buttons &laquo;&nbsp;POWER&nbsp;&raquo;,  &laquo;&nbsp;VOLUME DOWN&nbsp;&raquo; and &laquo;&nbsp;HOME&nbsp;&raquo; until Download mode appears (a screen with a triangular panel and &laquo;&nbsp;Downloading&nbsp;&raquo; wirtten in yellow)</li>
<li><strong>CHECK THAT KIES IS NOT OPENED ON YOUR COMPUTER</strong></li>
<li><strong>Plug your phone</strong> into your computer. IF KIES AUTOMATICALLY LAUNCHES, CLOSE IT.</li>
<li>Launch <strong>Odin</strong></li>
<li>Uncheck &laquo;&nbsp;<strong>Auto-reboot</strong>&laquo;&nbsp;, then click &laquo;&nbsp;<strong>PDA</strong>&nbsp;&raquo; and select the <strong>KERNEL_i9000.tar</strong> file.</li>
<li>Click &laquo;&nbsp;<strong>Start</strong>&laquo;&nbsp;</li>
<li>Once Odin has said &laquo;&nbsp;<strong>PASSED</strong>&laquo;&nbsp;, restart your phone in &laquo;&nbsp;<strong>Recovery Mode</strong>&nbsp;&raquo; (by pushing simultaneously the buttons &laquo;&nbsp;POWER&nbsp;&raquo;,  &laquo;&nbsp;VOLUME UP&nbsp;&raquo; and &laquo;&nbsp;HOME&nbsp;&raquo;, if your phone does not reboot automatically when you press the POWER button for several seconds, just pull the battery  and then start in Recovery Mode).</li>
<li>In Recovery Mode, select &laquo;&nbsp;<strong>Apply update.zip</strong>&laquo;&nbsp;. Your phone is now rooted.</li>
<li>Once the update.zip file applied, restart your phone in &laquo;&nbsp;<strong>Download Mode</strong>&nbsp;&raquo; (by pushing simultaneously the buttons &laquo;&nbsp;POWER&nbsp;&raquo;,  &laquo;&nbsp;VOLUME DOWN&nbsp;&raquo; and &laquo;&nbsp;HOME&nbsp;&raquo;  until Download mode appears, if your phone does not reboot automatically when you press the POWER  button for several seconds, just pull the battery  and then start in Download Mode).</li>
<li><strong>CHECK THAT KIES IS NOT OPENED ON YOUR COMPUTER</strong></li>
<li><strong>Plug your phone</strong> into your computer. IF KIES AUTOMATICALLY LAUNCHES, CLOSE IT.</li>
<li>Launch <strong>Odin</strong></li>
<li>Check &laquo;&nbsp;Auto-reboot&nbsp;&raquo;, then click &laquo;&nbsp;<strong>PDA</strong>&nbsp;&raquo;  and select the<strong> KERNEL_YOUR_VERSION.tar</strong> file</li>
<li>Click &laquo;&nbsp;<strong>Start</strong>&laquo;&nbsp;</li>
<li>Your phone will reboot automatically once the Kernel is in place. It may take a long time to start because the cache has been emptied.</li>
</ol>
<p>&nbsp;</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin%20-%20http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;t=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=For%20English%20readers%2C%20see%20the%20English%20version%20at%20the%20end%20of%20the%20French%20one.%0D%0A%0D%0ANOTE%20%3A%20LE%20%22PACKAGE%22%20FOURNI%20ICI%20CONTIENT%20LES%20KERNELS%20POUR%20LE%20SAMSUNG%20GALAXY%20S%20I9000.%20IL%20EST%20POSSIBLE%20QUE%20CELA%20MARCHE%20POUR%20D%27AUTRES%20TELEPHONES%20MAIS%20SOYEZ%20S%C3%9BR%20D%27AVOIR%20LES%20KER" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;bodytext=For%20English%20readers%2C%20see%20the%20English%20version%20at%20the%20end%20of%20the%20French%20one.%0D%0A%0D%0ANOTE%20%3A%20LE%20%22PACKAGE%22%20FOURNI%20ICI%20CONTIENT%20LES%20KERNELS%20POUR%20LE%20SAMSUNG%20GALAXY%20S%20I9000.%20IL%20EST%20POSSIBLE%20QUE%20CELA%20MARCHE%20POUR%20D%27AUTRES%20TELEPHONES%20MAIS%20SOYEZ%20S%C3%9BR%20D%27AVOIR%20LES%20KER" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;notes=For%20English%20readers%2C%20see%20the%20English%20version%20at%20the%20end%20of%20the%20French%20one.%0D%0A%0D%0ANOTE%20%3A%20LE%20%22PACKAGE%22%20FOURNI%20ICI%20CONTIENT%20LES%20KERNELS%20POUR%20LE%20SAMSUNG%20GALAXY%20S%20I9000.%20IL%20EST%20POSSIBLE%20QUE%20CELA%20MARCHE%20POUR%20D%27AUTRES%20TELEPHONES%20MAIS%20SOYEZ%20S%C3%9BR%20D%27AVOIR%20LES%20KER" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;annotation=For%20English%20readers%2C%20see%20the%20English%20version%20at%20the%20end%20of%20the%20French%20one.%0D%0A%0D%0ANOTE%20%3A%20LE%20%22PACKAGE%22%20FOURNI%20ICI%20CONTIENT%20LES%20KERNELS%20POUR%20LE%20SAMSUNG%20GALAXY%20S%20I9000.%20IL%20EST%20POSSIBLE%20QUE%20CELA%20MARCHE%20POUR%20D%27AUTRES%20TELEPHONES%20MAIS%20SOYEZ%20S%C3%9BR%20D%27AVOIR%20LES%20KER" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;t=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;title=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fcomment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473&amp;submitHeadline=Comment%20rooter%20son%20Android%20quelque-soit%20la%20version%2C%20avec%20Odin%20%2F%2F%20Root%20your%20Android%20Phone%20any%20version%20using%20Odin&amp;submitSummary=For%20English%20readers%2C%20see%20the%20English%20version%20at%20the%20end%20of%20the%20French%20one.%0D%0A%0D%0ANOTE%20%3A%20LE%20%22PACKAGE%22%20FOURNI%20ICI%20CONTIENT%20LES%20KERNELS%20POUR%20LE%20SAMSUNG%20GALAXY%20S%20I9000.%20IL%20EST%20POSSIBLE%20QUE%20CELA%20MARCHE%20POUR%20D%27AUTRES%20TELEPHONES%20MAIS%20SOYEZ%20S%C3%9BR%20D%27AVOIR%20LES%20KER&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/comment-rooter-son-android-quelque-soit-la-version-avec-odin-root-your-android-phone-any-version-using-odin-473/feed</wfw:commentRss>
		<slash:comments>174</slash:comments>
		</item>
		<item>
		<title>Amour de la philosophie, ou comment Wikipédia vous redirige vers &#171;&#160;Philosophy&#160;&#187;</title>
		<link>http://trollfactory.fr/amour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457</link>
		<comments>http://trollfactory.fr/amour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457#comments</comments>
		<pubDate>Wed, 01 Jun 2011 11:55:58 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[humour]]></category>
		<category><![CDATA[geekerie]]></category>
		<category><![CDATA[humor]]></category>
		<category><![CDATA[philosophie]]></category>
		<category><![CDATA[philosophy]]></category>
		<category><![CDATA[wikipédia]]></category>
		<category><![CDATA[xkcd]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=457</guid>
		<description><![CDATA[C&#8217;est en lisant le très connu webcomics xkcd que je suis tombé sur une information étonnante : Si vous prenez n&#8217;importe quel article sur Wikipédia, et que vous cliquez sur le premier lien de l&#8217;article, qui n&#8217;est pas en italique ou entre parenthèse&#8230; vous allez finir par attérir sur &#171;&#160;Philosophie&#160;&#187;. Trouvant cette annonce quelque peu [...]]]></description>
				<content:encoded><![CDATA[<p>C&rsquo;est en lisant le très connu webcomics <a href="http://xkcd.com/903/">xkcd</a> que je suis tombé sur une information étonnante : Si vous prenez n&rsquo;importe quel article sur Wikipédia, et que vous cliquez sur le premier lien de l&rsquo;article, qui n&rsquo;est pas en italique ou entre parenthèse&#8230; vous allez finir par attérir sur &laquo;&nbsp;Philosophie&nbsp;&raquo;.</p>
<p>Trouvant cette annonce quelque peu prétentieuse (quelque soit l&rsquo;article de début, vraiment ?) j&rsquo;ai testé avec Wikipedia English à partir de l&rsquo;article &laquo;&nbsp;Tin&nbsp;&raquo; (qui est un composant chimique dont je n&rsquo;ai pas tout à fait saisi toute la subtilité <img src="//trollfactory.fr/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /> ). Eh bien&#8230;. ça marche ! Au bout d&rsquo;une bonne trentaine, voire cinquantaine, de clics (à ne pas tenter sur une connexion 56K), je suis bel et bien tombé sur l&rsquo;article &laquo;&nbsp;Philosophy&nbsp;&raquo;.</p>
<p>Je vous laisse tester et me dire si ça marche sur Wikipedia FR <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> . Dans tous les cas, sont trop forts chez Wikipédia&#8230;. et chez xkcd aussi.</p>
<p>Bonne journée à tous.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22%20-%20http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;t=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=C%27est%20en%20lisant%20le%20tr%C3%A8s%20connu%20webcomics%20xkcd%20que%20je%20suis%20tomb%C3%A9%20sur%20une%20information%20%C3%A9tonnante%20%3A%20Si%20vous%20prenez%20n%27importe%20quel%20article%20sur%20Wikip%C3%A9dia%2C%20et%20que%20vous%20cliquez%20sur%20le%20premier%20lien%20de%20l%27article%2C%20qui%20n%27est%20pas%20en%20italique%20ou%20entre%20parenth%C3%A8" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;bodytext=C%27est%20en%20lisant%20le%20tr%C3%A8s%20connu%20webcomics%20xkcd%20que%20je%20suis%20tomb%C3%A9%20sur%20une%20information%20%C3%A9tonnante%20%3A%20Si%20vous%20prenez%20n%27importe%20quel%20article%20sur%20Wikip%C3%A9dia%2C%20et%20que%20vous%20cliquez%20sur%20le%20premier%20lien%20de%20l%27article%2C%20qui%20n%27est%20pas%20en%20italique%20ou%20entre%20parenth%C3%A8" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;notes=C%27est%20en%20lisant%20le%20tr%C3%A8s%20connu%20webcomics%20xkcd%20que%20je%20suis%20tomb%C3%A9%20sur%20une%20information%20%C3%A9tonnante%20%3A%20Si%20vous%20prenez%20n%27importe%20quel%20article%20sur%20Wikip%C3%A9dia%2C%20et%20que%20vous%20cliquez%20sur%20le%20premier%20lien%20de%20l%27article%2C%20qui%20n%27est%20pas%20en%20italique%20ou%20entre%20parenth%C3%A8" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;annotation=C%27est%20en%20lisant%20le%20tr%C3%A8s%20connu%20webcomics%20xkcd%20que%20je%20suis%20tomb%C3%A9%20sur%20une%20information%20%C3%A9tonnante%20%3A%20Si%20vous%20prenez%20n%27importe%20quel%20article%20sur%20Wikip%C3%A9dia%2C%20et%20que%20vous%20cliquez%20sur%20le%20premier%20lien%20de%20l%27article%2C%20qui%20n%27est%20pas%20en%20italique%20ou%20entre%20parenth%C3%A8" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;t=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;title=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Famour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457&amp;submitHeadline=Amour%20de%20la%20philosophie%2C%20ou%20comment%20Wikip%C3%A9dia%20vous%20redirige%20vers%20%22Philosophy%22&amp;submitSummary=C%27est%20en%20lisant%20le%20tr%C3%A8s%20connu%20webcomics%20xkcd%20que%20je%20suis%20tomb%C3%A9%20sur%20une%20information%20%C3%A9tonnante%20%3A%20Si%20vous%20prenez%20n%27importe%20quel%20article%20sur%20Wikip%C3%A9dia%2C%20et%20que%20vous%20cliquez%20sur%20le%20premier%20lien%20de%20l%27article%2C%20qui%20n%27est%20pas%20en%20italique%20ou%20entre%20parenth%C3%A8&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/amour-de-la-philosophie-ou-comment-wikipedia-vous-redirige-vers-philosophy-457/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajouter Lightning (calendrier) à Thunderbird sous Fedora / Add Ligthtning (calendar) to Thunderbird under Fedora + Google Calendar</title>
		<link>http://trollfactory.fr/ajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409</link>
		<comments>http://trollfactory.fr/ajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409#comments</comments>
		<pubDate>Sun, 29 May 2011 11:47:48 +0000</pubDate>
		<dc:creator><![CDATA[Troll]]></dc:creator>
				<category><![CDATA[astuces]]></category>
		<category><![CDATA[Geekeries]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[calendrier]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[lightning]]></category>
		<category><![CDATA[synchroniser]]></category>
		<category><![CDATA[synchronize]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://trollfactory.fr/?p=409</guid>
		<description><![CDATA[Petite astuce mais qui pourra vous faire gagner pas mal de temps : il ne semble pas possible (du moins sous la version FC13) d&#8217;ajouter le plugin Lightning depuis le site officiel de Mozilla (via un fichier .xpi) à Thunderbird. Non, il faut installer ça sous forme d&#8217;un package&#8230; Donc ne cherchez pas 10 ans [...]]]></description>
				<content:encoded><![CDATA[<p>Petite astuce mais qui pourra vous faire gagner pas mal de temps : il ne semble pas possible (du moins sous la version FC13) d&rsquo;ajouter le plugin Lightning depuis le site officiel de Mozilla (via un fichier .xpi) à Thunderbird. Non,<strong> il faut installer ça sous forme d&rsquo;un package&#8230;</strong></p>
<p>Donc ne cherchez pas 10 ans à utiliser les vieilles versions de Ligthing etc., il faut juste taper ceci dans votre shell :</p>
<p><code>$ su<br />
# yum install thunderbird-lightning</code></p>
<p>Par contre il semblerait que sous FC15 ça ait changé, mais là je ne peux pas vous en dire plus <img src="//trollfactory.fr/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> .</p>
<p>Et sinon en passant, si vous voulez synchroniser Thunderbird avec Google Calendar, suivez la procédure indiquée <a href="http://www.techiecorner.com/178/how-to-sync-google-calendar-with-thunderbird/">chez TechIECorner concernant Provider for Google Calendar</a>.</p>
<p>&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; English Readers, you start here ! &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>&nbsp;</p>
<p>Small tip, but this could allow you to save a bit of time : it seems there is no way installing Lightning (calendar for Thunderbird) from the official Mozzila website (using a .xpi file) in Thunderbird. Nop, <strong>you should install a package instead</strong>.</p>
<p>So, avoid trying to use older version during half a day, just type that in your shell :</p>
<p><code>$ su<br />
# yum install thunderbird-lightning</code></p>
<p>However, it seems under FC15 the procedure changed and there is no package called like that anymore&#8230; Well, I can&rsquo;t tell you more about that, try Fedora officiel forums if you don&rsquo;t find the package.</p>
<p>By the way, if you want to synchronize Thunderbird with you Google Calendar, you can follow the steps explained <a href="http://www.techiecorner.com/178/how-to-sync-google-calendar-with-thunderbird/">at TechIECorner about Provider for Google Calendar</a>.</p>
Share and Enjoy:<a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/printfriendly.png" class="sociable-img sociable-hovers" title="Print" alt="Print" /></a><a rel="nofollow" target="_blank"  href="http://www.printfriendly.com/print/new?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/pdf.png" class="sociable-img sociable-hovers" title="PDF" alt="PDF" /></a><a rel="nofollow" target="_blank"  href="http://twitter.com/home?status=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar%20-%20http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/twitter.png" class="sociable-img sociable-hovers" title="Twitter" alt="Twitter" /></a><a rel="nofollow" target="_blank"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;t=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/facebook.png" class="sociable-img sociable-hovers" title="Facebook" alt="Facebook" /></a><a rel="nofollow" target="_blank"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;source=The+Troll%26%23039%3Bs+factory+Geekeries+%26amp%3B+pens%C3%A9es&amp;summary=Petite%20astuce%20mais%20qui%20pourra%20vous%20faire%20gagner%20pas%20mal%20de%20temps%20%3A%20il%20ne%20semble%20pas%20possible%20%28du%20moins%20sous%20la%20version%20FC13%29%20d%27ajouter%20le%20plugin%20Lightning%20depuis%20le%20site%20officiel%20de%20Mozilla%20%28via%20un%20fichier%20.xpi%29%20%C3%A0%20Thunderbird.%20Non%2C%20il%20faut%20installer" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/linkedin.png" class="sociable-img sociable-hovers" title="LinkedIn" alt="LinkedIn" /></a><a rel="nofollow" target="_blank"  href="http://trollfactory.fr/feed" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/rss.png" class="sociable-img sociable-hovers" title="RSS" alt="RSS" /></a><a rel="nofollow" target="_blank"  href="http://www.wikio.fr/vote?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/wikio.png" class="sociable-img sociable-hovers" title="Wikio FR" alt="Wikio FR" /></a><a rel="nofollow" target="_blank"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;bodytext=Petite%20astuce%20mais%20qui%20pourra%20vous%20faire%20gagner%20pas%20mal%20de%20temps%20%3A%20il%20ne%20semble%20pas%20possible%20%28du%20moins%20sous%20la%20version%20FC13%29%20d%27ajouter%20le%20plugin%20Lightning%20depuis%20le%20site%20officiel%20de%20Mozilla%20%28via%20un%20fichier%20.xpi%29%20%C3%A0%20Thunderbird.%20Non%2C%20il%20faut%20installer" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/digg.png" class="sociable-img sociable-hovers" title="Digg" alt="Digg" /></a><a rel="nofollow" target="_blank"  href="http://delicious.com/post?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;notes=Petite%20astuce%20mais%20qui%20pourra%20vous%20faire%20gagner%20pas%20mal%20de%20temps%20%3A%20il%20ne%20semble%20pas%20possible%20%28du%20moins%20sous%20la%20version%20FC13%29%20d%27ajouter%20le%20plugin%20Lightning%20depuis%20le%20site%20officiel%20de%20Mozilla%20%28via%20un%20fichier%20.xpi%29%20%C3%A0%20Thunderbird.%20Non%2C%20il%20faut%20installer" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/delicious.png" class="sociable-img sociable-hovers" title="del.icio.us" alt="del.icio.us" /></a><a rel="nofollow" target="_blank"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;annotation=Petite%20astuce%20mais%20qui%20pourra%20vous%20faire%20gagner%20pas%20mal%20de%20temps%20%3A%20il%20ne%20semble%20pas%20possible%20%28du%20moins%20sous%20la%20version%20FC13%29%20d%27ajouter%20le%20plugin%20Lightning%20depuis%20le%20site%20officiel%20de%20Mozilla%20%28via%20un%20fichier%20.xpi%29%20%C3%A0%20Thunderbird.%20Non%2C%20il%20faut%20installer" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/googlebookmark.png" class="sociable-img sociable-hovers" title="Google Bookmarks" alt="Google Bookmarks" /></a><a rel="nofollow" target="_blank"  href="http://technorati.com/faves?add=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/technorati.png" class="sociable-img sociable-hovers" title="Technorati" alt="Technorati" /></a><a rel="nofollow" target="_blank"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/sphinn.png" class="sociable-img sociable-hovers" title="Sphinn" alt="Sphinn" /></a><a rel="nofollow" target="_blank"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/mixx.png" class="sociable-img sociable-hovers" title="Mixx" alt="Mixx" /></a><a rel="nofollow" target="_blank" title="Add to favorites" href="#" onclick="AddToFavorites(); return false;"><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/addtofavorites.png" class="sociable-img sociable-hovers" title="Add to favorites" alt="Add to favorites" /></a><a rel="nofollow" target="_blank"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/live.png" class="sociable-img sociable-hovers" title="Live" alt="Live" /></a><a rel="nofollow" target="_blank"  href="http://www.netvibes.com/share?title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/netvibes.png" class="sociable-img sociable-hovers" title="Netvibes" alt="Netvibes" /></a><a rel="nofollow" target="_blank"  href="http://www.scoopeo.com/scoop/new?newurl=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/scoopeo.png" class="sociable-img sociable-hovers" title="Scoopeo" alt="Scoopeo" /></a><a rel="nofollow" target="_blank"  href="http://www.viadeo.com/shareit/share/?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&urllanguage=fr" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/viadeo.png" class="sociable-img sociable-hovers" title="viadeo FR" alt="viadeo FR" /></a><a rel="nofollow" target="_blank"  href="http://identi.ca/notice/new?status_textarea=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/identica.png" class="sociable-img sociable-hovers" title="Identi.ca" alt="Identi.ca" /></a><a rel="nofollow" target="_blank"  href="http://www.myspace.com/Modules/PostTo/Pages/?u=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;t=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/myspace.png" class="sociable-img sociable-hovers" title="MySpace" alt="MySpace" /></a><a rel="nofollow" target="_blank"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;title=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/stumbleupon.png" class="sociable-img sociable-hovers" title="StumbleUpon" alt="StumbleUpon" /></a><a rel="nofollow" target="_blank"  href="http://buzz.yahoo.com/submit/?submitUrl=http%3A%2F%2Ftrollfactory.fr%2Fajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409&amp;submitHeadline=Ajouter%20Lightning%20%28calendrier%29%20%C3%A0%20Thunderbird%20sous%20Fedora%20%2F%20Add%20Ligthtning%20%28calendar%29%20to%20Thunderbird%20under%20Fedora%20%2B%20Google%20Calendar&amp;submitSummary=Petite%20astuce%20mais%20qui%20pourra%20vous%20faire%20gagner%20pas%20mal%20de%20temps%20%3A%20il%20ne%20semble%20pas%20possible%20%28du%20moins%20sous%20la%20version%20FC13%29%20d%27ajouter%20le%20plugin%20Lightning%20depuis%20le%20site%20officiel%20de%20Mozilla%20%28via%20un%20fichier%20.xpi%29%20%C3%A0%20Thunderbird.%20Non%2C%20il%20faut%20installer&amp;submitCategory=science&amp;submitAssetType=text" ><img src="//trollfactory.fr/wp-content/plugins/sociable-30/images/default/16/yahoobuzz.png" class="sociable-img sociable-hovers" title="Yahoo! Buzz" alt="Yahoo! Buzz" /></a><br/><br/>]]></content:encoded>
			<wfw:commentRss>http://trollfactory.fr/ajouter-lightning-calendrier-a-thunderbird-sous-fedora-add-ligthtning-calendar-to-thunderbird-under-fedora-google-calendar-409/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
