<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>checkgmail &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/checkgmail/</link>
	<description>Feed of posts on WordPress.com tagged "checkgmail"</description>
	<pubDate>Thu, 24 Dec 2009 02:59:08 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Checkgmail trubbel + fix!]]></title>
<link>http://piotten.wordpress.com/2009/11/10/checkgmail-trubbel-fix/</link>
<pubDate>Tue, 10 Nov 2009 22:02:59 +0000</pubDate>
<dc:creator>piotten</dc:creator>
<guid>http://piotten.wordpress.com/2009/11/10/checkgmail-trubbel-fix/</guid>
<description><![CDATA[Kära bullen Jag använder checkgmail som berättar för mig när jag får mail. Det programmet är jättebr]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Kära bullen<br />
Jag använder checkgmail som berättar för mig när jag får mail. Det programmet är jättebra. Men på sistone när jag klickar på ikonen för att liksom snabböppna gmail i min webläsare, så kommer jag till gmails loginsida. Det är alltså inte som förut när man blir automatiskt inloggad.<br />
Hur ska jag göra?</p>
<p>Jo, efter lite googlande fick jag fram detta, ändra i checkgmails preferences &#8220;Command to execute on clicking the tray icon&#8221; från standard &#8216;firefox %u&#8217; till &#8216;firefox http://mail.google.com/mail/#inbox&#8217;, så löser det problemet! Verkar som att checkgmails variabel %u inte längre genererar en korrekt url för gmail, eller något!</p>
<p>(Som vanligt var det inte personen i filmen som skrivit brevet.)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tips'nTricks: ASUS e il LED delle email]]></title>
<link>http://idl3.wordpress.com/2009/11/10/tipsntricks-asus-e-il-led-delle-email/</link>
<pubDate>Tue, 10 Nov 2009 06:36:09 +0000</pubDate>
<dc:creator>idl3</dc:creator>
<guid>http://idl3.wordpress.com/2009/11/10/tipsntricks-asus-e-il-led-delle-email/</guid>
<description><![CDATA[Appena ho installato CheckGmail e&#8217; sorta l&#8217;esigenza di far accendere il LED blu del port]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Appena ho <a href="http://idl3.wordpress.com/2009/11/09/tipsntricks-checkgmail-e-lerrore-401/">installato CheckGmail</a> e&#8217; sorta l&#8217;esigenza di far <strong>accendere il <acronym title="Light Emitting Diode">LED</acronym></strong> blu del portatile che notifica la <strong>ricezione di una nuova email</strong>. Ero abituato a quando il file dove inserire lo zero e l&#8217;uno &#8211; a seconda si volesse spegnere o accendere il LED &#8211; era posizionato in <code>/proc/acpi/asus/mled</code>. Invece <strong>e&#8217; cambiato</strong>.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/led.jpg?w=150" alt="led" title="led" width="150" height="110" class="alignleft size-thumbnail wp-image-988" />Prima bastava <strong>inserire</strong> in uno script (o nell&#8217;apposito form di un programma come nel caso di <strong>CheckGmail</strong>):</p>
<pre>echo 0 &#62; /proc/acpi/asus/mled</pre>
<p>per <strong>spegnere</strong> o:</p>
<pre>echo 1 &#62; /proc/acpi/asus/mled</pre>
<p>per <strong>accendere</strong> il LED.</p>
<p>Ho notato invece che <strong>ora il percorso e&#8217;</strong> <code>/sys/class/leds/asus::mail/</code> e il file non e&#8217; <code>mled</code> ma <code>brightness</code>. Quindi le due righe di prima diventano:</p>
<pre>echo 0 &#62; /sys/class/leds/asus::mail/brightness</pre>
<p>e</p>
<pre>echo 1 &#62; /sys/class/leds/asus::mail/brightness</pre>
<p>State attenti che molto probabilmente il vostro file <code>brightness</code> ha i <strong>permessi</strong> in scrittura solo per l&#8217;utente <strong>root</strong>, mentre per gli altri ha <strong>solo i permessi in lettura</strong>. Ovviamente dobbiamo estendere a tutti il <strong>permesso in scrittura</strong> per poter inserire lo zero o l&#8217;uno a seconda del caso. Avevo <a href="http://idl3.wordpress.com/2009/10/17/howto-i-permessi-su-gnulinux/">gia&#8217; scritto</a> come <strong>funzionano</strong> e come <strong>cambiare</strong> i permessi ai file e alle directory.</p>
<p>Apriamo un <strong>terminale</strong>, spostiamoci nella directory giusta:<br />
<code>$ cd /sys/class/leds/asus\:\:mail/</code><br />
<strong>controlliamo</strong> i permessi:<br />
<code>$ ls -l</code></p>
<pre>[...]
-rw-r--r-- 1 root root 4096  9 nov 08:48 brightness
[...]</pre>
<p>Diamo dunque questo <strong>comando</strong>:<br />
<code># chmod a+w brightness</code><br />
<strong>controlliamo</strong> se i permessi sono stati assegnati correttamente:<br />
<code>$ ls -l</code></p>
<pre>[...]
-rw-rw-rw- 1 root root 4096  9 nov 08:48 brightness
[...]</pre>
<p>Tenete presente che <strong>al riavvio del sistema i permessi verranno ripristinati</strong>. Quindi, o ripetiamo questa operazione ogni volta, oppure la facciamo fare in <strong>automatico</strong>. Per farla in automatico apriamo il file <code>rc.local</code>:<br />
<code># nano /etc/rc.local</code><br />
e inseriamo questo prima di <code>exit 0</code>:</p>
<pre>---8&#60;---
chmod a+w /sys/class/leds/asus::mail/brightness
---8&#60;---</pre>
<p>Perfetto.</p>
<p>Ora possiamo utilizzare quel file <strong>tranquillamente</strong>, facciamo subito <strong>una prova</strong> dal terminale:<br />
<code>$ echo 1 &#62; /sys/class/leds/asus\:\:mail/brightness</code><br />
e il LED dovrebbe ora essere <strong>acceso</strong>.</p>
<p><strong>Spegniamolo</strong> con:<br />
<code>$ echo 0 &#62; /sys/class/leds/asus\:\:mail/brightness</code><br />
e andiamo a sistemarci <a href="http://checkgmail.sourceforge.net/">CheckGmail</a> e visto che ci siamo anche <a href="http://www.mozilla-europe.org/it/products/thunderbird/">Thunderbird</a>.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/checkgmail-led.png" alt="checkgmail-led" title="checkgmail-led" width="312" height="107" class="alignright size-thumbnail wp-image-987" /><strong>CHECKGMAIL</strong> &#8211; Apriamo le <strong>preferenze di CheckGmail</strong> e cerchiamo due <em>form</em>, il primo e&#8217; &#8220;<em>Comando da eseguire per le nuove mail</em>&#8220;, qui ci inseriamo:</p>
<pre>echo 1 &#62; /sys/class/leds/asus\:\:mail/brightness</pre>
<p>poi il campo subito sotto &#8220;<em>Comando da eseguire quando non ci sono mail</em>&#8220;, dove invece inseriremo:</p>
<pre>echo 0 &#62; /sys/class/leds/asus\:\:mail/brightness</pre>
<p>Date l&#8217;<em>OK</em> e avete finito. Ogni volta che vi arrivera&#8217; un&#8217;email al vostro account Gmail e CheckGmail lo rilevera&#8217;, ve lo comunichera&#8217; con l&#8217;<strong>accensione del LED</strong> del vostro portatile oltre alla normale notifica a Desktop.</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/thunderbird.jpg?w=150" alt="thunderbird" title="thunderbird" width="150" height="149" class="alignleft size-thumbnail wp-image-989" /><strong>THUNDERBIRD/ICEDOVE</strong> &#8211; Adesso vediamo come far fare la <strong>stessa cosa anche con Thunderbird</strong>. Il modo piu&#8217; semplice e&#8217; quello di scaricarvi l&#8217;<strong>apposito add-ons</strong>. Si chiama <a href="https://addons.mozilla.org/en-US/thunderbird/addon/4540">Thunderled</a>, scaricatelo e installatelo con la solita procedura di Thunderbird: <em>Strumenti &#62; Componenti aggiuntivi &#62; Installa&#8230;</em></p>
<p><img src="http://idl3.wordpress.com/files/2009/11/thunderled.png?w=150" alt="thunderled" title="thunderled" width="150" height="103" class="alignright size-thumbnail wp-image-990" />Una volta installato <strong>Thunderled</strong> dovete cercarlo nel vostro <acronym title="Hard Disk">HD</acronym>. Trovandosi in una <strong>directory nascosta</strong>, quando aprite il vostro gestore di file e directory (Nautilus, Konqueror, Thunar, o altro) dovete rendere visibili i file e le directory nascoste con <strong>[Ctrl] + [h]</strong>.</p>
<p>Andiamo ora <strong>alla ricerca del file che ci serve</strong>, solitamente lo trovate in <code>/home/UTENTE/.mozilla-thunderbird/BLABLABLA.default/extensions/</code></p>
<p>A questo punto vi trovate <strong>varie directory</strong> <code>{BLABLABLA-BLABLABLA-BLABLABLA}</code> tante quante sono le <strong>estensioni</strong> del vostro Thunderbird. Se <strong>Thunderled</strong> e&#8217; stata l&#8217;<strong>ultima</strong> estensione ad essere installata con tutta probabilita&#8217; <strong>la directory giusta e&#8217; l&#8217;ultima</strong>. Per esserne certi apriamo la directory e leggiamo il file <code>chrome.manifest</code>.</p>
<p>Una volta <strong>accertato</strong> di trovarci nella giusta directory spostiamoci nella <strong>sottodirectory</strong> <code>chrome</code>. Troveremo il file <code>thunderled.jar</code>, che nonostante l&#8217;estensione e&#8217; un semplice <strong>file ZIP</strong>. Dunque <strong>rinominiamolo</strong> (<code>thunderled.zip</code>) ed <strong>estraiamolo</strong>. Otterremo <strong>tre directory</strong>, entriamo in <code>content/thunderled</code> e <strong>apriamo</strong> il file <code>overlay.js</code> col nostro <strong><em>editor</em> di testo</strong>.</p>
<p>Cerchiamo <strong>queste righe</strong>:</p>
<pre>[...]
else{
        file.initWithPath("/bin/sh");
        if(x==1)
                var args = ["-c","echo 1 \&#62; /proc/acpi/asus/mled"];
        else
                var args = ["-c","echo 0 \&#62; /proc/acpi/asus/mled"];
        }
        var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
        process.init(file);
        process.run(false, args, args.length);
        }
[...]</pre>
<p>e <strong>sostituiamole con queste</strong>:</p>
<pre>---8&#60;---
else{
        file.initWithPath("/bin/sh");
        if(x==1)
                var args = ["-c","echo 1 \&#62; /sys/class/leds/asus::mail/brightness"];
        else
                var args = ["-c","echo 0 \&#62; /sys/class/leds/asus::mail/brightness"];
        }
        var process = Components.classes["@mozilla.org/process/util;1"].createInstance(Components.interfaces.nsIProcess);
        process.init(file);
        process.run(false, args, args.length);
        }
---8&#60;---</pre>
<p><strong>Salvate ed uscite</strong>. Adesso dovete <strong>ricreare l&#8217;archivio</strong> <code>thunderled.zip</code> e <strong>rinominarlo</strong> in <code>thunderled.jar</code>.</p>
<p>Finito. Da ora in poi ogni volta che Thunderbird scarichera&#8217; una nuova email vi <strong>si accendera&#8217; il LED del portatile</strong>.</p>
<hr />
<p style="text-align:right;"><a href="#content" title="torna su">[^] torna su</a>&#160;&#124;&#160;<a href="http://postli.com/post?u=http://idl3.wordpress.com/2009/11/10/tipsntricks-asus-e-il-led-delle-email/&#38;t=TipsnTricks: ASUS e il LED delle email" title="Post to Postli" style="color:blue;text-decoration:none;">post<span style="color:orange;">&#60;</span><span style="color:red;">li</span><span style="color:orange;">&#62;</span></a>&#160;&#124;&#160;<a href="http://www.wikio.it/vote?url=http://idl3.wordpress.com/2009/11/10/tipsntricks-asus-e-il-led-delle-email/" target="_blank"><img src="http://www.wikio.it/shared/img/vote/wikio2.gif" border="0" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tips'nTricks: CheckGmail e l'errore 401]]></title>
<link>http://idl3.wordpress.com/2009/11/09/tipsntricks-checkgmail-e-lerrore-401/</link>
<pubDate>Mon, 09 Nov 2009 13:33:58 +0000</pubDate>
<dc:creator>idl3</dc:creator>
<guid>http://idl3.wordpress.com/2009/11/09/tipsntricks-checkgmail-e-lerrore-401/</guid>
<description><![CDATA[Qualche giorno fa stavo pensando tra me e me che per guardare se mi arriva un&#8217;email sul mio in]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Qualche giorno fa stavo pensando tra me e me che per guardare se mi arriva un&#8217;email <strong>sul mio indirizzo Gmail</strong> e&#8217; un po&#8217; scomodo ogni volta dover <strong>accedere a Gmail</strong>. Mi sono dunque accorto che <strong>non avevo ancora un notificatore per Gmail sul mio desktop</strong>. Mancanza grave di questi tempi a quanto pare (nonostante si possa benissimo farne a meno).</p>
<p><img src="http://idl3.wordpress.com/files/2009/11/screenshot7.png" alt="screenshot7" title="screenshot7" width="450" height="180" class="alignleft size-thumbnail wp-image-980" />Comunque <strong>ho deciso di installarne uno</strong>, ho optato per <strong><a href="http://checkgmail.sourceforge.net/">CheckGmail</a></strong>:<br />
<code># apt-get install checkgmail</code></p>
<p>Poi ho impostato la <strong>varie opzioni</strong> e l&#8217;ho subito messo all&#8217;opera, ma lui per tutta risposta mi ha <strong>scritto</strong>:</p>
<pre>401 Unauthorized</pre>
<p>Ho cercato un po&#8217; in giro per la rete e come <strong>soluzione</strong> davano questa:<br />
<code>$ checkgmail -update</code><br />
che aggiorna il file <code>checkgmail</code>,</p>
<p><strong>oppure</strong> quest&#8217;altra:<br />
<code>$ checkgmail -no_cookies</code><br />
che avvia il programma con l&#8217;opzione <code>no_cookies</code>.</p>
<p>Sono soluzioni che <strong>non mi piacciono molto</strong>, allora ho <strong>cercato un po&#8217;</strong> sul sito del programma e ho deciso di fare cosi&#8217;. Mi sono <strong>scaricato</strong> tutti i file e le directory necessarie in una directory:<br />
<code>$ svn co https://checkgmail.svn.sourceforge.net/svnroot/checkgmail checkgmail</code><br />
poi mi sono <strong>spostato</strong> dentro quella directory:<br />
<code>$ cd checkgmail</code><br />
e ho <strong>copiato</strong> il file eseguibile <code>checkgmail</code> nella directory <code>/usr/bin/</code>:<br />
<code># sudo cp checkgmail /usr/bin/</code></p>
<p>Adesso <strong>funziona alla perfezione</strong>.</p>
<hr />
<p style="text-align:right;"><a href="#content" title="torna su">[^] torna su</a>&#160;&#124;&#160;<a href="http://postli.com/post?u=http://idl3.wordpress.com/2009/11/09/tipsntricks-checkgmail-e-lerrore-401/&#38;t=CheckGmail e lerrore 401" title="Post to Postli" style="color:blue;text-decoration:none;">post<span style="color:orange;">&#60;</span><span style="color:red;">li</span><span style="color:orange;">&#62;</span></a>&#160;&#124;&#160;<a href="http://www.wikio.it/vote?url=http://idl3.wordpress.com/2009/11/09/tipsntricks-checkgmail-e-lerrore-401/" target="_blank"><img src="http://www.wikio.it/shared/img/vote/wikio2.gif" border="0" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Plagued with CheckGmail's "Incorrect username or password" error in Debian/Ubuntu]]></title>
<link>http://lawrence1992.wordpress.com/2009/10/13/plagued-with-checkgmails-incorrect-username-or-password-error-in-debianubuntu/</link>
<pubDate>Wed, 14 Oct 2009 04:47:48 +0000</pubDate>
<dc:creator>lawrence1992</dc:creator>
<guid>http://lawrence1992.wordpress.com/2009/10/13/plagued-with-checkgmails-incorrect-username-or-password-error-in-debianubuntu/</guid>
<description><![CDATA[A couple of days weeks ago CheckGmail stopped working with a Error: Incorrect username or password d]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>A couple of <span style="text-decoration:line-through;">days</span> weeks ago CheckGmail stopped working with a <em>Error: Incorrect username or password</em> dialog. Looking through the CheckGmail sourcforge forums,  I ended up finding a solution.</p>
<p><strong>If CheckGmail fails to autheciate your logins–  four possible solutions for fixing the authentication bug</strong></p>
<ol>
<li>The quick and dirty fix is to run CheckGmail with the <em>-no_cookies</em> flag. The drawback is that you lose some functionality (actions such as marking as spam and archiving). You’ll need to update your startup/menu/startup session item to start CheckGmail using this command flag. <code> </code>checkgmail -no_cookies</li>
<li> Download the latest development version of CheckGmail from SVN which includes a real fix for the recent 401 unauthorise issue.. A clever CheckGmail developer included an update feature for checkgmail for just a  circumstances just like this one In terminal, run:</li>
</ol>
<div>
<div><code>checkgmail -update</code></div>
<p>and follow the prompts.</p>
<p>3. Checkout the CheckGMail package through SVN.</p>
<p>First, install subversion if you haven&#8217;t already</p>
<p><code>sudo apt-get install subversion</code></p>
<p>Run the command below (<strong>it’s one line</strong>) to use subversion to download the latest version of CheckGmail:</p>
<p><code>svn co <a title="https://checkgmail.svn.sourceforge.net/svnroot/checkgmail" href="https://checkgmail.svn.sourceforge.net/svnroot/checkgmail">https://checkgmail.svn.sourceforge.net/svnroot/checkgmail</a> /tmp/checkgmail</code></p>
<p>After which, you&#8217;ll have to run these to commands to copy the new version over the old one (assuming you&#8217;re not installing CheckGmail for the first time)  and clean up (you might be asked to confirm deletion of some write-protected files):</p>
<p><code>sudo cp /tmp/checkgmail/checkgmail /usr/bin<br />
rm -rf /tmp/checkgmail</code></p>
<p>Alternatives that most probably won&#8217;t work or satisfy a permanent solution but may be worth mentioning</p>
<p>1. Run removing all configuration files in ~/</p>
<p><code>sudo rm -r .checkgmail</code></p>
<p>2.  If you decided to save your password during  initial configuration of CheckGmail, Ubuntu or Debian may have asked you to save the password with GNOME Keyring. GNOME Keyring is a demon app designed to manage your username and passwords, similar to that of  KWallet in KDE.  Prior to GNOME 2.22, the daemon had its own KeyRing manager. As of GNOME 2.22 it has been deprecated and replaced entirely with Seahorse daemon. The Seahorse  daemon is simply another pass phrase caching agent like GNOME Keyring. One way to access the daemon is through the GNOME menus. You may be able to find it in</p>
<p><code>Acessories&#62; Passwords and Encryption keys</code></p>
<p>or by simply typing &#8216;<code>seahorse</code>&#8216; in terminal</p>
<p><img class="aligncenter" title="Password and Encryption Keys" src="http://img203.imageshack.us/img203/4267/screenshot003w.png" alt="" width="618" height="490" /></p>
<p>Try finding something with the keywords &#8216;<code>checkgmail</code>&#8216; under &#8216;<code>Passwords:login</code>&#8216; or &#8216;<code>Passwords:default</code>&#8216;. If you do, delete the key, restart CheckGmail with a fresh configuration and re-enter your logins.</p>
</div>
<div>One last solution could that you may be missing or have an outdated optional dependency that adds password encryption in CheckGmail. Install the package <a href="libcrypt-simple-perl">libcrypt-simple-perl</a> (click the link to apt:url link install) or by running</div>
<div><code>sudo apt-get install libcrypt-simple-perl</code></div>
<div><img class="aligncenter" title="OmgWtfBBQ Email Test" src="http://img202.imageshack.us/img202/941/screenshotv.png" alt="" width="314" height="107" /><br />
Voila, fixed.</p>
</div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Checkgmail 401 hatası, checkgmail 401 buggmail'in]]></title>
<link>http://prokaryot.wordpress.com/2009/10/13/checkgmail-401-hatasi-checkgmail-401-buggmailin/</link>
<pubDate>Tue, 13 Oct 2009 12:41:26 +0000</pubDate>
<dc:creator>prokaryot</dc:creator>
<guid>http://prokaryot.wordpress.com/2009/10/13/checkgmail-401-hatasi-checkgmail-401-buggmailin/</guid>
<description><![CDATA[Öncelikle daha önceden duymadıysanız, gmail hesabınıza, maillerinize çok kolay ve etkin bir şekilde ]]></description>
<content:encoded><![CDATA[Öncelikle daha önceden duymadıysanız, gmail hesabınıza, maillerinize çok kolay ve etkin bir şekilde ]]></content:encoded>
</item>
<item>
<title><![CDATA[lancer un programme au démarrage debian ...]]></title>
<link>http://egnu.wordpress.com/2009/05/07/lancer-un-programme-au-demarrage-debian/</link>
<pubDate>Thu, 07 May 2009 21:49:25 +0000</pubDate>
<dc:creator>egnu</dc:creator>
<guid>http://egnu.wordpress.com/2009/05/07/lancer-un-programme-au-demarrage-debian/</guid>
<description><![CDATA[Quand vous ouvrez debian, peu de programmes sont lancés automatiquement au démarrage. Si vous aviez ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><img class="alignleft size-full wp-image-198" title="snapshot13" src="http://egnu.wordpress.com/files/2009/05/snapshot132.png" alt="snapshot13" width="108" height="21" /> Quand vous ouvrez debian, peu de programmes sont lancés automatiquement au démarrage. Si vous aviez l&#8217;habitude, sous windows, d&#8217;avoir par exemple skype, msn (wlm) lancés au démarrage et vous voulez avoir une configuration pareille sous debian c&#8217;est simple à réaliser. La méthode la plus simple est à suivante: pour commencer ouvrez système -&#62; préférences -&#62; sessions. Sous la fenêtre ouverte choisissez le premier volet ouvert par défaut &#8220;programmes au démarrage&#8221; et faites &#8220;ajouter&#8221;. Dans la fenêtre qui s&#8217;ouvre ce qui nous intéresse c&#8217;est seulement &#8220;commande&#8221; les autres nom et commentaire peuvent rester vides. Dans &#8220;commande&#8221; vous devez écrire:/usr/bin/et ici le nom du programme qui vous intéresse. Par exemple j&#8217;utilise &#8220;checkgmail&#8221; pour vérifier l&#8217;arrivée des emails sur gmail. J&#8217;ai inscrit comme suit: &#8220;/usr/bin/checkgmail&#8221;. Pour tous les autres programmes qui vous intéressent il suffit de chercher leur nom dans le dossier &#8220;/usr/bin/&#8230;&#8221; et c&#8217;est fait <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Aplicatii pt Ubuntu 2]]></title>
<link>http://ceralbastru.wordpress.com/2009/05/01/aplicatii-pt-ubuntu-2/</link>
<pubDate>Fri, 01 May 2009 08:30:10 +0000</pubDate>
<dc:creator>ceralbastru</dc:creator>
<guid>http://ceralbastru.wordpress.com/2009/05/01/aplicatii-pt-ubuntu-2/</guid>
<description><![CDATA[AllTray &#8211; minimizeaza orice in zona de notificare CheckGmail -notificarea emailurilor venite G]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>AllTray &#8211; minimizeaza orice in zona de notificare</p>
<p>CheckGmail -notificarea emailurilor venite</p>
<p>Gufw Firewall &#8211; securitate pentru  linux</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CheckGmail]]></title>
<link>http://pingato.wordpress.com/2009/02/22/checkgmail/</link>
<pubDate>Sun, 22 Feb 2009 18:57:35 +0000</pubDate>
<dc:creator>wkats</dc:creator>
<guid>http://pingato.wordpress.com/2009/02/22/checkgmail/</guid>
<description><![CDATA[Si tienes una cuenta de Gmail, tal vez te estarás preguntando qué tanto jugo puedes sacarle. Es lo q]]></description>
<content:encoded><![CDATA[Si tienes una cuenta de Gmail, tal vez te estarás preguntando qué tanto jugo puedes sacarle. Es lo q]]></content:encoded>
</item>
<item>
<title><![CDATA[Top 5 email notifiers for Ubuntu]]></title>
<link>http://getch.wordpress.com/2009/02/08/top-5-email-notifiers-for-ubuntu/</link>
<pubDate>Sun, 08 Feb 2009 17:13:05 +0000</pubDate>
<dc:creator>manoj1987</dc:creator>
<guid>http://getch.wordpress.com/2009/02/08/top-5-email-notifiers-for-ubuntu/</guid>
<description><![CDATA[Mail Notification KBiff Korn CheckGmail KGmailNotifier]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" title="mail" src="http://www.nongnu.org/mailnotify/logo.png" alt="" width="222" height="187" /></p>
<ol>
<li><span style="color:#808000;"><a href="http://www.nongnu.org/mailnotify/" target="_blank">Mail Notification</a></span></li>
<li><span style="color:#808000;"><a href="http://www.kbiff.org//" target="_blank">KBiff</a></span></li>
<li><span style="color:#808000;"><a href="http://www.ph.unimelb.edu.au/~ssk/kde/korn/" target="_blank">Korn</a><br />
</span></li>
<li><a href="http://checkgmail.sourceforge.net/" target="_blank">CheckGmail</a></li>
<li><span style="color:#808000;"><a href="http://www.kde-apps.org/content/show.php/KGmailNotifier?content=55375" target="_blank">KGmailNotifier</a></span></li>
</ol>
<p style="text-align:left;"><span style="color:#808000;"><br />
</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Great file synchronization program and a gmail checker]]></title>
<link>http://mylinuxexploits.wordpress.com/2008/09/28/great-file-synchronization-program-and-a-gmail-checker/</link>
<pubDate>Sun, 28 Sep 2008 00:40:00 +0000</pubDate>
<dc:creator>Zach</dc:creator>
<guid>http://mylinuxexploits.wordpress.com/2008/09/28/great-file-synchronization-program-and-a-gmail-checker/</guid>
<description><![CDATA[I read about Dropbox, a (free!) file synchronization program which works in Windows, OSX (apple macs]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I read about <a href="http://getdropbox.com">Dropbox</a>, a (free!) file synchronization program which works in Windows, OSX (apple macs), and Linux. I installed in on my Ubuntu based laptop and it runs perfectly in Gnome. KDE4 seems to not run it automatically, though. But I haven&#8217;t really tried to get it to work there yet. Unfortunately when I tried to install it on my wife&#8217;s computer it only seemed to run for the Administrator, so under my login I couldn&#8217;t access the files in it &#8211; not cool! But you can still access the synch files via the dropbox website, so that&#8217;ll work until the Vista version gets all the bugs worked out. Overall, I like it a lot. The only negative, so far, is that it only has 2gb of online storage available.</p>
<p>And in other news I read in the latest edition (no. 17) of <a href="http://fullcirclemagazine.org/">Full Circle</a> about a email checking program for gnome, called <em>checkgmail</em>. You can grab it out of the repos with this command:</p>
<p><span style="font-weight:bold;">sudo apt-get install checkgmail</span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Problemy z GMAILem pod kchekgmail/checkgmail]]></title>
<link>http://lazowski.wordpress.com/2008/07/26/problemy-z-gmailem-pod-kchekgmailcheckgmail/</link>
<pubDate>Sat, 26 Jul 2008 16:32:28 +0000</pubDate>
<dc:creator>lazowski</dc:creator>
<guid>http://lazowski.wordpress.com/2008/07/26/problemy-z-gmailem-pod-kchekgmailcheckgmail/</guid>
<description><![CDATA[Od pewnego czasu gchekgmail i checkgmail się obraziły i przestały współpracować z pocztą od google, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Od pewnego czasu gchekgmail i checkgmail się obraziły i przestały współpracować z pocztą od google, chyba paczkujący lub autorzy powyższych programów zaspali z nowymi wersjami. Problem objawia się brakiem możliwości zalogowania w celu sprawdzenia poczty, błąd autoryzacji lub po prostu błąd 401.</p>
<p>W checkgmail&#8217;u żeby rozwiązać ten problem trzeba ściągnąć ten skrypt :</p>
<p><a href="http://checkgmail.svn.sourceforge.net/viewvc/*checkout*/checkgmail/checkgmail">http://checkgmail.svn.sourceforge.net/viewvc/*checkout*/checkgmail/checkgmail</a></p>
<p>dać mu prawa do wykonywania</p>
<p><code>chmod +x checkgmail</code></p>
<p>i skopiować go do /usr/bin</p>
<p><code>sudo cp checkgmail /usr/bin/checkgmail</code></p>
<p><a href="http://img253.imageshack.us/my.php?image=checkgmailqn3.jpg" target="_blank"><img src="http://img253.imageshack.us/img253/364/checkgmailqn3.th.jpg" border="0" alt="Free Image Hosting at www.ImageShack.us" /></a></p>
<p>Najnowsza checkgmail z SVN :<br />
<code>cd /tmp<br />
svn co https://checkgmail.svn.sourceforge.net/svnroot/checkgmail checkgmail<br />
cd checkgmail<br />
sudo cp checkgmail /usr/bin</code></p>
<p>Najnowszy kcheckgmail :<br />
<a href="http://downloads.sourceforge.net/kcheckgmail/kcheckgmail-0.5.7.5.tar.bz2">http://downloads.sourceforge.net/kcheckgmail/kcheckgmail-0.5.7.5.tar.bz2</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CheckGmail, Linux's Blackberry]]></title>
<link>http://seethisnowreadthis.com/2008/05/20/checkgmail-linuxs-blackberry/</link>
<pubDate>Tue, 20 May 2008 23:18:03 +0000</pubDate>
<dc:creator>Paul Weiss</dc:creator>
<guid>http://seethisnowreadthis.com/2008/05/20/checkgmail-linuxs-blackberry/</guid>
<description><![CDATA[CheckGmail is the Blackberry of the Linux world that relatively is still unknown to most Linux users]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://checkgmail.sourceforge.net/" target="_blank">CheckGmail</a> is the Blackberry of the Linux world that relatively is still unknown to most Linux users. Basically, CheckGmail is a  task bar Gmail notifier primarily developed by Owen Marshall that makes checking email a task that doesn&#8217;t even require for you to actually check your mail most of the time. A click within CheckGmail is all that is needed. If for some reason you are wondering, CheckGmail works with the best and biggest email service &#8211; Gmail. The great thing about Gmail is that it works with any POP3 server, allowing you to consolidate your email accounts. You can even check your email on Gmail hosted domains and run multiple instances of CheckGmail if you have multiple Gmail accounts. Once you learn about this great application you will have another reason to switch to Linux. If you are already are on the Linux platform, you will probably install it after reading this review.</p>
<p style="text-align:center;"><a href="http://seethisnowreadthis.files.wordpress.com/2008/05/notification.png"><img class="alignnone size-full wp-image-75" src="http://seethisnowreadthis.wordpress.com/files/2008/05/notification.png" alt="" width="343" height="157" /></a></p>
<p style="text-align:center;"><!--more--></p>
<p>The Windows based Gmail notifier created by Google only notifies you of the fact that you have new incoming email. CheckGmail on the other hand provides you with email notification, the first few characters of the email and an unprecedented message management system. This message management functionality is what makes CheckGmail a must for me. Instead of opening your mailbox to find Viagra spam, you only have to read the first line of the email in your CheckGmail notification pop-up to see if it is indeed spam and then upon confirmation you simply have to click on Report spam. If you get an email from a site that automatically sends you emails that you do not want to be bothered with, you can click on Delete, mark the email as read or archive the email. Having a conversation with someone? Click on the message title to display the full message within CheckGmail&#8217;s pop-up, or click open to display the message in your browser. To view messages within CheckGmail requires for you to install a few dependencies described later on in this review. If you have multiple messages, the notification pop-up box will increase in size to accommodate for the extra messages leaving you with the same message option choices for each email. If you want to access you actual Gmail account, you can at any time by clicking on the on the CheckGmail envelope in the task bar. Right-clicking on the CheckGmail envelope will bring up a menu that let&#8217;s you check your email before the preset interval, undo your last CheckGmail action, compose new email, set-up your preferences, restart CheckGmail and of course quit.</p>
<p style="text-align:center;"><a href="http://seethisnowreadthis.files.wordpress.com/2008/05/screenshot-edit-startup-program.png"><img class="alignnone size-full wp-image-77 aligncenter" src="http://seethisnowreadthis.wordpress.com/files/2008/05/screenshot-edit-startup-program.png" alt="" width="408" height="193" /></a></p>
<p>Installing CheckGmail is relatively easy, here I will use a Ubuntu install as an example. Depending on what Linux distribution you are using, the following may not apply. In this case different install options are available in the <a href="http://checkgmail.sourceforge.net/#download" target="_blank">Download</a> section in CheckGmail&#8217;s website. For this example I will be using a Debian package that Sandro Tosi maintains which is used by Ubuntu and all other Debian based Linux distributions:</p>
<p style="padding-left:30px;"><strong>A)</strong> To begin, download CheckGmail Debian package from here:<br />
<span style="color:#0000ff;"><a href="http://packages.debian.org/unstable/mail/checkgmail" target="_blank">http://packages.debian.org/unstable/mail/checkgmail</a></span><br />
Scroll down to the bottom of the page, and click on all in the bottom to download Checkgmail.</p>
<p style="padding-left:30px;"><strong>B)</strong> Double-click on the file that you have just downloaded. Ubuntu will now inform you that there is already an older version of CheckGmail in their repositories, install the new one you downloaded (1.13 at the time of me writing this) anyways.</p>
<p style="padding-left:30px;"><strong>C)</strong> Once you have completed the installation go into the main menu, then System, then Preferences and then Sessions. Once you have the Sessions window open, click on Add, in the Name field write CheckGmail, in the Command field write checkgmail using small caps, click on OK, click on Close and then reboot.</p>
<p style="padding-left:30px;"><strong>D)</strong> Once you have rebooted you will be asked for your username and password, signifying a successful installation. You are finished.</p>
<p>These are all the steps that an average user requires to take to install CheckGmail.</p>
<p style="text-align:center;"><a href="http://seethisnowreadthis.wordpress.com/files/2008/05/popup.png"><img class="alignnone size-full wp-image-78 aligncenter" src="http://seethisnowreadthis.wordpress.com/files/2008/05/popup.png" alt="" width="416" height="394" /></a></p>
<p>If you are an intermediate Linux user or better, you can take the following steps to enable the viewing of your messages within the CheckGmail notification window and password encryption.</p>
<p style="padding-left:30px;"><span style="color:#0000ff;"><span style="color:#000000;"><strong>A)</strong> You first have to install libsexy and Gtk2-sexy by typing the following in Terminal:</span><br />
</span><span style="color:#0000ff;">sudo apt-get install libsexymm2<span style="color:#000000;"><br />
</span></span></p>
<p style="padding-left:30px;"><span style="color:#0000ff;"><span style="color:#000000;"><strong>B)</strong> Now install the dependency that is required for the encryption of your password by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo apt-get install libcrypt-simple-perl</span></span></span></p>
<p style="padding-left:30px;"><span style="color:#0000ff;"><span style="color:#000000;"><span style="color:#0000ff;"><span style="color:#000000;"><strong>C)</strong> Reboot for the changes to take into effect.</span></span></span></span></p>
<p>Once your have rebooted, CheckGmail will now ask you for your password again so that it can encrypt it using the new files we have just installed. After completing these steps, you have enabled the full functionality of CheckGmail.</p>
<p style="text-align:center;"><a href="http://seethisnowreadthis.files.wordpress.com/2008/05/screenshot-checkgmail_preferences.png"><img class="alignnone size-full wp-image-76 aligncenter" src="http://seethisnowreadthis.wordpress.com/files/2008/05/screenshot-checkgmail_preferences.png" alt="" width="510" height="512" /></a></p>
<p>CheckGmail is surprisingly user intuitive for a Linux application that is not mainstream yet, and configuring it is a snap. Once you open your Preferences window you will have 5 panes displayed. The first pane in the top left allows you to change your username and password, the second pane below allows you to change the default language, the third pane below pane below it allows you to manage external commands which further enhance CheckGmail&#8217;s functionality, the fourth pane in the top right allows you to check the interval at which your email is checked and the fifth pain below it allows you to manage your system tray icon. The external commands that can be run in conjunction with CheckGmail  allow you to use the email LED that is built-in to your computer, play a sound when new email arrives, and have your Num Lock LED flash upon new email arrival; instructions on how to perform these functions can be found in CheckGmail&#8217;s <a href="http://checkgmail.sourceforge.net/#faq" target="_blank">FAQ</a>. For those of you who have multiple Labels in Gmail, notification of these emails can now be displayed at your desired notification interval even if you have your filter is set to bypass your inbox. In addition, in the fifth pane you can replace the notification icons in the system tray with any image that you would like, you will be able to set the display interval of your notification pop-up and set the background image of the  tray icon.</p>
<p>If you are not impressed with CheckGmail&#8217;s functionality by now, put down the keyboard, give-up on email and head down to your local post office. CheckGmail is a testament to the open source community that displays its&#8217; power and innovation that large corporations cannot always accomplish and most dream of. You will see that living without CheckGmail can be a frustrating experience thanks to the constant launching of your browser and the associated lag. That doesn&#8217;t sound too bad, but if you try CheckGmail you will see how indispensable and convenient it really is. Am I exaggerating? What other email notifier is as configurable, allows you to run multiple instances of itself, allows you to check email on Gmail hosted domains and provides you with CheckGmail&#8217;s message management all in one package?<br />
<iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Flinux_unix%2FCheckGmail_Linux_s_Blackberry' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:center;"><a href="http://www.facebook.com/sharer.php?u=http://seethisnowreadthis.com/2008/05/20/checkgmail-linuxs-blackberry/" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb101m05.png" alt="Add to Facebook" /></a><a href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;h=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb102m05.png" alt="Add to Newsvine" /></a><a href="http://del.icio.us/post?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;title=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb104m05.png" alt="Add to Del.icio.us" /></a><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;title=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb105m05.png" alt="Add to Stumbleupon" /></a><a href="http://reddit.com/submit?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;title=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb106m05.png" alt="Add to Reddit" /></a><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Description=&#38;Url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;Title=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb107m05.png" alt="Add to Blinklist" /></a><a href="http://ma.gnolia.com/bookmarklet/add?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;title=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb108m05.png" alt="Add to Ma.gnolia" /></a><a href="http://www.technorati.com/faves?add=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb109m05.png" alt="Add to Technorati" /></a><a href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F20%2Fcheckgmail-linuxs-blackberry%2F&#38;t=CheckGmail%2C%20Linux’s%20Blackberry" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb110m05.png" alt="Add to Furl" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How To Install Ubuntu 8.04 Hardy Heron On The Asus M50Sv-A1]]></title>
<link>http://seethisnowreadthis.com/2008/05/19/how-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1/</link>
<pubDate>Mon, 19 May 2008 23:17:21 +0000</pubDate>
<dc:creator>Paul Weiss</dc:creator>
<guid>http://seethisnowreadthis.com/2008/05/19/how-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1/</guid>
<description><![CDATA[Almost all of the hardware on the Asus M50Sv-A1 works out of the box after Ubuntu&#8217;s installati]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Almost all of the hardware on the Asus M50Sv-A1 works out of the box after <a href="http://www.ubuntu.com/" target="_blank">Ubuntu&#8217;s</a> installation is complete. There are none the less a few tweaks that are needed to be performed and few drivers that are needed to be installed. The screens brightness can&#8217;t be increased, the Nvidia driver is not installed, the webcam driver is not installed, the fingerprint reader driver is not installed, the email LED is non-functional, the microphone is not enabled by default, the hard drive has a firmware glitch, and the speakers don&#8217;t mute when the headphones are plugged in. This short installation tutorial is intended to save you the time and grief associated with searching for each particular solution on the internet.</p>
<p><!--more--></p>
<p><strong>1. Screen Brightness</strong></p>
<p>The ambient light sensor is the cause of the dim screen, we&#8217;ll have to turn it off. To fix this we will have to create a shell script that will be run on boot up that will turn of the ambient light sensor.</p>
<p style="padding-left:30px;"><strong>A)</strong> Open Terminal (Menu-&#62;Accessories), and type the following:<br />
<span style="color:#0000ff;">sudo nano brightness</span></p>
<p style="padding-left:30px;"><strong>B)</strong> Now paste the following in the Terminal window:<br />
<span style="color:#0000ff;">#!/bin/sh<br />
echo 0 &#62; /sys/devices/platform/asus-laptop/ls_switch</span>
</p>
<p style="padding-left:30px;"><strong>C)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>D) </strong>Now we will copy our new shell script to the appropriate directory, make it executable and add the following links by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo mv brightness /etc/init.d</span><br />
and then<br />
<span style="color:#0000ff;">sudo chmod 755 /etc/init.d/brightness</span><br />
and then<br />
<span style="color:#0000ff;">sudo update-rc.d brightness defaults 90</span>
</p>
<p style="padding-left:30px;"><strong>E)</strong> Reboot, and you will have regained control of your brightness level.</p>
<p><strong>2. Nvidia Driver</strong></p>
<p>Your screen resolution will be limited to 800&#215;600 without the appropriate drivers. Thanks to Alberto Milone&#8217;s <a href="http://www.albertomilone.com/nvidia_scripts1.html" target="_blank">Envy</a> the whole process is automated for you, with the only requirement being an internet connection.</p>
<p style="padding-left:30px;"><strong>A)</strong> First we&#8217;ll need to update Ubuntu&#8217;s repositories by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo apt-get update</span></p>
<p style="padding-left:30px;"><strong>B)</strong> Now we&#8217;ll need to install Envy by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo apt-get install envyng-gtk</span></p>
<p style="padding-left:30px;"><strong>C)</strong> Next we&#8217;ll need to execute Envy by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo envyng -g</span>
</p>
<p style="padding-left:30px;"><strong>D)</strong> Select <em>Nvidia</em> on the left side, now click on <em>Install the Nvidia driver (Manual Selection of the Driver)</em>, select 169.12, and finally click<em> Apply</em>.</p>
<p style="padding-left:30px;"><strong>E)</strong> Once the installation is completed, reboot and you will once again have a crisp screen.</p>
<p><strong>3. Webcam Driver</strong></p>
<p>The webcam if attempted to be used will crash any application that is trying to access it by default. Thanks to the great tutorial by <a href="http://www.linlap.com/wiki/Setting+up+your+webcam+under+Ubuntu+7.10" target="_blank">Bill Giannikos</a> the process of installing your Asus uvc webcam driver is relatively easy.</p>
<p style="padding-left:30px;"><strong>A)</strong> First we&#8217;ll need to install the files needed to build the driver by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo apt-get install build-essential subversion linux-headers-`uname -r`</span></p>
<p style="padding-left:30px;"><strong>B) </strong>Now we will build the driver by typing the following commands in Terminal:<br />
<span style="color:#0000ff;">cd /usr/src</span><br />
and then<br />
<span style="color:#0000ff;">sudo svn checkout svn://svn.berlios.de/linux-uvc/linux-uvc/trunk</span><br />
and then<br />
<span style="color:#0000ff;">cd trunk</span><br />
and then<br />
<span style="color:#0000ff;">sudo make</span><br />
and then<span style="color:#0000ff;"><br />
sudo cp -a uvcvideo.ko /lib/modules/`uname -r`/ubuntu/media/usbvideo/</span>
</p>
<p style="padding-left:30px;"><strong>C)</strong> Reboot, and your webcam will now be working.</p>
<p><strong>4. Fingerprint Reader Driver</strong></p>
<p>The fingerprint reader is especially useful in Linux as you are asked for your password before completing any change within the operating system. None the less, I would still not recommend for you to install the fingerprint reader driver due to its&#8217; unstable nature and poor quality. The guide provided by <a href="http://www.krizka.net/2008/03/28/how-to-setup-fprint-for-fingerprint-authentication-on-ubuntu/" target="_blank">Karol Krizka</a> solved the problem of installing this driver.</p>
<p style="padding-left:30px;"><strong>A)</strong> First we&#8217;ll need to add the driver source to our software repository by typing the following in Terminal to open the sources list:<br />
<span style="color:#0000ff;">sudo nano /etc/apt/sources.list</span></p>
<p style="padding-left:30px;"><strong>B)</strong> Now scroll to the end of the file and paste the following line there:<br />
<span style="color:#0000ff;">deb http://ppa.launchpad.net/madman2k/ubuntu hardy main restricted universe multiverse</span>
</p>
<p style="padding-left:30px;"><strong>C)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>D)</strong> Update the source list by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo aptitude update</span></p>
<p style="padding-left:30px;"><strong>E)</strong> Install the fingerprint reader driver by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo aptitude install fprint-demo libpam-fprint libfprint</span></p>
<p style="padding-left:30px;"><strong>F)</strong> Enroll your fingerprint by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo fprint_demo</span>
</p>
<p style="padding-left:30px;"><strong>G)</strong> Click on<em> Enroll</em> and swipe your finger.</p>
<p style="padding-left:30px;"><strong>H)</strong> Now we will have to tell Ubuntu when to use your fingerprint by editing the fingerprint reader driver&#8217;s configuration file by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo nano /etc/pam.d/common-auth<br />
</span></p>
<p style="padding-left:30px;"><strong>I) </strong>Paste the following in the file at the end:<br />
<span style="color:#0000ff;">auth sufficient pam_fprint.so<br />
auth required pam_unix.so nullok_secure</span>
</p>
<p style="padding-left:30px;"><strong>J)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>H)</strong> Reboot, and you will be now scanning your finger instead of typing your password each time.</p>
<p><strong>5. Email LED</strong></p>
<p>Having a LED notifying you of incoming emails is quite handy, especially if you are not constantly by your computer. In this step I will provide you with instructions, showing you how to enable the email LED to work with the best Gmail notifier available &#8211; <a href="http://checkgmail.sourceforge.net/" target="_blank">CheckGmail</a>, a function that even Windows cannot even provide.</p>
<p style="padding-left:30px;"><strong>A)</strong> Follow the instructions provided by me in this tutorial to install CheckGmail:<br />
<span style="color:#0000ff;"><a href="http://seethisnowreadthis.com/2008/05/20/checkgmail-linuxs-blackberry/" target="_blank">http://seethisnowreadthis.com/2008/05/20/checkgmail-linuxs-blackberry/</a></span></p>
<p style="padding-left:30px;"><strong>B)</strong> Open the CheckGmail preferences and paste the following in the <em>Command to execute on new mail</em> field:<br />
<span style="color:#0000ff;">echo 1 &#62; /sys/class/leds/asus:mail/brightness</span></p>
<p style="padding-left:30px;"><strong>C)</strong> Now paste the following in the <em>Command to execute for no mail</em> field:<br />
<span style="color:#0000ff;">echo 0 &#62; /sys/class/leds/asus:mail/brightness</span></p>
<p style="padding-left:30px;"><strong>D)</strong> Without giving the right permissions CheckGmail will not be able to turn on the LED. To do this we must type the following in Terminal:<br />
<span style="color:#0000ff;">gksudo nautilus</span></p>
<p style="padding-left:30px;"><strong>E)</strong> Navigate to the following folder by pasting the following in <em>Location</em> field in the newly open File Browser:<br />
<span style="color:#0000ff;">/sys/class/leds/asus:mail<br />
<span style="color:#000000;">Press<em> Enter.</em></span></span>
</p>
<p style="padding-left:30px;"><strong>F)</strong> Right-click on the file<em> brightness</em>, and select <em>Properties.</em></p>
<p style="padding-left:30px;"><strong>G) </strong>Select the <em>Permissions</em> tab.</p>
<p style="padding-left:30px;"><strong>H)</strong> Click on <em>root</em> in the drop-down menu besides <em>Owner</em> and select yourself.</p>
<p style="padding-left:30px;"><strong>I)</strong> Without rebooting you should have now have the email LED notifying you of incoming email.</p>
<p><strong>6. Microphone</strong></p>
<p>By default the microphone is not enabled in enabled in the Volume Control menu. This problem will require the least effort.</p>
<p style="padding-left:30px;"><strong>A)</strong> Righ-click on the speaker in the task bar and select <em>Open Volume Control</em>.</p>
<p style="padding-left:30px;"><strong>B)</strong> Select <em>Edit</em> from the menu, and then select <em>Preferences</em>.</p>
<p style="padding-left:30px;"><strong>C)</strong> Click on the boxes besides <em>Capture</em> and <em>Capture 1</em>.</p>
<p style="padding-left:30px;"><strong>D)</strong> Now your microphone should be working.</p>
<p><strong>7. Hard drive</strong></p>
<p>The Seagate Momentus 5400.4 250 Gb hard drive has a firmware bug that makes Ubuntu park it every minute or so; the same problem exists in Vista. This parking is considered a load cycle, of which your hard drive was designed to complete 600,000 of such cycles. Without this fix your hard drive can prematurely fail after only 8 months. Thanks to jakon on <a href="http://ubuntuforums.org/showpost.php?p=4897802&#38;postcount=842" target="_blank">ubuntuforums.org</a>, we now have a fix that fully works with the Asus M50Sv-A1.</p>
<p style="padding-left:30px;"><strong>A)</strong> First we&#8217;ll have to adjust the hard drive&#8217;s power management settings by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo nano /etc/hdparm.conf</span></p>
<p style="padding-left:30px;"><strong>B)</strong> And by pasting the following three lines in the file:<br />
<span style="color:#0000ff;">/dev/sda {<br />
apm = 254<br />
}</span>
</p>
<p style="padding-left:30px;"><strong>C)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>D) </strong>Next we&#8217;ll have to tell the notebook to reactivate these settings after resuming from suspend mode by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo nano 30hdparm</span></p>
<p style="padding-left:30px;"><strong>E)</strong> And by pasting the following lines inside the file:<br />
<span style="color:#0000ff;">#!/bin/bash</span></p>
<p style="padding-left:30px;"><span style="color:#0000ff;"># Run hdparm like on boot to restore hdparm.conf settings -<br />
# hds lose them when going to standby.</span></p>
<p style="padding-left:30px;"><span style="color:#0000ff;">resume_hdparm()<br />
{<br />
for x in /sys/bus/ide/devices/*/block* /sys/bus/scsi/devices/*/block*<br />
do<br />
# This check is required &#8211; x can contain<br />
# literal &#8216;/sys/bus/ide/devices/*/block*&#8217;<br />
# when the glob did not match anything.<br />
if [ -e $x ]<br />
then<br />
drive=$(basename $(readlink $x))<br />
DEVNAME=/dev/$drive /lib/udev/hdparm<br />
fi<br />
done<br />
}</span></p>
<p style="padding-left:30px;"><span style="color:#0000ff;">case &#8220;$1&#8243; in<br />
thaw&#124;resume)<br />
resume_hdparm<br />
;;<br />
*)<br />
;;<br />
esac</span>
</p>
<p style="padding-left:30px;"><span style="color:#0000ff;">exit $?</span></p>
<p style="padding-left:30px;"><strong>F)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>G)</strong> Finally we&#8217;ll have to install the file we just created by typing the following in Terminal:<br />
<span style="color:#0000ff;">sudo install 30hdparm /etc/pm/sleep.d/</span>
</p>
<p style="padding-left:30px;"><strong>H)</strong> Reboot and your hard drive should be working with Ubuntu as it should have from the start.</p>
<p><strong>8. Speakers</strong></p>
<p>With the thousands of different notebook sound configurations that are out there, it is no surprise to have yet another ALSA bug. Thanks to <a href="http://www.stud.fit.vutbr.cz/~xzemek02/" target="_blank">Petr Zemek</a> (s3rvac), we now have the correct ALSA option switch that will cause the speakers to mute when the headphones are plugged in. Surprisingly after trying all the generic options, the same option that works for a Haier notebook works with the Asus M50.</p>
<p style="padding-left:30px;"><strong>A)</strong> First we&#8217;ll have to edit the ALSA configuration file via terminal:<br />
<span style="color:#0000ff;">sudo nano /etc/modprobe.d/alsa-base</span></p>
<p style="padding-left:30px;"><strong>B)</strong> Scroll down to the bottom and add this line:<br />
<span style="color:#0000ff;">options snd-hda-intel model=haier-w66</span>
</p>
<p style="padding-left:30px;"><strong>C)</strong> Hit <em>Ctrl-O</em> to save and then <em>Ctrl-X</em> to exit.</p>
<p style="padding-left:30px;"><strong>D)</strong> Reboot and your speakers will now automatically mute when you plug your headphones in.</p>
<p>This guide will now allow you to use your Asus M50Sv-A1 with the most secure and progressive operating system at the moment that thrives on the open source community which provides for a much more dynamic experience than anything else out there now. Due to the fact that the notebook is relatively new, not all of its&#8217; features could be fully exploited. Really, only some non-essential hotkeys cannot be used, but these are features that most of us are willing to trade for the privilidge of being on the Linux platform. If you find any other tweaks that could enhance Ubuntu on the Asus M50Sv-A1, please post below.<br />
<iframe src='http://digg.com/api/diggthis.php?u=http%3A%2F%2Fdigg.com%2Flinux_unix%2FHow_To_Install_Ubuntu_8_04_Hardy_Heron_On_The_Asus_M50Sv_A1' height='82' width='55' frameborder='0' scrolling='no' style='float: right; margin-left: 10px; margin-bottom: 5px; padding: 4px 0 2px 4px; background: #fff;'></iframe></p>
<p style="text-align:center;"><a href="http://www.facebook.com/sharer.php?u=http://seethisnowreadthis.com/2008/05/19/how-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1/" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb101m05.png" alt="Add to Facebook" /></a><a href="http://www.newsvine.com/_wine/save?u=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;h=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb102m05.png" alt="Add to Newsvine" /></a><a href="http://del.icio.us/post?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;title=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb104m05.png" alt="Add to Del.icio.us" /></a><a href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;title=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb105m05.png" alt="Add to Stumbleupon" /></a><a href="http://reddit.com/submit?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;title=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb106m05.png" alt="Add to Reddit" /></a><a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&#38;Description=&#38;Url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;Title=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb107m05.png" alt="Add to Blinklist" /></a><a href="http://ma.gnolia.com/bookmarklet/add?url=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;title=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb108m05.png" alt="Add to Ma.gnolia" /></a><a href="http://www.technorati.com/faves?add=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb109m05.png" alt="Add to Technorati" /></a><a href="http://www.furl.net/storeIt.jsp?u=http%3A%2F%2Fseethisnowreadthis.com%2F2008%2F05%2F19%2Fhow-to-install-ubuntu-804-hardy-heron-on-the-asus-m50sv-a1%2F&#38;t=How%20To%20Install%20Ubuntu%208.04%20Hardy%20Heron%20On%20The%20Asus%20M50Sv-A1" target="_blank"><img src="http://getsocialserver.wordpress.com/files/2008/05/gsb110m05.png" alt="Add to Furl" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CheckGmail ile google maillerinizi panelden takip edin]]></title>
<link>http://xaphtrick.wordpress.com/2008/05/05/checkgmail-ile-google-maillerinizi-panelden-takip-edin/</link>
<pubDate>Mon, 05 May 2008 19:40:46 +0000</pubDate>
<dc:creator>xaph</dc:creator>
<guid>http://xaphtrick.wordpress.com/2008/05/05/checkgmail-ile-google-maillerinizi-panelden-takip-edin/</guid>
<description><![CDATA[Gmail hesabınızı kontrol etmek için her seferinde browser&#8217;inizi açıp mail adresinize girmekten]]></description>
<content:encoded><![CDATA[Gmail hesabınızı kontrol etmek için her seferinde browser&#8217;inizi açıp mail adresinize girmekten]]></content:encoded>
</item>
<item>
<title><![CDATA[CheckGmail 1.13 (Debian etch)]]></title>
<link>http://carlosribeiro.wordpress.com/2008/01/30/checkgmail-113-debian-etch/</link>
<pubDate>Wed, 30 Jan 2008 03:57:47 +0000</pubDate>
<dc:creator>carloS Ribeiro</dc:creator>
<guid>http://carlosribeiro.wordpress.com/2008/01/30/checkgmail-113-debian-etch/</guid>
<description><![CDATA[Como no Linux ainda não existe um programa oficial do Google para acesso a rede gtalk e de quebra no]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://carlosribeiro.wordpress.com/files/2008/01/checkgmail.png" alt="checkgmail.png" /></p>
<p style="text-align:justify;">Como no Linux ainda não existe um programa oficial do Google para acesso a rede gtalk e de quebra notificar novos emails, o jeito é buscar opções&#8230; Já usamos o Pidgin para acessar a rede de bate-papo, agora falta apenas um &#8220;notificador de emails&#8221;</p>
<p>Sem dúvidas, CheckGmail é a melhor opção existente.</p>
<p><img src="http://carlosribeiro.wordpress.com/files/2008/01/checkgmail1.png" alt="checkgmail1.png" /></p>
<p><strong>Para instalar, basta usar o <em>apt-get</em></strong><br />
<code># apt-get install checkgmail</code></p>
<p style="text-align:justify;">Como a versão presente no repositório do <em>Debian etch</em> é <strong>1.10</strong>, vamos baixar a última versão no site e substituir pela versão mais recente, já que todas as dependências foram resolvidas e devidamente instaladas!</p>
<p>Uma novidade na 1.13  é a opção de atualição com &#8220;checkgmail -update&#8221;</p>
<p><strong>Baixando o arquivo:</strong><br />
<code># wget http://checkgmail.svn.sourceforge.net/viewvc/*checkout*/checkgmail/checkgmail</code></p>
<p><strong>Movendo o arquivo:</strong><br />
<code># mv checkgmail /usr/bin/</code></p>
<p><strong>Permissões de execução:</strong><br />
<code># chmod +x /usr/bin/checkgmail</code></p>
<p style="text-align:justify;">Para o CheckGmail iniciar com o sistema, basta ir em <strong>Desktop, Preferências, Sessões, Programas Iniciais</strong> e  adicionar o comando &#8220;checkgmail&#8221;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Réparer CheckGmail]]></title>
<link>http://minedekobalt.wordpress.com/2007/12/30/reparer-checkgmail/</link>
<pubDate>Sun, 30 Dec 2007 12:53:36 +0000</pubDate>
<dc:creator>Kobalt</dc:creator>
<guid>http://minedekobalt.wordpress.com/2007/12/30/reparer-checkgmail/</guid>
<description><![CDATA[Depuis la mi-décembre le notificateur de mail pour Gmail, CheckGmail, ne fonctionne plus en l&#8217;]]></description>
<content:encoded><![CDATA[Depuis la mi-décembre le notificateur de mail pour Gmail, CheckGmail, ne fonctionne plus en l&#8217;]]></content:encoded>
</item>
<item>
<title><![CDATA[Problema de logeo de Checkgmail]]></title>
<link>http://tuxinga.wordpress.com/2007/12/17/problema-de-logeo-de-checkgmail/</link>
<pubDate>Mon, 17 Dec 2007 16:41:49 +0000</pubDate>
<dc:creator>gmarcos87</dc:creator>
<guid>http://tuxinga.wordpress.com/2007/12/17/problema-de-logeo-de-checkgmail/</guid>
<description><![CDATA[Estos días checkgmail me tiraba error al intentar conectarse con Gmail (401 Unauthorised). Hoy revis]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img src="http://tuxinga.wordpress.com/files/2007/12/sad-gmail.gif" alt="sad-gmail.gif" /></p>
<p>Estos días checkgmail me tiraba error al intentar conectarse con Gmail (401 Unauthorised). Hoy revisando Liferea encontré la solución en<a href="http://mundogeek.net/archivos/2007/12/15/checkgmail-error-incorrect-username-or-password/"> Mundo Geek</a> en donde nos informan que Gmail cambio el sistema de logeo. Lo unico que hay que hacer es remplazar el binario por el de los respositorios SVN.</p>
<p><em>wget http://checkgmail.svn.sourceforge.net/viewvc/*checkout*/checkgmail/checkgmail<br />
sudo mv checkgmail /usr/bin/<br />
sudo chmod +x /usr/bin/checkgmail</em></p>
<p>Listo ya tengo Checkgmail funcionando nuevamente.</p>
<p>Si no l o tienes instalado se ecuentra disponible en los repositorios de Ubuntu:</p>
<blockquote><p><strong>sudo apt-get install checkgmail</strong></p></blockquote>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Checkgmail error 401]]></title>
<link>http://morriganthoughts.wordpress.com/2007/12/13/checkgmail-error-401/</link>
<pubDate>Thu, 13 Dec 2007 19:03:14 +0000</pubDate>
<dc:creator>Lucila</dc:creator>
<guid>http://morriganthoughts.wordpress.com/2007/12/13/checkgmail-error-401/</guid>
<description><![CDATA[No se si alguno de ustedes utiliza el Checkgmail. A mi desde ayer no me andaba, constantemente tirab]]></description>
<content:encoded><![CDATA[No se si alguno de ustedes utiliza el Checkgmail. A mi desde ayer no me andaba, constantemente tirab]]></content:encoded>
</item>
<item>
<title><![CDATA[Checkgmail]]></title>
<link>http://marwal.wordpress.com/2007/11/11/checkgmail/</link>
<pubDate>Sun, 11 Nov 2007 17:22:00 +0000</pubDate>
<dc:creator>Walter</dc:creator>
<guid>http://marwal.wordpress.com/2007/11/11/checkgmail/</guid>
<description><![CDATA[Checkgmail es un notificador de correo gmail para gnu/linux, yo lo instalaba usando Automatix pero a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img src="http://marwal.wordpress.com/files/2007/11/checkgmail.jpg" alt="checkgmail.jpg" /></p>
<p><a href="http://checkgmail.sourceforge.net/index-es.html" target="_blank">Checkgmail</a> es un notificador de correo <a href="http://www.gmail.com/">gmail</a> para gnu/linux, yo lo instalaba usando <a href="http://www.getautomatix.com/" target="_blank">Automatix</a> pero ayer leyendo <a href="http://alaingonza.com/2007/11/09/checkgmail-el-notificador-de-gmail-para-linux/" target="_blank">el blog de Alaingonza</a> me entere que en <a href="http://www.ubuntu.com/">Ubuntu</a> 7.10 el <a href="http://www.getfirefox.com/">Firefox</a> tiene una función llamada AptUrl. Asi que <a href="http://checkgmail.sourceforge.net/index-es.html" target="_blank">Checkgmail</a> se puede instalar escribiendo:</p>
<p><code>apt://checkgmail</code></p>
<p>Aprovecho para explicar como hacer que <a href="http://checkgmail.sourceforge.net/index-es.html" target="_blank">Checkgmail</a> reproduzca un sonido cuando llegan nuevos mensajes:<br />
Hay que ir a &#8220;Configurar&#8221; y en &#8220;Comando a ejecutar para nuevos mensajes&#8221; escribir &#8220;aplay&#8221; y la ruta de un archivo de sonido wav:</p>
<p><code>aplay /home/walter/sonido.wav</code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CheckGmail]]></title>
<link>http://infographworld.wordpress.com/2007/07/12/checkgmail/</link>
<pubDate>Thu, 12 Jul 2007 07:28:50 +0000</pubDate>
<dc:creator>Niobé</dc:creator>
<guid>http://infographworld.wordpress.com/2007/07/12/checkgmail/</guid>
<description><![CDATA[Oyé Oyé ! Avis aux utilisateurs des boîtes Gmail et bien sûr aux utilisateurs de la distribution Ubu]]></description>
<content:encoded><![CDATA[Oyé Oyé ! Avis aux utilisateurs des boîtes Gmail et bien sûr aux utilisateurs de la distribution Ubu]]></content:encoded>
</item>

</channel>
</rss>
