<?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>Renoir Boulanger</title>
	<atom:link href="http://renoirboulanger.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://renoirboulanger.com</link>
	<description>Un geek social et Linuxien de nature</description>
	<lastBuildDate>Thu, 08 Sep 2011 18:02:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Comment installer Ruby on Rails sur Ubuntu 10.10</title>
		<link>http://renoirboulanger.com/blog/2011/03/comment-installer-ruby-on-rails-sur-ubuntu-10-10/</link>
		<comments>http://renoirboulanger.com/blog/2011/03/comment-installer-ruby-on-rails-sur-ubuntu-10-10/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 20:34:57 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Tranche de vie]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2461</guid>
		<description><![CDATA[Voici comment j'ai fait pour installer Ruby on Rails version 1.9.2p180 a partir de RVM avec Gem 1.6.2 sur ma station de travail Ubuntu 10.10]]></description>
			<content:encoded><![CDATA[<p><!-- {EAV_BLOG_VER:54e8acfbc162ab6e} --></p>
<p>Une note rapide de comment j&#8217;ai installé Ruby</p>
<h3>Procédure</h3>
<h3>
<ul>
<li>Créer le dossier de travail et y exécuter le script d&#8217;installation RVM

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> ~<span style="color: #000000; font-weight: bold;">/</span>work<span style="color: #000000; font-weight: bold;">/</span>ruby-install
<span style="color: #7a0874; font-weight: bold;">cd</span> ~<span style="color: #000000; font-weight: bold;">/</span>work<span style="color: #000000; font-weight: bold;">/</span>ruby-install
<span style="color: #c20cb9; font-weight: bold;">bash</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #000000; font-weight: bold;">&lt;</span><span style="color: #7a0874; font-weight: bold;">&#40;</span> curl http:<span style="color: #000000; font-weight: bold;">//</span>rvm.beginrescueend.com<span style="color: #000000; font-weight: bold;">/</span>releases<span style="color: #000000; font-weight: bold;">/</span>rvm-install-head <span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

</pre>
</li>
<li>Ajouter au <strong><tt>.bashrc</tt></strong>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-s</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/.rvm/src/rvm/scripts/rvm&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> . <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOME</span>/.rvm/src/rvm/scripts/rvm&quot;</span></pre></td></tr></table></div>

</li>
<li>Execute <strong><tt>rvm</tt></strong> and specify the version you want to use

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">.rvm<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>rvm <span style="color: #c20cb9; font-weight: bold;">install</span> 1.9.2</pre></td></tr></table></div>

</li>
<li>Will return:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">Installing Ruby from <span style="color: #7a0874; font-weight: bold;">source</span> to: ~<span style="color: #000000; font-weight: bold;">/</span>.rvm<span style="color: #000000; font-weight: bold;">/</span>rubies<span style="color: #000000; font-weight: bold;">/</span>ruby-1.9.2-p180, this may take a <span style="color: #000000; font-weight: bold;">while</span> depending on your cpu<span style="color: #7a0874; font-weight: bold;">&#40;</span>s<span style="color: #7a0874; font-weight: bold;">&#41;</span>...</pre></td></tr></table></div>

</li>
<li>Set the lastely installed rvm as the default

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">rvm <span style="color: #660033;">--default</span> 1.9.2</pre></td></tr></table></div>

</li>
<li>Verify the version of Ruby

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"> ruby <span style="color: #660033;">-v</span>
ruby 1.9.2p180 <span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000;">2011</span>-02-<span style="color: #000000;">18</span> revision <span style="color: #000000;">30909</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span>x86_64-linux<span style="color: #7a0874; font-weight: bold;">&#93;</span></pre></td></tr></table></div>

</li>
<li>Verify the version of Gem

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">gem <span style="color: #660033;">-v</span>
1.6.2</pre></td></tr></table></div>

</li>
</ul>
</h3>
<h3>Source</h3>
<ul>
<li><a href="http://www.giantflyingsaucer.com/blog/?p=179">http://www.giantflyingsaucer.com/</a></li>
<li><a href="http://www.productionscale.com/home/2010/10/19/using-rvm-on-ubuntu-1010.html">"<span lang="en">Using RVM on Ubuntu 10.10</span>", écrit le 19 Octobre, 2010 sur ProductionScale</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2011/03/comment-installer-ruby-on-rails-sur-ubuntu-10-10/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ConFoo c&#8217;est dans moins de 14 jours!</title>
		<link>http://renoirboulanger.com/blog/2011/02/confoo-cest-dans-moins-de-14-jours/</link>
		<comments>http://renoirboulanger.com/blog/2011/02/confoo-cest-dans-moins-de-14-jours/#comments</comments>
		<pubDate>Fri, 25 Feb 2011 04:25:00 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Tranche de vie]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2452</guid>
		<description><![CDATA[Cette année, comme je l&#8217;ai dit je fais partie de l&#8217;équipe d&#8217;organisation de la conférence web techno ConFoo.
Pour moi il s&#8217;agit d&#8217;une toute nouvelle expérience. J&#8217;ai jamais organisé de conférence de cette ampleur. J&#8217;ai déjà aidé a l&#8217;organisation du site web (Americana 2011 fait en Tiki.org) mais de participer activement a sa promotion c&#8217;est une [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/vanillaforums/4717676858/"><img src="http://renoirboulanger.com/wp-content/uploads/2011/02/4717676858_352a50afe9.jpg" alt="" style="border:none" title="Renoir lors du BBQ de Geek de l&#039;été 2010" width="375" height="500" class="alignright size-full wp-image-2453" /></a>Cette année, comme je <a href="http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/">l&#8217;ai dit je fais partie de l&#8217;équipe d&#8217;organisation</a> de la conférence web techno ConFoo.</p>
<p>Pour moi il s&#8217;agit d&#8217;une toute nouvelle expérience. J&#8217;ai jamais organisé de conférence de cette ampleur. J&#8217;ai déjà aidé a l&#8217;organisation du site web (<a href="http://americana.org">Americana 2011</a> fait en Tiki.org) mais de participer activement a sa promotion c&#8217;est une toute autre chose.</p>
<p>Joignez-vous à nous du 7 au 11 mars pour un évènement rempli de présentations techniques qui élargiront votre champ d&#8217;expertise ainsi que de nombreuses opportunités de réseautage.</p>
<p>Parmis les 150 présentations que propose ConFoo, voici un petit échantillon que nous jugeons fort intéressant:<br />
- Build powerful and smart web applications with Symfony2 &#8211; Scalable Architecture 101<br />
- HTML5 &#8211; Moving from hacks to solutions<br />
- Develop mobile applications with Flex<br />
- Security 202 - Are you sure your site is secure?<br />
- My $1.8 million dollar startup education<br />
- Et bien d&#8217;autres</p>
<p>Notez qu&#8217;il reste encore quelques places pour les formations &#8220;Démarrer avec Symfony2&#8243; ainsi que &#8220;HTML5 Avancé&#8221;.</p>
<p>Les formations sont une occasion unique pour bénificer de l&#8217;expertise de professionnels au sein d&#8217;un petit groupe de 15 passionés du Web.</p>
<p>Enregistrez-vous avant lundi le 28 et épargnez 100$.</p>
<p>Pour plus d&#8217;informations consultez le site de confoo: <a rel="nofollow" href="http://confoo.ca/" target="_blank">http://ConFoo.ca/</a></p>
<p>Au plaisir de vous-y voir.</p>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2011/02/confoo-cest-dans-moins-de-14-jours/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>devLAB Montréal c&#8217;est maintenant parti!</title>
		<link>http://renoirboulanger.com/blog/2011/02/devlab-montreal-cest-maintenant-parti/</link>
		<comments>http://renoirboulanger.com/blog/2011/02/devlab-montreal-cest-maintenant-parti/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 21:04:31 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[GeekNight]]></category>
		<category><![CDATA[Accessibilité]]></category>
		<category><![CDATA[evenements]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[projets]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[Vulgarisation]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2416</guid>
		<description><![CDATA[
Geek by *recycledwax on deviantART
Je l&#8217;avait annoncé. Nous avons particié a des événements, joints d&#8217;autres. Maintenant, depuis Janvier 2011, à tous les mercredis, nous vous invitons a vous joindre a nos rencontres. Donc,depuis cinq semaines maintenant nous hébergeons au public nos ateliers de travail qu&#8217;on appelait nos GeekNights maintenant surnommé devLAB.
Comment devLAB a commencé?
Tout a commencé en 2006. [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin: 0px 0px 5px 5px; background: #e4eae4padding;"><img class="alignleft size-full wp-image-2434" style="border: none;" title="Geek_by_recycledwax_on_DeviantArt" src="http://renoirboulanger.com/wp-content/uploads/2011/01/Geek_by_recycledwax_on_DeviantArt.png" border="0" alt="Geek by recycledwax on DeviantArt" width="321" height="414" /><br />
<a href="http://www.deviantart.com/deviation/91362367/">Geek</a> by *<a class="u" href="http://recycledwax.deviantart.com/">recycledwax</a> on <a href="http://www.deviantart.com">deviant</a><a href="http://www.deviantart.com">ART</a></div>
<p>Je l&#8217;avait <a href="http://renoirboulanger.com/blog/2010/03/introduction-de-notre-nouveau-projet-evenement-intitule-devlab/">annoncé</a>. Nous avons <a href="http://renoirboulanger.com/blog/2010/06/retour-sur-la-semaine-des-logiciels-libres-mondev-et-de-la-conference-make-web-not-war-2010/">particié a des événements</a>, <a title="WordCamp WordPress developper_meetup()" href="http://wordcampmontreal.org/">joints</a> <a title="ConFoo Web Techno Conference" href="http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/">d&#8217;autres</a>. Maintenant, depuis Janvier 2011, <strong>à tous les mercredis</strong>, nous vous invitons a vous joindre a nos rencontres. Donc,depuis cinq semaines maintenant nous hébergeons au public nos ateliers de travail qu&#8217;on appelait nos <a title="Quelques billets qui parlent de ces soirées de GeekNights" href="http://renoirboulanger.com/blog/category/geeknight/">GeekNights</a> maintenant surnommé <a href="http://devlabmtl.org">devLAB</a>.</p>
<h3>Comment devLAB a commencé?</h3>
<p>Tout a commencé en 2006. Le besoin est né après plusieurs mois à discuter de technologie a deux (avec <a href="http://etiennelachance.com">Etienne</a>) a prendre une bière au 3Brasseurs et de parler de binaire, netmask&#8230; vous savez, des trucs de Geeks. Nous avons joins notre  vieil ami <a href="http://stephanchampagne.com/">Stephan</a> et nous avons officialisé le pacte que nous avons tenu de 2006-2009. Une fois par semaine tous les Mercredis soir nous suivions ce concept:</p>
<ol>
<li>Se rencontrer peu importe la charge de travail au bureau</li>
<li>Faire avancer une idée</li>
<li>Utiliser quelque chose qu&#8217;on a jamais utilisé avant</li>
<li>Pratiquer les méthodologies pour prendre les plis qu&#8217;on ne pouvait pas toujours prendre au bureau</li>
</ol>
<p>Parfois nous en faisions des CodeFests qui duraient une fin de semaine complète. D&#8217;autres fois nous invitions des amis a jouer avec nous sur des sujets divers.</p>
<p><span id="more-2416"></span></p>
<h3>Quelques sujets que nous avons couverts</h3>
<p>Nous discutions d&#8217;a peu près tout ce qui nous tentait. Parfois nous étions inspirés par ce que nous faisions au bureau, d&#8217;autres fois, des amis venaient nous montrer leus trucs qui les &#8220;faisaient tripper&#8221;  (!)</p>
<p>Entre autres&#8230;</p>
<ol>
<li>Le Test Driven Development avec Visual Studio</li>
<li>Environnement généré en Javascript avec ExtJS</li>
<li>Des processus d&#8217;auto installation avec CentOS 5 (Kick start)</li>
<li>Monter un serveur SMTP avec Debian Etch et Exim connecté avec un backend MySQL</li>
<li>Faire des routines de déploiement en XML avec Apache Ant</li>
<li>Monter une librairie de <a title="Script bash pour transférer une base de donnée MySQL d’un serveur à l’autre" href="http://renoirboulanger.com/blog/2010/02/script-bash-pour-transferer-une-base-de-donnee-mysql-dun-serveur-a-lautre/">migration de base de donnée d&#8217;un serveur a l&#8217;autre</a></li>
<li><a href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-i/">Monter un &#8220;Une VM Linux qui sert au développement&#8221; et utiliser un tunnel X pour afficher localement ce qui est exécuté dans la VM</a></li>
<li><a title="Installer une Machine Virtuelle Linux roulant dans VMware Fusion sous Mac OS X" href="http://renoirboulanger.com/blog/2010/07/installer-une-machine-virtuelle-linux-roulant-dans-vmware-fusion-sous-mac-os-x/">Monter une sandbox&#8230;  sous Mac OS X</a></li>
<li>Un projet de gestion de parc informatique</li>
<li>Un projet de gestion de menu utilisant le &#8220;<a href="http://webprod.hc-sc.gc.ca/cnf-fce/index-fra.jsp">Fichier canadien sur les éléments nutrritifs</a>&#8220;</li>
<li>&#8230; et plusieurs autres.</li>
</ol>
<h3>Pourquoi avons nous lancé un <em>autre</em> événement a Montréal</h3>
<p>Étant donné qu&#8217;aucun événement a Montréal n&#8217;avait ce type de concept, nous l&#8217;avons ouverts au public. Surtout que les gens autour de nous aimaient  l&#8217;idée de nos rencontres.</p>
<p>Notre objectif est clair:</p>
<blockquote><p>devLAB est  une occasion de partager avec d&#8217;autres passsionnés en faisant des rencontres hebdomadaires de travail ou on &#8220;met la main à la pâte&#8221;.</p></blockquote>
<p>Parceque ce qu&#8217;on veut depuis toujours c&#8217;est un endroit ou essayer des trucs. Peu importe la techno. Des chose qu&#8217;on peut pas nécessairement faire au bureau, ou chez soi. C&#8217;est de se donner une occasion d&#8217;améliorer ses capacités.</p>
<h3>Evocatio : L&#8217;oeuf ou la Poule?</h3>
<p>Pour les gens qui se le demandent. Evocatio a commencé A CAUSE des GeekNights.</p>
<p>Pas le contraire.</p>
<p>En fait, nous sommes ouverts a l&#8217;aide pour en faire une entité a part entière.</p>
<h3>La direction de devLAB</h3>
<p>&#8230; notre manifeste, en quelque sorte. Pas nécessairement officiel mais va comme suit:</p>
<ol>
<li>Rencontre tous les mercredis 18h30-22h00</li>
<li>Avancer un projet de logiciel Libre</li>
<li>Ne pas se coincer qu&#8217;a une seule technologie ou langage de programmation</li>
<li>Travailler en équipe (code pairing) pour apprendre des interventions de son pair</li>
<li>Ajouter des facteurs d&#8217;inconnus coté technologique</li>
<li>Tout le monde est là pour apprendre et jouer a la technologie</li>
<li>But non lucratif. Aucune entreprise ne peut être promu par devLAB. Le contraire n&#8217;est pas interdit par contre.</li>
<li>Bilinguisme from the ground up (Except that my blog is for a french only audience. sorry)</li>
</ol>
<h3>C&#8217;est quand?</h3>
<p>CE Mercredi, ou le prochain!</p>
<p>Le détail des annonces sur <a href="http://techentreprise.com/Montreal/users/renoirb">Techentreprise</a> (voir le lien devLAB Montréal), Twitter via <a href="http://twitter.com/devLABMtl">@devLABmtl</a> et  dans le <a href="http://www.facebook.com/home.php?sk=group_191829357497601">groupe Facebook</a>.  Vous pouvez aussi être fan de la <a href="http://www.facebook.com/devlabmtl">Page Facebook</a>.</p>
<p>Vous pouvez aussi  <a href="http://devlabmtl.org/">devlabmtl.org</a> et qui n&#8217;est pas aussi à jour mais qui le sera éventuellement. <img src='http://renoirboulanger.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Vous voulez vous joindre a nous? Pas de problème! Si vous avez des questions vous pouvez envoyer un courriel a <strong>info A dev LAB mtl POINT org</strong></p>
<p>Au plaisir de vous y croiser.</p>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2011/02/devlab-montreal-cest-maintenant-parti/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ConFoo Web Techno Conferencee 2011 Dévoilement de la grille horraire des présentations</title>
		<link>http://renoirboulanger.com/blog/2011/01/confoo-web-techno-conferencee-2011-devoilement-de-la-grille-horraire-des-presentations/</link>
		<comments>http://renoirboulanger.com/blog/2011/01/confoo-web-techno-conferencee-2011-devoilement-de-la-grille-horraire-des-presentations/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 13:27:07 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Tranche de vie]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2417</guid>
		<description><![CDATA[Après plusieurs heures de preparation et le travail acharné de l&#8217;équipe, l&#8217;organisation de ConFoo Web Techno Conference a publié son horraire de la prochaine édition.
Qu&#8217;est-ce que ConFoo: C&#8217;est la continuation des conférences annuelles de PHPQuébec avec la participation des autres communautés de passionnés de programmation et de web telles que Python Montreal, W3Québec, l&#8217;OWASP Chapitre [...]]]></description>
			<content:encoded><![CDATA[<p>Après plusieurs heures de preparation et le travail acharné de l&#8217;équipe, l&#8217;organisation de <a href="http://confoo.ca/">ConFoo Web Techno Conference</a> a publié son <a href="http://confoo.ca/fr/2011/schedule">horraire de la prochaine édition</a>.</p>
<div id="attachment_2423" class="wp-caption alignright" style="width: 410px"><img class="size-full wp-image-2423  " title="IMG_6414" src="http://renoirboulanger.com/wp-content/uploads/2011/01/confo2010_picture_training_session.jpg" alt="Confoo 2010 Formatioin PHP" width="400" height="266" /><p class="wp-caption-text">Journée de formation PHP ConFoo 2010</p></div>
<p>Qu&#8217;est-ce que ConFoo: C&#8217;est la continuation des conférences annuelles de <a href="http://phpquebec.org/">PHPQuébec</a> avec la participation des autres communautés de passionnés de programmation et de web telles que <a href="http://montrealpython.org/">Python Montreal</a>, <a href="http://w3qc.org">W3Québec</a>, l&#8217;<a href="http://www.owasp.org/index.php/Montr%C3%A9al">OWASP Chapitre de Montréal</a> (sécurité logicielle), le <a href="http://www.montreal-jug.org/">MJUG (Montreal Java Usergroup)</a>, et <a href="http://www.montrealonrails.com/">Montreal.rb (Ruby Montréal)</a>. A chaque an, plus d&#8217;une <a href="http://confoo.ca/fr/2011/speaker">centaine d&#8217;experts</a> viennent partager leur experrise sur une semaine complète de <a href="http://confoo.ca/fr/2011/training">formation</a> et de conférence.</p>
<h2>Quelques conférenciers cette année</h2>
<p>Nous avons invité des gens d&#8217;expérience d&#8217;un peu partout dans le monde et qui sont impliqués dans la communauté du libre de leur région respective. Pour n&#8217;en nommer que quelques uns:</p>
<ul>
<li><a href="http://confoo.ca/fr/speaker/fabien-potencier">Fabien Potencier</a> (le créateur de symfony)</li>
<li><a href="http://confoo.ca/fr/speaker/derick-rethans">Derick Rethans</a> (contributeur à PHP)</li>
<li><a href="http://confoo.ca/fr/speaker/alexis-moussine-pouchkine">Alexis Moussine-Pouchkine</a> (Oracle)</li>
<li><a href="http://confoo.ca/fr/speaker/andy-mckay">Andy McKay </a>(Mozilla)</li>
<li><a href="http://confoo.ca/fr/speaker/jackson-harper">Jackson Harper</a> (Novell, Inc)</li>
<li><a href="http://confoo.ca/fr/speaker/joshua-hull">Joshua Hull</a> (Twitter)</li>
<li><a href="http://confoo.ca/fr/speaker/newman-hunter">Newman Hunter</a> (Disney)</li>
<li><a href="http://confoo.ca/fr/speaker/paul-robbins">Paul Robbins</a> (The New York Times)</li>
<li><a href="http://confoo.ca/fr/speaker/scott-macvicar">Scott MacVicar</a> (Facebook)</li>
</ul>
<p>Voir la <a href="http://confoo.ca/fr/2011/speaker">liste complète des conférenciers</a>.</p>
<p><span id="more-2417"></span></p>
<h2>Quelques conférences</h2>
<p>Parmi les présentations, celles qui ont retenu personnellement mon attention.</p>
<div id="_mcePaste">
<ul>
<li><a href="http://confoo.ca/fr/2011/session/html5-et-javascript-accessible-c-est-possible">HTML5 et javascript accessible, c&#8217;est possible</a></li>
<li><a href="http://confoo.ca/fr/2011/session/introduction-a-la-securite-des-webservices">Introduction à la sécurité des WebServices<br />
</a></li>
<li><a href="http://confoo.ca/fr/2011/session/integration-continue-d-un-projet-php-avec-hudson">Intégration Continue d&#8217;un projet PHP avec Hudson</a> (L&#8217;intégration continue est mon sujet préféré <img src='http://renoirboulanger.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</li>
<li><a href="http://confoo.ca/fr/2011/session/build-powerfull-and-smart-web-applications-with-Symfony2">Build powerfull and smart web applications with Symfony2</a> (J&#8217;ai hâte de voir sa version stable, nous utilisons symfony 1.4 chez Evocatio)</li>
<li><a href="http://confoo.ca/fr/2011/session/scalable-architecture-101">Scalable Architecture 101</a></li>
<li><a href="http://confoo.ca/fr/2011/session/graphs-edges-nodes-untangling-the-social-web">Graphs, Edges &amp; Nodes: Untangling the Social Web</a></li>
<li><a href="http://confoo.ca/fr/2011/session/hiphop-for-php">HipHop for PHP with Scott MacVicar from Facebook</a></li>
<li><a href="http://confoo.ca/fr/2011/session/html5-apis-the-new-frontier">HTML5 APIs &#8211; The New Frontier (Robert Nyman)</a></li>
<li><a href="http://confoo.ca/fr/2011/session/planifier-l-accessibilite-du-web">Planifier l&#8217;accessibilité du Web</a></li>
<li><a href="http://confoo.ca/fr/2011/session/rendre-son-cms-conforme-au-sgqri-8-en-2-etapes">Rendre son site conforme au SGQRI 008 en 20 étapes</a></li>
<li><a href="http://confoo.ca/fr/2011/session/performing-in-the-browser">Performing in the browser</a></li>
<li><a href="http://confoo.ca/fr/2011/session/webshell-smart-scripted-http">Webshell: smart, scripted HTTP</a></li>
<li><a href="http://confoo.ca/fr/2011/session/real-time-web-applications">Real-time web applications</a></li>
</ul>
</div>
<p>Pour voir la <a href="http://confoo.ca/fr/2011/session">liste complète des sessions</a>, elle est disponible et a  jour sur le site.</p>
<div>
<h2>Semaine chargée</h2>
<p>Je sens que cette année encore ce sera une année très chargée avec beaucoup d&#8217;événements. Je vous tiendrai au courrant des événements que je compte participer.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2011/01/confoo-web-techno-conferencee-2011-devoilement-de-la-grille-horraire-des-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comment configurer son clavier («keymap») sous Ubuntu Linux en mode terminal seulement</title>
		<link>http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/</link>
		<comments>http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 01:19:23 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Tranche de vie]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2404</guid>
		<description><![CDATA[Mise en situation

J&#8217;était en train de me monter une Machine Virtuelle minimale de développement (j&#8217;en parle ici, ici, ici, ici, et finalement ici aussi).
Toujours est-il que mon Mac commence a être vieux et même s&#8217;il est maximisé a 3GB de RAM sur un processeur 1.66 Ghz Core Duo et 500GiB d&#8217;espace disque, lorsque je roule Eclipse, [...]]]></description>
			<content:encoded><![CDATA[<h2>Mise en situation</p>
<div id="attachment_2407" class="wp-caption alignright" style="width: 160px"><a href="http://renoirboulanger.com/wp-content/uploads/2010/12/Configure-console-data.png" rel="lightbox[2404]"><img class="size-thumbnail wp-image-2407 " title="Configure console-data" src="http://renoirboulanger.com/wp-content/uploads/2010/12/Configure-console-data-150x150.png" alt="" width="150" height="150" /></a><p class="wp-caption-text">Configure console-data</p></div></h2>
<p>J&#8217;était en train de me monter une Machine Virtuelle minimale de développement (j&#8217;en parle <a title="Installer une Machine Virtuelle Linux roulant dans VMware Fusion sous Mac OS X" href="http://renoirboulanger.com/blog/2010/07/installer-une-machine-virtuelle-linux-roulant-dans-vmware-fusion-sous-mac-os-x/">ici</a>, <a title="Une VM Linux qui sert au développement PHP 5.3 avec Eclipse – partie 3" href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-iii/">ici</a>, <a title="Une VM Linux qui sert au développement PHP 5.3 avec Eclipse – partie 2" href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-ii/">ici</a>, <a title="Une VM Linux qui sert au développement PHP 5.3 avec Eclipse – partie I" href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-i/">ici</a>, et finalement <a title="Mon espace de travail buntu Linux qui roule et VMWare Server fait rouler la machine de developpement" href="http://renoirboulanger.com/blog/2007/11/mon-espace-de-travail/">ici aussi</a>).</p>
<p>Toujours est-il que mon Mac commence a être vieux et même s&#8217;il est maximisé a 3GB de RAM sur un processeur 1.66 Ghz Core Duo et 500GiB d&#8217;espace disque, lorsque je roule Eclipse, c&#8217;est lourd! Alors je me suis crée une nouvelle machine virtuelle. Par erreur j&#8217;ai mis le mauvais clavier. Imagine essayer de faire une commande terminal sans savoir comment trouver tes touches spéciales (vous savez: |,`&#8217;&#8221;).</p>
<p>Je sais pas si vous êtes comme moi. J’aime avoir le bon clavier pour pouvoir bien écrire en français et en anglais. Alors je n&#8217;ai pas le choix.</p>
<p>&#8230; à moins que j&#8217;apprenne le Dvorak (un jour!)<br />
<span id="more-2404"></span></p>
<h2>Ma solution</h2>
<p>J&#8217;ai trouvé cet article dans le <a title="LocaleConf  you need to change the language and keyboard configuration, follow these instructions" href="https://help.ubuntu.com/community/LocaleConf">Wiki de Ubuntu Linux qui portait un nom très peu évocateur («LocaleConf»)</a>.</p>
<p>En gros c&#8217;est simple, il faut:</p>
<ul>
<li>console-tools</li>
<li>console-data</li>
<li>localeconf</li>
</ul>
<h3>Installer</h3>
<p><code lang="bash">apt-get install console-data console-tools</code><br />
Puis configurer avec <strong>dpkg-reconfigure</strong></p>
<p><code lang="bash">dpkg-reconfigure console-data</code></p>
<p>J&#8217;ai suivi:</p>
<ol>
<li>«Select keymap from arch list»</li>
<li>«Qwerty»</li>
<li>«Canadian»</li>
<li>«French»</li>
</ol>
<p>
<a href='http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/configure-console-data/' title='Configure console-data'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/12/Configure-console-data-150x150.png" class="attachment-thumbnail" alt="Configure console-data" title="Configure console-data" /></a>
<a href='http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/configure_console-data_keyboard_variant_french/' title='Configure console data Keyboard variant french'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/12/Configure_console-data_Keyboard_variant_french-150x150.png" class="attachment-thumbnail" alt="" title="Configure console data Keyboard variant french" /></a>
<a href='http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/configure_console-data_specify_layout_family/' title='Configure console-data specify layout family'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/12/Configure_console-data_specify_layout_family-150x150.png" class="attachment-thumbnail" alt="" title="Configure console-data specify layout family" /></a>
<a href='http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/configuring_console-data_keyboard_layout_canadian/' title='Configuring console-data Keyboard layout Canadian'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/12/Configuring_console-data_Keyboard_layout_Canadian-150x150.png" class="attachment-thumbnail" alt="" title="Configuring console-data Keyboard layout Canadian" /></a>

]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/12/comment-configurer-son-clavier-%c2%abkeymap%c2%bb-sous-ubuntu-linux-en-mode-terminal-seulement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>L&#8217;appel aux conférenciers pour ConFoo 2011 est lancé!</title>
		<link>http://renoirboulanger.com/blog/2010/09/lappel-aux-conferenciers-pour-confoo-2011-est-lance/</link>
		<comments>http://renoirboulanger.com/blog/2010/09/lappel-aux-conferenciers-pour-confoo-2011-est-lance/#comments</comments>
		<pubDate>Wed, 29 Sep 2010 02:04:11 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Actualites]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[confoo11]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2380</guid>
		<description><![CDATA[Depuis cet été j&#8217;ai commencé à m&#8217;impliquer dans l&#8217;organisation de la conférence «ConFoo Web Techno Conference». Je crois que j&#8217;en ai parlé dans ce billet. Il s&#8217;agit d&#8217;un événement annuel pensé pour les programmeurs, les passionnés du web et des logiciels libres.
La semaine passée, nous avons publié officiellement l&#8217;appel aux conférenciers. C&#8217;est la première annonce [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2390" class="wp-caption alignright" style="width: 410px"><a href="http://renoirboulanger.com/wp-content/uploads/2010/09/4463325427_251399c227.jpg" rel="lightbox[2380]"><img class="size-full wp-image-2390" style="border: none;" title="Passe ConFoo 2010" src="http://renoirboulanger.com/wp-content/uploads/2010/09/4463325427_251399c227.jpg" alt="Passe ConFoo 2010" width="400" height="266" /></a><p class="wp-caption-text">Photo prise sur Flickr par Pyxis technologies</p></div>
<p><a href="http://renoirboulanger.com/wp-content/uploads/2010/05/Codefest.jpg" rel="lightbox[2380]"></a>Depuis cet été j&#8217;ai commencé à m&#8217;impliquer dans l&#8217;organisation de la conférence «<a href="http://confoo.ca/">ConFoo Web Techno Conference</a>». Je crois que <a href="http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/">j&#8217;en ai parlé dans ce billet</a>. Il s&#8217;agit d&#8217;un événement annuel pensé pour les programmeurs, les passionnés du web et des logiciels libres.</p>
<p>La semaine passée, nous avons publié officiellement l&#8217;appel aux conférenciers. C&#8217;est la première annonce grand public du début de la programmation 2011. Jusqu&#8217;au 26 Novembre 2010, nous acceptons les propositions de présentations.</p>
<p>La procédure est simple, il faut proposer sa présentation par le <a href="http://bit.ly/b3pX8P">formulaire &#8220;appel aux conférenciers&#8221;</a> sur le site officiel.</p>
<p>La date et le lieux de la conférence sont maintenant officielles et se déroulera à l&#8217;Hôtel<br />
<a href="http://confoo.ca/fr/hotel">Hilton Bonaventure de Montreal</a> du 9 au 11 Mars 2011. Durant cette semaine il y aura aussi des journées de formation privés.</p>
<h3>Ma participation</h3>
<p>Pour moi ce sera ma première année dans l&#8217;équipe d&#8217;organisation de cet événement d&#8217;envergure. Je pense que ça tombe dans le sens de m&#8217;y impliquer car lorsque j&#8217;ai démissionné de l&#8217;animation des scouts j&#8217;ai décidé de pousser dans des loisirs qui sont plus près de ma carrière mais qui demanderont d&#8217;autres talents que ceux de faire de l&#8217;Intégration ou de la programmation.</p>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/09/lappel-aux-conferenciers-pour-confoo-2011-est-lance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Réalisation de l&#8217;intégration du site de Jean Émond [2008]</title>
		<link>http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/</link>
		<comments>http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 21:40:56 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2343</guid>
		<description><![CDATA[Réalisation de l&#8217;intégration du site de Jean Émond [2008]Pour ajouter a ma collection de billets de mon Portfolio professionnel j&#8217;ai fait en 2008 ce petit site.
 J&#8217;ai de la difficulté à trouver des mots pour decrire ce projet. Un pamphlet publicitaire est le nom le plus près de ce que je peit utiliser pour decrire.
Contrairement [...]]]></description>
			<content:encoded><![CDATA[<a href='http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/' class='retweet '  style='display:block;margin:10px 0px;' >Réalisation de l&#8217;intégration du site de Jean Émond [2008]</a><p>Pour ajouter a ma collection de billets de mon <a href="/blog/categorie/portfolio">Portfolio professionnel</a> j&#8217;ai fait en 2008 ce petit site.</p>
<p> J&#8217;ai de la difficulté à trouver des mots pour decrire ce projet. Un pamphlet publicitaire est le nom le plus près de ce que je peit utiliser pour decrire.</p>
<p>Contrairement aux autres clients que j&#8217;ai eu je n&#8217;ai pas rencontré le client directement.  </p>
<h3>Intégration HTML/CSS</h3>
<p>Le but était principalement de refaire la brochure PDF en version web. Il a été fait en deux itérations comme vous pouvez le voir sur les captures d&#8217;écran.</p>
<h3>Captures d&#8217;ecran</h3>

<a href='http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/screenshot_jemond1/' title='Jean Emond : Page accueil en français'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_jemond1-150x150.png" class="attachment-thumbnail" alt="" title="Jean Emond : Page accueil en français" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/screenshot_jemond2/' title='Jean Emond : Page «Cadre supérieur»'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_jemond2-150x150.png" class="attachment-thumbnail" alt="" title="Jean Emond : Page «Cadre supérieur»" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/screenshot_jemond3/' title='Jean Emond : Page président (version anglaise)'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_jemond3-150x150.png" class="attachment-thumbnail" alt="" title="Jean Emond : Page président (version anglaise)" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/extrait-pdf-original/' title='Jean Emond : Extrait PDF original'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/Extrait-PDF-original-150x150.png" class="attachment-thumbnail" alt="" title="Jean Emond : Extrait PDF original" /></a>

<p>Voir le site <a href="http://jeanemond.ca">Jean Emond.ca</a></p>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/09/realisation-de-lintegration-du-site-de-jean-emond-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Réalisation site Manoir Saint-Francis faits avec GéraniumCMS [2007]</title>
		<link>http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/</link>
		<comments>http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 06:45:25 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[GeraniumCMS]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[inexis]]></category>
		<category><![CDATA[p52]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2349</guid>
		<description><![CDATA[Dans ma série d&#8217;articles ou je parle des sites que j&#8217;ai fait dans le passé. J&#8217;ai mentionné quelques fois que j&#8217;utilisait GéraniumCMS. Le projet du site du Manoir Saint-Francis à Magog, est l&#8217;un des derniers déployés.
Derniers sites faits avec GéraniumCMS
J&#8217;était en emploi chez TechSolCom Groupe informatique depuis quelques temps déjà et un ancien client de [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_manoirstfrancis2-300x285.png" alt="Manoir Saint-Francis : Page avec images cartes généré par GéraniumCMS" title="Manoir Saint-Francis : Page avec images cartes" width="300" height="285" class="aligncenter size-medium wp-image-2352" />Dans ma série d&#8217;articles ou je parle des <a href="http://renoirboulanger.com/blog/category/portfolio/">sites que j&#8217;ai fait dans le passé</a>. J&#8217;ai mentionné quelques fois que <a href="http://renoirboulanger.com/blog/tag/GeraniumCMS/">j&#8217;utilisait GéraniumCMS</a>. Le projet du site du <a href="http://manoirstfrancis.com">Manoir Saint-Francis à Magog</a>, est l&#8217;un des derniers déployés.</p>
<p><strong>Derniers sites faits avec GéraniumCMS</strong></p>
<p>J&#8217;était en emploi chez <a href="http://techsolcom.ca">TechSolCom Groupe informatique</a> depuis quelques temps déjà et un ancien client de Inexis a voulu que je fasse un site pour lui.</p>
<p>Le contexte général du projet est comme il l&#8217;est souvent. Un graphiste me fournit des planches Photoshop et je dois le rendre identique en HTML.</p>
<h3>Gallerie d&#8217;images</h3>

<a href='http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/screenshot_manoirstfrancis1_cms/' title='Manoir Saint-Francis : Boutons mode édition'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_manoirstfrancis1_cms-150x150.png" class="attachment-thumbnail" alt="" title="Manoir Saint-Francis : Boutons mode édition" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/screenshot_manoirstfrancis1/' title='Manoir Saint-Francis : Page accueil'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_manoirstfrancis1-150x150.png" class="attachment-thumbnail" alt="" title="Manoir Saint-Francis : Page accueil" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/screenshot_manoirstfrancis2/' title='Manoir Saint-Francis : Page avec images cartes'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_manoirstfrancis2-150x150.png" class="attachment-thumbnail" alt="" title="Manoir Saint-Francis : Page avec images cartes" /></a>
<a href='http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/screenshot_manoirstfrancis3/' title='Manoir Saint-Francis : Focus sur image'><img width="150" height="150" src="http://renoirboulanger.com/wp-content/uploads/2010/08/screenshot_manoirstfrancis3-150x150.png" class="attachment-thumbnail" alt="" title="Manoir Saint-Francis : Focus sur image" /></a>

]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/09/realisation-site-manoir-saint-francis-faits-avec-geraniumcms-2007/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lancement de l&#8217;annee 2011 pour la conférence ConFoo</title>
		<link>http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/</link>
		<comments>http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 05:43:00 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Open-Source]]></category>
		<category><![CDATA[cloud-computing]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[w3qc]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2359</guid>
		<description><![CDATA[
Depuis le debut de l&#8217;ete je me suis joint à l&#8217;organisation de la conférence ConFoo qui couvre les sujets technique comme les langages PHP, .Net, Python et les standards du web.   Ce week-end aura lieu leur traditionnel BBQ de lancement d&#8217;année.

Detail de l&#8217;invitation officielle
Je duplique le contenu provenant de l&#8217;annonce offieielle de W3QC [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-2362" style="float: right; border: none; margin: 0px 0px 20px 20px;" title="ConFoo.ca Web Techno Conférence" src="http://renoirboulanger.com/wp-content/uploads/2010/09/logo_confoo_150_39.gif" alt="ConFoo.ca Web Techno Conférence" width="150" height="39" /></p>
<p>Depuis le debut de l&#8217;ete je me suis joint à l&#8217;organisation de la <a href="http://confoo.ca/">conférence ConFoo</a> qui couvre les sujets technique comme les langages PHP, .Net, Python et les standards du web.   Ce week-end aura lieu leur traditionnel BBQ de lancement d&#8217;année.</p>
<p><!-- more --></p>
<h3>Detail de l&#8217;invitation officielle</h3>
<p>Je duplique le contenu provenant de l&#8217;annonce offieielle de <a href="http://www.w3qc.org/">W3QC</a> et de l&#8217;équipe d&#8217;organisation.</p>
<p>Le BBQ aura lieu le 11 septembre à partir de 13h.</p>
<p>Au menu: hot-dogs, chips, salades, boissons gazeuses, biscuits et beaucoup de plaisir. Dans ce même esprit, l&#8217;équipe de <a href="http://montreal-python.org">Montréal-Python</a> apportera un keg de Charmeuse de Serpents. Une bière India Pale Ale spécialement brassée pour cet événement.</p>
<p>Afin de garantir le nombre adéquat de portions, veuillez confirmer votre présence en envoyant un email à board@confoo.ca. Noubliez pas de mentionner le nombre de personne qui vous accompagnera.</p>
<p>Notez le numéro 1-888-679-8466 option 0 au cas où vous ne trouverez pas le groupe sur les lieux.</p>
<h3>Détails de l&#8217;évènement</h3>
<ul>
<li><strong>Quand:</strong> 2010-09-11 à 13h</li>
<li><strong>Où: </strong> parc Mont-Royal, près de la maison Smith (suivez les affiches)</li>
<li><strong>Pour qui: </strong> les développeurs, les acteurs du Web et leurs familles</li>
<li><strong>Tarif: </strong> gratuit!</li>
</ul>
<p>Au plaisir de vous y voir.</p>
<p>L&#8217;équipe de ConFoo.</p>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/09/lancement-de-lannee-2011-pour-la-conference-confoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installer une Machine Virtuelle Linux roulant dans VMware Fusion sous Mac OS X</title>
		<link>http://renoirboulanger.com/blog/2010/07/installer-une-machine-virtuelle-linux-roulant-dans-vmware-fusion-sous-mac-os-x/</link>
		<comments>http://renoirboulanger.com/blog/2010/07/installer-une-machine-virtuelle-linux-roulant-dans-vmware-fusion-sous-mac-os-x/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 14:34:31 +0000</pubDate>
		<dc:creator>Renoir Boulanger</dc:creator>
				<category><![CDATA[Tranche de vie]]></category>

		<guid isPermaLink="false">http://renoirboulanger.com/?p=2298</guid>
		<description><![CDATA[
A force de travailler sur plusieurs environnement de projets il est venu le réflexe d&#8217;utiliser des Machines Virtuelles (VM) pour contenir mes espaces de travail. Avec ce type d&#8217;installation je peut partager avec mes collègues au bureau la même installation mais qui roule sur chacun de nos postes de travail.
J&#8217;en ai parlé plusieurs fois (dont [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://renoirboulanger.com/wp-content/uploads/2010/07/3_resultat.png" rel="lightbox[2298]"><img class="size-medium wp-image-2306 alignright" style="border: none !important;" title="Bureau Mac OS X avec applications provenant de la Machine Virtuelle roulant a l'intérieur de la Machine Virtuelle" src="http://renoirboulanger.com/wp-content/uploads/2010/07/3_resultat-300x242.png" border="0" alt="" width="240" height="194" /></a></p>
<p>A force de travailler sur plusieurs environnement de projets il est venu le réflexe d&#8217;utiliser des Machines Virtuelles (VM) pour contenir mes espaces de travail. Avec ce type d&#8217;installation je peut partager avec mes collègues au bureau la même installation mais qui roule sur chacun de nos postes de travail.</p>
<p>J&#8217;en ai parlé plusieurs fois (dont <a href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-i/">ici</a>, <a href="http://renoirboulanger.com/blog/2009/09/une-vm-linux-qui-sert-au-developpement-php-5-3-avec-eclipse-partie-ii/">ici</a>. <a href="http://renoirboulanger.com/blog/2007/11/mon-espace-de-travail/">Je le fait depuis 2007 même</a>). L&#8217;idée de cet article est de vous montrer comment j&#8217;ai fait pour mon poste de travail Mac OS X.</p>
<p>Les particularités de cette procédure est que:</p>
<ol>
<li>J&#8217;utilise la fonction de partage de dossier de VMware Fusion sur Mac OS X<br />
(Qui me permet d&#8217;avoir UN dossier dans le Mac et que la VM agit comme si c&#8217;était un dossier local)</li>
<li>J&#8217;ai essayé Netbeans pour développer en PHP (<a href="http://netbeans.org/downloads/start.html?platform=linux&amp;lang=en&amp;option=php">lien de téléchargement</a>)<br />
(au lieu d&#8217;Eclipse&#8230; mais en fait, les programmes utilisés dans la VM n&#8217;ont pas d&#8217;importance)</li>
<li>J&#8217;utilise VMware Fusion (sur la même machine de travail) plutôt que VMware Server ou d&#8217;utiliser un serveur distant de VM (<a href="http://www.vmware.com/products/server/">VMware server</a> et/ou <a href="http://www.vmware.com/products/esxi/">VMware ESXi</a>).</li>
<li>(Pas illustré comment faire) Les dossiers que j&#8217;ai mis un label mauve (voir captures d&#8217;écran) sont des dossiers qui ne sont pas synchronisés dans le Timecapsule. Car ça sert a rien d&#8217;archiver des dossiers de travail qui sont déjà sauvegardés dans un gestionnaire de source (Subversion, eh oui, encore!)</li>
</ol>
<p>Les avantages de cette installation:</p>
<ol>
<li>Plus besoin de faire SCP, ni NFS, et sans <a href="http://fuse.sourceforge.net/">FUSE</a> (un <em>mount</em> (<a href="http://en.wikipedia.org/wiki/Mount_(Unix)">Wikipedia</a>) mais, en SSH) pour partager entre les deux machines les dossiers</li>
<li>On peut l&#8217;installer sur un ordinateur portable et ne pas avoir a attendre d&#8217;être sur le réseau pour travailler</li>
<li>On peut sauver de l&#8217;espace disque en réduisant la taille des disques de la VM. Car l&#8217;espace de stockage des fichiers de travail sera dans les dossiers locaux du Mac.</li>
</ol>
<p><span id="more-2298"></span></p>
<h3><a name="VMLinuxsousVMwareFusionsousMacOSX-Objectifs"></a>Objectifs</h3>
<ul>
<li>Pouvoir <strong>utiliser l&#8217;espace de stockage du Mac natif</strong> pour les fichiers de travail plutot que d&#8217;utiliser l&#8217;espace disque de la machine virtuelle.</li>
</ul>
<h3><a name="VMLinuxsousVMwareFusionsousMacOSX-Cequ%27ilfaut"></a>Ce qu&#8217;il faut</h3>
<ul>
<li>Avoir installé une VM sous Linux quelconque</li>
<li>La VM doit être locale au Mac</li>
<li>Une VM avec 10Go d&#8217;espace et moins est suffisant</li>
<li>Réseau en mode «<strong>Bridged</strong>»</li>
<li>Faire après une procédure similaire a NFS et d&#8217;avoir le meme uid et guid que le serveur</li>
</ul>
<h3><a name="VMLinuxsousVMwareFusionsousMacOSX-Proc%C3%A9dure"></a>Procédure</h3>
<h4><a name="VMLinuxsousVMwareFusionsousMacOSX-Changerle%7B%7Buid%7D%7Det%7B%7Bguid%7D%7Ddel%27utilisateurcourrant"></a>Changer le <tt>uid</tt> et <tt>guid</tt> de l&#8217;utilisateur courrant</h4>
<ol>
<li>Vérifier quel uid et guid, sous Mac, dans <strong>Applications</strong> &gt; <strong>Terminal</strong>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">id</span>
<span style="color: #007800;">uid</span>=<span style="color: #000000;">20001</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;">gid</span>=<span style="color: #000000;">20</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>staff<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">groups</span></span>=<span style="color: #000000;">20</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>staff<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">404</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>com.apple.sharepoint.group.3<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">204</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>_developer<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">100</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>_lpoperator<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">98</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>_lpadmin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">81</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>_appserveradm<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">80</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>admin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">79</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>_appserverusr<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">61</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>localaccounts<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">12</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>everyone<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">401</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>com.apple.access_screensharing<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">403</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>com.apple.sharepoint.group.2<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">402</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>com.apple.sharepoint.group.1<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">406</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>com.apple.sharepoint.group.5<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

<p><strong>Note</strong> sur le Mac, c&#8217;est <strong>20001</strong></li>
<li>Se connecter a la VM locale, et y créer un compte backup pour effectuer les opérations

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> 192.168.0.100
<span style="color: #c20cb9; font-weight: bold;">sudo</span> -
adduser patateuser
...
usermod <span style="color: #660033;">-a</span> <span style="color: #660033;">-G</span> admin patateuser</pre></td></tr></table></div>

</li>
</ol>
<ol>
<li>s&#8217;y déconnecter et se reconnecter

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">exit</span>
<span style="color: #c20cb9; font-weight: bold;">ssh</span> patateuser<span style="color: #000000; font-weight: bold;">@</span>192.168.0.100</pre></td></tr></table></div>

</li>
<li>Savoir son user id sur la machine Linux

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">id</span>
<span style="color: #007800;">uid</span>=<span style="color: #000000;">1000</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;">gid</span>=<span style="color: #000000;">1000</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">groups</span></span>=<span style="color: #000000;">4</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>adm<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">20</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>dialout<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">24</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>cdrom<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">46</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>plugdev<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">105</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>lpadmin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">119</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>admin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">122</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>sambashare<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">1000</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

<p><strong>Note</strong> sur la VM, c&#8217;est <strong>1000</strong></li>
<li>Changer les permissions du dossier user <strong>vigr</strong> et <strong>vipw</strong><br />
<em>Commandes a faire en root, puis en <tt>vim</tt> pour modifier le uid d&#8217;un usager</em></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-s</span>
vipw
~
:<span style="color: #000000; font-weight: bold;">%</span>s<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">1000</span><span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000;">20001</span><span style="color: #000000; font-weight: bold;">/</span>g
:wq</pre></td></tr></table></div>

</li>
<li>Changer les permissions du <tt>/home/PATATEUSER</tt>
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">Avant de faire le <tt>chown</tt> il faut s&#8217;assurer en regardant a l&#8217;intérieur du homedir cible à la VM si il n&#8217;y a pas un alias vers autre chose. Question de ne pas changer les permissions de d&#8217;autres fichiers dans l&#8217;arborescence et affecter ailleurs que dans le système</div>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>home
<span style="color: #c20cb9; font-weight: bold;">chown</span> <span style="color: #660033;">-R</span> renoirb:renoirb renoirb<span style="color: #000000; font-weight: bold;">/</span></pre></td></tr></table></div>

<p><strong>Attendre &#8230;</strong></li>
<li>Tenter de se reconnecter <strong>DANS UN AUTRE SESSION SSH</strong>
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">
<h4 style="color: #777; margin-bottom: 10px;">Pourquoi?</h4>
<p>Parceque si quelque chose de malencontreux se serait produit durant le chown, le login ne pourrait pas marcher</p>
</div>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> renoirb<span style="color: #000000; font-weight: bold;">@</span>192.168.0.100</pre></td></tr></table></div>

</li>
<li>Croiser les doigts</li>
<li>Tester si le ID est changé

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">id</span>
<span style="color: #007800;">uid</span>=<span style="color: #000000;">20001</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;">gid</span>=<span style="color: #000000;">20001</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #007800;"><span style="color: #c20cb9; font-weight: bold;">groups</span></span>=<span style="color: #000000;">4</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>adm<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">20</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>dialout<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">24</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>cdrom<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">46</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>plugdev<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">105</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>lpadmin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">119</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>admin<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">122</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>sambashare<span style="color: #7a0874; font-weight: bold;">&#41;</span>,<span style="color: #000000;">20001</span><span style="color: #7a0874; font-weight: bold;">&#40;</span>renoirb<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

<p><strong>Good!</strong></li>
</ol>
<h4><a name="VMLinuxsousVMwareFusionsousMacOSX-PartagedossiersentreleMacetlaVMLinux"></a>Partage dossiers entre le Mac et la VM Linux</h4>
<p>Idéal pour utiliser l&#8217;espace disque Mac pour y stocker des documents de travail utilisés a l&#8217;intérieur de la VM.</p>
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">
<h4 style="color: #777; margin-bottom: 10px;">Avantage de faire ça</h4>
<p>Ce qui est bien de tout ça c&#8217;est que l&#8217;espace disque de la VM peut rester petit et contenir les outils de travail (Apache, PHP, Eclipse/netbeans) et avoir le gros des dossiers de travail (workspace) dans la machine native.</p>
</div>
<ol>
<li>Lancer <strong>VMWare Fusion</strong>
<p><div id="attachment_2304" class="wp-caption alignnone" style="width: 226px"><a href="http://renoirboulanger.com/wp-content/uploads/2010/07/0_settings.png" rel="lightbox[2298]"><img class="size-medium wp-image-2304 " title="Panneau de paramètres VMware Fusion pour Mac OS X" src="http://renoirboulanger.com/wp-content/uploads/2010/07/0_settings-300x261.png" alt="" width="216" height="188" /></a><p class="wp-caption-text">Panneau de paramètres VMware Fusion pour Mac OS X</p></div></li>
<li>Aller dans <strong>Settings</strong> &gt; <strong>Sharing</strong> (Partage)
<p><div id="attachment_2305" class="wp-caption alignnone" style="width: 310px"><a href="http://renoirboulanger.com/wp-content/uploads/2010/07/1_sharing.png" rel="lightbox[2298]"><img class="size-medium wp-image-2305" title="Panneau paramètres VMware Fusion pour Mac OS X écran Partage" src="http://renoirboulanger.com/wp-content/uploads/2010/07/1_sharing-300x228.png" alt="" width="300" height="228" /></a><p class="wp-caption-text">Panneau paramètres VMware Fusion pour Mac OS X écran Partage</p></div></li>
<li>Ajouter le partage désiré (le petit +)
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">
<h4 style="color: #777; margin-bottom: 10px;">Recommendation</h4>
<p>Pour éviter tout risque de souçis de chemins entre les deux machines. Ne pas utiliser un dossier avec des espaces.</p>
</div>
</li>
<li>Aller dans la VM
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">
<h4 style="color: #777; margin-bottom: 10px;">Tunnel X11</h4>
<p>L&#8217;idée du Tunnel X est pour permettre de rouler une application locale (a la VM) a l&#8217;extérieur (donc afficher sur le Mac).</p>
</div>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-X</span> renoirb<span style="color: #000000; font-weight: bold;">@</span>192.168.0.100</pre></td></tr></table></div>

</li>
<li>Lier le dossier partagé du Mac a un dossier local a la VM (workspace)&#8230; <strong>Sur la VM</strong>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #660033;">-s</span>
<span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>mnt<span style="color: #000000; font-weight: bold;">/</span>hgfs<span style="color: #000000; font-weight: bold;">/</span>workspace<span style="color: #000000; font-weight: bold;">/</span> <span style="color: #000000; font-weight: bold;">/</span>home<span style="color: #000000; font-weight: bold;">/</span>renoirb<span style="color: #000000; font-weight: bold;">/</span>workspace</pre></td></tr></table></div>

</li>
<li>Exécuter le programme distant

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">netbeans <span style="color: #000000; font-weight: bold;">&amp;</span>amp;</pre></td></tr></table></div>

<p><strong>Note</strong> Le «amperstand» (&amp; ou perluet) sert a préciser que le programme roulera en arrière-plan.</li>
<li>Configurer l&#8217;outil de développement pour qu&#8217;il puise ses fichiers de travail DANS <tt>/home/renoirb/workspace</tt>
<div style="background: #ececec; margin: 5px 0px; padding: 18px 8px 8px 50px; border: 1px solid #333;">
<h4 style="color: #777; margin-bottom: 10px;">Note</h4>
<p>Netbeans n&#8217;utilise pas le meme type de chemin et c&#8217;est différent d&#8217;un outil de développement a l&#8217;autre.</p>
</div>
</li>
<li>Résultat<br />
<a href="http://renoirboulanger.com/wp-content/uploads/2010/07/3_resultat.png" rel="lightbox[2298]"><img class="alignnone size-medium wp-image-2306" style="border: none !important;" title="Bureau Mac OS X avec applications provenant de la Machine Virtuelle roulant a l'intérieur de la Machine Virtuelle" src="http://renoirboulanger.com/wp-content/uploads/2010/07/3_resultat-300x242.png" alt="" width="300" height="242" /></a></li>
</ol>
<h3><a name="VMLinuxsousVMwareFusionsousMacOSX-R%C3%A9f%C3%A9rences"></a>Références</h3>
<ul>
<li><a href="http://laurentbois.com/2008/04/26/install-ubuntu-804-using-vmware-fusion-on-mac-os-x/">http://laurentbois.com/2008/04/26/install-ubuntu-804-using-vmware-fusion-on-mac-os-x/</a></li>
<li><a href="http://www.cyberciti.biz/faq/howto-linux-add-user-to-group/">http://www.cyberciti.biz/faq/howto-linux-add-user-to-group/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://renoirboulanger.com/blog/2010/07/installer-une-machine-virtuelle-linux-roulant-dans-vmware-fusion-sous-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

