<?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>Il blog di Gas &#187; gentoo</title>
	<atom:link href="http://www.lucagasperini.com/blog/tag/gentoo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucagasperini.com/blog</link>
	<description>Solo un altro sito WordPress</description>
	<lastBuildDate>Fri, 04 Nov 2011 15:04:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Move files with zenity progress bar</title>
		<link>http://www.lucagasperini.com/blog/2011-move-files-with-zenity-progress-bar/</link>
		<comments>http://www.lucagasperini.com/blog/2011-move-files-with-zenity-progress-bar/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 14:52:09 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=799</guid>
		<description><![CDATA[I&#8217;m playing with a script that moves files between two directories and does that by piping two tar commands, so called Fast Copy. You need zenity to see the progress bar, it is a work in progress as there are some bugs, eg when you click &#8220;cancel&#8221; the two tar child processes are not killed [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m playing with a script that moves files between two directories and does that by piping two tar commands, so called <a href="http://en.gentoo-wiki.com/wiki/Fast_Copy">Fast Copy</a>.</p>
<p>You need zenity to see the progress bar, it is a work in progress as there are some bugs, eg when you click &#8220;cancel&#8221; the two tar child processes are not killed for some reason, I couldn&#8217;t get the correct exit code that probably gets lost somewhere.</p>
<p>Probably in the future I&#8217;ll write a better notification.Suggestions and modifications are wellcome.</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
<iframe src="http://pastebin.com/embed_iframe.php?i=AehWbP5c" style="border:none;width:100%"></iframe><br />
&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2011-move-files-with-zenity-progress-bar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gnome places double entries</title>
		<link>http://www.lucagasperini.com/blog/2010-gnome-places-double-entries/</link>
		<comments>http://www.lucagasperini.com/blog/2010-gnome-places-double-entries/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 18:42:17 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=724</guid>
		<description><![CDATA[As a gentoo user I&#8217;ve been stuck with gnome 2.26 for ages and when I emerged gnome 2.28 I found out that two out of three nfs shares had double entries in the gnome places menu. It seems that there is some sort of problem with gvfs, some users have reported double entries in gnome [...]]]></description>
			<content:encoded><![CDATA[<p>As a gentoo user I&#8217;ve been stuck with gnome 2.26 for ages and when I emerged gnome 2.28 I found out that two out of three nfs shares had double entries in the gnome places menu. It seems that there is some sort of problem with gvfs, some users have reported double entries in gnome places for local mounts and for remote shares.<br />
I could solve the problem (now, end life of gnome 2.30) by mounting my shares with &#8220;defaults&#8221; as an option. These things make me wonder why I like computers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2010-gnome-places-double-entries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move files in bash with tar and progress bar</title>
		<link>http://www.lucagasperini.com/blog/2010-move-files-in-bash-with-tar-and-progress-bar/</link>
		<comments>http://www.lucagasperini.com/blog/2010-move-files-in-bash-with-tar-and-progress-bar/#comments</comments>
		<pubDate>Sat, 11 Sep 2010 13:14:57 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=710</guid>
		<description><![CDATA[Example gas@caldaia ~ $ my_move source_dir/ dest_dir/ 43.5GB at 61.0MB/s eta: 59s 91% [=========== ] You need to install &#8220;command line progress bar&#8221;, in gentoo it can be installed with emerge bar in ubuntu the deb can be grabbed here and installed with gdebi. my_move: #! /bin/sh SOURCE="$1" DEST="$2" SIZE=$(du -sb "$SOURCE"&#124;awk '{print $1}') (cd [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Example</strong><br />
<code>gas@caldaia ~ $ my_move source_dir/ dest_dir/<br />
  43.5GB at   61.0MB/s  eta:   59s   91% [===========   ]</code></p>
<p>You need to install &#8220;command line progress bar&#8221;, in gentoo it can be installed with <em>emerge bar</em> in ubuntu the deb can be grabbed <a href="http://sourceforge.net/projects/clpbar/">here</a> and installed with gdebi.</p>
<p>my_move:<br />
<code>#! /bin/sh<br />
SOURCE="$1"<br />
DEST="$2"<br />
SIZE=$(du -sb "$SOURCE"|awk '{print $1}')<br />
(cd "$SOURCE" &#038;&#038; tar -cf - *)|bar -s $SIZE| (cd "$DEST" &#038;&#038; tar -xBpf -)<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2010-move-files-in-bash-with-tar-and-progress-bar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>PixieLive</title>
		<link>http://www.lucagasperini.com/blog/2010-pixielive/</link>
		<comments>http://www.lucagasperini.com/blog/2010-pixielive/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 17:04:02 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[torrent]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=685</guid>
		<description><![CDATA[A friend of mine, Christian, has released PixieLive, a slax based live linux distro build with gentoo. It&#8217;s one of the few live distributions that support Intel GMA500, popular on netbooks like some Asus EEEPC. PixieLive]]></description>
			<content:encoded><![CDATA[<p>A friend of mine, Christian, has released PixieLive, a slax based live linux distro build with gentoo.<br />
It&#8217;s one of the few live distributions that support Intel GMA500, popular on netbooks like some Asus EEEPC.</p>
<p><a href="http://pixielive.org/dotclear/index.php?post/2010/08/23/FirstRelease">PixieLive</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2010-pixielive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unmerge Kde in gentoo</title>
		<link>http://www.lucagasperini.com/blog/2010-unmerge-kde-in-gentoo/</link>
		<comments>http://www.lucagasperini.com/blog/2010-unmerge-kde-in-gentoo/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 10:48:11 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=659</guid>
		<description><![CDATA[Update emerge --ask -C `eix -C kde-base --only-names --installed` nano /etc/make.conf and delete kde from the USE flags, remove qt3support and qt4 also if you don&#8217;t need them anymore emerge -uavtqND world" Now you should have just a few kde packages in the list you got as an output of that command, it&#8217;s your choice [...]]]></description>
			<content:encoded><![CDATA[<p>Update</p>
<p><code>emerge --ask -C `eix -C kde-base --only-names --installed`</code></p>
<p><code>nano /etc/make.conf</code></p>
<p>and delete kde from the USE flags, remove qt3support and qt4 also if you don&#8217;t need them anymore</p>
<p><code>emerge -uavtqND world"</code></p>
<p>Now you should have just a few kde packages in the list you got as an output of that command, it&#8217;s your choice to leave them or unmerge them manually, with unmerge -pv &#8211;depclean <atom> you can see what packages pulls in your atom.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2010-unmerge-kde-in-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indirizzo ip dinamico e dyndns opendns</title>
		<link>http://www.lucagasperini.com/blog/2009-indirizzo-ip-dinamico-e-dyndns-opendns/</link>
		<comments>http://www.lucagasperini.com/blog/2009-indirizzo-ip-dinamico-e-dyndns-opendns/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 13:39:30 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[Generale]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[net]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=634</guid>
		<description><![CDATA[Ogni qualvolta ci si collega ad internet viene assegnato un indirizzo ip pubblico al proprio computer/router, in Italia quasi tutte le connessioni adsl private hanno un ip dinamico che camba tutte le volte che ci si riconnette. Può tornare comodo conoscere questo ip per poter raggiungere il proprio computer dall&#8217;esterno ( lavoro, università ) e [...]]]></description>
			<content:encoded><![CDATA[<p>Ogni qualvolta ci si collega ad internet viene assegnato un <a href="http://it.wikipedia.org/wiki/Indirizzo_IP">indirizzo ip</a> pubblico al proprio computer/router, in Italia quasi tutte le connessioni adsl private hanno un ip dinamico che camba tutte le volte che ci si riconnette. Può tornare comodo conoscere questo ip per poter raggiungere il proprio computer dall&#8217;esterno ( lavoro, università ) e per evitare di doverselo scrivere su un &#8220;post it&#8221; tutte le volte che si accende il modem è possibile utilizzare un <a href="http://it.wikipedia.org/wiki/Dynamic_DNS">dns dinamico</a> .</p>
<h3><strong>Razionale</strong></h3>
<ol>
<li>iscriversi ad un servizio di dns dinamico, si potrà scegliere un dominio di terzo livello ( terzolivello.secondolivello.it) a cui associare l&#8217;indirizzo ip del computer.</li>
<li>iscriversi a dnsomatic che provvederà a fornire a tutti i servizi che si usano (come i servizi di dns dinamico ma anche altri come opendns) l&#8217;indirizzo ip del computer</li>
<li>usare un client che al cambio dell&#8217;indirizzo ip avvisa dnsomatic</li>
</ol>
<p><span id="more-634"></span></p>
<p><strong>1) DNS dinamico</strong></p>
<ol>
<li>iscriversi al servizio qui: <a href="https://www.dyndns.com/account/entrance/">https://www.dyndns.com/account/entrance/</a></li>
<li>dopo che arriva la mail confermate</li>
<li>aggiungete un hostname da qui: <a href="https://www.dyndns.com/account/services/hosts/add.html">https://www.dyndns.com/account/services/hosts/add.html</a> , scegliendo in &#8220;hostname&#8221; un nome facile da ricordare nel box di sinistra assieme ad un altro nome utilizzando il menu a discesa di destra, poi click su &#8220;Use your currently detected IP address&#8221; e per ultimo click su &#8220;Add to chart&#8221; e confermate.</li>
</ol>
<p><strong>2) Iscriversi a dnsomatic</strong></p>
<ol>
<li>iscriversi qui <a href="https://www.dnsomatic.com/create/" target="_blank">https://www.dnsomatic.com/create/</a></li>
<li>Add a service, scegliere DynDNS , mettere userid e password di <em><span style="text-decoration: underline;">DynDNS</span></em> e per ultimo inserire il dominio scelto in fase di registrazione (del tipo mionome.servelinux.org)</li>
<li>ora dnsomatic può aggiornare l&#8217;ip di dyndns</li>
</ol>
<p><strong>3) Aggiornare l&#8217;ip con il client</strong></p>
<h5><em>gentoo:</em></h5>
<p><code>emerge ddclient<br />
</code></p>
<h5><em>ubuntu:</em></h5>
<p><code>sudo aptitude install ddclient<br />
</code></p>
<h5><em>entrambi:</em></h5>
<p>Poi si configura mettendo al posto di &#8220;user&#8221; il nome utente e &#8220;pass&#8221; la password scelta su <em><span style="text-decoration: underline;">opendns</span></em> (non dyndns), occhio alle virgole<br />
<code>nano /etc/ddclient/ddclient.conf</code><br />
<code><br />
daemon=600                  # check every 600 seconds<br />
syslog=yes                  # log update msgs to syslog<br />
mail-failure=user@email.com # Mail failed updates to user<br />
use=web, web=myip.dnsomatic.com<br />
server=updates.dnsomatic.com,      \<br />
protocol=dyndns2,                  \<br />
login=user,          \<br />
password=pass        \<br />
all.dnsomatic.com</code></p>
<h5><em>gentoo:</em></h5>
<p><code>rc-config start ddclient<br />
rc-config add ddclient default<br />
</code></p>
<h5><em><strong></strong></em><em>ubuntu:</em></h5>
<p><code>sudo /etc/init.d/ddclient restart</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2009-indirizzo-ip-dinamico-e-dyndns-opendns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Superkaramba and Gentoo</title>
		<link>http://www.lucagasperini.com/blog/2008-superkaramba-and-gentoo/</link>
		<comments>http://www.lucagasperini.com/blog/2008-superkaramba-and-gentoo/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 15:21:17 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Generale]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[graphics]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/?p=593</guid>
		<description><![CDATA[Nowadays it seems that superkaramba works well, in the past it was heavy and buggy and I used to have conky. There are no particular reasons that made me switch to superkaramba , other than moving from Gnome to Kde. My superkaramba monitor is based on the dual cpu monitor by Loacoon, I changed it [...]]]></description>
			<content:encoded><![CDATA[<p>Nowadays it seems that superkaramba works well, in the past it was heavy and buggy and I used to have conky. There are no particular reasons that made me switch to superkaramba , other than moving from Gnome to Kde.</p>
<p>My superkaramba monitor is based on the dual cpu monitor <a href="http://www.kde-look.org/usermanager/search.php?username=Loacoon&#038;action=profile&#038;PHPSESSID=cae">by Loacoon</a>, I changed it a little to show some useful stuff , some of them gentoo specific ( last sync, last emerges, currently emerging&#8230;.. genlop is a dependency).</p>
<p><a href='http://www.lucagasperini.com/blog/wp-content/uploads/2008/06/superkaramba1.jpg'><img src="http://www.lucagasperini.com/blog/wp-content/uploads/2008/06/superkaramba-300x57.jpg" alt="superkaramba" title="superkaramba" width="300" height="57" class="alignnone size-medium wp-image-595" /></a></p>
<p><span id="more-593"></span></p>
<p>Here&#8217;s the code, on my system superkaramba themes are in ~/.kde3.5/share/apps/superkaramba/themes/</p>
<p><a href='http://www.lucagasperini.com/blog/wp-content/uploads/2008/06/chsm_dualcpu.theme'>Superkaramba theme</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2008-superkaramba-and-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia N95 and UPNP</title>
		<link>http://www.lucagasperini.com/blog/2008-nokia-n95-and-upnp/</link>
		<comments>http://www.lucagasperini.com/blog/2008-nokia-n95-and-upnp/#comments</comments>
		<pubDate>Fri, 22 Feb 2008 21:44:48 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[n95]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/2008-nokia-n95-and-upnp/</guid>
		<description><![CDATA[Finally i got it&#8230;.at first it was a mess, some explanations on what does what: Media Server: it serves the content on the network Media Renderer: it renders the content served by a media server So I actually needed both on my gentoo linux. Probably the easiest way to browse content served by upnp servers [...]]]></description>
			<content:encoded><![CDATA[<p>Finally i got it&#8230;.at first it was a mess, some explanations on what does what:</p>
<ul>
<li>Media Server: it serves the content on the network</li>
<li>Media Renderer: it renders the content served by a media server</li>
</ul>
<p>So I actually needed both on my gentoo linux.</p>
<p>Probably the easiest way to browse content served by upnp servers is <a href="http://djmount.sourceforge.net/">djmount</a> , it works as a FUSE file system ( that can be mounted by a normal user) and it looks for all the upnp devices in a network. It works very well even with content provided by Windows Vista (or better from the Media Player that comes with windows vista). You create a directory and simply &#8220;djmount it&#8221;, in that directory there will be other subdirectories , one for each media server you have in your network.</p>
<p>Easy and working but not that cool, I mean&#8230;all this new stuff and , in the end, I still have to browse directories. I&#8217;m not using these new things just because I don&#8217;t want to plug in an usb cable, I&#8217;m not that lazy. So I went searching in various forums another solution.</p>
<p><a href='http://www.lucagasperini.com/blog/wp-content/uploads/2008/02/mediatomb1.jpg' title='Mediatomb'><img src='http://www.lucagasperini.com/blog/wp-content/uploads/2008/02/mediatomb1.jpg' align="left" alt='Mediatomb' /></a>My first choice as media server was <a href="http://ushare.geexbox.org/">ushare</a>, somehow connected to the geexbox project but it had its limitation, one above all that it doesn&#8217;t read tags, so when you copy a music file to another device you must retag it manually. Another problem was the init script that didn&#8217;t work that well and I didn&#8217;t have time/will to fix it. <a href="http://mediatomb.cc/">Mediatomb</a> seems the definitive choice to me, it seems a nice project, it reads metadata and has a built in sqlite backend. (you can use mysql too but i don&#8217;t have the server on my box). Mediatomb has a webserver you can connect to and you can add/delete content to your share and chose how to rescan your library , you can chose inotify on that ( if you are using beagle you should already have inotify in your kernel).</p>
<p>When it goes to the Media Renderer it seems that there is not much choice yet, but there is some and in particular there is gmediarenderer from the GNU guys. GmediaRender , as the names says, it&#8217;s able to render content served from a MediaServer, it needs gstreamer as a backend for all the codecs (it actually uses gstreamer to render the stream ). If you have gmediarender running you can simply go to your nokia N95 media player , chose a song and in options chose &#8220;execute on personal network&#8221; ( or something like that) and your computer (not the phone) will  sound. You can do the same for videos or pictures.</p>
<p><a href='http://www.lucagasperini.com/blog/wp-content/uploads/2008/02/rhythmbox1.jpg' title='Rhythmbox' align="right"><img src='http://www.lucagasperini.com/blog/wp-content/uploads/2008/02/rhythmbox1.jpg' align=right alt='Rhythmbox' /></a>What about <a href="https://coherence.beebits.net/">coherence</a>? I have it installed and the rhythmbox plugins actually works , I can see my N95 and browse its contents but you can&#8217;t (yet) make rhythmbox work as a MediaRenderer. Coherence is supposed to be a full UPNP solution with its server, renderer and controller but the people who develop it are very good in making <a href="http://www.youtube.com/watch?v=N4dY2ByvOsU">Youtube videos</a>  but not that good to explain the world &#8220;how the hell that damn thing works&#8221;.</p>
<p>What is missing? On my nokia I can chose to copy or move stuff to my personal network, I can&#8217;t do it and don&#8217;t know what part of this upnp mess should provide this feature.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2008-nokia-n95-and-upnp/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mldonkey and conky</title>
		<link>http://www.lucagasperini.com/blog/2008-mldonkey-and-conky/</link>
		<comments>http://www.lucagasperini.com/blog/2008-mldonkey-and-conky/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 12:12:31 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[p2p]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/2008-mldonkey-and-conky/</guid>
		<description><![CDATA[In the past conky had some built in features regarding mldonkey that have been dropped later. I launch a script that uses netcat to do the same thing ( at least what I need). #! /bin/sh USER=user ## mldonkey user PASS=pass ## mldonkey password for user HOST=192.168.1.2 ## host where mldonkey is running PORT=4000 ##port [...]]]></description>
			<content:encoded><![CDATA[<p>In the past conky had some built in features regarding mldonkey that have been dropped later. I launch a script that uses netcat to do the same thing ( at least what I need).</p>
<p><code><br />
#! /bin/sh<br />
USER=user                  ## mldonkey user<br />
PASS=pass            ## mldonkey password for user<br />
HOST=192.168.1.2     ## host where mldonkey is running<br />
PORT=4000                 ##port<br />
(echo "auth $USER $PASS";echo $1;echo q) | nc $HOST $PORT</code></p>
<p>and then for conkyrc</p>
<p><code>${execi 50 ml_command bw_stats|grep Down|awk -F " " '{print $1,$2,$3,$10,$11,$12}'}<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2008-mldonkey-and-conky/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Gnome 2.18</title>
		<link>http://www.lucagasperini.com/blog/2007-gnome-218/</link>
		<comments>http://www.lucagasperini.com/blog/2007-gnome-218/#comments</comments>
		<pubDate>Fri, 01 Jun 2007 15:05:21 +0000</pubDate>
		<dc:creator>gas</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gentoo]]></category>

		<guid isPermaLink="false">http://www.lucagasperini.com/blog/2007-gnome-218/</guid>
		<description><![CDATA[E&#8217; da un paio di settimane che sto su gnome 2.18 2.18.1 e anche se masked sul mio sistema Ã¨ stabile quanto il 16 se non di piÃ¹. In gnome 2.16 nautilus dava un po di problemi , dal famoso &#8220;incrozzarsi e riavvio&#8221; al &#8221; io decido da solo che non hai i diritti per [...]]]></description>
			<content:encoded><![CDATA[<p>E&#8217; da un paio di settimane che sto su gnome <del datetime="2007-05-29T14:45:42+00:00">2.18</del> 2.18.1 e anche se masked sul mio sistema Ã¨ stabile quanto il 16 se non di piÃ¹.<br />
In gnome 2.16 nautilus dava un po di problemi , dal famoso &#8220;incrozzarsi e riavvio&#8221; al &#8221; io decido da solo che non hai i diritti per cancellare il file anche se non Ã¨ vero&#8221; ; nel 2.18 non sembrano esserci piÃ¹.</p>
<p>Per il resto ho individuato ( come sempre ) un po di pro e un po di contro.<br />
Fra i pro metterei il guadagno in velocitÃ  e la maggior reattivitÃ , fra i contro spicca la furba scelta di togliere il backend per xine e di usare solo gstreamer 0.10 con una serie di menate tipo tirare avanti con la rotella o trovarsi il play che diventa &#8220;vai avanti a rallentatore&#8221;, togliere xine e usare quel cesso di gstreamer per i video Ã¨ stato un bell&#8217;errore.</p>
<p><span id="more-494"></span></p>
<p>package.keywords</p>
<p><code><br />
### Inizio Gnome.18<br />
>=gnome-base/gnome-2.18.0 ~x86<br />
>=gnome-base/gnome-light-2.18.0 ~x86<br />
>=app-admin/sabayon-2.18.0 ~x86<br />
>=gnome-base/gconf-2.16.0 ~x86<br />
>=gnome-extra/at-spi-1.18.0 ~x86<br />
>=dev-libs/atk-1.18.0 ~x86<br />
>=gnome-base/gail-1.18.0 ~x86<br />
>=gnome-base/gnome-vfs-2.18.0.1 ~x86<br />
>=gnome-base/libbonobo-2.18.0 ~x86<br />
>=gnome-base/libbonoboui-2.18.0 ~x86<br />
>=gnome-base/libgnome-2.18.0 ~x86<br />
>=gnome-base/libgnomeui-2.18.1 ~x86<br />
>=x11-libs/pango-1.16.1 ~x86<br />
>=x11-misc/alacarte-0.11.3 ~x86<br />
>=gnome-extra/bug-buddy-2.18.0 ~x86<br />
>=gnome-base/control-center-2.18.0 ~x86<br />
>=app-accessibility/dasher-4.4.0 ~x86<br />
>=gnome-extra/deskbar-applet-2.18.0 ~x86<br />
>=gnome-base/eel-2.18.0.1 ~x86<br />
>=media-gfx/eog-2.18.0.1 ~x86<br />
>=www-client/epiphany-2.18.0 ~x86<br />
>=www-client/epiphany-extensions-2.18.0 ~x86<br />
>=app-text/evince-0.8.0 ~x86<br />
>=mail-client/evolution-2.10.0 ~x86<br />
>=gnome-extra/evolution-data-server-1.10.0 ~x86<br />
>=gnome-extra/evolution-exchange-2.10.0 ~x86<br />
>=gnome-extra/evolution-webcal-2.9.92 ~x86<br />
>=gnome-extra/fast-user-switch-applet-2.17.4 ~x86<br />
>=app-arch/file-roller-2.18.0 ~x86<br />
>=gnome-extra/gcalctool-5.9.14 ~x86<br />
>=gnome-extra/gconf-editor-2.18.0 ~x86<br />
>=gnome-base/gdm-2.18.0 ~x86<br />
>=app-editors/gedit-2.18.0 ~x86<br />
>=gnome-base/gnome-applets-2.18.0 ~x86<br />
>=gnome-base/gnome-desktop-2.18.0 ~x86<br />
>=app-text/gnome-doc-utils-0.10.1 ~x86<br />
>=gnome-extra/gnome-games-2.18.0 ~x86<br />
>=x11-themes/gnome-icon-theme-2.18.0 ~x86<br />
>=gnome-base/gnome-keyring-0.8 ~x86<br />
>=gnome-extra/gnome-keyring-manager-2.18.0 ~x86<br />
>=gnome-extra/gnome-media-2.18.0 ~x86<br />
>=gnome-base/gnome-menus-2.18.0 ~x86<br />
>=net-analyzer/gnome-nettool-2.18.0 ~x86<br />
>=gnome-base/gnome-panel-2.18.0 ~x86<br />
>=gnome-extra/gnome-power-manager-2.18.0 ~x86<br />
>=dev-python/gnome-python-desktop-2.18.0 ~x86<br />
>=gnome-extra/gnome-screensaver-2.18.0 ~x86<br />
>=gnome-base/gnome-session-2.18.0 ~x86<br />
>=gnome-extra/gnome-system-monitor-2.18.0 ~x86<br />
>=app-admin/gnome-system-tools-2.18.0 ~x86<br />
>=x11-terms/gnome-terminal-2.18.0 ~x86<br />
>=x11-themes/gnome-themes-2.18.0 ~x86<br />
>=gnome-extra/gnome-utils-2.18.0 ~x86<br />
>=gnome-base/gnome-volume-manager-2.17.0 ~x86<br />
>=x11-themes/gtk-engines-2.10.0 ~x86<br />
>=gnome-extra/gtkhtml-3.14.0 ~x86<br />
>=gnome-extra/gucharmap-1.10.0 ~x86<br />
>=gnome-extra/libgail-gnome-1.18.0 ~x86<br />
>=gnome-base/libgnomekbd-2.18.0 ~x86<br />
>=gnome-base/libgnomeprint-2.18.0 ~x86<br />
>=gnome-base/libgnomeprintui-2.18.0 ~x86<br />
>=dev-libs/liboobs-2.18.0 ~x86<br />
>=x11-libs/libwnck-2.18.0 ~x86<br />
>=x11-wm/metacity-2.18.0 ~x86<br />
>=gnome-base/nautilus-2.18.0.1 ~x86<br />
>=gnome-extra/nautilus-cd-burner-2.18.0 ~x86<br />
>=app-accessibility/orca-2.18.0 ~x86<br />
>=media-video/totem-2.18.0 ~x86<br />
>=net-misc/vino-2.18.0 ~x86<br />
>=x11-libs/vte-0.16.0 ~x86<br />
>=gnome-extra/yelp-2.18.0 ~x86<br />
>=gnome-extra/zenity-2.18.0 ~x86<br />
>=dev-cpp/gconfmm-2.18.0 ~x86<br />
>=dev-cpp/gnome-vfsmm-2.18.0 ~x86<br />
>=dev-cpp/libgnomemm-2.18.0 ~x86<br />
>=dev-cpp/libgnomeuimm-2.18.0 ~x86<br />
>=dev-python/gnome-python-2.18.0 ~x86<br />
>=gnome-base/gnome-mount-0.5 ~x86<br />
=dev-python/gnome-python-extras-2.14.2-r1 ~x86<br />
>=sys-apps/hal-0.5.8.1 ~x86<br />
app-misc/hal-info ~x86<br />
>=media-libs/libart_lgpl-2.3.19 ~x86<br />
>=gnome-base/orbit-2.14.7 ~x86<br />
>=media-sound/sound-juicer-2.16.3 ~x86<br />
>=x11-libs/gtk+-2.10.10 ~x86<br />
sys-auth/consolekit ~x86<br />
>=gnome-base/libgtop-2.14.8 ~x86<br />
>=x11-libs/gtksourceview-1.8.5 ~x86<br />
>=app-admin/pessulus-2.16.2 ~x86<br />
>=net-libs/libsoup-2.2.100 ~x86<br />
>=media-sound/esound-0.2.37 ~x86<br />
>=dev-libs/glib-2.12.11 ~x86<br />
>=dev-libs/libIDL-0.8.8 ~x86<br />
>=dev-cpp/glibmm-2.12<br />
### Fine gnome 2.18<br />
</code></p>
<p>package.unmask</p>
<p><code><br />
# Start of GNOME 2.18.0 mask<br />
>=gnome-base/gnome-2.18.0<br />
>=gnome-base/gnome-light-2.18.0<br />
>=app-admin/sabayon-2.18.0<br />
>=gnome-base/gconf-2.16.0<br />
>=gnome-extra/at-spi-1.18.0<br />
>=dev-libs/atk-1.18.0<br />
>=gnome-base/gail-1.18.0<br />
>=gnome-base/gnome-vfs-2.18.0.1<br />
>=gnome-base/libbonobo-2.18.0<br />
>=gnome-base/libbonoboui-2.18.0<br />
>=gnome-base/libgnome-2.18.0<br />
>=gnome-base/libgnomeui-2.18.1<br />
>=x11-libs/pango-1.16.1<br />
>=x11-misc/alacarte-0.11.3<br />
>=gnome-extra/bug-buddy-2.18.0<br />
>=gnome-base/control-center-2.18.0<br />
>=app-accessibility/dasher-4.4.0<br />
>=gnome-extra/deskbar-applet-2.18.0<br />
>=gnome-base/eel-2.18.0.1<br />
>=media-gfx/eog-2.18.0.1<br />
>=www-client/epiphany-2.18.0<br />
>=www-client/epiphany-extensions-2.18.0<br />
>=app-text/evince-0.8.0<br />
>=mail-client/evolution-2.10.0<br />
>=gnome-extra/evolution-data-server-1.10.0<br />
>=gnome-extra/evolution-exchange-2.10.0<br />
>=gnome-extra/evolution-webcal-2.9.92<br />
>=gnome-extra/fast-user-switch-applet-2.17.4<br />
>=app-arch/file-roller-2.18.0<br />
>=gnome-extra/gcalctool-5.9.14<br />
>=gnome-extra/gconf-editor-2.18.0<br />
>=gnome-base/gdm-2.18.0<br />
>=app-editors/gedit-2.18.0<br />
>=gnome-base/gnome-applets-2.18.0<br />
>=gnome-base/gnome-desktop-2.18.0<br />
>=app-text/gnome-doc-utils-0.10.1<br />
>=gnome-extra/gnome-games-2.18.0<br />
>=x11-themes/gnome-icon-theme-2.18.0<br />
>=gnome-base/gnome-keyring-0.8<br />
>=gnome-extra/gnome-keyring-manager-2.18.0<br />
>=gnome-extra/gnome-media-2.18.0<br />
>=gnome-base/gnome-menus-2.18.0<br />
>=net-analyzer/gnome-nettool-2.18.0<br />
>=gnome-base/gnome-panel-2.18.0<br />
>=gnome-extra/gnome-power-manager-2.18.0<br />
>=dev-python/gnome-python-desktop-2.18.0<br />
>=gnome-extra/gnome-screensaver-2.18.0<br />
>=gnome-base/gnome-session-2.18.0<br />
>=gnome-extra/gnome-system-monitor-2.18.0<br />
>=app-admin/gnome-system-tools-2.18.0<br />
>=x11-terms/gnome-terminal-2.18.0<br />
>=x11-themes/gnome-themes-2.18.0<br />
>=gnome-extra/gnome-utils-2.18.0<br />
>=gnome-base/gnome-volume-manager-2.17.0<br />
>=x11-themes/gtk-engines-2.10.0<br />
>=gnome-extra/gtkhtml-3.14.0<br />
>=gnome-extra/gucharmap-1.10.0<br />
>=gnome-extra/libgail-gnome-1.18.0<br />
>=gnome-base/libgnomekbd-2.18.0<br />
>=gnome-base/libgnomeprint-2.18.0<br />
>=gnome-base/libgnomeprintui-2.18.0<br />
>=dev-libs/liboobs-2.18.0<br />
>=x11-libs/libwnck-2.18.0<br />
>=x11-wm/metacity-2.18.0<br />
>=gnome-base/nautilus-2.18.0.1<br />
>=gnome-extra/nautilus-cd-burner-2.18.0<br />
>=app-accessibility/orca-2.18.0<br />
>=media-video/totem-2.18.0<br />
>=net-misc/vino-2.18.0<br />
>=x11-libs/vte-0.16.0<br />
>=gnome-extra/yelp-2.18.0<br />
>=gnome-extra/zenity-2.18.0<br />
>=dev-cpp/gconfmm-2.18.0<br />
>=dev-cpp/gnome-vfsmm-2.18.0<br />
>=dev-cpp/libgnomemm-2.18.0<br />
>=dev-cpp/libgnomeuimm-2.18.0<br />
>=dev-python/gnome-python-2.18.0<br />
>=gnome-base/gnome-mount-0.5<br />
=dev-python/gnome-python-extras-2.14.2-r1<br />
>=sys-apps/dbus-0.33<br />
>=sys-apps/hal-0.5.0<br />
>=sys-apps/pmount-0.9.3-r3<br />
>=x11-libs/cairo-0.5.2<br />
# End of GNOME 2.18.0 mask<br />
</code></p>
<p>in bocca al lupo</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lucagasperini.com/blog/2007-gnome-218/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

