<?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>Linux Wizard</title>
	<atom:link href="http://www.linux-wizard.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linux-wizard.net</link>
	<description>Ressources documentaires pour Mandriva Linux et les Logiciels Libres</description>
	<lastBuildDate>Tue, 17 Apr 2012 21:51:17 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Seen at Orange Portails, Mougins #car #lotus #forsale</title>
		<link>http://www.linux-wizard.net/2012/04/17/seen-at-orange-portails-mougins-car-lotus-forsale/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=seen-at-orange-portails-mougins-car-lotus-forsale</link>
		<comments>http://www.linux-wizard.net/2012/04/17/seen-at-orange-portails-mougins-car-lotus-forsale/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 21:51:17 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/2012/04/17/seen-at-orange-portails-mougins-car-lotus-forsale/</guid>
		<description><![CDATA[Seen at Orange Portails, Mougins #car #lotus #forsale This was posted on Google+&#8230;]]></description>
			<content:encoded><![CDATA[<p>Seen at Orange Portails, Mougins #car #lotus #forsale
<div class="g-crossposting-att">
<div class="g-crossposting-att-title"><a href="" target="_blank"></a></div>
<div class="g-crossposting-att-img" style="float:left"><a href="" target="_blank"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&amp;gadget=a&amp;resize_h=100&amp;url=https%3A%2F%2Flh3.googleusercontent.com%2F-A4TnZEw8cMk%2FT43l1PwFZMI%2FAAAAAAAADU8%2FVhtfrcRJgCs%2Fs0-d%2F12%252B-%252B1" /></a></div>
<div class="g-crossposting-att-txt"></div>
</div>
<div class="g-crossposting-backlink"><a href="https://plus.google.com/113682725619024625279/posts/HqTEky47PY9" target="_blank">This was posted on Google+&hellip;</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/04/17/seen-at-orange-portails-mougins-car-lotus-forsale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PostgreSQL tips : quickly add a surrogate key column</title>
		<link>http://www.linux-wizard.net/2012/04/17/postgresql-tips-quickly-add-a-surrogate-key-column/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=postgresql-tips-quickly-add-a-surrogate-key-column</link>
		<comments>http://www.linux-wizard.net/2012/04/17/postgresql-tips-quickly-add-a-surrogate-key-column/#comments</comments>
		<pubDate>Tue, 17 Apr 2012 12:57:43 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Trucs & Astuces]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2273</guid>
		<description><![CDATA[Suppose that you want to add a surrogate key to a table in PostgreSQL to help you quickly identify each rows in a unique way. You can do this easily and quickly by just adding a SERIAL type column. When adding a SERIAL type column to an already filled table, PostgreSQL will automatically fill the [...]]]></description>
			<content:encoded><![CDATA[<p>Suppose that you want to add a surrogate key to a table in PostgreSQL to help you quickly identify each rows in a unique way. You can do this easily and quickly by just adding a <strong>SERIAL</strong> type column. When adding a SERIAL type column to an already filled table, PostgreSQL will automatically fill the column with some values.<br />
To ensure your surrogate key uniqueness, don&#8217;t forget to add the <strong>UNIQUE</strong> constraint : on top of that this will create an index, thus speeding up your join queries on this column.</p>
<pre class="brush: sql; light: true; title: ; notranslate">ALTER TABLE mytable ADD COLUMN id SERIAL UNIQUE;</pre>
<p><span id="more-2273"></span></p>
<pre class="brush: sql; title: ; notranslate">
test=# \d films
               Table « public.films »
  Colonne  |          Type           | Modificateurs
-----------+-------------------------+---------------
 code      | character(5)            | non NULL
 title     | character varying(40)   | non NULL
 did       | integer                 | non NULL
 date_prod | date                    |
 kind      | character varying(10)   |
 len       | interval hour to minute |
Index :
    &quot;firstkey&quot; PRIMARY KEY, btree (code)
test=# SELECT COUNT(*) FROM films;
 count
-------
   990
(1 ligne)
test=# ALTER TABLE films ADD COLUMN id SERIAL UNIQUE;
NOTICE:  ALTER TABLE créera des séquences implicites « films_id_seq » pour la colonne serial « films.id »
NOTICE:  ALTER TABLE / ADD UNIQUE créera un index implicite « films_id_key » pour la table « films »
ALTER TABLE
test=# \d films
                                    Table « public.films »
  Colonne  |          Type           |                     Modificateurs
-----------+-------------------------+--------------------------------------------------------
 code      | character(5)            | non NULL
 title     | character varying(40)   | non NULL
 did       | integer                 | non NULL
 date_prod | date                    |
 kind      | character varying(10)   |
 len       | interval hour to minute |
 id        | integer                 | non NULL Par défaut, nextval('films_id_seq'::regclass)
Index :
    &quot;firstkey&quot; PRIMARY KEY, btree (code)
    &quot;films_id_key&quot; UNIQUE, btree (id)
test=# SELECT id FROM films LIMIT 5;
 id
----
  1
  2
  3
  4
  5
(5 lignes)
test=# SELECT id FROM films ORDER BY id DESC LIMIT 5;
 id
-----
 990
 989
 988
 987
 986
(5 lignes)
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/04/17/postgresql-tips-quickly-add-a-surrogate-key-column/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sightseeing in Nice</title>
		<link>http://www.linux-wizard.net/2012/04/15/sightseeing-in-nice/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sightseeing-in-nice</link>
		<comments>http://www.linux-wizard.net/2012/04/15/sightseeing-in-nice/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 16:37:12 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/2012/04/15/sightseeing-in-nice</guid>
		<description><![CDATA[Sightseeing in Nice This was posted on Google+&#8230;]]></description>
			<content:encoded><![CDATA[<p>Sightseeing in Nice
<div class="g-crossposting-att">
<div class="g-crossposting-att-title"><a href="" target="_blank"></a></div>
<div class="g-crossposting-att-img" style="float:left;"><a href="" target="_blank"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=https%3A%2F%2Flh6.googleusercontent.com%2F-4PqimBr2liE%2FT4r5NsXNTUI%2FAAAAAAAADTo%2FzwWXqhD85Aw%2Fs0-d%2F12%252B-%252B3" /></a></div>
<div class="g-crossposting-att-txt"></div>
</div>
<div class="g-crossposting-backlink"><a href="https://plus.google.com/113682725619024625279/posts/4mvL7ZWxVjx" target="_blank">This was posted on Google+&hellip;</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/04/15/sightseeing-in-nice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>votez pour Babason !!! :)</title>
		<link>http://www.linux-wizard.net/2012/04/15/votez-pour-babason/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=votez-pour-babason</link>
		<comments>http://www.linux-wizard.net/2012/04/15/votez-pour-babason/#comments</comments>
		<pubDate>Sun, 15 Apr 2012 15:14:28 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/2012/04/15/votez-pour-babason</guid>
		<description><![CDATA[votez pour Babason !!! Nuits du sud : votez pour votre talent ! Quel est votre groupe préféré ? This was posted on Google+&#8230;]]></description>
			<content:encoded><![CDATA[<p>votez pour Babason !!! <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<div class="g-crossposting-att">
<div class="g-crossposting-att-title"><a href="http://www.france3nice.fr/2012/NDS/Votez.html#pd_a_6135883" target="_blank">Nuits du sud : votez pour votre talent !</a></div>
<div class="g-crossposting-att-txt">Quel est votre groupe préféré ?</div>
</div>
<div class="g-crossposting-backlink"><a href="https://plus.google.com/113682725619024625279/posts/74jz5pupyj5" target="_blank">This was posted on Google+&hellip;</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/04/15/votez-pour-babason/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>so true :)</title>
		<link>http://www.linux-wizard.net/2012/04/12/so-true/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=so-true</link>
		<comments>http://www.linux-wizard.net/2012/04/12/so-true/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 18:54:03 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/2012/04/12/so-true</guid>
		<description><![CDATA[so true Demotivateur.fr &#124; Les chats Les chats &#8211; Partagez échangez et retrouvez chaques jours les meilleures images, images droles sur demotivateur.fr. This was posted on Google+&#8230;]]></description>
			<content:encoded><![CDATA[<p>so true <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
<div class="g-crossposting-att">
<div class="g-crossposting-att-title"><a href="http://www.demotivateur.fr/image/Leschats-22315" target="_blank">Demotivateur.fr | Les chats</a></div>
<div class="g-crossposting-att-img" style="float:left;"><a href="http://www.demotivateur.fr/image/Leschats-22315" target="_blank"><img src="http://images0-focus-opensocial.googleusercontent.com/gadgets/proxy?container=focus&#038;gadget=a&#038;resize_h=100&#038;url=http%3A%2F%2Fwww.demotivateur.fr%2Fwatermark.php%3Fsrc%3Dimages%2Fdemotivateur_img%2Fimgresize%2F13168319834f85c9edf31b2_521563_412604522102441_746077028_n.jpg" /></a></div>
<div class="g-crossposting-att-txt">Les chats &#8211; Partagez échangez et retrouvez chaques jours les meilleures images, images droles sur demotivateur.fr.</div>
</div>
<div class="g-crossposting-backlink"><a href="https://plus.google.com/113682725619024625279/posts/UYSkjBNEWC7" target="_blank">This was posted on Google+&hellip;</a></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/04/12/so-true/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Et si on harmonisait calendrier politique européen ?</title>
		<link>http://www.linux-wizard.net/2012/03/01/et-si-on-harmonisait-calendrier-politique-europeen/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=et-si-on-harmonisait-calendrier-politique-europeen</link>
		<comments>http://www.linux-wizard.net/2012/03/01/et-si-on-harmonisait-calendrier-politique-europeen/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 21:03:40 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Divers]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Europe]]></category>
		<category><![CDATA[Idées]]></category>
		<category><![CDATA[politique]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2259</guid>
		<description><![CDATA[Attention, cet article ne concerne en rien Linux ou les Logiciels Libres !!! Il est assez intéressant d&#8217;observer le ballet politique en cette période électorale en France, notamment concernant la politique européenne. Le nouveau traité de stabilité étant relativement contesté, les candidats de l&#8217;opposition redoublent de propositions et se proposent d&#8217;amender voire d&#8217;annuler ce que [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Attention, cet article ne concerne en rien Linux ou les Logiciels Libres !!!</strong></p>
<p>Il est assez intéressant d&#8217;observer le ballet politique en cette période électorale en France, notamment concernant la politique européenne. Le nouveau traité de stabilité étant relativement contesté, les candidats de l&#8217;opposition redoublent de propositions et se proposent d&#8217;amender voire d&#8217;annuler ce que le gouvernement actuel va valider avec ses partenaires européens.<br />
Bien sûr cette attitude est &laquo;&nbsp;logique&nbsp;&raquo; de la part de candidats à la recherche de voix, mais est elle réaliste ? Là est toute la question &#8230; Les candidats de gauche proposent de réformer l&#8217;Europe, mais le peuvent-ils si la majorité des gouvernements européens sont conservateurs ? J&#8217;en doute.</p>
<p>On parle beaucoup d&#8217;harmonisation des politiques fiscale, budgétaires, des politiques économiques voire même au niveau social. Mais qu&#8217;en est il de l&#8217;harmonisation des calendriers politiques ? En effet, bien que les élections européennes qui permettent l&#8217;élection des députés se déroule au même moment dans l&#8217;union européenne; le Parlement européen ne détient pas tous les pouvoirs : celui ci est partagé avec la Commission Européenne, mais aussi le Conseil Européen  qui réunit les chefs d&#8217;État et de gouvernement. On a vu notamment tout le poids et l&#8217;influence de ce dernier dans les différentes mesures prises durant la crise de la dette.<br />
Or, l&#8217;attitude et les exigences d&#8217;un chef d&#8217;État ne sont pas les mêmes selon qu&#8217;il soit en période électorale ou pas. Les candidats feront des promesses concernant l&#8217;Europe chacun de leurs côtés dans leur pays sans forcément se concerter avec les candidats du même bord politique dans les autres pays car notamment leurs calendriers et donc leurs priorités ne seront pas les mêmes.</p>
<p>Et si on faisait se dérouler les élections des gouvernements ( ou des chefs d&#8217;État selon le type de régime ) en même temps partout en Europe ? Cela pourrait permettre aux candidats de faire de vrais propositions qui seraient concertées concernant l&#8217;Europe : tant qu&#8217;à harmoniser, autant aller jusqu&#8217;au bout !<br />
Malheureusement ce sera très compliqué voire impossible à mettre en place car il y aura des changements de Constitution à faire de dans nombreux pays notamment pour avoir les mêmes durées de législature et de mandat, des chefs d&#8217;états devront accepter d&#8217;écourter leur mandat, et bien sûr cela renforce le côté fédéraliste &#8230; Un rêve pieu en somme. Que les candidats continuent à brasser du vent alors &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2012/03/01/et-si-on-harmonisait-calendrier-politique-europeen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Dokan under Windows to mount your $HOME with SSH</title>
		<link>http://www.linux-wizard.net/2011/07/11/using-dokan-under-windows-to-mount-your-home-with-ssh/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-dokan-under-windows-to-mount-your-home-with-ssh</link>
		<comments>http://www.linux-wizard.net/2011/07/11/using-dokan-under-windows-to-mount-your-home-with-ssh/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 12:37:49 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[HOWTO]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[sshfs]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2248</guid>
		<description><![CDATA[At work we are using Windows workstations, but we are working most of the time in our Virtual Machine, hosted in a Cloud, running under Linux. We have access to our Linux VM with NXClient or by using Putty. If you want to transfer some files from your Windows workstations to your Linux VM, several [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linux-wizard.net/wp-content/uploads/2011/07/yin_yang-linux_windows.jpg"><img class="alignleft size-thumbnail wp-image-2249" title="yin_yang-linux_windows" src="http://www.linux-wizard.net/wp-content/uploads/2011/07/yin_yang-linux_windows-150x150.jpg" alt="Linux Windows cooperation" width="150" height="150" /></a>At work we are using Windows workstations, but we are working most of the time in our Virtual Machine, hosted in a Cloud, running under Linux. We have access to our Linux VM with <a title="NXClient homepage" href="http://www.nomachine.com/screenshot/windows-client-install.php" target="_blank">NXClient</a> or by using <a title="Putty homepage" href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/" target="_blank">Putty</a>. If you want to transfer some files from your Windows workstations to your Linux VM, several solutions exists. Most solutions are using the <a title="Configurer un serveur SFTP (FTP sur SSH)" href="http://www.halpanet.org/?q=content/configurer-un-serveur-sftp-ftp-sur-ssh" target="_blank">built-in SFTP server</a> of OpenSSH : <a title="Filezilla homepage" href="http://filezilla.net/" target="_blank">Filezilla</a>, <a title="WinSCP homepage" href="http://winscp.net/eng/index.php" target="_blank">WinSCP</a>. Their drawbacks ? They are just some FTP-like clients, and so you lack integration with Windows, notably the Windows Explorer.</p>
<p>Under Linux we can use <a title="SSHFS homepage" href="http://fuse.sourceforge.net/sshfs.html" target="_blank">SSHFS</a> to mount your SSH server as a filesystem. Nautilus and Dolphin, at least, allow also to mount your remote SSH server in your local filesystem. Under Windows there are 2 solutions : <a title="Expandrive site" href="http://www.expandrive.com/" target="_blank">ExpanDrive</a> which a proprietary solution, and <a title="Dokan homepage" href="http://dokan-dev.net/en/" target="_blank">Dokan</a> which is an OpenSource and Free implementation of a FUSE-like filesystem.</p>
<p>&nbsp;</p>
<h1>Installing Dokan</h1>
<p>In fact Dokan is not really a program but a library implementing a FUSE-like filesystem. So for SSHFS support, you need to install the Dokan library, and then after, you will install the module allowing to use SSHFS protocol.</p>
<ol>
<li>Download the latest version of the Dokan library : <a title="Dokan library download link" href="http://dokan-dev.net/en/download/#dokan" target="_blank">http://dokan-dev.net/en/download/#dokan</a></li>
<li>Install the Dokan library by running the installer</li>
<li>Download and install the <a title="Microsoft Visual C++ 2005 SP1 Redistributable Package (x86)" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=200b2fd9-ae1a-4a14-984d-389c36f85647" target="_blank">Microsoft Visual C++ 2005 SP1 Redistributable Package</a>.</li>
<li>Download the latest and matching version of the Dokan SSHFS support : <a title="Dokan SSHFS support" href="http://dokan-dev.net/en/download/#sshfs" target="_blank">http://dokan-dev.net/en/download/#sshfs</a></li>
<li>Extract the content of the archive ( if you are using the zip version ) in <em>C:\Program Files\Dokan</em></li>
<li>To start Dokan, just run the binary <strong>DokanSSHFS.exe</strong> which is located normally in <em>C:\Program Files\Dokan\dokan-sshfs-0.6.0</em>.</li>
<li>You may want to create a shortcut on your Desktop ( right click on DokanSSHFS.exe -&gt; Send To -&gt; Desktop ( create a shortcut )</li>
</ol>
<p>&nbsp;</p>
<h1>Using Dokan</h1>
<p>To use Dokan you just need to run <strong>DokanSSHFS.exe</strong>, then a window will allow to enter the different settings.</p>
<ol>
<li>Enter you connection settings ( SSH server Host, username, password or identity file ).</li>
<li>If you want to map directly your $HOME, put the full Linux path to your home directory in <em>Server Root</em>.</li>
<li>Select the Windows letter drive which will map your SSHFS drive.</li>
<li>You can save theses settings by giving a name to the profile and then clicking on <strong>[Save]</strong> at the top of the window.</li>
<li>Press <strong>[Connect]</strong> and if everything is fine, you should have a new  drive letter in your Windows Explorer.</li>
</ol>
<p>&nbsp;</p>
<p>Links :</p>
<ul>
<li><a title="Monter un système de fichiers via ssh sous Linux et Windows" href="http://www.tux-planet.fr/monter-un-dossier-distant-avec-sshfs/" target="_blank">Monter un système de fichier via SSH sous Linux et Windows</a> (FR)</li>
<li><a title="SSH Filesystem" href="http://fuse.sourceforge.net/sshfs.html" target="_blank">SSH Filesystem (EN)</a></li>
<li><a title="Configurer un serveur SFTP (FTP sur SSH)" href="http://www.halpanet.org/?q=content/configurer-un-serveur-sftp-ftp-sur-ssh" target="_blank">Configurer un serveur SFTP (FR)</a></li>
<li><a title="Share from Linux using SSHFS on Windows with Dokan" href="http://ubuntuforums.org/showthread.php?t=1027820" target="_blank">Share from Linux using SSHFS on Windows with Dokan</a> (EN)</li>
</ul>
<p>&nbsp;</p>
<div id="attachment_2251" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.linux-wizard.net/wp-content/uploads/2011/07/sshfs-sous-windows.png"><img class="size-medium wp-image-2251" title="Dokan SSHFS Configuration windows" src="http://www.linux-wizard.net/wp-content/uploads/2011/07/sshfs-sous-windows-300x293.png" alt="Dokan SSHFS Configuration windows" width="300" height="293" /></a><p class="wp-caption-text">Dokan SSHFS Configuration windows</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/07/11/using-dokan-under-windows-to-mount-your-home-with-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First days at Orange</title>
		<link>http://www.linux-wizard.net/2011/07/05/first-days-at-orange/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=first-days-at-orange</link>
		<comments>http://www.linux-wizard.net/2011/07/05/first-days-at-orange/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 17:17:02 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2242</guid>
		<description><![CDATA[Since Monday July 4th, I&#8217;m working as a Linux sysadmin at Orange Hebex. I moved from Rouen to Sophia-Antipolis which is located in the south-west of France in the famous French Riviera. My job as a Linux sysadmin will be to ensure that the Linux servers at Orange are working fine Orange is the largest [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_2243" class="wp-caption alignleft" style="width: 160px"><a href="http://www.linux-wizard.net/wp-content/uploads/2011/07/18952-logo-orange-mobile-i-w-680-15-s-.png"><img class="size-thumbnail wp-image-2243" title="French ISP Orange group logo" src="http://www.linux-wizard.net/wp-content/uploads/2011/07/18952-logo-orange-mobile-i-w-680-15-s--150x150.png" alt="French ISP Orange group logo" width="150" height="150" /></a><p class="wp-caption-text">French ISP Orange group logo</p></div>
<p>Since Monday July 4th, I&#8217;m working as a Linux sysadmin at Orange Hebex. I moved from <a title="Rouen article on Wikipedia" href="http://en.wikipedia.org/wiki/Rouen" target="_blank">Rouen</a> to <a title="Sophia-Antipolis on Wikipedia" href="http://en.wikipedia.org/wiki/Sophia_Antipolis" target="_blank">Sophia-Antipolis</a> which is located in the south-west of France in the famous <a title="French riviera" href="http://en.wikipedia.org/wiki/French_Riviera" target="_blank">French Riviera</a>. My job as a Linux sysadmin will be to ensure that the Linux servers at Orange are working fine <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  <a title="Orange group" href="http://www.orange.com/en_EN/group/index.jsp" target="_blank">Orange</a> is the largest ISP in France, and have worldwide coverage. At Orange Hebex ( Hosting &amp; Exploitations ) we are dealing with all the Orange websites and portals. I will be working more specifically on a very specific piece of this infrastructure which allow to aggregate data from different sources/data warehouses. Most servers are running Ubuntu ( some older servers running Debian are being migrated to Ubuntu LTS ) and the specific platform on which I will be working will be running PostgreSQL as database. Deployments are handled by <a title="Fully Automated Installation" href="http://fai-project.org/" target="_blank">Debian FAI </a>, and the configuration is handled by <a title="CFEngine homepage" href="http://cfengine.com/" target="_blank">CFengine</a> as we have more than 3000 servers spread across 3 sites.</p>
<p>Even so in my daily usage at work I will be using Ubuntu ( running in a VM to which I&#8217;m connected using NX Client under Windows), I&#8217;m still planning to use Mandriva as my only desktop platform for daily use notably on my laptop. I do hope that I will still be able to contribute to the Mandriva community. I guess this will be a good opportunity for me to see why some people do prefer to use Debian/Ubuntu as servers and thus bring the best from them to Mandriva Linux distribution.</p>
<p>Long live to Mandriva, and long live to my former colleagues at <a title="Fiventis homepage" href="http://www.fiventis.fr/" target="_blank">Fiventis</a> which are still running Mandriva Linux on all the servers, but also on the workstations ! I do still plan to keep an eye on them <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/07/05/first-days-at-orange/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ghost from the past : MSEC GUI mockup</title>
		<link>http://www.linux-wizard.net/2011/05/22/ghost-from-the-past-msec-gui-mockup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ghost-from-the-past-msec-gui-mockup</link>
		<comments>http://www.linux-wizard.net/2011/05/22/ghost-from-the-past-msec-gui-mockup/#comments</comments>
		<pubDate>Sun, 22 May 2011 12:54:32 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[msec]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2235</guid>
		<description><![CDATA[I know that I tend to procrastinate a lot, but this time&#8230; I take nearly 1 year ! Last year I decide to draw a mockup of a new possible UI for msec. Why ? Actual MSEC issues Presently I do think that msec have several issues. IMHO most of theses issues are due to [...]]]></description>
			<content:encoded><![CDATA[<p>I know that I tend to procrastinate a lot, but this time&#8230; I take nearly 1 year ! Last year I decide to draw a mockup of a new possible UI for msec. Why ?</p>
<h1>Actual MSEC issues</h1>
<div id="attachment_2238" class="wp-caption aligncenter" style="width: 160px"><a href="http://www.linux-wizard.net/wp-content/uploads/2011/05/msec_2010.png"><img class="size-thumbnail wp-image-2238" title="msec_2010" src="http://www.linux-wizard.net/wp-content/uploads/2011/05/msec_2010-150x150.png" alt="Present MSEC GUI UI in Mandriva 2010" width="150" height="150" /></a><p class="wp-caption-text">Present MSEC GUI UI in Mandriva 2010</p></div>
<p>Presently I do think that msec have several issues. IMHO most of theses issues are due to the fact that the target of these tools are not clearly defined. Here are, IMHO, the current list of issues :</p>
<ol>
<li>The UI is too much technical and require too much reading</li>
<li>Whereas the UI is technically informative most users, even some of the skilled ones, won&#8217;t be able to tel if something is wrong or not</li>
<li>The security parameter tab presents directly some low level settings, and even worse with a two-level tab layout. When you end up doing tabs of tab &#8230; it means that something is wrong in your UI</li>
<li>MSEC will show the raw security check logs : this requires high technicals skills to understand, and with so many informations, you may not know if something is wrong or not. On top of that the list of world writable files is displayed, and this could be very big : users homes directories should be filtered out except $HOME/public_html if mod_userdir is installed.</li>
</ol>
<p>&nbsp;</p>
<h1>New MSEC application UI proposal</h1>
<p>So I decide to define the public which will use the application, and what do they expect to see. So let&#8217;s define the application goal and target:</p>
<ol>
<li>The application will be seen by the end user who may not be necessarily technically skilled</li>
<li>As reference I will use the <a title="Microsoft Windows Security Center" href="http://en.wikipedia.org/wiki/Windows_Action_Center" target="_blank">Microsoft Windows Security Center</a></li>
<li>The application will be used to notify the user about the global security state of his computer, and only to perform some basics configuration settings</li>
<li>More advanced/complete configuration settings should be handled by the CLI or another UI</li>
<li>The UI should give clear visual hints to the user if something wrong or not</li>
</ol>
<p>&nbsp;</p>
<h1>The mockup</h1>
<div id="attachment_2237" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.linux-wizard.net/wp-content/uploads/2011/05/msec_mockup.png"><img class="size-medium wp-image-2237" title="msec_mockup" src="http://www.linux-wizard.net/wp-content/uploads/2011/05/msec_mockup-300x203.png" alt="MSEC UI mockup" width="300" height="203" /></a><p class="wp-caption-text">MSEC UI mockup from july 2010</p></div>
<p>The mockup was done using OpenOffice.org Draw. The UI is in french but I will explain everything.</p>
<h2>The status bar</h2>
<p>We are going to begin &#8230; from the bottom with the status bar. The status will quickly give 2 informations: if MSEC is enabled and the current security level.</p>
<h2>The main panel</h2>
<p>Now we are going to detailed each elements in the main panel. All elements are constructed on the same layout :</p>
<ol>
<li>Status icon: it allows to know if the component is enabled, but also if there are some issues detected. The status icon have 5 states :
<ul>
<li>Green: Component enabled and no errors/issues detected</li>
<li>Orange: Component enabled but some errors/issues where detected</li>
<li>Yellow: Component enabled but there are some warnings ( not critical issues or some advised features are disabled )</li>
<li>Red: Component is disabled but it is strongly recommended to activate the component</li>
<li>Grey: Component is disabled and not required</li>
</ul>
</li>
<li>Component icon: the icon allow to easily identify the component. Most of the time the icon will be the one used by the application allowing to configure the component. This way the user will quickly recognize it when looking for it in MCC or KDE system settings ( if the component is integrated and displayed there )</li>
<li>Component name or description: allow to see the component name or description. Some additional informations may be eventually displayed</li>
<li>Fold/Unfold icon: the icon allow to show more about the component and notably the basics actions that can be applied to the component. Most of the time these actions will allow to enable/disable the component, consult the log concerning the components. To show the logs for a component, we&#8217;d better use a standard icon to avoid putting unnecessary text.</li>
</ol>
<p>Now let&#8217;s have a look at the details for each components.</p>
<h3>Firewall settings</h3>
<p>This component will allow to know if the firewall is enabled and if there are issues.</p>
<ul>
<li>status icon : red and green are straightforwards. Orange will be used if scan ports or attacked have been detected and no actions have been taken by the user or a possible system policy ( block or allow/whitelist ). It means that mandi-ifw will have to communicate about its status. Yellow will be when the firewall is enabled but some features are not enable : all ports are opened, scan port detection feature not enabled, Interactive Firewall not enabled</li>
<li>component name/description: quick summary for the firewall, may show the number of firewall rules</li>
<li>component actions: enable/disable firewall, enable/disable Interactive firewall, enable/disable scan port detection, number of detected attacks, number of rules, show firewall logs</li>
</ul>
<h3>Security Updates</h3>
<p>This component will deal with the security update.</p>
<ul>
<li>status icon : green = automatic security updates enabled and system up to date, yellow = automatic security updates enabled but system not up to date, orange = no automatic security updates and last security updates date from more than 1 or 2 weeks old, red = no automatic security updates and no security updates since 1 month or  updates disabled ( no security updates media defined ). No grey state as for me security updates should always be enabled</li>
<li>component actions : enable/disable automatic security updates, enable/disable security updates ( updates medias are defined and enabled/disabled in urpmi.cfg ), number of pending security updates, last security update check/installation, show security updates log</li>
</ul>
<h3>System integrity</h3>
<p>This component allow to check for the system integrity and its global safety by relying on the MSEC security checks.</p>
<ul>
<li>status icons: green = security checks enabled and no issues detected, yellow = security checks enabled but some warning from some security checks (  CHECK_WRITABLE, CHECK_SUID_ROOT, CHECK_USER_FILES, CHECK_PERMS, CHECK_RPM_INTEGRITY ). Orange = security checks enabled but some critical issues have been detected ( CHECK_PASSWD and CHECK_SHADOW, CHECK_CHKROOTKIT, CHECK_SUID_MD5 ), red = security checks disabled and eventually some critical issues have been detected from last manual check ( CHECK_PASSWD and CHECK_SHADOW, CHECK_CHKROOTKIT, CHECK_SUID_MD5 ) , grey = security check disabled</li>
<li>component actions: enable/disable periodic checks, security checks frequencies, enable security checks when on battery, enable/disable email notifications, enable/disable user notifications</li>
</ul>
<h3>MSEC security policy</h3>
<p>This component allow to configure some basics MSEC security policies. The mockup lack some of the actions that should be available in this part, they will be detailed below.</p>
<ul>
<li>status icons : green = msec enabled, no issues. Yellow = msec enabled but not at boot, grey = msec is disabled.</li>
<li>component actions: enable/disable msec, enable/disable msec at startup/boot show msec logs, msec security level,</li>
</ul>
<p>Contrary to what can be seen in the mockup, I decide to replace periodic checks with system integrity as for me this is more meaningful.</p>
<h1>Conclusion</h1>
<p>Here was my proposal for MSEC GUI. I guess that with the new trend in Mandriva, the tool should be written using <a title="Qt Quick" href="http://qt.nokia.com/qtquick/" target="_blank">Qt Quick</a>/<a title="QML" href="http://en.wikipedia.org/wiki/QML" target="_blank">QML</a>.</p>
<p>Last but not least, the user notification issue should be taken care too. Indeed presently the desktop notification will just notify that a security have been done, however the user don&#8217;t know if something is wrong or not. I guess that instead we should have notifications when one of the component is in red or orange state.</p>
<p>So finally after nearly 1 year I do decide to talk about this mockup : I do hope this will give some interesting ideas to some Mandriva dev or contributors <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/05/22/ghost-from-the-past-msec-gui-mockup/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>I&#8217;m a man, I&#8217;m Linux, I&#8217;m a Linux man : Happy 20th birthday !</title>
		<link>http://www.linux-wizard.net/2011/04/08/im-a-man-im-linux-im-a-linux-man-happy-20th-birthday/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=im-a-man-im-linux-im-a-linux-man-happy-20th-birthday</link>
		<comments>http://www.linux-wizard.net/2011/04/08/im-a-man-im-linux-im-a-linux-man-happy-20th-birthday/#comments</comments>
		<pubDate>Fri, 08 Apr 2011 09:51:33 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[20th birthday]]></category>
		<category><![CDATA[Linux Foundation]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2222</guid>
		<description><![CDATA[Indeed, since April 7th, Linux Foundation start the celebrations of the 20th birthday of Linux ! As a happy Linux user and contributor since more than 13 years, I do wish a truly happy birthday to Linux i.e to all of the Linux developers/testers/ packagers/promoters/users : WE are Linux. Happy birthday to us ! Links [...]]]></description>
			<content:encoded><![CDATA[<p>Indeed, since April 7th, Linux Foundation start the celebrations of the 20th birthday of Linux ! As a happy Linux user and contributor since more than 13 years, I do wish a truly happy birthday to Linux i.e to all of the Linux developers/testers/ packagers/promoters/users : WE are Linux. Happy birthday to us !</p>
<h5>Links</h5>
<ul>
<li><a title="Happy 20th birthday, Linux : The celebration begins" href="http://www.pcworld.com/businesscenter/article/224426/happy_20th_birthday_linux_the_celebrations_begin.html" target="_blank">Happy 20th birthday, Linux: The celebration begins</a></li>
<li><a title="Celebrate: Please join the Linux Foundation in celebrating 20 years of Linux !" href="http://www.linuxfoundation.org/20th/" target="_blank">Celebrate: Please join the Linux Foundation in celebrating 20 years of Linux !</a></li>
<li><a title="LFCS : Linux fête ses 20 ans en vidéo" href="http://www.silicon.fr/lfcs-linux-fete-ses-20-ans-en-video-49351.html" target="_blank">LFCS : Linux fête ses 20 ans en vidéo ( FR )</a></li>
<li><a title="Linux fête ses 20 ans !" href="http://www.journaldugeek.com/2011/04/06/linux-20-ans/" target="_blank">Linux fête ses 20 ans ! ( FR )</a></li>
</ul>
<p><iframe title="YouTube video player" width="560" height="349" src="http://www.youtube.com/embed/5ocq6_3-nEw" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/04/08/im-a-man-im-linux-im-a-linux-man-happy-20th-birthday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing the HTC IME keyboard under a non-HTC Androïd phone</title>
		<link>http://www.linux-wizard.net/2011/02/16/installing-the-htc-ime-keyboard-under-a-non-htc-android-phone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-the-htc-ime-keyboard-under-a-non-htc-android-phone</link>
		<comments>http://www.linux-wizard.net/2011/02/16/installing-the-htc-ime-keyboard-under-a-non-htc-android-phone/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 16:18:58 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Androïd]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[keyboard]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2149</guid>
		<description><![CDATA[My first smartphone was the HTC Legend, and this phone was using the awesome HTC IME keyboard : IMHO the best Androïd keyboard. So I decide to install the HTC IME in my Acer Liquid Metal. I will be using the Androïd SDK and the adb command to install the keyboard]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.linux-wizard.net/wp-content/uploads/2011/02/clavier_htc_nexus_one_mini.png"><img class="alignleft size-thumbnail wp-image-2154" title="clavier_htc_nexus_one_mini" src="http://www.linux-wizard.net/wp-content/uploads/2011/02/clavier_htc_nexus_one_mini-150x150.png" alt="clavier_htc_nexus_one_mini" width="150" height="150" /></a>Presently I&#8217;m using an Acer Liquid Metal as my phone. This Androïd phone is running under Androïd 2.2 ( Froyo ), and they keyboard is pretty the stock Androïd keyboard. However my first smartphone was the HTC Legend, and this phone was using the awesome HTC IME keyboard : IMHO the best Androïd keyboard. So I decide to install the HTC IME in my Acer Liquid Metal. I will be using the Androïd SDK and the <strong>adb</strong> command to install the keyboard, so please read before my previous tutorial explaining how to install applications in an Androïd from a computer runnning Linux : <a title="Installing applications to your Androïd phone from your computer using Mandriva" href="http://www.linux-wizard.net/2011/02/05/installing-applications-to-your-android-phone-from-your-computer-using-mandriva/" target="_blank">Installing applications to your Androïd phone from your computer using Mandriva</a>.</p>
<h2>Download the HTC IME</h2>
<p>First you need to download the HTC IME packages on the XDA developpers forum : <a href="http://forum.xda-developers.com/showthread.php?t=624416">http://forum.xda-developers.com/showthread.php?t=624416.</a></p>
<p>You will have to choose the right version :</p>
<ul>
<li>If you have Androïd 2.2 or 2.3, and have at least a resolution of 800&#215;480 or a screen of at least 3.6&nbsp;&raquo;, then download the <a title="High resolution version (Froyo/2.2)" href="http://www.hallerud.se/htc_ime_jonasl_hires22_27.zip" target="_blank">High resolution version (Froyo/2.2)</a></li>
<li>If you have a pre-Androïd 2.2 version ( version &lt; 2.2 ) and a high resolution screen, then download just the <a title="High resolution version" href="http://www.hallerud.se/htc_ime_jonasl_hires_27.zip" target="_blank">High resolution version</a></li>
<li>For people having a small screen, download the <a title="Low resolution version for Android 1.6 and up" href="http://www.hallerud.se/htc_ime_jonasl_lowres_27.zip" target="_blank">Low resolution version for Android 1.6 and up</a></li>
</ul>
<p>Once you download the right archive, extract its content in the /tmp/HTC_ime directory. For someone using the <em>High resolution version (Froyo/2.2)</em>, this will be : <code>unzip htc_ime_jonasl_hires22_27.zip -d /tmp/HTC_ime.</code></p>
<h2>Install the keyboard</h2>
<p>Now if you have a file manager installed in your Androïd phone like <a title="Astro file manager" href="https://market.android.com/details?id=com.metago.astro" target="_blank">Astro File Manager</a>, you can just copy the .apk file to your phone SDcard, and then use Astro  to install them. Here I will explain how to do it using the Androïd SDK.</p>
<ul>
<li>if you are not using the Sense UI ( so not using an HTC phone ), you are advised to install the Clicker UI apk file :  <code>adb install -r /tmp/HTC_ime/Clicker_hi.apk</code></li>
<li>to install the HTC IME keyboard, just install the HTC_IME apk file : <code>adb install -r /tmp/HTC_ime/HTC_IME_hi22.apk</code></li>
</ul>
<h2>Enable the keyboard</h2>
<ul>
<li>Enable the keyboard : <em><strong>Settings -&gt; Language &amp; keyboard</strong></em> and select <em><strong>HTC_IME mod</strong></em></li>
<li>Click on HTC_IME mod/HTC_IME mod settings to configure the keyboard. Here you will be able to select the keyboard layout, the keyboard language for the dictionary ( French, English, &#8230; ), the keyboard text input, etc &#8230;.
<ul>
<li>Text Input : you may want to activate the spell checking and the prediction feature. Theses settings can be activated individually for each keyboard ( QWERTY, Hardware QWERTY for physical keyboards, phone &amp; QWERTY compact ). Don&#8217;t hesitate to calibrate the keyboard for you, especially if you have big fingers and tend to select the wrong keypads <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </li>
<li>Mods by jonasl@xda -&gt; Language selection : just enable the languages that you are going to really use : this will help speeding up the keyboard and lower its memory footprint</li>
</ul>
</li>
<li>If you did notice that some of your settings are not applied, you can reboot your phone, or make the keyboard commit suicide : <em><strong>Settings -&gt; Language &amp; keyboard -&gt; HTC_IME mod -&gt; Tools -&gt; Kill keyboard</strong></em></li>
<li>To switch to the HTC IME keyboard, just go to a text entry field ( for example try writing a SMS ), and then do a long press in the field <em><strong>-&gt; Input mode -&gt; [x] HTC_IME mod</strong></em></li>
</ul>
<p>Happy HTC keyboard usage <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong><span style="text-decoration: underline;">References :</span></strong></p>
<ul>
<li>HTC_IME keyboard topic on xda forum : <a href="http://forum.xda-developers.com/showthread.php?t=624416">http://forum.xda-developers.com/showthread.php?t=624416</a></li>
<li>Tutorial to install the HTC IME keyboard in french : <a href="http://www.android-pour-les-nuls.fr/tutoriaux/utillisation/659-tuto-installer-le-clavier-htc-votre-smartphone">http://www.android-pour-les-nuls.fr/tutoriaux/utillisation/659-tuto-installer-le-clavier-htc-votre-smartphone</a></li>
</ul>
<p><iframe title="YouTube video player" width="480" height="390" src="http://www.youtube.com/embed/CfotgNz1WHw" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/02/16/installing-the-htc-ime-keyboard-under-a-non-htc-android-phone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing applications to your Androïd phone from your computer using Mandriva</title>
		<link>http://www.linux-wizard.net/2011/02/05/installing-applications-to-your-android-phone-from-your-computer-using-mandriva/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=installing-applications-to-your-android-phone-from-your-computer-using-mandriva</link>
		<comments>http://www.linux-wizard.net/2011/02/05/installing-applications-to-your-android-phone-from-your-computer-using-mandriva/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 08:10:47 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2140</guid>
		<description><![CDATA[Sometimes it can be useful to be able to install Androïd packages ( apk ) from your computer. This could be useful if you don&#8217;t have 3G/wifi access on your phone, or no Google accounts configured. For this, you will have to install the Androïd SDK and use the adb tool. Here is the procedure. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes it can be useful to be able to install Androïd packages ( apk ) from your computer. This could be useful if you don&#8217;t have 3G/wifi access on your phone, or no Google accounts configured. For this, you will have to install the Androïd SDK and use the adb tool. Here is the procedure.</p>
<h2>Phone configuration</h2>
<ol>
<li>Allow to install applications from unknown sources ( i.e not from Androïd market ) : <strong><em>Settings -&gt; Applications -&gt; [x] Unknown Source</em></strong></li>
<li>Turn on USB debugging : <strong><em>Settings -&gt; Applications -&gt; Development -&gt; [x] USB debugging</em></strong></li>
</ol>
<h2>Computer configuration</h2>
<ol>
<li>Now  add an udev rule to allow Linux to recognize your phone. For this you need the USB vendor Id which can be found in android developer page : <a href="http://d.android.com/guide/developing/device.html#VendorIds">http://d.android.com/guide/developing/device.html#VendorIds</a></li>
<li>Now that you have your USB Vendor Id, create as root the udev rule named 51-android.rules in /etc/udev/rules.d. Replace XXXX by your USB Vendor Id : <span style="font-size: x-small;"><strong>echo &#8216;SUBSYSTEM==&nbsp;&raquo;usb&nbsp;&raquo;, SYSFS{idVendor}==&nbsp;&raquo;XXXX&nbsp;&raquo;, MODE=&nbsp;&raquo;0666&#8243;&#8216; &gt; /etc/udev/rules.d/51-android.rules</strong></span></li>
<li>If you plan to do Androïd development, install the java SDK : <span style="font-size: x-small;"><strong>urpmi java-1.6.0-sun-devel</strong></span></li>
<li>Download the Androïd SDK from <a title="Androïd SDK download page" href="http://developer.android.com/sdk/index.html" target="_blank">developer.android.com SDK page</a></li>
<li>Once done, as root extract the archive to the /opt directory : <span style="font-size: x-small;"><strong>tar -zxvf android-sdk_*-linux_x86.tgz -C /opt</strong></span></li>
<li>Now start the <em>Android SDK and AVD Manager</em> to install the missing SDK components and notably the <strong>adb</strong> tool by starting the android executable located in the tools directory :<span style="font-size: x-small;"><strong> /opt/android-sdk-linux_x86/tools/android</strong></span></li>
<li>Once started, go to <strong><em>Available packages -&gt; Android Repository</em></strong>, and select <strong>[x]</strong><span style="font-size: x-small;"><strong> </strong><em><span style="font-size: small;"><strong>Android </strong><strong>SDK Platform-tool</strong></span></em><strong><span style="font-size: small;">, </span></strong></span>then click on [Install selected] and accept the license agreement.<span style="font-size: x-small;"><strong></strong></span></li>
<li><span style="font-size: x-small;"><span style="font-size: small;">Now you can close the <em>Android SDK and AVD Manager</em>.</span></span></li>
<li><span style="font-size: x-small;"><span style="font-size: small;">Add a symlink to the adb executable in /usr/local/bin to allow adb to be in your PATh : </span></span><span style="font-size: x-small;"><strong>ln -s /opt/android-sdk-linux_x86/platform-tools/adb /usr/local/bin/</strong></span></li>
<li><span style="font-size: x-small;"><span style="font-size: small;">check that your device is detected with the following command : </span></span><span style="font-size: x-small;"><strong>adb devices</strong></span></li>
</ol>
<h2>Application installation</h2>
<ol>
<li>Download your apk file.</li>
<li>Install your apk file with the following command : <span style="font-size: x-small;"><strong>adb install -r myapkpackage.apk</strong></span></li>
<li>You can download apk packages from sites like :</li>
</ol>
<ul>
<li><a href="http://www.talkandroid.com/applications/">http://www.talkandroid.com/applications/</a></li>
<li><a href="http://www.freewarelovers.com/android">http://www.freewarelovers.com/android</a></li>
<li><a href="http://www.androidapk.net/">http://www.androidapk.net/</a></li>
<li><a href="http://www.freeandroidware.com/">http://www.freeandroidware.com/</a></li>
</ul>
<h2>References</h2>
<ul>
<li><a href="http://www.technixupdate.com/turn-on-usb-debugging-mode-in-nexus-one-or-other-android-phone/">http://www.technixupdate.com/turn-on-usb-debugging-mode-in-nexus-one-or-other-android-phone/</a></li>
<li><a href="http://blog.rom1v.com/2010/01/installer-une-application-apk-sur-android-a-partir-dun-pc/">http://blog.rom1v.com/2010/01/installer-une-application-apk-sur-android-a-partir-dun-pc/ (Fr)</a></li>
<li><a href="http://developer.android.com/sdk/installing.html">http://developer.android.com/sdk/installing.html</a></li>
<li><a href="http://d.android.com/guide/developing/device.html#VendorIds">http://d.android.com/guide/developing/device.html#VendorIds</a><a href="http://blog.rom1v.com/2010/01/installer-une-application-apk-sur-android-a-partir-dun-pc/"><br />
</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/02/05/installing-applications-to-your-android-phone-from-your-computer-using-mandriva/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Upgrading from Mandriva 2010.1 to Mandriva 2011 TP/Cooker</title>
		<link>http://www.linux-wizard.net/2011/02/04/upgrading-from-mandriva-2010-1-to-mandriva-2011-tpcooker/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=upgrading-from-mandriva-2010-1-to-mandriva-2011-tpcooker</link>
		<comments>http://www.linux-wizard.net/2011/02/04/upgrading-from-mandriva-2010-1-to-mandriva-2011-tpcooker/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 12:40:52 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cooker]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[perl-URPM]]></category>
		<category><![CDATA[rpm]]></category>
		<category><![CDATA[rpm 5]]></category>
		<category><![CDATA[urpmi]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2135</guid>
		<description><![CDATA[With the migration of Mandriva from rpm 4.6 to rpm 5.x, upgrading from a previous Mandriva release is not straightforward. So here are some tips to have a smooth upgrade]]></description>
			<content:encoded><![CDATA[<p>With the migration of Mandriva from <a title="rpm 4.6 homepage" href="http://rpm.org/" target="_blank">rpm 4.6</a> to <a title="rpm5 homepage" href="http://rpm5.org/" target="_blank">rpm 5.x</a>, upgrading from a previous Mandriva release is not straightforward. So here are some tips to have a smooth upgrade :</p>
<ol>
<li>Install the perl-URPM 3.37 package available in main/testing repository ( <a title="32bits main/testing repository" href="ftp://ftp.proxad.net/pub/Distributions_Linux/MandrivaLinux/official/2010.1/i586/media/main/testing/" target="_blank">32 bits</a> link, <a title="64bits main/testing repository" href="ftp://ftp.proxad.net/pub/Distributions_Linux/MandrivaLinux/official/2010.1/x86_64/media/main/testing/" target="_blank">64 bits</a> link )</li>
<li>remove all your current media : <code>urpmi.removemedia -a</code></li>
<li>add cooker media : <code>urpmi.addmedia --distrib --mirrorlist 'http://api.mandriva.com/mirrors/basic.cooker.$ARCH.list'</code></li>
<li>upgrade your Mandriva installation : <code>urpmi --auto-update</code></li>
</ol>
<p>If you have issues and error message like <span style="font-size: x-small;"><em>Unable to open /usr/lib/rpm/rpmrc for reading </em><span style="font-size: small;">then it means that perl-URPM have not been updated and the rpm database conversion is not complete. Indeed part of the conversion of the rpm database is handled by perl-URPM, so if the new version is not installed, then your database end up not being completly converted. So to do this, you will have to download the latest perl-URPM version in cooker repository, extract its content with rpm2cpio, and then initiate the conversion :</span></span></p>
<ol>
<li><span style="font-size: x-small;"><span style="font-size: small;">download the perl-URPM 4 and urpmi packages in cooker main/release repository in <em>/tmp/rpm5</em></span></span></li>
<li><span style="font-size: x-small;"><span style="font-size: small;">as root, go the previous directory :</span></span> <code>cd /tmp/rpm5</code></li>
<li><span style="font-size: x-small;"><span style="font-size: small;">extract perl-URPM content with rpm2cpio in the current <em>/tmp/rpm5</em> directory : </span></span><code>rpm2cpio perl-URPM-4*.rpm | cpio -idmv</code></li>
<li>extract urpmi package content with rpm2cpio in the current <em>/rpm/rpm5 </em>directory : <code>﻿rpm2cpio urpmi*.rpm | cpio -idmv</code></li>
<li>in the<em> /tmp/rpm5</em> initiate the rpm database conversion : <code>perl -I. -Murpm -e 'URPM::DB::convert("/", "btree", 1, 1)'</code></li>
<li>now install the urpmi and perl-URPM package : <code>rpm -Uvh *.rpm</code></li>
<li>You can finish to upgrade your system : <code>urpmi --auto-update</code></li>
</ol>
<p>Normally you system should be updated to the latest cooker release. Happy testing !!!  <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/02/04/upgrading-from-mandriva-2010-1-to-mandriva-2011-tpcooker/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Pensée du jour : monogamy vs polygamy</title>
		<link>http://www.linux-wizard.net/2011/01/31/pensee-du-jour/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pensee-du-jour</link>
		<comments>http://www.linux-wizard.net/2011/01/31/pensee-du-jour/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 11:58:45 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2130</guid>
		<description><![CDATA[I&#8217;ve just read a very interesting article concerning monogamy. I did always think that human by nature are not monogamous but religion, society, culture and will power can make a human be monogamous. I do also think that men and women are not feeling the same during a relationship, and that notably men may practice [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just read a very interesting <a title="It's not easy being non-monogamous" href="http://kinseyconfidential.org/dan-savage-3-non-monogamous/" target="_blank">article concerning monogam</a>y. I did always think that human by nature are not monogamous but religion, society, culture and will power can make a human be monogamous. I do also think that men and women are not feeling the same during a relationship, and that notably men may practice infidelity more easily. In another interesting article, <a title="Les origines animales de nos pratiques sexuelles" href="http://www.lalibre.be/culture/livres/article/521549/les-origines-animales-de-nos-pratiques-sexuelles.html">les origines animales de nos pratiques sexuelles</a> ( in french ), they said that in animals societies where males are taller than females, they tend to be polygamous : this theory is developped in sexual dimorphism related studies.</p>
<p>Why a monogamous relationship may fail :</p>
<ul>
<pre>When the non-monogamous relationship falls apart, everyone blames non-monogamy. When a monogamous relationship falls apart, nobody blames monogamy. I have observed so many relationships that were otherwise decent that could have survived for the long haul if people had just been allowed to be off leash every once in a while – which does not mean anything goes.</pre>
<p>Another part concerning the serial monogamists :</ul>
<pre>So many of these letters end with, “And I know what I’m talking about because every one of my relationships has been monogamous.” What they’re saying then is they have started and ended and started and ended. They are <strong>serial monogamists</strong>, that when they get bored and need a little variety, they end a relationship and then move on.</pre>
<p>Monogamy vs commitment :</p>
<pre>you, every one of your relationships has been monogamous, you’re doing it right? Because we value monogamy over <strong>commitment</strong>.</pre>
<p>References :</p>
<ul>
<li><a title="It's not easy being non-monogamous" href="http://kinseyconfidential.org/dan-savage-3-non-monogamous/" target="_blank">It&#8217;s not easy being non-monogamous</a>, Don Savage</li>
<li><a title="Vrac #infidélité" href="http://www.sexactu.com/2011/01/02/vrac-infidelite/" target="_blank">Vrac #infidélité</a>, Maïa Mazaurette ( traduction partielle en français de l&#8217;article de Don Savage )</li>
<li><a title="Les structures élémentaires de la parentalité" href="http://books.google.fr/books?id=VeAe7R-7gmEC&amp;lpg=PA44&amp;ots=lKAddcVqNB&amp;dq=polygamie%20grands%20singe&amp;pg=PA44#v=onepage&amp;q&amp;f=false" target="_blank">Les structures élémentaires de la parentalité</a>, Claude Levi-Strauss</li>
<li><a title="Les origines animales de nos pratiques sexuelles" href="http://www.lalibre.be/culture/livres/article/521549/les-origines-animales-de-nos-pratiques-sexuelles.html" target="_blank">Les origines animales de nos pratiques sexuelles</a></li>
<li>&laquo;&nbsp;Le Sexe, l’Homme &amp; l’Evolution&nbsp;&raquo;, Pascal Picq et Philippe Brenot, ed. Odile Jacob</li>
<li><a title="Sexual dimorphism" href="http://en.wikipedia.org/wiki/Sexual_dimorphism" target="_blank">Sexual dimorphism</a>, Wikipedia</li>
<li><a title="Anthropologie biologique: évolution et biologie humaine" href="http://books.google.fr/books?id=d5hfPZ8YMXcC&amp;lpg=PA308&amp;ots=rvte9Eg9nZ&amp;dq=polygamie%20grands%20singe&amp;pg=PA308#v=onepage&amp;q=polygamie%20grands%20singe&amp;f=false" target="_blank">Anthropologie biologique: évolution et biologie humaine</a>, Charles Susanne &amp; Esther Rebato &amp; Brunetto Chiarelli</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/01/31/pensee-du-jour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Music tagging made easy with MusicBrainz</title>
		<link>http://www.linux-wizard.net/2011/01/26/music-tagging-made-easy-with-musicbrainz/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=music-tagging-made-easy-with-musicbrainz</link>
		<comments>http://www.linux-wizard.net/2011/01/26/music-tagging-made-easy-with-musicbrainz/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 12:27:48 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2123</guid>
		<description><![CDATA[Always want to tag your music files easily, automatically and with the maximum reliability ? MusicBrainz is for you. This article will introduce MusicBrainz service and provide a short tutorial for the MusicBrainz Picard application, a cross-platform allowing to tag, rename, retrieve album covert art in 1 click !]]></description>
			<content:encoded><![CDATA[<p>I must admit that I have a big collection of music files. Tagging correctly theses files take a long time, and the queue of files waiting to be tagged is becoming quite big. Whereas this was optional before, I do appreciate now to have the album covert art as it can be displayed when listening to my music on my Androïd based phone ( <a title="Acer Liquid Metal" href="http://mobile.acer.com/en/phones/liquid-mt/" target="_blank">Acer Liquid Metal</a> ). So I decide to look for a solution allowing to automatically tag my musics files, and if possible automatically recognize the song, and also fetch the album covert art. I found the solution while reading the latest <a title="Amarok 2.4 release note" href="http://amarok.kde.org/en/releases/2.4.0">Amarok 2.4 release note</a>. Amarok is a very good music player developed for the KDE desktop under Linux, but which can be used in others D.E and Operating System : please feel free to visit the <a title="Amarok download page" href="http://amarok.kde.org/wiki/Download" target="_blank">Amarok download page</a> <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>In the Amarok 2.4 release, they added music tagging using <a title="MusicBrainz website" href="http://musicbrainz.org/" target="_blank">MusicBrainz</a>. Whereas i had already heard about MusicBrainz, I had never really check what MusicBrainz was offering as features. So I decide to take a look at the <a title="MusicBrainz Wikipedia page" href="http://en.wikipedia.org/wiki/MusicBrainz" target="_blank">MusicBrainz Wikipedia</a> page &#8230; What can I say ? MusicBrainz is just awesome especially thanks to the acoustic fingerprinting feature ( <a title="PUID acoustic fingerprinting" href="http://en.wikipedia.org/wiki/Portable_Unique_IDentifier" target="_blank">PUID</a> ) which allow to recognized a song from its acoustic fingerprint : no need to worry about tags or  filename, just feed it with the music file, and it will detect the song and filled the tags. MusicBrainz allows also to retrieve the album covert art. Last but not least, MusicBrainz service is free and people can contribute their data to increase and improve the database !</p>
<p>Ensure about the fact that Amarok was using the acoustic fingerprint feature, I decide to consult the <a title="MusicBrainz enabled applications list" href="http://musicbrainz.org/wd/MusicBrainzEnabledApplications" target="_blank">MusicBrainz enabled applications page</a>. There were many Linux applications listed like Amarok, Audacious, Banshee. However the most interesting one was <a title="MusicBrainz Picard" href="http://musicbrainz.org/doc/MusicBrainz_Picard" target="_blank">MusicBrainz Picard</a> : a python based application, supported by MusicBrainz, cross-platform ( Windows, Mac, Linux ), supporting acoustic fingerprint recognition and of course &#8230; free.</p>
<p><a href="http://www.linux-wizard.net/wp-content/uploads/2011/01/723px-Picard_090_linux.png"><img class="alignnone size-medium wp-image-2124" title="723px-Picard_090_linux" src="http://www.linux-wizard.net/wp-content/uploads/2011/01/723px-Picard_090_linux-300x248.png" alt="MusicBrainz Picard application screenshot" width="300" height="248" /></a></p>
<p>Installing MusicBrainz Picard under Linux Mandriva is very easy using urpmi : <strong>urpmi picard</strong>. To start the application, you just need to launch the picard binary, or use the entry menu in <strong>Sound &amp; Video -&gt; More -&gt; MusicBrainz Picard</strong>. Here are some advices to a smooth experience :</p>
<ul>
<li>Enable covert art retrieval support, by activating  the corresponding plugin in <strong>Options -&gt; Options -&gt; Plugins</strong>.</li>
<li>Enable automatic scan in <strong>Options -&gt; Options -&gt; Generals -&gt;[ ] Automatically analyze new files</strong>.</li>
<li>Display by default the album covert art in the right lower part of the main window in <strong>View -&gt; Covert art</strong>.</li>
</ul>
<p>Now you just need to add a file or a directory, and Picard will scan. On the right pane, you will have the estimated album names ( Picard view is album oriented ). When clicking on the album name, you will see the list of songs for the albums, and your files will appeared with a green or orange rectangle at the front. Double-click on the song ( or <strong>right click -&gt; Details</strong> ) to display its properties, the album covert art ( if found ). You have the possibility if you want to edit the metadata. To save the change, select the song or the album, and then do <strong>right click -&gt; Save</strong> or <strong><em>CTRL+S</em></strong>.</p>
<p>Happy tagging !</p>
<p><span id="more-2123"></span></p>
<p>For further references :</p>
<ul>
<li><a title="How to tag files with Picard" href="http://musicbrainz.org/doc/How_To_Tag_Files_With_Picard" target="_blank">How to tag files with Picard</a> ( from official site )</li>
<li><a title="How to tidy up mp3 ID tags" href="http://www.connectedinternet.co.uk/2007/06/24/updated-guide-how-to-tidy-up-mp3-id3-tags/" target="_blank">Updated guide : How to tidy up mp3 ID3 tags</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2011/01/26/music-tagging-made-easy-with-musicbrainz/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Some Mandriva 2010 Spring Reviews</title>
		<link>http://www.linux-wizard.net/2010/07/20/some-mandriva-2010-spring-reviews/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=some-mandriva-2010-spring-reviews</link>
		<comments>http://www.linux-wizard.net/2010/07/20/some-mandriva-2010-spring-reviews/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 14:12:27 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[Mandriva 2010 Spring]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2102</guid>
		<description><![CDATA[Here are some Mandriva 2010 Spring reviews I found on the web thanks to http://www.tuxmachines.org/ : Mandriva 2010 Spring with GNOME : http://g33q.co.za/2010/07/11/review-mandriva-2010-spring-gnome-with-screenshots/ Mandriva 2010 Spring with KDE :  http://g33q.co.za/2010/07/12/review-mandriva-2010-spring-kde-with-screenshots/ Ars Technica revizw Mandriva 2010 Spring : http://arstechnica.com/open-source/reviews/2010/07/mandriva-rescued-from-bankruptcy-releases-new-version.ars Mandriva 2010 Spring review for newbies : http://mandrivachronicles.blogspot.com/2010/07/mandriva-2010-spring-review-for-newbies.html]]></description>
			<content:encoded><![CDATA[<p>Here are some Mandriva 2010 Spring reviews I found on the web thanks to <a title="http://www.tuxmachines.org/" href="http://www.tuxmachines.org/" target="_blank">http://www.tuxmachines.org/</a> :</p>
<ul>
<li>Mandriva 2010 Spring with GNOME :<a title="http://g33q.co.za/2010/07/11/review-mandriva-2010-spring-gnome-with-screenshots/" href="http://g33q.co.za/2010/07/11/review-mandriva-2010-spring-gnome-with-screenshots/"> http://g33q.co.za/2010/07/11/review-mandriva-2010-spring-gnome-with-screenshots/</a></li>
<li>Mandriva 2010 Spring with KDE :  <a title="http://g33q.co.za/2010/07/12/review-mandriva-2010-spring-kde-with-screenshots/" href="http://g33q.co.za/2010/07/12/review-mandriva-2010-spring-kde-with-screenshots/" target="_blank">http://g33q.co.za/2010/07/12/review-mandriva-2010-spring-kde-with-screenshots/</a></li>
<li>Ars Technica revizw Mandriva 2010 Spring : <a title="http://arstechnica.com/open-source/reviews/2010/07/mandriva-rescued-from-bankruptcy-releases-new-version.ars" href="http://arstechnica.com/open-source/reviews/2010/07/mandriva-rescued-from-bankruptcy-releases-new-version.ars" target="_blank">http://arstechnica.com/open-source/reviews/2010/07/mandriva-rescued-from-bankruptcy-releases-new-version.ars</a></li>
<li>Mandriva 2010 Spring review for newbies : <a title="http://mandrivachronicles.blogspot.com/2010/07/mandriva-2010-spring-review-for-newbies.html" href="http://mandrivachronicles.blogspot.com/2010/07/mandriva-2010-spring-review-for-newbies.html" target="_blank">http://mandrivachronicles.blogspot.com/2010/07/mandriva-2010-spring-review-for-newbies.html</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/20/some-mandriva-2010-spring-reviews/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Support du blog en plusieurs langues</title>
		<link>http://www.linux-wizard.net/2010/07/19/support-du-blog-en-plusieurs-langues/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=support-du-blog-en-plusieurs-langues</link>
		<comments>http://www.linux-wizard.net/2010/07/19/support-du-blog-en-plusieurs-langues/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 22:33:40 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Divers]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2107</guid>
		<description><![CDATA[J&#8217;ai installé le plugin WPML qui permet de supporter plusieurs langues différentes pour mon blog. On peut passer d&#8217;une langue à l&#8217;autre via le widget qui se trouve en haut à droite du site, ou via les liens qui se trouvent tout en bas des pages. Par défaut les billets techniques ou relatifs à Linux [...]]]></description>
			<content:encoded><![CDATA[<p>J&#8217;ai installé le plugin <a title="Plugin multilangue WPML" href="http://wpml.org/" target="_blank">WPML</a> qui permet de supporter <a title="Multilingual support in WordPress" href="http://codex.wordpress.org/Multilingual_WordPress" target="_blank">plusieurs langues différentes</a> pour mon blog. On peut passer d&#8217;une langue à l&#8217;autre via le widget qui se trouve en haut à droite du site, ou via les liens qui se trouvent tout en bas des pages.</p>
<ul>
<li>Par défaut les billets techniques ou relatifs à Linux ou mandriva seront principalement dans la partie anglaise du site.</li>
<li>La partie française, accessible via l&#8217;URL <a title="http://www.linux-wizard.net/fr/" href="http://www.linux-wizard.net/fr/" target="_blank">http://www.linux-wizard.net/fr/</a>, regroupera principalement mes billets persos, et éventuellement quelques billets techniques.</li>
<li>Les documentations techniques qui seront disponible sur ce site seront principalement en français.</li>
</ul>
<p>Bonne lecture !</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/19/support-du-blog-en-plusieurs-langues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multilingual support in my blog</title>
		<link>http://www.linux-wizard.net/2010/07/19/multilingual-support-in-my-blog/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=multilingual-support-in-my-blog</link>
		<comments>http://www.linux-wizard.net/2010/07/19/multilingual-support-in-my-blog/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 22:26:27 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=2105</guid>
		<description><![CDATA[Since some days, i installed the WPML plugin which allow to have multilingual support for WordPress. You can switch from one language to another one from the widget on the left side, or the links at the bottom of the pages. By default the site will be displayed in english. It will contains most of [...]]]></description>
			<content:encoded><![CDATA[<p>Since some days, i installed the <a title="WPML plugin" href="http://wpml.org/" target="_blank">WPML plugin</a> which allow to have <a title="Multilingual support in WordPress" href="http://codex.wordpress.org/Codex:Multilingual" target="_blank">multilingual support for WordPress</a>. You can switch from one language to another one from the widget on the left side, or the links at the bottom of the pages.</p>
<ul>
<li>By default the site will be displayed in english. It will contains most of my technicals and Linux/Mandriva related posts</li>
<li>the french site will be accessible by <a title="French version of my blog" href="http://www.linux-wizard.net/fr/" target="_blank">http://www.linux-wizard.net/fr/</a> URL. There will have some technicals relating stuffs, but most of the time you will find only my personal stuff.</li>
<li>Technicals documentations that i will upload to my blog will mostly be in French.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/19/multilingual-support-in-my-blog/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Je suis une fille qui ne se connait pas !</title>
		<link>http://www.linux-wizard.net/2010/07/15/je-suis-une-fille-qui-ne-se-connait-pas/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=je-suis-une-fille-qui-ne-se-connait-pas</link>
		<comments>http://www.linux-wizard.net/2010/07/15/je-suis-une-fille-qui-ne-se-connait-pas/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 17:53:02 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Divers]]></category>
		<category><![CDATA[féminin]]></category>
		<category><![CDATA[masculin]]></category>
		<category><![CDATA[metrosexuel]]></category>
		<category><![CDATA[relation hommes femmes]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=1954</guid>
		<description><![CDATA[Aujourd'hui lors de mon rendez-vous avec ma psychothérapeute, j'ai eu droit a une grande révélation : j'ai un comportement de fille et je suis une fille qui ne se connait pas]]></description>
			<content:encoded><![CDATA[<p><strong>Attention, une fois n&#8217;est pas coutume, je vais faire un post très personnel. Donc Linuxiens et informaticiens, passez votre chemin !</strong></p>
<p>Aujourd&#8217;hui lors de mon rendez-vous avec ma psychothérapeute, j&#8217;ai eu droit a une grande révélation : j&#8217;ai un comportement de fille et je suis une fille qui ne se connait pas ! Quelques exemples/preuves :</p>
<ol>
<li>En effet, je suis capable de faire du shopping, et n&#8217;ai aucun soucis à faire du shopping avec une fille et même à la conseiller : il semblerait que j&#8217;ai très bon goût d&#8217;ailleurs <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Pareil pour la déco, tu veux refaire la déco de ton salon ? demande moi. Je peux même t&#8217;accompagner et t&#8217;aider à choisir ce qu&#8217;il faut. Par contre pour le côté bricolage &#8230;</li>
<li>je garde un souvenir impérissable des <a title="Collection Harlequin" href="http://www.harlequin.fr/index.php/vmchk/Les-collections.html" target="_blank">Harlequins</a> de ma mère que je lisais &#8230;</li>
<li>Je n&#8217;ai pas de référence masculine ! Ben oui, j&#8217;ai été élevé par ma mère et ma grand-mère. Ma référence &laquo;&nbsp;masculine&nbsp;&raquo; la plus proche fut le curé de ma paroisse &#8230; c&#8217;est pour dire !</li>
<li>J&#8217;aime discuter, parler des problèmes, écouter les gens : en gros je suis la super bonne copine avec qui on peut discuter, se confier et avoir des conseils à la clés ( avec point de vue de mec et de femme en même temps ) !</li>
<li>Mon film préféré est et reste <a title="Quand Harry rencontre Sally" href="http://fr.wikipedia.org/wiki/Quand_Harry_rencontre_Sally" target="_blank">Quand Harry rencontre Sally</a> : dans le genre comédie sentimentale. J&#8217;ai aussi un faible pour <a title="Ghost, le film" href="http://fr.wikipedia.org/wiki/Ghost_%28film,_1990%29">Ghost</a> et <a title="Dirty Dancing" href="http://fr.wikipedia.org/wiki/Dirty_Dancing">Dirty Dancing</a>, mais je préfère <a title="Saturday Night Fever" href="http://fr.wikipedia.org/wiki/La_Fi%C3%A8vre_du_samedi_soir" target="_blank">La Fièvre du Samedi Soir</a> ne serait-ce que pour la bande son <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  En plus récent, on peut mettre sans problème dans ma short-list <a title="Les poupées russes" href="http://fr.wikipedia.org/wiki/Les_Poup%C3%A9es_russes_%28film%29">Les poupées russes</a> &#8230; <a title="Extrait de la déclaration d'amour dans les poupées russes" href="http://www.dailymotion.com/video/x4i645_les-poupees-russes-scene-de-la-gare_shortfilms" target="_blank">la scène à la gare</a> &#8230;</li>
<li>Qu&#8217;est ce que je fais lorsque je suis déprimé ? Je m&#8217;enfile de la glace ( par bac d&#8217;1 Litre ) ou des bonbons ( par boite d&#8217;1kg ) &#8230;</li>
<li>Parfums et déodorants préférés ? Vanille-Fraise ou Framboise en parfum, et pour les déodorants <a title="Déodorants Ushuaia" href="http://www.ushuaia-bio.fr/#/deodorant-ushuaia" target="_blank">Ushuaïa</a> Grenade, Papaye ou Pulpe de fruit de la passion. Mais pour sauver la face, j&#8217;ai un <a title="The Axe effect" href="http://www.theaxeeffect.com" target="_blank">Axe</a> qui traine dans ma salle de bain et que je met de temps en temps &#8230;</li>
<li>J&#8217;avais une big collection de <a title="Mangas Shojo" href="http://fr.wikipedia.org/wiki/Sh%C5%8Djo" target="_blank">Shojo</a> dans ma bibliothèque. J&#8217;ai pratiquement tout revendu il y a quelques années, mais je continue à en lire sur le net &#8230;</li>
<li>Je suis plutôt du genre : &laquo;&nbsp;allez on en discute et on essaie de résoudre le problème&nbsp;&raquo;, que &laquo;&nbsp;vas y laisse moi tranquille, cela me saoule&nbsp;&raquo;</li>
<li>Je reste un inconditionnel du livre <a title="Les hommes viennent de mars et les femmes de venus" href="http://bastion.free.fr/johngray.htm">Les hommes viennent de Mars et les femmes de Venus</a> ! Il a même été cité dans Sex &amp; The City. Oui, je regarde Sex &amp; the City, Le destin de Lisa, Un gars une fille &#8230;</li>
<li>Après Science &amp; Vie, les magazines sur lesquels je me jette dans une salle d&#8217;attente sont &#8230; les magazines féminins</li>
<li>Mes blogs perso  préférés ? <a title="Sexactu" href="http://www.sexactu.com" target="_blank">Sexactu</a> de Maïa Mazaurette, <a title="Leax 'Adventures" href="http://www.leaaax.com/blog/">Leax &#8216;Adventures</a>, et un tout nouveau blog que je viens de découvrir : <a title="Le bocal du poisson" href="http://lebocaldupoisson.over-blog.com" target="_blank">Le bocal du poisson</a></li>
</ol>
<p>Mais bon ça va, j&#8217;ai aussi un côté mec, et non je ne suis pas un <a title="Fiche wikipedia sur le Métrosexuel" href="http://fr.wikipedia.org/wiki/M%C3%A9trosexuel">métrosexuel</a> ! Mon but, maintenant que je suis célibataire, sera de renforcer mon côté masculin <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/15/je-suis-une-fille-qui-ne-se-connait-pas/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Importing a SVN repository from one server to another one</title>
		<link>http://www.linux-wizard.net/2010/07/13/importing-a-svn-repository-from-one-server-to-another-one/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=importing-a-svn-repository-from-one-server-to-another-one</link>
		<comments>http://www.linux-wizard.net/2010/07/13/importing-a-svn-repository-from-one-server-to-another-one/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 18:29:40 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Dev]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=1942</guid>
		<description><![CDATA[As now I&#8217;m using Netbeans, I had issues with key based authentication for CVS project in Netbeans. That&#8217;s why I decide to import my CVS project to SVN. At some point, as the SVN repository was on my own personal computer, I decide to move it to a public server I had, but only allow [...]]]></description>
			<content:encoded><![CDATA[<p>As now I&#8217;m using Netbeans, I had issues with key based authentication  for CVS project in Netbeans. That&#8217;s why I decide to import my CVS  project to SVN. At some point, as the SVN repository was on my own  personal computer, I decide to move it to a public server I had, but  only allow SSH access to it. So here is the procedure to move a SVN  repository to another SVN server, and only allow svn+ssh access ( no  webdav, no network svnserve access ) under Mandriva.</p>
<ol>
<li>On your old SVN server, you have to dump the entire SVN repository :
<pre class="brush: bash; light: true; title: ; notranslate">svnadmin dump /path/to/your/repository &amp;gt; /tmp/repository.svn_dump</pre>
</li>
<li>Now copy the dump file somewhere on the new SVN server. You may want  to use scp if your SSH key based authentication is working correctly.  For example :
<pre class="brush: bash; light: true; title: ; notranslate">scp /tmp/repository.svn_dump user@new-svn-server:/tmp</pre>
</li>
<li>Once done, you may want to delete the dump file on the old server  and eventually delete also the old SVN repo</li>
<li>On your new server, install the SVN server package and its  associated tools :
<pre class="brush: bash; light: true; title: ; notranslate">urpmi subversion-server subversion-tools</pre>
</li>
<li>check that svnserve is not started at boot by xinetd. For this check  <strong>/etc/xinetd.d/svnserve</strong> configuration file and check that you  have <strong>disable = yes</strong> as follows :
<pre class="brush: plain; title: ; notranslate"># default: off
# description: svnserve is the server part of Subversion.
service svnserve
{
 disable             = yes
 port                = 3690
 socket_type         = stream
 protocol            = tcp
 wait                = no
 user                = svn
 server              = /usr/bin/svnserve
 server_args         = -i -r /var/lib/svn/repositories
}</pre>
</li>
<li>Now create the repository tree on the new server :
<pre class="brush: bash; light: true; title: ; notranslate">svnadmin create /var/lib/svn/repositories/</pre>
</li>
<li>Import the dumped repository file in the new SVN repository :
<pre class="brush: bash; light: true; title: ; notranslate">svnadmin load /var/lib/svn/repositories/ &amp;lt; /tmp/repository.svn_dump</pre>
</li>
<li>If the importation is successful, now you should ensure that the  users connecting with SSH will have write access to the repository. For  this add the users to the svn group :
<pre class="brush: bash; light: true; title: ; notranslate">usermod -G svn -a user</pre>
</li>
<li>Now add a default ACL for the group to the repository giving read,  write and execute ( rwX ) rights to all members of the svn group :
<pre class="brush: bash; light: true; title: ; notranslate">setfacl -R -m d:g:svn:rwX /var/lib/svn/repositories/</pre>
</li>
<li>Check that from a remote computer you can list the content of the  repository :
<pre class="brush: bash; light: true; title: ; notranslate">svn list svn+ssh://user@new-svn-server/var/lib/svn/repositories</pre>
</li>
</ol>
<p>Happy coding with Subversion <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Ressources :</strong></p>
<ul>
<li>Converting a CVS repository to a SVN one with cvs2svn : <a title="convert from CVS to SVN with cvs2svn" href="http://cvs2svn.tigris.org/cvs2svn.html" target="_blank">http://cvs2svn.tigris.org/cvs2svn.html</a></li>
<li>Moving a SVN repository to another server : <a title="Moving a SVN  repository to another server" href="http://www.petefreitag.com/item/665.cfm" target="_blank">http://www.petefreitag.com/item/665.cfm</a></li>
<li>SVN cheat sheet : <a title="SVN cheat sheet" href="http://www.abbeyworkshop.com/howto/misc/svn01/" target="_blank">http://www.abbeyworkshop.com/howto/misc/svn01/</a></li>
<li>How to manage different projects under SVN : <a title="Managing  several projects under SVN" href="http://subversion.apache.org/faq.html#multi-proj" target="_blank">http://subversion.apache.org/faq.html#multi-proj</a></li>
<li>SVN reference book : <a title="SVN book" href="http://svnbook.red-bean.com/en/1.1/ch01s07.html" target="_blank">http://svnbook.red-bean.com/en/1.1/ch01s07.html</a></li>
<li>French howto about SVN usage : <a title="Utiliser SVN sous Mandriva" href="http://wiki.mandriva.com/fr/subversion" target="_blank">http://wiki.mandriva.com/fr/subversion</a></li>
<li>How to use SVN with Eclipse : <a title="How to use subversion with  Eclipse" href="http://www.ibm.com/developerworks/opensource/library/os-ecl-subversion/" target="_blank">http://www.ibm.com/developerworks/opensource/library/os-ecl-subversion/</a></li>
<li>Guided tour of subversion with Netbeans : <a title="Guided tour of  svn with Netbeans" href="http://netbeans.org/kb/docs/ide/subversion.html" target="_blank">http://netbeans.org/kb/docs/ide/subversion.html</a></li>
<li>SVN+SSH usage with Netbeans : <a title="svn+ssh usage with Netbeans" href="http://wiki.netbeans.org/FaqSubversionSSH" target="_blank">http://wiki.netbeans.org/FaqSubversionSSH</a></li>
<li>Why you should use branches with SVN : <a title="SVN branch management" href="http://webmonkeyswithlaserbeams.wordpress.com/2008/08/26/subversion-branch-management/" target="_blank">http://webmonkeyswithlaserbeams.wordpress.com/2008/08/26/subversion-branch-management/</a></li>
<li>Best practices for managing releases with Subversion : <a title="Best practices for managing releases with subversion" href="http://www.karlkatzke.com/best-practices-for-managing-releases-with-subversion/" target="_blank">http://www.karlkatzke.com/best-practices-for-managing-releases-with-subversion/</a></li>
<li>Creating and managing releases branches : <a title="Creating and managing releases branches" href="http://docs.jboss.org/process-guide/en/html/svn-admin.html" target="_blank">http://docs.jboss.org/process-guide/en/html/svn-admin.html</a></li>
<li>Notes on branches management with subversion : <a title="Notes on branches management with SVN" href="http://soniahamilton.wordpress.com/2009/02/24/notes-on-branch-management-wit-subversion/" target="_blank">http://soniahamilton.wordpress.com/2009/02/24/notes-on-branch-management-wit-subversion/</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/13/importing-a-svn-repository-from-one-server-to-another-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netbeans : my new PHP IDE of choice</title>
		<link>http://www.linux-wizard.net/2010/07/13/netbeans-my-new-php-ide-of-choice/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=netbeans-my-new-php-ide-of-choice</link>
		<comments>http://www.linux-wizard.net/2010/07/13/netbeans-my-new-php-ide-of-choice/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 03:10:50 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Dev]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[netbeans]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ssh]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=1937</guid>
		<description><![CDATA[During a long time my PHP development of choice was http://www.eclipse.org/ and the PHP plugin for Eclipse : http://www.phpeclipse.com/. Now I switch to Netbeans for PHP development. Here is a simple howto explaining how to install Netbeans with PHP support]]></description>
			<content:encoded><![CDATA[<p>During a long<a href="http://www.linux-wizard.net/wp-content/uploads/2010/07/netbeans_php.png"><img class="alignleft size-thumbnail wp-image-1939" title="PHP support dans Netbeans" src="http://www.linux-wizard.net/wp-content/uploads/2010/07/netbeans_php-150x150.png" alt="PHP support dans Netbeans" width="150" height="150" /></a> time my PHP development of choice was <a title="Eclipse" href="http://www.eclipse.org/" target="_blank">http://www.eclipse.org/</a> and the PHP plugin for Eclipse : <a title="PHPEclipse plugin for Eclipse" href="http://www.phpeclipse.com/" target="_blank">http://www.phpeclipse.com/</a>. Please note that there&#8217;s another PHP plugin for Eclipse developped by Zend and IBM : <a title="PHP Development Tools Project" href="http://www.eclipse.org/pdt/" target="_blank">http://www.eclipse.org/pdt/</a> also known as the PHP Development Project. However I was mostly using Eclipse and phpeclipse as it was the first PHP plugin I used, and I did appreciate the native integration of CVS and team management tools.</p>
<p>However tonight I decide to give a try to <a title="Netbeans with PHP support" href="http://netbeans.org/features/php/" target="_blank">Netbeans with PHP support</a>. What can I say ? I just fall in love. Whereas I have to be used to the new syntax highlighting, PHP support in Netbeans is top for several reasons :</p>
<ul>
<li>Netbeans seems to start faster than Eclipse and can also import Eclipse projects,</li>
<li>it support project creation from Zend or Symphony frameworks ( even if I don&#8217;t use them ),</li>
<li>it supports natively and easily PHP debugging ( with xdebug ) and PHPUnit/Selenium tests,</li>
<li>It allows Code Coverage,</li>
<li>It correctly support and parsed my CSS files or .sql files,</li>
<li>Even better &#8230; It allows to connect to your database, view its schema, table structures, and of course execute queries and test your migration SQL scripts,</li>
<li>it allows to search through a plugin directly in the PHP manual</li>
<li>it can dynamically parsed and handle your PHPDoc tags and then present your PHP file structure with the PHPDoc you add : this is a good insensitive to write correct PHPDoc,</li>
<li>Last but not least it provides native CVS and Mercurial integration</li>
</ul>
<p>In only a few clicks I add way more features than with Eclipse and PHPEclipse. Whereas it&#8217;s possible to add xdebug support to eclipse and phpeclipse, the process is not automatic and can be somewhat hard. So finally I switched to Netbeans for my PHP dev. The procedure is very straightforward under Mandriva 2010 Spring as Netbeans packages is already available. Here is the procedure, under Mandriva 2010 Spring, to install Netbeans with a useful and complete PHP development environment :</p>
<ol>
<li>install the Netbeans 6.8 and its related packages with urpmi :
<pre class="brush: bash; title: ; notranslate">urpmi netbeans</pre>
</li>
<li>install PHPUnit, xdebug and Selenium :
<pre class="brush: bash; title: ; notranslate">urpmi php-pear-PHPUnit php-xdebug php-pear-Testing_Selenium</pre>
</li>
<li>restart Apache to activate the PHP extensions :
<pre class="brush: bash; title: ; notranslate">service httpd restart</pre>
</li>
<li>Now start Netbeans from the menu : Application -&gt; Development -&gt; Development Environment -&gt; Netbeans IDE 6.8</li>
<li>Once Netbeans have started, deline if you wish the registration, and then select on the right pane &laquo;&nbsp;<strong>Install Plugins</strong>&laquo;&nbsp;. Here is the list of plugins I did choose for my PHP development : Database, PHP, Php Manual Search, Selenium module for PHP. Installing plugins is very easy, just select them, and then follow the instructions ( most of the time hiting Next or validating a License ). Don&#8217;t forget to accept <strong>Php Manual</strong> and thus even if the plugin is considered as not trusted.</li>
<li>Once your plugins have been installed, restart Netbeans. You may want to decline sending informations about you to Netbeans team.</li>
</ol>
<p>Now you can import your old Eclipse projects, or if as me you are using a control version system, just checkout your repository ( Team -&gt; CVS -&gt; Checkout ). Mercurial and subversion are supported. For those willing to have Git support, they should have a look at the third party plugin : <a title="Git plugin support for Netbeans" href="http://michael-bien.com/mbien/entry/netbeans_git_plugin" target="_blank">Netbeans Git Plugin</a> ( homepage : <a title="Netbeans Git Module" href="http://nbgit.org/" target="_blank">Netbeans Git Module</a> ). To add third parties plugins, download them as .nbm file, then install them with Tools -&gt; Plugins -&gt; [Downloaded] tab -&gt; Add Plugins.</p>
<p>There&#8217;s one big caveat however :  Netbeans internal SSH client doesn&#8217;t support key authentification. You will have to use password authentification, or create a SSH tunnel. For further informations see <a title="Netbeans SSH auth howto" href="http://wiki.netbeans.org/FaqHowToSetUpSSHAuth" target="_blank">http://wiki.netbeans.org/FaqHowToSetUpSSHAuth</a>.</p>
<p>And now happy PHP coding with Netbeans <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/13/netbeans-my-new-php-ide-of-choice/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>2ème post sous WordPress</title>
		<link>http://www.linux-wizard.net/2010/07/12/2eme-post-sous-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2eme-post-sous-wordpress</link>
		<comments>http://www.linux-wizard.net/2010/07/12/2eme-post-sous-wordpress/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 22:28:42 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Non classé @fr]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=1927</guid>
		<description><![CDATA[Here is my second post under Wordpress. I will explains the mains changes I did to make it fit my workflow.]]></description>
			<content:encoded><![CDATA[<p>Here is my second post under WordPress. I did the following changes :</p>
<ul>
<li>change the theme from RedBel to Mystique which provides a better layout</li>
<li>I manage to add 2 separates pages to show my personal photos, but also my Linux desktop environments screenshots during my lifetime as a Linux user</li>
<li>I disabled <strong>All in One SEO</strong> extension as Mystique already provides SEO features</li>
<li>I disabled also <strong>Google Ajax Feed Slide Show Widget </strong>and replace it by Lazyest Gallery. This one will only show my local screenshots and not my personal photos as slideshow on the left side.</li>
<li>I did removed <strong>Inline Posts</strong> as I will create each time a new page for the HOWTO/FAQ &#8230; normally &#8230;</li>
<li>I add <strong>Network Publisher</strong> extension. Normally It will allow me to automatically published my blog posts to Facebook. i did also subscribe to <a title="Links Alpha" href="http://www.linksalpha.com/" target="_blank">http://www.linksalpha.com/</a> as this service will allow me to simultaneously published my posts to Facebook, Twitter and Identi.ca <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Oh, by the way, I did subscribe to twitter and identi.ca. You can find me under <strong>willsalsa76</strong> surname</li>
</ul>
<p>In the next days, i&#8217;m planning to blog about new features of the Mandriva 2010 Spring, but also show some mockups I&#8217;ve done for some Mandriva tools <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/12/2eme-post-sous-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1er article sous WordPress !</title>
		<link>http://www.linux-wizard.net/2010/07/11/1er-article-sous-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=1er-article-sous-wordpress</link>
		<comments>http://www.linux-wizard.net/2010/07/11/1er-article-sous-wordpress/#comments</comments>
		<pubDate>Sun, 11 Jul 2010 04:30:10 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Divers]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.linux-wizard.net/?p=1889</guid>
		<description><![CDATA[C'est bon, après une nuit de batailles et tweaks pas possibles j'ai enfin réussi à migrer mon blog vers wordpress.]]></description>
			<content:encoded><![CDATA[<p>C&#8217;est bon, après une nuit de batailles et tweaks pas possibles j&#8217;ai enfin réussi à migrer mon blog vers wordpress.</p>
<p>Tous les articles des blogs ont été migrés, et je vais en profiter pour corriger les liens morts. Par contre il y a un  soucis avec les HOWTO et les FAQ &#8230; je ne sais encore comment je vais faire. Je ferais peut être directement des pages et copierait le contenu manuellement <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  De plus je n&#8217;ai pu récupérer les commentaires : peut être vais je les remettre manuellement &#8230;</p>
<p>En attendant j&#8217;ai installé les plugins suivant :</p>
<ul>
<li>All In One SEO : censé amélioré mon référencement &#8230;</li>
<li>Article2pdf : permet de convertir les articles/posts au format PDF</li>
<li>Broken Link Checker : permet de vérifier les liens qui ne sont plus valides</li>
<li>Get Picasa Albums : Me permet d&#8217;afficher mon album photo Picasa, et ce même si désormais mes photos sont plutôt sur Facebook &#8230;</li>
<li>Google Ajax Feed Slide Show Widget : affiche aléatoirement une image issue d&#8217;un flux RSS : ici d&#8217;un de mes albums Picasa.</li>
<li>ICS Calendar : permet d&#8217;afficher les évènements Facebook auxquels je risque de participer <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Inline Posts : je devais l&#8217;utiliser pour regrouper les FAQ et HOWTO dans une page spéciale, mais au final, à moins que ej ne trouve une solution, il ne fera pas long feu</li>
<li>RSS Importer : m&#8217;a permis d&#8217;importer mes articles via le flux RSS de mon ancien blog !</li>
<li>ShareThis : permet de partager facilement un article sur un réseau social dont Facebook</li>
<li>SI Captcha Anti-spam : permet d&#8217;éviterles spams au niveaux des commentaires et autres formulaires. Les commentaires ne sont pas modérés</li>
<li>WordPress download Monitor : me permet de charger des document et de proposer une section qui va regrouper tous mes supports de cours et autres documentations au format PDF</li>
</ul>
<p>En passant à WordPress, je m&#8217;offre la possibilité de mettre à jour mon blog depuis d&#8217;autres programmes tiers, voire même depuis <a title="http://android.wordpress.org/" href="http://android.wordpress.org/" target="_blank">mon téléphone sous Androïd !</a></p>
<p>Bon maintenant il est temps pour moi de faire comme tout Unixien qui se respecte :</p>
<pre class="brush: bash; title: ; notranslate">[will@linux-wizard]umount -a; sleep 10; halt</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/07/11/1er-article-sous-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iPad reviews or an ergonomy lesson</title>
		<link>http://www.linux-wizard.net/2010/04/06/ipad-reviews-or-an-ergonomy-lesson/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ipad-reviews-or-an-ergonomy-lesson</link>
		<comments>http://www.linux-wizard.net/2010/04/06/ipad-reviews-or-an-ergonomy-lesson/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 18:36:51 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://201007308</guid>
		<description><![CDATA[Here are 2 videos reviews of the last Apple iPad. I do hope this will give some UI design and usabilities/ergonomics ideas to Linux dev : Nous avons test&#233; l&#039;iPad avant son arriv&#233;e en Franceenvoy&#233; par LEXPRESS. &#8211; Vid&#233;os des derni&#232;res d&#233;couvertes scientifiques. ]]]]></description>
			<content:encoded><![CDATA[<p>Here are 2 videos reviews of the last Apple iPad. I do hope this will give some UI design and usabilities/ergonomics ideas to Linux dev :<br />
<object width="480" height="360"><param name="movie" value="http://www.dailymotion.com/swf/video/xctxzp_nous-avons-teste-l-ipad-avant-son-a_tech"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed type="application/x-shockwave-flash" src="http://www.dailymotion.com/swf/video/xctxzp_nous-avons-teste-l-ipad-avant-son-a_tech" width="480" height="360" allowfullscreen="true" allowscriptaccess="always"></embed></object><br /><b><a href="http://www.dailymotion.com/video/xctxzp_nous-avons-teste-l-ipad-avant-son-a_tech">Nous avons test&eacute; l&#039;iPad avant son arriv&eacute;e en France</a></b><br /><i>envoy&eacute; par <a href="http://www.dailymotion.com/LEXPRESS">LEXPRESS</a>. &#8211; <a href="http://www.dailymotion.com/fr/channel/tech">Vid&eacute;os des derni&egrave;res d&eacute;couvertes scientifiques.</a></i></p>
<p><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/kk7yozYSEDs&#038;hl=fr_FR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kk7yozYSEDs&#038;hl=fr_FR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="360"></embed></object>
</p>
<p>]]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/04/06/ipad-reviews-or-an-ergonomy-lesson/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Showing files metadata under KDE is like Russian roulette</title>
		<link>http://www.linux-wizard.net/2010/01/31/showing-files-metadata-under-kde-is-like-russian-roulette/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=showing-files-metadata-under-kde-is-like-russian-roulette</link>
		<comments>http://www.linux-wizard.net/2010/01/31/showing-files-metadata-under-kde-is-like-russian-roulette/#comments</comments>
		<pubDate>Sun, 31 Jan 2010 18:09:19 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://201007307</guid>
		<description><![CDATA[While reading KDE Planet, I&#8217;ve noticed this blog post from Peter Penz : Internal Cleanups. He was talking about code cleanups and refactoring he was doing in Dolphin code, which is a very good thing IMHO. Then I learnt something very annoying : since KDE 4.x and Nepomuk integration Dolphin is unable to show metadata [...]]]></description>
			<content:encoded><![CDATA[<p>While reading <a title="http://planetkde.org/" href="http://planetkde.org/" target="_new">KDE Planet</a>, I&#8217;ve noticed this blog post from Peter Penz : <a title="http://ppenz.blogspot.com/2010/01/internal-cleanups.html" href="http://ppenz.blogspot.com/2010/01/internal-cleanups.html" target="_new">Internal Cleanups</a>. He was talking about code cleanups and refactoring he was doing in Dolphin code, which is a very good thing IMHO. Then I learnt something very annoying : since KDE 4.x and Nepomuk integration Dolphin is unable to show metadata informations for a file if the file is not indexed by Strigi and Nepomuk ( <a title="https://bugs.kde.org/show_bug.cgi?id=193592" href="https://bugs.kde.org/show_bug.cgi?id=193592" target="_new">KDE bug #193592</a> ). This explains why I had more and more issues having the size of a photo &#8230; Most of the time I did end up starting Gwenview for this ! This is really insane to have to rely on indexing to show a simple information like the dimensions of a photo. Here are the issues I could see :</p>
<ol>
<li>On my workstations at work, we are using /home on NFS, and really I don&#8217;t want to enable Nepomuk and Strigi indexing. I do fear about the NFS support for Nepomuk/Strigi, and the fact that I will clutter my file server with the indexing database of each of my users. I have 90Go of data on my file server, I can&#8217;t imagine the size of the indexing database &#8230; SCSI disks are not cheap !</li>
<li>Even if I do activate Nepomuk+Strigi indexing, by default only the user $HOME will be indexed. However what about the service/staff directories ? Indeed, several people of the same staff do share some common directories where they did put all of their files. What about this ? Do I have to enable manually the indexing of theses directories each time, and end up with duplicated indexed contents ?</li>
<li>Still on this subject, if you go to /usr/share/pixmaps or /usr/share/wallpaper or on an usb key, you won&#8217;t be able to see the metadata of the file as theses locations are not indexed. It means that from the end user perspective, Dolphin behavior will change for no reason as one time it will display the info, and another time not. For the end user : Dolphin will not be a reliable way to show basic informations about a file !</li>
<li>Activating Nepomuk/Strigi is not without issue for Dolphin too &#8230; I did notice that since I do have activate Nepomuk and strigi on my personal laptop, sometimes when entering a directory or when double-clicking on a file, Dolphin will just &#8230; freeze &#8230; No feedback, no error message, no wait message, no explanations &#8230; If you click on the UI, you will notice, once Dolphin will unfreeze, that your actions were taken into account. Just now, Dolhin was frozen during at least 30 seconds after trying to open a OpenOffice Writer document by double-clicking on it. So dolphin end up being unreliable for me &#8230; Each time I do something, I do fear about Dolphin freezes.</li>
</ol>
<p>These kinds of behavior should really be avoided on a modern desktop environment, and reliability and speed should be top priorities. Consistent behavior should be important, especially for basics features. If I understand well, I may not expect a fix for this before KDE 4.5/4.6, which means &#8230; 2011 at worst in a stable Linux distribution &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/01/31/showing-files-metadata-under-kde-is-like-russian-roulette/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing computer freeze when using Intel chipset with dual view</title>
		<link>http://www.linux-wizard.net/2010/01/12/fixing-computer-freeze-when-using-intel-chipset-with-dual-view/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fixing-computer-freeze-when-using-intel-chipset-with-dual-view</link>
		<comments>http://www.linux-wizard.net/2010/01/12/fixing-computer-freeze-when-using-intel-chipset-with-dual-view/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 17:54:49 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[KMS]]></category>
		<category><![CDATA[mandriva]]></category>

		<guid isPermaLink="false">http://201007306</guid>
		<description><![CDATA[A quick tip to disable annoying freezing with Dell Latitude E6500 laptop when trying to use secondary output with Intel KMS activated]]></description>
			<content:encoded><![CDATA[<p>Today I was willing to configure 2 laptop running Mandriva 2010 to do presentations during a meeting. So I was willing to use clone output. Unfortunately, doing so will result in an instant system freeze. Even worst, if the projector is plugged before powering on the laptop, the kernel will crash at boot ! Both laptop were using Intel chipsets ( Dell Latitude E6500, Asus A6VA ). The only solution is to disable KMS support. For this you need to generate an initrd without the i915 module ( use <strong>&#8211;builtin=i915</strong> ), and then to eventually add in modprobe.conf : <strong>options i915 modeset=0</strong>. Once done, reboot the computer. Whereas you will not have KMS support, at least you will have dual ouput in clone mode support with no fear on freezing the kernel &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2010/01/12/fixing-computer-freeze-when-using-intel-chipset-with-dual-view/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure local mail delivery</title>
		<link>http://www.linux-wizard.net/2009/12/31/how-to-configure-local-mail-delivery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-configure-local-mail-delivery</link>
		<comments>http://www.linux-wizard.net/2009/12/31/how-to-configure-local-mail-delivery/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 09:26:09 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[esmtp]]></category>
		<category><![CDATA[mda]]></category>
		<category><![CDATA[mta]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[procmail]]></category>
		<category><![CDATA[sendmail]]></category>
		<category><![CDATA[ssmtp]]></category>

		<guid isPermaLink="false">http://201007305</guid>
		<description><![CDATA[Most of the time I'm using ssmtp to use my ISP SMTP server as a relay. However my database server most of the time is not connected to internet ( and this on purpose ). This is where the issue comes : ssmtp doesn't allow local mail delivery :( Even stranger, by default local mail delivery seems to not work at all in a default Mandriva installation :(
To handle local mail delivery, you need a local Mail Delivery Agent ( MDA ), and your Mail Transfert Agent ( MTA ) should called the local MDA to deliver local mails. So here are 2 methods to handle local mail delivery. ]]></description>
			<content:encoded><![CDATA[<p>I have a separate server which hosts my database. Each night, a cron script is run to dump the databases contents and rsynced the backups to another server. The backup script will log the backup in /var/log, but also send a mail. Most of the time I&#8217;m using ssmtp to use my ISP SMTP server as a relay. However my database server most of the time is not connected to internet ( and this on purpose ). This is where the issue comes : ssmtp doesn&#8217;t allow local mail delivery <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Even stranger, by default local mail delivery seems to not work at all in a default Mandriva installation <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>To handle local mail delivery, you need a local Mail Delivery Agent ( MDA ), and your Mail Transfert Agent ( MTA ) should called the local MDA to deliver local mails. So here are 2 methods to handle local mail delivery.</p>
<h5>Using SENDMAIL</h5>
<p>The easiest to have local mail delivery is to install &#8230; sendmail. Just install sendmail package and start the corresponding service, and your are done.</p>
<ul>
<li> Install sendmail package :
<pre class="brush: bash; light: true; title: ; notranslate">urpmi sendmail</pre>
<p><em> </em></li>
<li>Check that sendmail is used to provide send command :<em> </em>
<pre class="brush: bash; light: true; title: ; notranslate">update-alternatives --display sendmail-command</pre>
<p><em class="commande"> </em></li>
<li>If this is not the case, instruct update-alternative to use sendmail :<em> </em>
<pre class="brush: bash; light: true; title: ; notranslate">update-alternatives --config sendmail-command</pre>
<p><em> </em></li>
<li> Start the sendmail service :<em> </em>
<pre class="brush: bash; light: true; title: ; notranslate">service sendmail restart</pre>
<p><em> </em></li>
</ul>
<h5>Using ESMTP</h5>
<p>Another way is to use ESMTP. i do advised to use ESMTP because it allow to configure easily a SMTP relay host, and handle also local delivery. However by default, ESMTP is not usable in default Mandriva configuration as it will not install a local MDA ( <a title="ESMTP should suggest procmail for local mail delivery support" href="https://qa.mandriva.com/show_bug.cgi?id=56759" target="_new">mdv bug #56759</a> ) and does not provide a default system-wide configuration file ( <a title="Please provide a default esmtprc file in /etc allowing local delivery" href="https://qa.mandriva.com/show_bug.cgi?id=56757" target="_new">mdv bug #56757</a> ). So here his the procedure for a very simple ESMTP configuration which handle a SMTP relay and local mail delivery :</p>
<ul>
<li>Install esmtp and procmail packages :
<pre class="brush: bash; light: true; title: ; notranslate">urpmi esmtp procmail</pre>
<p><em> </em></li>
<li>Check that esmtp is used to emulate sendmail :
<pre class="brush: bash; light: true; title: ; notranslate">update-alternatives --display sendmail-command</pre>
<p><em> </em></li>
<li>If this is not the case, instruct update-alternative to use esmtp :
<pre class="brush: bash; light: true; title: ; notranslate">update-alternatives --config sendmail-command</pre>
<p><em> </em></li>
<li>Once done, create an empty system-wide configuration file for esmtp :
<pre class="brush: bash; light: true; title: ; notranslate">touch /etc/esmtprc</pre>
<p><em> </em></li>
<li>If you want to configure a SMTP relay host to send mails outside, add the hostname option followed by the SMTP address in /etc/esmtprc. For example :
<pre class="code"># The place where the mail goes. The actual machine name is required
# no MX records are consulted. Commonly mailhosts are named mail.domain.com
hostname = smtp.myisp.com:25
</pre>
</li>
<li>Now add support to procmail as local MDA for local mail delivery by setting the mda option in /etc/esmtprc :
<pre class="code"># Use procmail as MDA for local mail delivery
mda "/usr/bin/procmail -d %T"
</pre>
</li>
</ul>
<h5>Testing you local mail delivery setup</h5>
<p>Now that sendmail or ESMTP are configured, you should test if local mail delivery is working correctly. The easiest way is to use the <a title="http://www.helpdesk.umd.edu/documents/4/4804/" href="http://www.helpdesk.umd.edu/documents/4/4804/" target="_new">mail</a> command to send, but also read your local mails. For example to send a mail containing the content of  /etc/nsswitch.conf to the root user, just type :
<pre class="brush: bash; light: true; title: ; notranslate">mail -v -s &quot;Local mail test&quot; root &lt; /etc/nsswitch.conf</pre>
<p>. Now log as root, and type <em class="commande">mail</em> to consult root mails. you may want to use <a title="http://www.mutt.org/" href="http://www.mutt.org/" target="_new">Mutt</a> eventually to read your mails instead of mail</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2009/12/31/how-to-configure-local-mail-delivery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>As a linux sysadmin I do care about</title>
		<link>http://www.linux-wizard.net/2009/12/30/as-a-linux-sysadmin-i-do-care-about/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=as-a-linux-sysadmin-i-do-care-about</link>
		<comments>http://www.linux-wizard.net/2009/12/30/as-a-linux-sysadmin-i-do-care-about/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 19:38:01 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://201007304</guid>
		<description><![CDATA[This testimonial comes after reading a blog post from Albert Astals Cid : Consistency. Indeed I do find useless the debate about UI and buttons consistency ( which is different from buttons order issue ). So here are the point for which I do care as a Linux sysadmin with nearly 75 workstations running Linux, [...]]]></description>
			<content:encoded><![CDATA[<p>This testimonial comes after reading a blog post from Albert Astals Cid : <a href="http://tsdgeos.blogspot.com/2009/12/consistency.html" target="_new" title="http://tsdgeos.blogspot.com/2009/12/consistency.html">Consistency</a>. Indeed I do find useless the debate about UI and buttons consistency ( which is different from buttons order issue ). So here are the point for which I do care as a Linux sysadmin with nearly 75 workstations running Linux, 5 notebook running Linux + Windows, and 7 servers running Linux. As a Linux sysadmin, when :</p>
<ul>
<li>/home on NFS support is not optimal ( sqlite usage, akonadi, digikam database, &#8230; ) : I do care</li>
<li>when applications have regressions ( printing support, lack of complete POSIX ACL support in NFSv4 ) : I do care</li>
<li>when applications are slow or slower under Linux than under Windows ( openoffice, PDF printing with okular vs acroread, Kmail 3 vs Kmail 4 ) : I do care</li>
<li>when applications crashes ( plasma ) or are buggy ( system-config-printer ) : i do care</li>
<li>when french accentuated characters are not correctly handled : i do care</li>
<li>when sound is not working correctly ( pulseaudio, pulseaudio support in phonon, mute mixer entry ) : i do care</li>
<li>when setting a wireless connection may be buggy ( unstable drivers ) and the connection is unreliable : i do care</li>
<li>when using a video-projector ( for presentations/meetings ) is not evident for the users and easy : i do care</li>
</ul>
<p>So the UI look &#038; feel is somewhat useless. I just want something that look mostly good, is acceptable, with a good usability. Good wallpapers ? most users just put their childrens photo as desktop background, and put a lot of icons on the desktops. Good theme ? most of the time, they don&#8217;t care. Consistency ? they don&#8217;t care : they just want to be able to distinguish closed and minimize buttons</p>
<p>The only time my users were impressed by something visual was the &laquo;&nbsp;present windows&nbsp;&raquo; effects of kwin ( left upper corner ) which shows all windows at once as they find it useful.<br />
Plasmo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2009/12/30/as-a-linux-sysadmin-i-do-care-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mandriva: Nine Priorities for Mandriva Incoming CEO</title>
		<link>http://www.linux-wizard.net/2009/12/28/mandriva-nine-priorities-for-mandriva-incoming-ceo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mandriva-nine-priorities-for-mandriva-incoming-ceo</link>
		<comments>http://www.linux-wizard.net/2009/12/28/mandriva-nine-priorities-for-mandriva-incoming-ceo/#comments</comments>
		<pubDate>Mon, 28 Dec 2009 15:48:51 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[edutice]]></category>
		<category><![CDATA[InstantOn]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[Pulse]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[XtreemOS]]></category>

		<guid isPermaLink="false">http://201007303</guid>
		<description><![CDATA[As everybody^wnobody know, Hervé YAHI is no longer the CEO of Mandriva. So I decide to rip off an article from The VAR Guy to issue an open letter to the Mandriva direction. So here are 9 priorities for the new Mandriva staff : A New Community: Sure, Mandriva has a strong open source community. [...]]]></description>
			<content:encoded><![CDATA[<p>As everybody^wnobody know, <a title="http://mandrivafr.org/node/660" href="http://mandrivafr.org/node/660" mce_href="http://mandrivafr.org/node/660" target="_new">Hervé YAHI is no longer the CEO of Mandriva</a>. So I decide to rip off an article from <a title="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" href="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" mce_href="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" target="_new">The VAR Guy</a> to issue an open letter to the Mandriva direction. So here are 9 priorities for the new Mandriva staff :</p>
<ol>
<li>A New Community: Sure, Mandriva has a <strike>strong</strike> open source community. And ??? <strike>will</strike> should work to strengthen that community, especially when seeing the <a title="http://forum.mandriva.com/viewtopic.php?t=113701" href="http://forum.mandriva.com/viewtopic.php?t=113701" mce_href="http://forum.mandriva.com/viewtopic.php?t=113701" target="_new">clashes between Mandriva and its community</a>. Still the new staff needs to strengthen a different type of community — a Mandriva business ecosystem that includes hardware and software partners, service providers, channel partners and OEMs (original equipment manufacturers).</li>
<li>Strengthen the Server Story: To date, Mandriva is known mostly as a desktop <strike>and mobile operating system, with relatively strong market share in the netbook market</strike>. But Mandriva recently launched its <a title="http://www2.mandriva.com/linux/server/" href="http://www2.mandriva.com/linux/server/" mce_href="http://www2.mandriva.com/linux/server/" target="_new">Mandriva Enterprise Server 5</a> and <a title="http://www.mandriva.com/enterprise/en/products/pulse" href="http://www.mandriva.com/enterprise/en/products/pulse" mce_href="http://www.mandriva.com/enterprise/en/products/pulse" target="_new">Pulse 2</a>. Meanwhile, ???? offers some support of MES — as do upstarts like ??? and ???.<br />
But Mandriva needs <strike>more</strike> server partners… And whenever a noteworthy customer embraces Mandriva Enterprise Server, Mandriva needs to get the word out.</li>
<li> Show <strike>Cloud</strike>Cluster/Grid Success or Mobile success: Mandriva has been working closely with grid partners like INRIA and BSC. <a title="http://www.xtreemos.eu/hotspot_news/xtreemos-2-0-is-now-available" href="http://www.xtreemos.eu/download" mce_href="http://www.xtreemos.eu/hotspot_news/xtreemos-2-0-is-now-available" target="_new">XtreemOS 2</a> is available since November. As XtreemOS seems to be a very good Grid solution, maybe the CERN could use XtreemOS instead of <a title="http://blogs.computerworld.com/15202/high_energy_linux_linux_the_large_hadron_collider" href="http://blogs.computerworld.com/15202/high_energy_linux_linux_the_large_hadron_collider" mce_href="http://blogs.computerworld.com/15202/high_energy_linux_linux_the_large_hadron_collider" target="_new">Scientific Linux</a> ! Let us see if a research lab is using some Mandriva products &#8230;But Mandriva needs to show some tangible examples of Grid/Mobile success. Who’s running MES/XtreemOS/InstantOn/Pulse and how are the deployments performing? Many people will be listening for answers.</li>
<li>Recruit Application Providers: (&#8230;) Mandriva Enterprise Server needs more ISV (independent software vendor) support. Is Mandriva Software Partner Manager ???? has been working on the ISV effort ? But real progress will require folks like Oracle, IBM/Lotus, Bull, HP, NEC, and other traditional application providers to fully embrace Mandriva.</li>
<li>Strengthen OEM Relationships: To Mandriva’s credit, ????. HP, Lenovo and other major PC makers haven’t shown much interest in Mandriva. Can a new staff change that? Hmmm…</li>
<li>Compete and Cooperate with Google, Intel: When Google started talking about Chrome OS in greater detail, Mandriva reveals <a title="http://www2.mandriva.com/instanton/" href="http://www2.mandriva.com/instanton/" mce_href="http://www2.mandriva.com/instanton/" target="_new">InstantOn</a>. Sweet. At the same time, Mandriva is working on Moblin v2. Impressive.Somehow, Mandriva must both compete and cooperate as Google, Intel and other technology giants size up their own Linux strategies.</li>
<li>Disclose Customer Wins: Which businesses are running Mandriva and which organizations are paying Mandriva/Edge-IT for support? Mandriva needs to brag more about customer victories as they happen.</li>
<li> Related Services: Mandriva is building a range of services and dedicated products to generate more revenue : <a title="http://www2.mandriva.com/instanton/" href="http://www2.mandriva.com/instanton/" mce_href="http://www2.mandriva.com/instanton/" target="_new">InstantOn</a>, <a title="http://www.mandriva.com/enterprise/en/products/pulse" href="http://www.mandriva.com/enterprise/en/products/pulse" mce_href="http://www.mandriva.com/enterprise/en/products/pulse" target="_new">Pulse 2</a>, <a title="http://www2.mandriva.com/mini/" href="http://www2.mandriva.com/mini/" mce_href="http://www2.mandriva.com/mini/" target="_new">Mini</a>, and <a title="http://www.edutice.fr/" href="http://www.edutice.fr/" mce_href="http://www.edutice.fr/" target="_new">Edutice</a>. But Mandriva has to stay aggressive with Mini/Pulse 2/InstantOne/Edutice communications and messaging.</li>
<li>Mandriva Partner Program: Is Mandriva working with training centers — such as CESI and SUPINFO — to get more IT managers and resellers up to speed on Mandriva ? We want to hear from solutions providers that are building profitable Mandriva business practices…</li>
</ol>
<p>No doubt, new staff will have a lot of work. Although it’s difficult to track Mandriva’s financial performance, buzz about Mandriva — particularly on desktop — is slowly growing.</p>
<p>The original articles but concerning new ubuntu CEO is available on the <a title="http://www.thevarguy.com" href="http://www.thevarguy.com" mce_href="http://www.thevarguy.com" target="_new">VAR Guy</a> website : <a title="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" href="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" mce_href="http://www.thevarguy.com/2009/12/21/ubuntu-nine-priorities-for-canonicals-incoming-ceo/" target="_new">Ubuntu: Nine Priorities for Canonical’s Incoming CEO</a><br mce_bogus="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2009/12/28/mandriva-nine-priorities-for-mandriva-incoming-ceo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The point on some Mandriva community projects</title>
		<link>http://www.linux-wizard.net/2009/12/28/the-point-on-some-mandriva-community-projects/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-point-on-some-mandriva-community-projects</link>
		<comments>http://www.linux-wizard.net/2009/12/28/the-point-on-some-mandriva-community-projects/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 22:47:40 +0000</pubDate>
		<dc:creator>Fabrice FACORAT</dc:creator>
				<category><![CDATA[Mandriva]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[MIB]]></category>
		<category><![CDATA[MUD]]></category>
		<category><![CDATA[XFCE]]></category>

		<guid isPermaLink="false">http://201007302</guid>
		<description><![CDATA[There are many communities based Mandriva derivatives, but few of them are known. So here is a ( not comprehensive ) list of some Mandriva based derivatives or projects]]></description>
			<content:encoded><![CDATA[<p>There are many communities based Mandriva derivatives, but few of them are known. So here is a ( not comprehensive ) list of some Mandriva based derivatives or projects :</p>
<ul>
<li><a title="http://www.community64.net/" href="http://www.community64.net/" target="_new"><strong> One 64 community</strong></a> : 64bits edition of the Mandriva One LiveCD. A <a title="KDE 64bits One edition" href="http://www.community64.net/telecharger/120-mandriva-one- 64-kde4-explanations" target="_new">KDE edition</a> and <a href="http://www.community64.net/telecharger/121-le-bureau-gnome-en-detail" target="_new">GNOME one</a> are available for download.</li>
<li><a title="LXDE LiveCD" href="http://www.mandrivauser.de/doku/doku.php?id=allgemein:editionen:lxde" target="_new"><strong>LXDE LiveCD </strong></a> : The <a title="http://www.mandrivauser.de" href="http://www.mandrivauser.de" target="_new">german community</a> is releasing a Mandriva based LXDE LiveCD. It can be used also from an USB<br />
stick.</li>
<li><a title="One XFCE 2010  Live" href="http://wiki.mandriva.com/en/XFCELive2010" target="_new"><strong>One XFCE 2010 Live</strong></a> : XFCELive is a XFCE Mandriva-based LiveCD created and maintained by the Mandriva community</li>
<li><a title="http://wiki.mandriva.com/en/Skiper's_Xfce_2010" href="http://wiki.mandriva.com/en/Skiper's_Xfce_2010" target="_new"><strong>Skiper&#8217;s Xfce 2010</strong></a> : A fork of the XFCELive Mandriva project. This fork aims at integrating more testing features and<br />
offering extra customizations with the idea of improving the visual appearance of the environment.</li>
<li><a title="MUD Netbook-Edition" href="http://www.mandrivauser.de/doku/doku.php?id=allgemein:editionen:netbook" target="_new"><strong>MUD Netbook-Edition </strong></a> : a Mandriva based Netbook tailored edition. This edition from the Mandriba german community, based on<br />
the Mandriva One GNOME edition, features the Ubuntu Netbook UI. This edition can be used as a LiveCD or dumped on an USB key.</li>
<li><a title="http://www.mandrivauser.de/smarturpmi/" href="http://www.mandrivauser.de/smarturpmi/" target="_new"><strong>MUD (MandrivaUser.De) </strong></a> : As you can see, the Mandriva german community ( MUD ) is providing many projects based on the<br />
Mandriva distribution. They are also providing backported packages for older releases. To add their repositories, you can use <a title="http://www.mandrivauser.de/smarturpmi/" href="http://www.mandrivauser.de/smarturpmi/" target="_new">SmartUrpmi</a>.</li>
<li><a title="Mandriva Community  moblin" href="http://forum.mandriva.com/viewtopic.php? t=122294&amp;sid=219644812b1d74ad957bc7b7aad2fc53" target="_new"><strong>Mandriva Community Moblin </strong></a> : A Mandriva-based Moblin edition aiming at improving Moblin integration in Mandriva. Some non-official sources are saying that a futur official Moblin LiveCD may be released by Mandriva. As usual, everything is secret in Mandriva offices : so we will see. Please consult the <a title="ftp://mandrivafr.org/pub/moblin/Changelog-and-News.txt" href="ftp://mandrivafr.org/pub/moblin/Changelog-and-News.txt" target="_new">Changelog</a> to know the pending issues or fixed bugs and enhancements.</li>
<li><a title="Mandriva  Italian Backports" href="http://mib.pianetalinux.org/mib/" target="_new"><strong>MIB (Mandriva Italian Backports) </strong></a> : This project from the Mandriva  community provided backported packages for new and older Mandriva releases. Some packages, not even available in Mandriva official repositories, are also available. They do provide some <a title="http://mib.pianetalinux.org/mib/it/repository.html" href="http://mib.pianetalinux.org/mib/" target="_new">repositories for those willing to install their RPMS</a>.</li>
<li><a title="http://mib.pianetalinux.org/mib/fr/mib-news/31-mib/614-mib-live-kde- 20100-64bit-.html" href="http://mib.pianetalinux.org/mib/mib-live/20100-kde-64b-prel" target="_new"><strong>MIB Live KDE 2010.0 </strong></a> : The MIB community is also providing a 64bits version of the Mandriva One KDE : it&#8217;s a LiveDVD with packages from Mandriva, PLF and MIB.</li>
<li><a title="Mandrivausers Romanian  Backports" href="http://mrb.mandrivausers.ro/" target="_new"><strong>Mandrivausers Romanian Backports </strong></a> : Another project from the Mandriva romanian community which provide backports and packages for older Mandriva releases.</li>
</ul>
<p>As you can see there&#8217;s many communities project around Mandriva products. Don&#8217;t hesitate to test them,  review them, and speak about them. It would have been interesting to have a page listing all of theses projects on the <a title="http://wiki.mandriva.com/en/Community" href="http://wiki.mandriva.com/en/Community" target="_new">Mandriva wiki</a>. A community section or category would have been interesting and useful <img src='http://www.linux-wizard.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.linux-wizard.net/2009/12/28/the-point-on-some-mandriva-community-projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- This Quick Cache file was built for (  www.linux-wizard.net/feed/ ) in 1.13273 seconds, on May 18th, 2012 at 1:22 am UTC. -->
<!-- This Quick Cache file will automatically expire ( and be re-built automatically ) on May 18th, 2012 at 2:22 am UTC -->
