<?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>Michele&#039;s Blog &#187; debian</title>
	<atom:link href="http://www.michelem.org/category/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.michelem.org</link>
	<description>io, me e michele</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:57:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Apache2 / Worker / Fcgid / PHP5 on Debian Linux</title>
		<link>http://www.michelem.org/2010/02/22/apache2-worker-fcgid-php5-on-debian-linux/</link>
		<comments>http://www.michelem.org/2010/02/22/apache2-worker-fcgid-php5-on-debian-linux/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 13:56:39 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[fcgid]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[multi-thread]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[worker]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=961</guid>
		<description><![CDATA[Quando il tuo web server non riescie piu&#8217; a gestire le numerose richieste che gli arrivano da tutto il mondo, e&#8217; ora di pensare di cambiare gestione di Apache2 per qualcosa che richieda meno risorse e risulti piu&#8217; performante. La soluzione di usare Apache in modalita&#8217; &#8220;worker&#8221; (multi-threaded) invece di quella tradizionale &#8220;prefork&#8221; e&#8217; il [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Quando il tuo web server non riescie piu&#8217; a gestire le numerose richieste che gli arrivano da tutto il mondo, e&#8217; ora di pensare di cambiare gestione di <strong>Apache2</strong> per qualcosa che richieda meno risorse e risulti piu&#8217; performante.</p>
<p>La soluzione di usare Apache in modalita&#8217; &#8220;<strong>worker</strong>&#8221; (multi-threaded) invece di quella tradizionale &#8220;prefork&#8221; e&#8217; il compromesso giusto per ottenere un ottimo web server.</p>
<p>il problema con il modulo &#8220;worker&#8221; e&#8217; che quest&#8217;ultimo non supporta il modulo nativo per Apache di PHP, per questo bisogna usare <strong>php5-cgi</strong> e <strong>fastcgi</strong> (fcgid).</p>
<p>Pochi semplici step vi aiuteranno a installare questa nuova modalita&#8217;.</p>
<p>iniziamo con installare i pacchetti giusti:</p>
<blockquote><p><code><br />
sudo apt-get install apache2-mpm-worker libapache2-mod-fcgid</code><br />
<code>sudo apt-get install php5-cgi php5-curl php5-gd php5-ldap php5-mysql php5-sqlite php5-xsl</code></p></blockquote>
<p>Ora disabilitiamo i vecchi moduli e abilitiamo i nuovi:</p>
<blockquote><p><code>sudo a2dismod php5</code></p>
<p><code>sudo a2enmod actions</code></p>
<p><code> </code><code>sudo a2enmod fcgid</code></p></blockquote>
<p>Non resta che dare le giuste direttive ad Apache, in apache2.conf:</p>
<blockquote><p><code>&lt;Directory /var/www&gt;<br />
AddHandler fcgid-script .php<br />
FCGIWrapper /usr/lib/cgi-bin/php5 .php<br />
&lt;/Directory&gt;</code></p></blockquote>
<p>E per ogni virtualhost dovrete aggiungere:</p>
<blockquote><p><code>Options +ExecCGI</code></p></blockquote>
<p>Ci sono diversi modi di configurare queste direttive potete trovarne altri ancora in giro per la rete <a href="http://www.google.com/search?hl=en&amp;source=hp&amp;q=apache2+fcgi+php5&amp;btnG=Google+Search&amp;aq=f&amp;oq=&amp;aqi=">cercando su Google</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2010/02/22/apache2-worker-fcgid-php5-on-debian-linux/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Increase VirtualBox disk size / Resizing vdi disk</title>
		<link>http://www.michelem.org/2009/03/11/increase-virtualbox-disk-size-resizing-vdi-disk/</link>
		<comments>http://www.michelem.org/2009/03/11/increase-virtualbox-disk-size-resizing-vdi-disk/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 16:23:31 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[parted]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[vdi]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=884</guid>
		<description><![CDATA[Scenario: VirtualBox installato su macchina Linux, un virtuale Windows XP con disco da 4 GB che non basta piu&#8217;. Come faccio ad aumentare lo spazio del disco virtuale senza perdere tutto? - Creo un nuovo disco virtuale su VirtualBox piu&#8217; grande del precedente (non serve sia con dimensione fissa, dinamico andra&#8217; benissimo) - Collego il [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Scenario:<br />
VirtualBox installato su macchina Linux, un virtuale Windows XP con disco da 4 GB che non basta piu&#8217;.<br />
Come faccio ad aumentare lo spazio del disco virtuale senza perdere tutto?</p>
<p>- Creo un nuovo disco virtuale su VirtualBox piu&#8217; grande del precedente (non serve sia con dimensione fissa, dinamico andra&#8217; benissimo)</p>
<p>- Collego il <strong>nuovo disco virtuale</strong> alla macchina Windows XP in modo che lo veda anche lei</p>
<p>- Scarico una qualunque ISO Live di un sistema Linux, l&#8217;importante e&#8217; che abbia <strong>gparted</strong> (o parted se vi basta la console)</p>
<p>- Avvio la macchina virtuale Windows XP con il <strong>CD collegato alla ISO Live Linux</strong> appena scaricata</p>
<p>- una volta su Linux faccio partire <strong>X</strong> ed apro gparted</p>
<p>- Seleziono il disco (solitamente targato come &#8220;sda&#8221;) primario di Windows e clicclo su &#8220;<strong>Copia</strong>&#8220;</p>
<p>- Seleziono il disco secondario, appena creato da VirtualBox, e clicco su &#8220;<strong>Incolla</strong>&#8220;</p>
<p>- Clicclo &#8220;Applica&#8221; e ora bastera&#8217; attendere che tutti i dati del disco A vengano copiati sul disco B</p>
<p>- Al termine dell&#8217;operazione seleziono il disco B e attivo il flag &#8220;Bootable&#8221;</p>
<p>- Spengo la macchina virtuale</p>
<p>- Scollego il cd dalla ISO Live</p>
<p>- dico a VirtualBox di usare il disco B come disco master primario</p>
<p>- Ed ecco partire il vecchio Windows XP ma su un disco molto piu&#8217; grande</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/03/11/increase-virtualbox-disk-size-resizing-vdi-disk/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to resize a disk partition on a Xen Guest Linux host</title>
		<link>http://www.michelem.org/2009/01/16/how-to-resize-a-disk-partition-on-a-xen-guest-linux-host/</link>
		<comments>http://www.michelem.org/2009/01/16/how-to-resize-a-disk-partition-on-a-xen-guest-linux-host/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 10:07:55 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[centos]]></category>
		<category><![CDATA[dom0]]></category>
		<category><![CDATA[guest]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[vm]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=869</guid>
		<description><![CDATA[Alcuni semplici step per allargare una partizione Linux di un sistema operativo ospitato su Xen: 1) Spegnere la VM guest 2) Dal Dom0 eseguire: xe vdi-resize uuid=13575f55-e55d-7f49-f22d-62427cb8fa22 disk-size=5500MiB 3) Start VM 4) Nella VM: fdisk /dev/xvda Command (m for help): d Partition number (1-4): 2 Command (m for help): p Disk /dev/xvda: 5767 MB, 5767168000 [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Alcuni semplici step per allargare una partizione <strong>Linux</strong> di un sistema operativo ospitato su <strong>Xen</strong>:</p>
<p>1) Spegnere la VM guest</p>
<p>2) Dal Dom0 eseguire: <strong><em>xe vdi-resize uuid=13575f55-e55d-7f49-f22d-62427cb8fa22 disk-size=5500MiB</em></strong></p>
<p>3) Start VM</p>
<p>4) Nella VM: <strong><em>fdisk /dev/xvda</em></strong><br />
Command (m for help): <strong><em>d</em></strong><br />
Partition number (1-4): <strong><em>2</em></strong><br />
Command (m for help): <strong><em>p</em></strong><br />
Disk /dev/xvda: 5767 MB, 5767168000 bytes<br />
255 heads, 63 sectors/track, 701 cylinders<br />
Units = cylinders of 16065 * 512 = 8225280 bytes<br />
Device Boot      Start         End      Blocks   Id  System<br />
/dev/xvda1   *           1          13      104391   83  Linux<br />
Command (m for help): <strong><em>n</em></strong><br />
Command action<br />
e   extended<br />
p   primary partition (1-4)<br />
<strong><em>p</em></strong><br />
Partition number (1-4): <strong><em>2</em></strong><br />
First cylinder (14-701, default 14):<br />
Using default value 14<br />
Last cylinder or +size or +sizeM or +sizeK (14-701, default 701):<br />
Using default value 701<br />
Command (m for help): <strong><em>t</em></strong><br />
Partition number (1-4): <strong><em>2</em></strong><br />
Hex code (type L to list codes): <strong><em>8e</em></strong><br />
Changed system type of partition 2 to 8e (Linux LVM)<br />
Command (m for help): <strong><em>w</em></strong><br />
The partition table has been altered!<br />
Calling ioctl() to re-read partition table.<br />
WARNING: Re-reading the partition table failed with error 16: Device or resource busy.<br />
The kernel still uses the old table.<br />
The new table will be used at the next reboot.<br />
Syncing disks.</p>
<p>5) <strong><em>reboot</em></strong></p>
<p>6) Dalla VM: <strong><em>pvresize -v /dev/xvda2</em></strong><br />
Using physical volume(s) on command line<br />
Archiving volume group &#8220;VolGroup00&#8243; metadata (seqno 5).<br />
Resizing physical volume /dev/xvda2 from 115 to 168 extents.<br />
Resizing volume &#8220;/dev/xvda2&#8243; to 11052336 sectors.<br />
Updating physical volume &#8220;/dev/xvda2&#8243;<br />
Creating volume group backup &#8220;/etc/lvm/backup/VolGroup00&#8243; (seqno 6).<br />
Physical volume &#8220;/dev/xvda2&#8243; changed<br />
1 physical volume(s) resized / 0 physical volume(s) not resized</p>
<p>7) <strong><em>lvextend -l +100%FREE /dev/VolGr</em><em>oup00/LogVol</em><em>00 </em></strong><br />
Extending logical volume LogVol00 to 5.25 GB<br />
Logical volume LogVol00 successfully resized<br />
resize2fs /dev/VolGroup00/LogVol00<br />
resize2fs 1.39 (29-May-2006)<br />
Filesystem at /dev/VolGroup00/LogVol00 is mounted on /; on-line resizing required<br />
Performing an on-line resize of /dev/VolGroup00/LogVol00 to 1376256 (4k) blocks.<br />
The filesystem on /dev/VolGroup00/LogVol00 is now 1376256 blocks long.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2009/01/16/how-to-resize-a-disk-partition-on-a-xen-guest-linux-host/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>OpenVPN Client &amp; Server Configuration HOWTO</title>
		<link>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/</link>
		<comments>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 11:49:29 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[macosx]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[openvpn]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=850</guid>
		<description><![CDATA[Giusto per non scordarmele di nuovo e visto che le usero&#8217; molto spesso d&#8217;ora in avanti, ecco alcuni step per configurare un client e un server Linux ma anche Mac OS X per parlarsi in VPN con OpenVPN. Installazione certificati . ./vars ./clean-all ./build-ca Copiare i file ca.* su entrambi i computer (client/server) Creazione certificati [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Giusto per non scordarmele di nuovo e visto che le usero&#8217; molto spesso d&#8217;ora in avanti, ecco alcuni step per configurare un client e un server <a href="/tag/linux"><strong>Linux</strong></a> ma anche <a href="/tag/macosx"><strong>Mac OS X</strong></a> per parlarsi in <strong>VPN</strong> con <a href="http://openvpn.org">OpenVPN</a>.</p>
<p>Installazione certificati</p>
<blockquote><p><code>. ./vars<br />
./clean-all<br />
./build-ca</code></p></blockquote>
<p>Copiare i file ca.* su entrambi i computer (client/server)</p>
<p>Creazione certificati client/server</p>
<blockquote><p><code>. ./vars<br />
./build-key-server &lt;common-name-server&gt;<br />
./build-dh<br />
./build-key &lt;common-name-client&gt;</code></p></blockquote>
<p>Copiare i file &lt;common-name-client&gt;.* sul computer client</p>
<p>Configurazione Server</p>
<blockquote><p><code>port 1194<br />
proto udp<br />
dev tun<br />
ca ca.crt<br />
cert server.crt<br />
dh dh1024.pem<br />
#Subnet for the VPN, this computer will get the first ip (10.10.100.1)<br />
server 10.10.100.0 255.255.255.0<br />
ifconfig-pool-persist ipp.txt<br />
keepalive 10 120<br />
persist-key<br />
persist-tun<br />
status openvpn-status.log<br />
verb 3</code></p></blockquote>
<p>Configurazione Client</p>
<blockquote><p><code>client<br />
dev tun<br />
proto udp<br />
# This is the remote ip address and port of the VPN Server<br />
remote 1.2.3.4 1194<br />
resolv-retry infinite<br />
nobind<br />
persist-key<br />
persist-tun<br />
ca ca.crt<br />
cert client1.crt<br />
key client1.key<br />
verb 3</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/11/14/openvpn-client-server-configuration-howto/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Eee BOX PC (B202) e Ubuntu Linux 8.10 Intrepid Ibex</title>
		<link>http://www.michelem.org/2008/10/19/eee-box-pc-b202-e-ubuntu-linux-810-intrepid-ibex/</link>
		<comments>http://www.michelem.org/2008/10/19/eee-box-pc-b202-e-ubuntu-linux-810-intrepid-ibex/#comments</comments>
		<pubDate>Sun, 19 Oct 2008 16:32:30 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[shopping]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[eee]]></category>
		<category><![CDATA[media center]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[recensione]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=820</guid>
		<description><![CDATA[Ieri ho acquistato il nuovo gioiellino di casa Asus, uno dei piu&#8217; compatti pc desktop che stupisce per prestazioni , qualita&#8217; e prezzo. L&#8216;Asus Eee BOX (marchiato B202 sulla confezione) ha le seguenti caratteristiche tecniche: Processore Intel Atom N270 (1.60GHz) &#8211; 32 bit Chipset Intel 945GSE Memoria RAM 1GB Disco rigido SATA 2,5&#8243; 80GB Card [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<div id="attachment_826" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_front.jpg" rel="lightbox"><img class="size-thumbnail wp-image-826" title="Eee BOX Front view" src="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_front-200x200.jpg" alt="Eee BOX Front view" width="200" height="200" /></a><p class="wp-caption-text">Eee BOX Front view</p></div>
<p>Ieri ho acquistato il nuovo gioiellino di casa <strong>Asus</strong>, uno dei piu&#8217; compatti pc desktop che stupisce per prestazioni , qualita&#8217; e prezzo.<br />
L<strong>&#8216;</strong><a href="http://www.asus.it/products.aspx?l1=24&amp;l2=165&amp;l3=0&amp;l4=0&amp;model=2289&amp;modelmenu=2"><strong>Asus Eee BOX</strong> (marchiato B202 sulla confezione)</a> ha le seguenti caratteristiche tecniche:</p>
<ul>
<li>Processore Intel Atom N270 (1.60GHz) &#8211; 32 bit</li>
<li>Chipset Intel 945GSE</li>
<li>Memoria RAM 1GB</li>
<li>Disco rigido SATA 2,5&#8243; 80GB</li>
<li>Card reader SD/SDHC/MS/MS Pro</li>
<li>Audio In/Out</li>
<li>Video out DVI</li>
<li>4 USB 2.0 (2 sul fronte e 2 sul retro)</li>
<li>Wi-Fi 802.11 b/g/n</li>
<li>Ethernet 10/100/1000</li>
</ul>
<div id="attachment_827" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_front_open.jpg" rel="lightbox"><img class="size-thumbnail wp-image-827" title="Eee BOX Front view open" src="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_front_open-200x200.jpg" alt="Eee BOX Front view open" width="200" height="200" /></a><p class="wp-caption-text">Eee BOX Front view open</p></div>
<p>L&#8217;<strong>Eee BOX</strong> ha preinstallato Windows XP che mi e&#8217; stato utile solo per creare una chiavetta USB con dentro l&#8217;installazione di <a href="/tag/ubuntu"><strong>Ubuntu Linux 8.10</strong></a> (ho usato <a href="http://lubi.sourceforge.net/unetbootin.html">UNETBootin per Windows</a>).</p>
<p>Al seguente riavvio e&#8217; bastato dire al <strong>BIOS</strong> di fare il boot con la chiavetta USB invece che con il disco per ritrovarmi dentro un sistema Ubuntu pronto per essere installato.</p>
<div id="attachment_829" class="wp-caption aligncenter" style="width: 210px"><a href="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_back.jpg" rel="lightbox"><img class="size-thumbnail wp-image-829" title="Eee BOX back view" src="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_back-200x200.jpg" alt="Eee BOX back view" width="200" height="200" /></a><p class="wp-caption-text">Eee BOX back view</p></div>
<p><strong>Nota Bene:</strong></p>
<p>L&#8217;Eee BOX, oltre a Windows XP, ha installato un menu di navigazione iniziale dove e&#8217; possibile scegliere alcuni software preinstallati da far partire senza necessita&#8217; di sistema operativo, tra i quali spicca solo uno Skype &#8220;embedded&#8221; (c&#8217;e&#8217; anche un video/photo organizer e str***ate del genere&#8230;).<br />
Tali software pero&#8217; si prendono la meta&#8217; del disco, ossia se fate attenzione noterete che la partizione Windows XP e&#8217; di 40GB (contro gli <strong>80GB</strong> del disco che monta), il mio consiglio e&#8217; quello di installare Ubuntu usando l&#8217;INTERO disco e non solo la partizione Windows, perderete un colorato quanto inutile menu inziale guadagnando 40GB di spazio.</p>
<p>L&#8217;<a href="https://help.ubuntu.com/community/Installation/FromUSBStick"><strong>installazione da chiavetta USB</strong></a> e&#8217; identica a quella da CD e funziona perfettamente, l&#8217;unico problema riscontrato con la <strong>8.10 (Intrepid Ibex)</strong> e&#8217; la scheda wifi che non viene riconosciuta&#8230;</p>
<p>Guardando nel dettaglio l&#8217;<strong>hardware presente nell&#8217;Eee BOX</strong>, il processore <strong>Intel Atom</strong> (che e&#8217; un processore a <strong>32 bit</strong> quindi niente installazioni a 64) e&#8217; riconosciuto come segue:</p>
<blockquote><p>processorÂ Â Â  : 0<br />
vendor_idÂ Â Â  : GenuineIntel<br />
cpu familyÂ Â Â  : 6<br />
modelÂ Â Â  Â Â Â  : 28<br />
model nameÂ Â Â  : Intel(R) Atom(TM) CPU N270Â Â  @ 1.60GHz<br />
steppingÂ Â Â  : 2<br />
cpu MHzÂ Â Â  Â Â Â  : 800.000<br />
cache sizeÂ Â Â  : 512 KB<br />
physical idÂ Â Â  : 0<br />
siblingsÂ Â Â  : 2<br />
core idÂ Â Â  Â Â Â  : 0<br />
cpu coresÂ Â Â  : 1<br />
apicidÂ Â Â  Â Â Â  : 0<br />
initial apicidÂ Â Â  : 0<br />
fdiv_bugÂ Â Â  : no<br />
hlt_bugÂ Â Â  Â Â Â  : no<br />
f00f_bugÂ Â Â  : no<br />
coma_bugÂ Â Â  : no<br />
fpuÂ Â Â  Â Â Â  : yes<br />
fpu_exceptionÂ Â Â  : yes<br />
cpuid levelÂ Â Â  : 10<br />
wpÂ Â Â  Â Â Â  : yes<br />
flagsÂ Â Â  Â Â Â  : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 xtpr lahf_lm<br />
bogomipsÂ Â Â  : 3215.95<br />
clflush sizeÂ Â Â  : 64<br />
power management:</p>
<p>processorÂ Â Â  : 1<br />
vendor_idÂ Â Â  : GenuineIntel<br />
cpu familyÂ Â Â  : 6<br />
modelÂ Â Â  Â Â Â  : 28<br />
model nameÂ Â Â  : Intel(R) Atom(TM) CPU N270Â Â  @ 1.60GHz<br />
steppingÂ Â Â  : 2<br />
cpu MHzÂ Â Â  Â Â Â  : 800.000<br />
cache sizeÂ Â Â  : 512 KB<br />
physical idÂ Â Â  : 0<br />
siblingsÂ Â Â  : 2<br />
core idÂ Â Â  Â Â Â  : 0<br />
cpu coresÂ Â Â  : 1<br />
apicidÂ Â Â  Â Â Â  : 1<br />
initial apicidÂ Â Â  : 1<br />
fdiv_bugÂ Â Â  : no<br />
hlt_bugÂ Â Â  Â Â Â  : no<br />
f00f_bugÂ Â Â  : no<br />
coma_bugÂ Â Â  : no<br />
fpuÂ Â Â  Â Â Â  : yes<br />
fpu_exceptionÂ Â Â  : yes<br />
cpuid levelÂ Â Â  : 10<br />
wpÂ Â Â  Â Â Â  : yes<br />
flagsÂ Â Â  Â Â Â  : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe nx constant_tsc arch_perfmon pebs bts pni monitor ds_cpl est tm2 ssse3 xtpr lahf_lm<br />
bogomipsÂ Â Â  : 3215.94<br />
clflush sizeÂ Â Â  : 64<br />
power management:</p></blockquote>
<p>Mentre questo e&#8217; il dettaglio dei vari <strong>chipset e schede PCI</strong> presenti:</p>
<blockquote><p>00:00.0 Host bridge: Intel Corporation Mobile 945GME Express Memory Controller Hub (rev 03)<br />
00:02.0 VGA compatible controller: Intel Corporation Mobile 945GME Express Integrated Graphics Controller (rev 03)<br />
00:02.1 Display controller: Intel Corporation Mobile 945GM/GMS/GME, 943/940GML Express Integrated Graphics Controller (rev 03)<br />
00:1b.0 Audio device: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller (rev 02)<br />
00:1c.0 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 (rev 02)<br />
00:1c.1 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 (rev 02)<br />
00:1c.2 PCI bridge: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 (rev 02)<br />
00:1d.0 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 (rev 02)<br />
00:1d.1 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 (rev 02)<br />
00:1d.2 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 (rev 02)<br />
00:1d.3 USB Controller: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 (rev 02)<br />
00:1d.7 USB Controller: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller (rev 02)<br />
00:1e.0 PCI bridge: Intel Corporation 82801 Mobile PCI Bridge (rev e2)<br />
00:1f.0 ISA bridge: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge (rev 02)<br />
00:1f.2 IDE interface: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller (rev 02)<br />
00:1f.3 SMBus: Intel Corporation 82801G (ICH7 Family) SMBus Controller (rev 02)<br />
03:00.0 Network controller: RaLink Device 0781<br />
04:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 02)</p></blockquote>
<p>Come potete vedere la <strong>scheda video</strong>, riconosciuta anch&#8217;essa perfettamente, e&#8217; una <strong>Intel 945</strong> che a prima vista sembra andare molto bene, sia come risoluzioni ottenute che con software come Compiz che si esegue senza alcun problema e risulta abbastanza &#8220;fluido&#8221; per avere cosi&#8217; &#8220;poco&#8221; hardware sotto.</p>
<p>Nessun problema anche con la <strong>scheda di rete Realtek</strong> che arriva fino a 1 Gigabit e viene ricosciuta senza alcun intervento manuale.</p>
<p>La pecca piu&#8217; grossa, come dicevo prima, arriva dalla <strong>scheda wifi</strong>. Quest&#8217;ultima infatti e&#8217; una <strong>Ralink</strong> di ultimissima generazione (e&#8217; una <strong>802.11 b/g/n</strong>) e i <a href="http://www.ralinktech.com/ralink/Home/Support/Linux.html">driver <strong>Linux</strong></a> (rt2860sta) sono stati rilasciati da poco  in versione Open Source, nessun <strong>kernel</strong> al momento sembra averli di default, ma si compilano e sembrano riconoscere bene la scheda.</p>
<blockquote><p>ra0Â Â Â Â Â Â  RT2860 WirelessÂ  ESSID:&#8221;"Â  Nickname:&#8221;"<br />
Mode:AutoÂ  Frequency=2.412 GHz<br />
Link Quality=10/100Â  Signal level:0 dBmÂ  Noise level:-143 dBm<br />
Rx invalid nwid:0Â  Rx invalid crypt:0Â  Rx invalid frag:0<br />
Tx excessive retries:0Â  Invalid misc:0Â Â  Missed beacon:0</p></blockquote>
<p>Sicuramente il fatto di avere una scheda wifi &#8220;n&#8221; non giova troppo agli utenti Linux che sanno bene quanto poco siano supportate (ancora) queste schede, ma gia&#8217; in diversi hanno richiesto l&#8217;introduzione dei nuovi driver nei prossimi kernel, questione di tempo, nel frattempo basta un veloce &#8220;make &amp;&amp; make install&#8221;.</p>
<p>Scordatevi, ovviamente, i <strong>7 secondi di boot </strong>annunciati dalla Asus, quei 7 secondi si raggiungono forse solo se avete un disco allo stato solido (<strong>SSD</strong>) invece del piu comune disco <strong>SATA da 2,5&#8243;</strong> montato in questa Eee BOX, senza cronometro alla mano direi che sia Windows XP che Ubuntu 8.10 partono in non meno di una <strong>trentina di secondi</strong> as usual.</p>
<p>Per quanto riguarda la parte <strong>video</strong>, l&#8217;<strong>uscita DVI</strong> assicura un&#8217;elevata compatibilita&#8217; con pressoche&#8217; qualsiasi <strong>TV/Monitor LCD</strong> e grazie al connettore DVI/RGB incluso nella confezione e&#8217; possibile collegare l&#8217;Eee BOX anche a un vecchio monitor CRT. (Nella foto e&#8217; collegato a una TV LCD in <strong>HDMI</strong> con un connettore DVI/HDMI con risultati qualitativi strepitosi che la foto non permette di apprezzare.)</p>
<div id="attachment_828" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_pc_tv.jpg" rel="lightbox"><img class="size-medium wp-image-828" title="Eee BOX PC Ubuntu" src="http://www.michelem.org/wp-content/uploads/2008/10/eee_box_pc_tv-300x225.jpg" alt="Eee BOX PC Ubuntu" width="300" height="225" /></a><p class="wp-caption-text">Eee BOX PC Ubuntu</p></div>
<p>La confezione e&#8217; corredata anche da una robusta <strong>tastiera Asus</strong>, con tasti morbidi e di ridotte dimensioni insieme a un <strong>mouse</strong> anch&#8217;esso piu&#8217; piccolo rispetto i comuni mouse da desktop e per chi non ha piu&#8217; un centimetro quadrato a disposizione nella scrivania, l&#8217;<strong>Asus Eee BOX ha incluso anche un supporto</strong> (e relative viti) per agganciarlo al retro del vostro monitor LCD.</p>
<p>In conclusione l&#8217;oggetto vale sicuramente il <strong>prezzo di 249 Euro</strong>, che alla fine si e&#8217; ridotto a solo 49 Euro approfittando dello<strong> </strong><a href="http://vci.sogei.it/cococo/index.htm"><strong>sconto riservato ai CO.CO.CO</strong></a>, che vi ricordo, termina il 31/12/2008.</p>
<p>Confrontandolo anche con <strong>thin-client</strong> e <strong>mini-pc</strong> simili, l&#8217;Eee BOX garantisce sicuramente <strong>prestazioni migliori in spazi altrettanto ridotti</strong> (le dimensioni sono 22,3Ã—17,8Ã—2,6 cm esclusa la base, praticamente grandezza/peso di un libro di medie dimensioni).</p>
<p>Insomma, l&#8217;Eee BOX ha sicuramente tutto l&#8217;hardware necessario per renderlo una <strong>worsktation</strong> perfetta (e <strong>molto silenziosa</strong>) sia per casa che per l&#8217;ufficio e viste le notevoli capacita&#8217; tecniche e l&#8217;<strong>azzeccato design</strong> puo&#8217; servire anche da valido <strong>media center</strong> per l&#8217;intrattenimento e l&#8217;home theater (consiglio a tal proposito l&#8217;installazione di <strong><a href="http://xbmc.org/">XBMC</a></strong> o equivalente).</p>
<p><strong>Garantito 2 anni da Asus</strong> ma pieno di &#8220;sigilli&#8221;, gli smanettoni intenzionati ad aprirla per aggiornamenti hardware e quant&#8217;altro sono avvertiti. (Un mese e la apro in due come una cozza)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/10/19/eee-box-pc-b202-e-ubuntu-linux-810-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Qmail and the CNAME_lookup_failed_temporarily problem [SOLVED]</title>
		<link>http://www.michelem.org/2008/10/08/qmail-and-the-cname_lookup_failed_temporarily-problem-solved/</link>
		<comments>http://www.michelem.org/2008/10/08/qmail-and-the-cname_lookup_failed_temporarily-problem-solved/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 12:24:22 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mta]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[qmail]]></category>
		<category><![CDATA[sendmail]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=814</guid>
		<description><![CDATA[Se a un certo punto il vostro MTA Qmail inizia a non mandare piu&#8217; posta a determinati domini (di solito domini che hanno molti mx associati in round robin come per esempio: tiscali.it o hotmail.com e molti altri) e nei log del qmail-send leggete spesso errori di questo tipo: @4000000048ec8481146ce3b4 delivery 194: deferral: CNAME_lookup_failed_temporarily._(#4.4.3)/ Allora [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Se a un certo punto il vostro MTA Qmail inizia a non mandare piu&#8217; posta a determinati domini (di solito domini che hanno molti mx associati in round robin come per esempio: tiscali.it o hotmail.com e molti altri) e nei log del qmail-send leggete spesso errori di questo tipo:</p>
<blockquote><p>@4000000048ec8481146ce3b4 delivery 194: deferral: <strong>CNAME_lookup_failed_temporarily._(#4.4.3)</strong>/</p></blockquote>
<p>Allora il problema potrebbe essere dovuto a il vostro qmail-remote che manda richieste ANY al dns per trovare l&#8217;mx giusto che alla fine non trova.</p>
<p>Per risolvere il problema c&#8217;e&#8217; una <strong><a href="http://homepages.tesco.net./~J.deBoynePollard/Softwares/qmail/#any-to-cname">patch</a></strong> che va scaricata e applicata al sorgente di qmail in questo modo:</p>
<blockquote><p>copiate la patch nella root directory dei sorgenti di qmail ed eseguite:</p>
<p>patch -p1 &lt; any-to-cname.patch</p>
<p>make clean &amp;&amp; make man &amp;&amp; make setup check</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/10/08/qmail-and-the-cname_lookup_failed_temporarily-problem-solved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squirrelmail: Import/Export address book, preferences and config</title>
		<link>http://www.michelem.org/2008/09/24/squirrelmail-importexport-address-book-preferences-and-config/</link>
		<comments>http://www.michelem.org/2008/09/24/squirrelmail-importexport-address-book-preferences-and-config/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 09:58:30 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[config]]></category>
		<category><![CDATA[redhat]]></category>
		<category><![CDATA[squirrelmail]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=780</guid>
		<description><![CDATA[Se siete intezionati a migrare da un server all&#8217;altro anche la webmail creata con Squirrelmail, e&#8217; buona cosa sapere che i vari utilizzatori, nel tempo, potrebbero aver salvato diverse personalizzazioni nel loro spazio. Tra queste cose che l&#8217;utente sicuramente rivorra&#8217; anche nel nuovo server spiccano: le preferenze (filtri, impostazioni, ecc&#8230;) e la rubrica. Per esportare [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Se siete intezionati a migrare da un server all&#8217;altro anche la webmail creata con <strong><a href="http://squirrelmail.org/">Squirrelmail</a></strong>, e&#8217; buona cosa sapere che i vari utilizzatori, nel tempo, potrebbero aver salvato diverse personalizzazioni nel loro spazio.</p>
<p>Tra queste cose che l&#8217;utente sicuramente rivorra&#8217; anche nel nuovo server spiccano: le <strong>preferenze</strong> (filtri, impostazioni, ecc&#8230;) e la <strong>rubrica</strong>.</p>
<p>Per esportare il tutto vi bastera&#8217; copiare tutti i file <strong>.pref</strong> e <strong>.abook</strong> dalla directory data/:</p>
<blockquote><p><code>cp -av /path/to/your/squirrelmail/data/*.pref squirrelmail-backup/<br />
cp -av /path/to/your/squirrelmail/data/*.abook squirrelmail-backup/</code></p></blockquote>
<p>Per importali bastera&#8217; spostare tali file nella nuova directory &#8220;data&#8221; di Squirrelmail (su <a href="http://www.michelem.org/category/debian/">Debian</a> in <em>/var/lib/squirrelmail/data</em>)</p>
<p>Per quanto riguarda invece la <strong>configurazione generale di Squirrelmail</strong> dovrete copiarvi (o meglio modificare) le variabili contenute nel file &lt;squirrelmail&gt;/config/config.php (in Debian in <em>/etc/squirrelmail/config.php</em>).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/09/24/squirrelmail-importexport-address-book-preferences-and-config/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Postfix Autoreply/Out-of-Office Virtual HOWTO</title>
		<link>http://www.michelem.org/2008/07/18/postfix-autoreplyout-of-office-virtual-howto/</link>
		<comments>http://www.michelem.org/2008/07/18/postfix-autoreplyout-of-office-virtual-howto/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 09:01:46 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[hacks]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[autoreply]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[postfix]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vacation]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=742</guid>
		<description><![CDATA[Imbattutomi nell&#8217;arduo problema di trovare un modo per configurare un autorisponditore sul server di posta di un cliente che usa account virtuali e non di sistema, ho finalmente risolto l&#8217;arcano ricordandomi della mitica funzione &#8220;pipe&#8221; di Postfix, ecco come fare: Se avete Postfix configurato su mysql dovrete inanzitutto aggiungere un &#8220;transport&#8221; nella tabella appropriata del [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Imbattutomi nell&#8217;arduo problema di trovare un modo per configurare un autorisponditore sul server di posta di un cliente che usa account virtuali e non di sistema, ho finalmente risolto l&#8217;arcano ricordandomi della mitica funzione &#8220;pipe&#8221; di <a href="http://www.michelem.org/tag/postfix/">Postfix</a>, ecco come fare:</p>
<p>Se avete Postfix configurato su mysql dovrete inanzitutto aggiungere un &#8220;transport&#8221; nella tabella appropriata del tipo:</p>
<blockquote><p>Dominio: &#8220;autoreply.domain.tld&#8221; -&gt; Transport: &#8220;autoreply:&#8221;</p></blockquote>
<p>La stessa cosa puo&#8217; essere fatta se usate i file invece del db:</p>
<blockquote><p><code>/etc/postfix/transport:<br />
autoreply.domain.tld  autoreply:</code></p></blockquote>
<p>Infine per ogni account sul quale volete attivare l&#8217;autoreply occorrera&#8217; riconfigurarlo a dovere. Se avete il db nella tabella FORWARDINGS (o simili) aggiungete qualcosa come:</p>
<blockquote><p>Source: &lt;email&gt;@&lt;domain&gt;<br />
Destination: &lt;email&gt;@&lt;domain&gt;, &lt;email&gt;@&lt;domain&gt;@autoreply.domain.tld</p></blockquote>
<p>Se invece usate i file:</p>
<blockquote><p><code>/etc/postfix/virtual:<br />
&lt;email&gt;@&lt;domain&gt; &lt;email&gt;@&lt;domain&gt;, &lt;email&gt;@&lt;domain&gt;@autoreply.domain.tld</code></p></blockquote>
<p>Ora non resta che implementare l&#8217;<strong>autoreply</strong> vero e proprio su Postfix, per questo occorrera&#8217; creare un semplice <strong>script bash</strong> per l&#8217;invio della mail &#8220;Out of Office&#8221; e dire a Postfix di intercettare i forward precedentemente creati:</p>
<p>Create il file contenente il messaggio standard da inoltrare ai mittenti, tipo:</p>
<blockquote><p><strong>/etc/postfix/autoreply.txt</strong>:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><code>Salve,<br />
mi spiace ma non sono in ufficio, al mio ritorno sara' mia premura<br />
rispondere alla sua mail.<br />
Grazie</code></p>
<p>&#8211;<br />
AutoReply robot at &lt;server@domain&gt;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p></blockquote>
<p>Ora create il semplice script per l&#8217;invio della mail:</p>
<blockquote><p><strong>/usr/local/bin/autoreply</strong>:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><code>#!/bin/bash</code><br />
mail -s&#8221;Out of Office&#8221; -a&#8221;From: &lt;$2&gt;&#8221;Â  $1 &lt; /etc/postfix/autoreply.txt</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p></blockquote>
<p>Non rimane altro che dire a Postfix di usare l&#8217;autoreply appena creato:</p>
<blockquote><p>in <strong>/etc/postfix/master.cf</strong> aggiungete le 2 seguenti righe:</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><code>autoreplyÂ Â Â Â Â Â  unixÂ Â Â  -Â Â Â Â Â Â  nÂ Â Â Â Â Â  nÂ Â Â Â Â Â  -Â Â Â Â Â Â  -Â Â Â Â Â Â  pipe<br />
flags= user=mail argv=/usr/local/bin/autoreply $sender $recipient</code></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p></blockquote>
<p>Riavviate Postfix e il gioco e&#8217; fatto, fate attenzione che l&#8217;utente di sistema &#8220;mail&#8221; esista oppure cambiatelo nel master.cf (user=mail)</p>
<p>Questa piccola guida e&#8217; stata scritta grazie alla <a href="http://www.postfix.org/VIRTUAL_README.html#autoreplies">documentazione sui Virtual di Postfix</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/07/18/postfix-autoreplyout-of-office-virtual-howto/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to install Google Gadgets on Ubuntu Linux</title>
		<link>http://www.michelem.org/2008/06/06/how-to-install-google-gadgets-on-ubuntu-linux/</link>
		<comments>http://www.michelem.org/2008/06/06/how-to-install-google-gadgets-on-ubuntu-linux/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 13:59:05 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=719</guid>
		<description><![CDATA[Ecco la procedura per installare Google Gadgets sulla vostra Ubuntu Linux (testato su Hardy Heron e Intrepid Ibex). Here is the full steps to install Google Gadgets on your Ubuntu Linux (tested on Hardy Heron and Intrepid Ibex) sudo aptitude install automake autoconf libtool zlib1g-dev libmozjs-dev libcurl4-openssl-dev libxml2-dev libdbus-1-dev libmozjs-dev libgstreamer-plugins-base0.10-dev libcurl3-openssl-dev libdbus-1-dev libxul-dev libcurl3 [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p><script type="text/javascript"><!--
        digg_bgcolor = '#fff';
        digg_window = 'new';
        digg_url = 'http://www.michelem.org/2008/06/06/how-to-install-google-gadgets-on-ubuntu-linux/'
// --></script><br />
<script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
<p>Ecco la procedura per installare Google Gadgets sulla vostra Ubuntu Linux (testato su Hardy Heron e Intrepid Ibex).</p>
<p>Here is the full steps to install Google Gadgets on your Ubuntu Linux (tested on Hardy Heron and Intrepid Ibex)</p>
<blockquote>
<ul>
<li><code>sudo aptitude install automake autoconf libtool zlib1g-dev<br />
libmozjs-dev libcurl4-openssl-dev libxml2-dev libdbus-1-dev<br />
libmozjs-dev libgstreamer-plugins-base0.10-dev libcurl3-openssl-dev<br />
libdbus-1-dev libxul-dev libcurl3 libcurl3-dbg libcurl3-gnutls<br />
libcurl4-openssl-dev libcurl-ocaml libmozjs0d libmozjs0d-dbg<br />
libmozjs-dev g++-4.2-multilib g++ libqt4-dev</code></li>
<li><code>wget <a href="http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-0.9.1.tar.gz">http://google-gadgets-for-linux.googlecode.com/files/google-gadgets-for-linux-0.9.1.tar.gz</a></code></li>
<li><code>tar zxvf google-gadgets-for-linux-0.9.1.tar.gz</code></li>
<li><code>cd google-gadgets-for-linux-0.9.1/</code></li>
<li><code>sh autotools/bootstrap.sh</code></li>
<li><code>mkdir -p build/debug</code></li>
<li><code>cd build/debug</code></li>
<li><code>../../configure --enable-debug</code></li>
<li><code>sudo make install</code></li>
<li><code>ggl-gtk</code></li>
</ul>
</blockquote>
<p style="text-align: center;"><a href="http://www.michelem.org/wp-content/uploads/2008/06/ggl-standalone.jpg" rel="lightbox"><img class="alignnone size-thumbnail wp-image-720" title="ggl-standalone" src="http://www.michelem.org/wp-content/uploads/2008/06/ggl-standalone-200x200.jpg" alt="" width="200" height="200" /></a></p>
<p style="text-align: left;"><a href="http://code.google.com/p/google-gadgets-for-linux/">Google Gadgets for Linux on Google Code</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/06/06/how-to-install-google-gadgets-on-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Firefox 3 RC1 on Ubuntu Hardy Heron (and Intrepid Ibex)</title>
		<link>http://www.michelem.org/2008/05/21/firefox-3-rc1-on-ubuntu-hardy-heron-and-intrepid-ibex/</link>
		<comments>http://www.michelem.org/2008/05/21/firefox-3-rc1-on-ubuntu-hardy-heron-and-intrepid-ibex/#comments</comments>
		<pubDate>Wed, 21 May 2008 13:11:12 +0000</pubDate>
		<dc:creator>michele</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[package]]></category>
		<category><![CDATA[repository]]></category>

		<guid isPermaLink="false">http://www.michelem.org/?p=714</guid>
		<description><![CDATA[Se non ce la fate piu&#8217; ad aspettare i pacchetti ufficiali aggiornati per Firefox 3 RC1, potete aggiornare il vostro browser preferito con il seguente repository: deb http://ppa.launchpad.net/fta/ubuntu hardy main Aggiungete tale riga al vostro /etc/apt/sources.list e lanciate i seguenti comandi: sudo aptitude update sudo aptitude safe-upgrade Ovviamente se avete gia&#8217; Firefox3 installato altrimenti: sudo [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>Se non ce la fate piu&#8217; ad aspettare i pacchetti ufficiali aggiornati per <a href="http://www.mozilla.com/en-US/firefox/3.0rc1/releasenotes/">Firefox 3 RC1</a>, potete aggiornare il vostro browser preferito con il seguente repository:</p>
<blockquote><p><span class="fullpost">deb <a href="http://ppa.launchpad.net/fta/ubuntu">http://ppa.launchpad.net/fta/ubuntu</a> hardy main</span></p></blockquote>
<p>Aggiungete tale riga al vostro /etc/apt/sources.list e lanciate i seguenti comandi:</p>
<blockquote><p>sudo aptitude update<br />
sudo aptitude safe-upgrade</p></blockquote>
<p>Ovviamente se avete gia&#8217; Firefox3 installato altrimenti:</p>
<blockquote><p>sudo aptitude install firefox-3.0</p></blockquote>
<p>Grazie a <a href="http://onlyubuntu.blogspot.com/2008/05/how-to-install-firefox-3-rc1-on-ubuntu.html">OnlyUbuntu</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.michelem.org/2008/05/21/firefox-3-rc1-on-ubuntu-hardy-heron-and-intrepid-ibex/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Object Caching 1479/1730 objects using disk: basic

Served from: www.michelem.org @ 2012-02-10 12:51:50 -->
