<?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>Andrea Veri&#039;s Blog &#187; Ubuntu</title>
	<atom:link href="http://www.dragonsreach.it/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dragonsreach.it</link>
	<description></description>
	<lastBuildDate>Sun, 31 Mar 2013 01:13:21 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>IPv6 tunneling with Hurricane Electrics</title>
		<link>http://www.dragonsreach.it/2012/12/21/ipv6-tunneling-hurricane-electrics/</link>
		<comments>http://www.dragonsreach.it/2012/12/21/ipv6-tunneling-hurricane-electrics/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 13:08:20 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Hurricane Electrics]]></category>
		<category><![CDATA[IPv6]]></category>

		<guid isPermaLink="false">http://www.dragonsreach.it/?p=724</guid>
		<description><![CDATA[I&#8217;ve been looking around for a possible way to connect to the IPv6 internet for some time now and given the fact my provider didn&#8217;t allow me to run IPv6 natively I had to find an alternative solution. Hurricane Electrics (HE) provides (for free) five configurable IPv4-to-IPv6 tunnels together with a free DNS service and&#8230;]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve been looking around for a possible way to connect to the IPv6 internet for some time now and given the fact my provider didn&#8217;t allow me to run IPv6 natively I had to find an alternative solution. <strong>Hurricane Electrics</strong> (HE) provides (for free) five configurable <strong>IPv4-to-IPv6</strong> tunnels together with a free <strong>DNS service</strong> and an interesting <strong>certification program</strong>.</p>
<div id="attachment_710" class="wp-caption aligncenter" style="width: 260px"><img class="size-full wp-image-710 " alt="certificate_badge" src="http://www.dragonsreach.it/wp-content/uploads/2012/12/certificate_badge.png" width="250" height="194" /><p class="wp-caption-text">Hurricane Electrics IPv6 Certification</p></div>
<p>Willing to test the latest revision of the Internet Protocol on your <strong>Debian</strong>, <strong>Ubuntu</strong>, <strong>Fedora</strong> machines? Here&#8217;s <strong>how</strong>:</p>
<p><strong>1.</strong> Register yourself at Hurricane Electrics by visiting <a href="http://tunnelbroker.net/" target="_blank">tunnelbroker.net</a>.</p>
<p><strong>2.</strong> <a href="http://tunnelbroker.net/new_tunnel.php" target="_blank">Create a new tunnel</a> and make sure to use your <strong>public IP</strong> address as your <strong>IPv4 Endpoint</strong>.</p>
<p><strong>3.</strong> Write down the relevant details of your tunnel, specifically:</p>
<ol>
<li>Server IPv6 Address: 2001:470:<b>1f0a</b>:a6f::1 /64</li>
<li>Server IPv4 Address: 216.66.84.46 (this actually depends on which server did you choose on the previous step)</li>
<li>Client IPv6 Address: 2001:470:<b>1f0a</b>:a6f::2/64</li>
</ol>
<p><strong>4.</strong> Create a little script that will update your <strong>IPv4 tunnel endpoint</strong> every time your internet IP<strong> changes</strong>. (this step is not needed if you have an internet connection with a <strong>static IP</strong>):</p>
<div id="attachment_705" class="wp-caption alignright" style="width: 310px"><img class="size-medium wp-image-705  " style="text-align: center;" alt="tunnel_broker" src="http://www.dragonsreach.it/wp-content/uploads/2012/12/tunnel_broker-300x267.png" width="300" height="267" /><p class="wp-caption-text">Your Tunnel configuration details at tunnelbroker.net</p></div>
<pre>#!/bin/bash
USERNAME=yourHEUsername
PASSWORD=yourHEPassword
TUNNELID=yourHETunnelID
GET "https://$USERNAME:$PASSWORD@ipv4.tunnelbroker.net/ipv4_end.php?tid=$TUNNELID"</pre>
<p><strong>5.</strong> Create the networking <strong>configuration</strong> files on your computer:</p>
<p><strong>Debian / Ubuntu</strong>, on the <strong>/etc/network/interfaces</strong> file:</p>
<pre>auto he-ipv6
iface he-ipv6 inet6 v4tunnel
address 2001:470:<b>1f0a</b>:a6f::2
netmask 64
endpoint 216.66.80.30
local 192.168.X.X (Your PC's LAN IP address)
ttl 255
gateway 2001:470:<b>1f0a</b>:a6f::1
pre-up /home/user/bin/update_tunnel.sh</pre>
<p><strong>Fedora</strong>, on the <strong> /etc/sysconfig/network-scripts/ifcfg-he-ipv6</strong> file:</p>
<pre>DEVICE=he-ipv6
TYPE=sit
BOOTPROTO=none
ONBOOT=yes
IPV6INIT=yes
IPV6TUNNELIPV4="216.66.80.30"
IPV6TUNNELIPV4LOCAL="192.168.X.X" (Your PC's LAN IP address)
IPV6ADDR="2001:470:<b>1f0a</b>:a6f::2/64"</pre>
<p>and on the<strong> /etc/sysconfig/network</strong> file, add:</p>
<pre>NETWORKING_IPV6=yes
IPV6_DEFAULTGW="2001:470:<b>1f0a</b>:a6f::1"
IPV6_DEFAULTDEV="he-ipv6"</pre>
<p>You can then set up a little <strong>/sbin/ifup-pre-local</strong> script to update the IPv4 tunnel endpoint when your dynamic IP changes or simply add the script on the <strong>/etc/cron.daily</strong> directory and have it executed when you turn up your computer.</p>
<p><strong>6.</strong> Change the DNS servers on<strong> /etc/resolv.conf</strong>:</p>
<p><strong>OpenDNS</strong>:</p>
<div id="attachment_719" class="wp-caption alignright" style="width: 310px"><a href="http://www.dragonsreach.it/wp-content/uploads/2012/12/ipv6_test.png"><img class="size-medium wp-image-719 " alt="ipv6_test" src="http://www.dragonsreach.it/wp-content/uploads/2012/12/ipv6_test-300x139.png" width="300" height="139" /></a><p class="wp-caption-text">A sample image taken from ipv6-test.com.</p></div>
<pre>nameserver 2620:0:ccc::2
nameserver 2620:0:ccd::2</pre>
<p><strong>Google DNS</strong>:</p>
<pre>nameserver 2001:4860:4860::8888
nameserver 2001:4860:4860::8844</pre>
<p><strong>7.</strong> Restart your network and enjoy IPv6!</p>
<p><strong>8.</strong> If you want to know more about IPv6 take some time for the <a href="http://ipv6.he.net/certification" target="_blank">HE Certification program</a>, you will learn a lot and eventually win a sponsored<strong> t-shirt</strong>, I just finished mine :-)</p>
<p><strong>EDIT</strong>: Be aware of the fact that as soon as the tunnel is up, your computer will be exposed to to the internet without any kind of firewall (the tunnel sets up a direct connection to the internet, even bypassing your router&#8217;s firewall), you can secure your machine by using <strong>ip6tables</strong>. Thanks Michael Zanetti for pointing this out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2012/12/21/ipv6-tunneling-hurricane-electrics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Building Debian packages with Deb-o-Matic</title>
		<link>http://www.dragonsreach.it/2012/09/17/building-debian-packages-with-deb-o-matic/</link>
		<comments>http://www.dragonsreach.it/2012/09/17/building-debian-packages-with-deb-o-matic/#comments</comments>
		<pubDate>Mon, 17 Sep 2012 13:07:14 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[Debian]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Deb-o-Matic]]></category>

		<guid isPermaLink="false">http://blogs.gnome.org/woody/?p=344</guid>
		<description><![CDATA[Today I&#8217;ll be telling you about an interesting way to build your Debian packages using Deb-o-Matic, a tool developed and maintained by Luca Falavigna. Some more details about this tool from the package&#8217;s description: Deb-o-Matic is an easy to use build machine for Debian source packages based on pbuilder, written in Python. It provides a&#8230;]]></description>
				<content:encoded><![CDATA[<p>Today I&#8217;ll be telling you about an interesting way to build your Debian packages using <strong>Deb-o-Matic</strong>, a tool developed and maintained by <a href="http://dktrkranz.wordpress.com" target="_blank">Luca Falavigna</a>. Some more details about this tool from the package&#8217;s description:</p>
<blockquote><p>Deb-o-Matic is an easy to use build machine for Debian source packages based on pbuilder, written in Python.</p>
<p>It provides a simple tool to automate build of source packages with limited user interaction and a simple configuration. It has some useful features such as automatic update of pbuilder, automatic scan and selection of source packages to build and modules support.</p></blockquote>
<p>The <strong>setup.</strong></p>
<p>1. Download the package.</p>
<pre>apt-get install debomatic</pre>
<p>2. Modify the <strong>main</strong> configuration file as follows:</p>
<pre>[default]
builder: pbuilder
packagedir: /home/john/debomatic # Take note of the following path since we'll need it for later use.
configdir: /etc/debomatic/distributions
pbuilderhooks: /usr/share/debomatic/pbuilderhooks
maxbuilds: 3 # The number of builds you can perform at the same time.
inotify: 1
sleep: 60 # The sleep time between one build and another.
logfile: /var/log/debomatic.log

[gpg]
gpg: 0 # Change to 1 if you want Deb-O-Matic to check the GPG signature of the uploaded packages.
keyring: /etc/debomatic/debomatic.gpg # Add the GPG Keys you want Deb-O-Matic to accept in this keyring.

[modules]
modules: 1 # A list of all the available modules will follow right after.
modulespath: /usr/share/debomatic/modules

[runtime]
alwaysupdate: unstable experimental precise
distblacklist:
modulesblacklist: Lintian Mailer
mapper: {'sid': 'unstable',
'wheezy': 'testing',
'squeeze': 'stable'}

[lintian]
lintopts: -i -I -E --pedantic # Run Lintian in Pedantic mode.

[mailer] # You need an SMTP server running on your machine for the mailer to work. You can have a look at the 'Ssmtp' daemon which is a one-minute-setup MTA, check an example over <a href="https://github.com/averi/config-files/blob/master/backups/offlineimap%20%2B%20ssmtp%20%2B%20imapfilter/ssmtp.conf" target="_blank">here</a>.
fromaddr: debomatic@localhost
smtphost: localhost
smtpport: 25
authrequired: 0
smtpuser: user
smtppass: pass
success: /etc/debomatic/mailer/build_success.mail-template # Update the build success or failure mails as you wish by modifying the relevant files.
failure: /etc/debomatic/mailer/build_failure.mail-template

[internals]
configversion = 010a</pre>
<p>The available modules are:</p>
<ol>
<li> &#8221;<strong>Contents</strong>&#8220;, which acts as a &#8216;dpkg -c&#8217; over the built packages.</li>
<li>&#8220;<strong>DateStamp</strong>&#8220;, which displays build start and finish times into a file in the build directory.</li>
<li>&#8220;<strong>Lintian</strong>&#8220;, which stores Lintian output on top of the built package in the pool directory.</li>
<li>&#8220;<strong>Mailer</strong>&#8220;, which sends a reply to the uploader once the build has finished.</li>
<li>&#8220;<strong>PrevBuildCleaner</strong>&#8220;, which deletes all files generated by the previous build.</li>
<li>&#8220;<strong>Repository</strong>&#8220;, which generates a local repository of built packages.</li>
</ol>
<p>2. Configure &#8216;<a href="http://manpages.ubuntu.com/manpages/precise/man5/dput.cf.5.html" target="_blank">dput</a>&#8216; to upload package&#8217;s sources to your local repository, edit the <strong>/etc/dput.cf</strong> file and add this entry:</p>
<pre>[debomatic]
method = local
incoming = /home/john/debomatic</pre>
<p>or the following if you are going to upload the files to a different machine through <strong>SSH</strong>:</p>
<pre>[debomatic]
login = john
fqdn = debomatic.example.net
method = scp
incoming = /debomatic</pre>
<p>3. Add a new <strong>Virtual Host</strong> on Apache and access the repository / built packages directly through your browser:</p>
<pre>&lt;VirtualHost *:80&gt;

ServerAdmin john@example.net
ServerName debomatic.example.net
DocumentRoot /home/john/debomatic

&lt;Directory /home/john/debomatic&gt;
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
&lt;/Directory&gt;

&lt;/VirtualHost&gt;</pre>
<p>4. Start the daemon:</p>
<pre>sudo /etc/init.d/debomatic start</pre>
<p>5. (<strong>Optional</strong>) Add your repository to <strong>APT</strong>&#8216;s sources.list:</p>
<pre>deb http://debomatic.example.net/ unstable main contrib non-free</pre>
<p>6. (<strong>Optional</strong>) Start Deb-O-Matic at system&#8217;s startup by modifying the <strong>/etc/init.d/debomatic</strong> file at <strong>line 21</strong>:</p>
<pre>- [ -x "$DAEMON" ] || exit 0
- [ "$DEBOMATIC_AUTOSTART" = 0 ] &amp;&amp; exit 0

+ [ -x "$DAEMON" ] || exit 0
+ [ "$DEBOMATIC_AUTOSTART" = 1 ] &amp;&amp; exit 0</pre>
<p>and finally add it to the desired <strong>runlevels</strong>:</p>
<pre>update-rc.d debomatic defaults</pre>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2012/09/17/building-debian-packages-with-deb-o-matic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BehindMOTU: La mia Intervista&#8230;</title>
		<link>http://www.dragonsreach.it/2007/10/20/behindmotu-la-mia-intervista/</link>
		<comments>http://www.dragonsreach.it/2007/10/20/behindmotu-la-mia-intervista/#comments</comments>
		<pubDate>Sat, 20 Oct 2007 10:27:00 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[Interviews]]></category>
		<category><![CDATA[MOTU]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Intervista]]></category>

		<guid isPermaLink="false">http://blogit.abluepaper.com/?p=8</guid>
		<description><![CDATA[Pochi giorni fa ho avuto l&#8217;onore di essere intervistato da BehindMOTU, vi riporto l&#8217;intera intervista (ovviamente in inglese) augurandovi ,inoltre, una buona lettura! Potete trovare il post originale qua. Today we are interviewing Andrea Veri, fresh MOTU and eager Ubuntu volunteer. Age: 18 Location: Udine, Italy IRC Nick: bluekuja How long have you used Linux and&#8230;]]></description>
				<content:encoded><![CDATA[<p>Pochi giorni fa ho avuto l&#8217;onore di essere intervistato da BehindMOTU, vi riporto l&#8217;intera intervista (ovviamente in inglese) augurandovi ,inoltre, una buona lettura! Potete trovare il post originale <a href="http://behindmotu.wordpress.com/2007/10/16/andrea-veri/" target="_blank">qua</a>.</p>
<p>Today we are interviewing <a href="https://launchpad.net/%7Eav">Andrea Veri</a>, fresh MOTU and eager Ubuntu volunteer.</p>
<p><a href="http://behindmotu.files.wordpress.com/2007/10/bluekuja.png"><img style="cursor: pointer;border: 0px initial initial" src="http://behindmotu.files.wordpress.com/2007/10/bluekuja.png" border="0" alt="" width="140" height="120" /></a></p>
<p><strong>Age:</strong> 18<br />
<strong>Location:</strong> Udine, Italy<br />
<strong>IRC Nick</strong>: bluekuja</p>
<p><strong>How long have you used Linux and what was your first distro?</strong><br />
I started using Linux at the end of 2005 using Red Hat and Fedora distros, contributing on writing several pages for Fedora documentation (mostly server docs) but mainly working on some packaging-related activities (introducing ctorrent, gtorrent-viewer and v2strip packages inside Fedora) for more than 3 months until the beginning of March 2006 when I decided to move definitely to Ubuntu after discovering it at a friend’s party. Was love at first sight that made me leaving every Fedora plan and project creating my first personal wiki page on <a href="http://wiki.ubuntu.com/">wiki.ubuntu.com</a> some days later.</p>
<p><strong>How long have you been using Ubuntu?</strong><br />
In fact, I started using Ubuntu at the beginning of 2006, firstly getting involved inside the Edubuntu family making real the possibility to have an Edubuntu Italian support and website area inside the current Italian LoCo Team.</p>
<p><strong>When did you get involved with the MOTU team and how?</strong><br />
Right after joining the Ubuntu brigade I started checking out MOTU documentation, mainly <a href="http://doc.ubuntu.com/ubuntu/packagingguide/C/">packaging guide</a> plus debian <a href="http://www.debian.org/doc/maint-guide/">new maintainer’s guide</a>, trying to understand every single new word and applying directly to a source package every lesson learned during developer’s world “travel”. After getting introduced and fascinated from an active community, I had to left the project for a while for some small problems, restarting everything on May 2007 with my first sponsored upload inside the archive. My packaging passion increased right after meeting <a href="https://launchpad.net/%7Easac">Alexander Sack</a> inside #ubuntu-mozillateam irc channel some days later, deciding to work directly with him as my mentor for both Debian and Ubuntu distributions.</p>
<p><strong>What helped you learning packaging and learning how the Ubuntu teams work?</strong><br />
I started with <a href="http://www.debian.org/doc/maint-guide/">Debian New Maintainer’s guide</a> and <a href="http://doc.ubuntu.com/ubuntu/packagingguide/C/">Ubuntu’s packaging guide</a> moving then to package my first applications learning from already-packaged software and asking if needed to Alexander improving and learning every time from him or from other developers a new Ubuntu Team lesson.</p>
<p><strong>Favorite part of working with MOTU?</strong><br />
Introducing a fix making tons of users happy is one of the best things I appreciate of being a MOTU. Mentoring, sponsoring, helping out new contributors or students is something special as well.</p>
<p><strong>Any advice for people wanting to help with MOTU?</strong><br />
I always suggest to start with a package a new contributor cares about personally, that’s useful to improve/fix the package itself during its maintenance.<br />
Reading MOTU and Debian documentation is a great starting point as well to avoid any strange question on our MOTU irc channel.</p>
<p><strong>What packages/areas of Universe are you most interested in?</strong><br />
I’m currently working on a vast area of packages, but I’ll try to focus on p2p (Peer-2-Peer) applications both for Universe and Main. I planned to create a MOTU-p2p team really soon including it inside the existing motu-torrent team, but it will take some months to organize everything up; contributors (testers/packagers) are currently missing.</p>
<p><strong>Any Plans for Hardy Heron?</strong><br />
I’ll keep working on a large number of packages but as I said before I would like to focus on having an updated situation of p2p applications, introducing libtorrent-rasterbar and its related clients like btg or linkage. Creating a working team with interested contributors and developers will be the first step to work on.</p>
<p><strong>Favorite quote?</strong></p>
<blockquote><p>“As for me, all I know is that I know nothing.” — Socrates</p></blockquote>
<p><strong>What do you do in your other spare time?<br />
</strong>I love going around with my motorbike, listening good music, playing basketball and meeting up with friends around the city centre.</p>
<p><strong>Pic of you, your work area, and/or your screen?</strong></p>
<p><a href="http://behindmotu.files.wordpress.com/2007/10/bluekuja_screen.png"><img style="cursor: pointer;border: 0px initial initial" src="http://behindmotu.files.wordpress.com/2007/10/bluekuja_screen.png" border="0" alt="" width="200" height="150" /></a></p>
<p><a href="http://3.bp.blogspot.com/_mbTtrw2j6OY/RxnaZ3XobiI/AAAAAAAAACE/xtsbAPoyTvk/s1600-h/work-space.jpg"><img style="cursor: pointer;border: 0px initial initial" src="http://behindmotu.files.wordpress.com/2007/10/bluekuja_workarea.jpg" border="0" alt="" width="200" height="150" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2007/10/20/behindmotu-la-mia-intervista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Il primo upload ha sempre un sapore speciale!</title>
		<link>http://www.dragonsreach.it/2007/09/13/il-primo-upload-ha-sempre-un-sapore-speciale/</link>
		<comments>http://www.dragonsreach.it/2007/09/13/il-primo-upload-ha-sempre-un-sapore-speciale/#comments</comments>
		<pubDate>Thu, 13 Sep 2007 18:16:00 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[MOTU]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blogit.abluepaper.com/?p=6</guid>
		<description><![CDATA[<p></p>Questo pomeriggio ho eseguito il primo upload nell'archivio di Ubuntu e devo dire che ricevere poco dopo la mail di conferma e di successo dell'operazione è qualcosa di veramente speciale! Mi trovavo in una delle tante cartelle della mia Home e dopo aver controllato innumerevoli volte che tutto fosse corretto, ho lanciato dput e eseguito l'upload del pacchetto in questione, che, dopo il solito controllo della chiave di autorizzazione (GPG-Key) ha provveduto ad inviare i file necessari al server, mandandomi poco dopo l'<a href="https://lists.ubuntu.com/archives/gutsy-changes/2007-September/008265.html">email</a> che tanto aspettavo: <em><strong>ACCEPTED</strong></em>. Dopo qualche minuto sono ripassato a controllare che i build fossero andati come aspettavo e.....

<a href="http://www.dragonsreach.it/wp-content/uploads/2007/09/build_success.png"><img class="size-full wp-image-91 alignnone" src="http://www.dragonsreach.it/wp-content/uploads/2007/09/build_success.png" alt="" width="316" height="148" /></a>

....e fortunatamente tutto era andato a buon fine! :-)]]></description>
				<content:encoded><![CDATA[<p></p>Questo pomeriggio ho eseguito il primo upload nell'archivio di Ubuntu e devo dire che ricevere poco dopo la mail di conferma e di successo dell'operazione è qualcosa di veramente speciale! Mi trovavo in una delle tante cartelle della mia Home e dopo aver controllato innumerevoli volte che tutto fosse corretto, ho lanciato dput e eseguito l'upload del pacchetto in questione, che, dopo il solito controllo della chiave di autorizzazione (GPG-Key) ha provveduto ad inviare i file necessari al server, mandandomi poco dopo l'<a href="https://lists.ubuntu.com/archives/gutsy-changes/2007-September/008265.html">email</a> che tanto aspettavo: <em><strong>ACCEPTED</strong></em>. Dopo qualche minuto sono ripassato a controllare che i build fossero andati come aspettavo e.....

<a href="http://www.dragonsreach.it/wp-content/uploads/2007/09/build_success.png"><img class="size-full wp-image-91 alignnone" src="http://www.dragonsreach.it/wp-content/uploads/2007/09/build_success.png" alt="" width="316" height="148" /></a>

....e fortunatamente tutto era andato a buon fine! :-)]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2007/09/13/il-primo-upload-ha-sempre-un-sapore-speciale/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Una grande soddisfazione!</title>
		<link>http://www.dragonsreach.it/2007/09/12/una-grande-soddisfazione/</link>
		<comments>http://www.dragonsreach.it/2007/09/12/una-grande-soddisfazione/#comments</comments>
		<pubDate>Wed, 12 Sep 2007 18:14:00 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[MOTU]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blogit.abluepaper.com/?p=5</guid>
		<description><![CDATA[Dopo ben 3 mesi dalla mia presentazione al MOTU Council per la candidatura ufficiale a Master of the Universe è giunta ieri la lieta mail di Matt Zimmerman, chairman della tech board di Ubuntu e responsabile di ogni decisione finale per ogni candidatura presentata al consiglio. La mail che potete trovare nella mailing list di&#8230;]]></description>
				<content:encoded><![CDATA[<p>Dopo ben 3 mesi dalla mia presentazione al MOTU Council per la <a href="https://lists.ubuntu.com/archives/motu-council/2007-June/000203.html">candidatura</a> ufficiale a Master of the Universe è giunta ieri la lieta mail di Matt Zimmerman, chairman della tech board di Ubuntu e responsabile di ogni decisione finale per ogni candidatura presentata al consiglio. La <a href="https://lists.ubuntu.com/archives/ubuntu-devel/2007-September/024263.html">mail</a> che potete trovare nella mailing list di ubuntu-devel annuncia il mio ingresso come developer ufficiale di Ubuntu, con permessi di upload all&#8217;interno dell&#8217;archivio. È stata per me una grandissima soddisfazione vedere dopo 2 anni di lavoro l&#8217;icona di MOTU e di Ubuntu developer nel mio profilo di <a href="https://launchpad.net/~av" target="_blank">Launchpad</a>.</p>
<p>Continuerò ora a lavorare e migliorare avendo come primo obiettivo l&#8217;ufficializzazione del gruppo &#8220;ubuntu-it-dev&#8221; nato da qualche mese nella nostra communità. Al prossimo post!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2007/09/12/una-grande-soddisfazione/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creazione MOTU Torrent Team</title>
		<link>http://www.dragonsreach.it/2007/05/20/creazione-motu-torrent-team/</link>
		<comments>http://www.dragonsreach.it/2007/05/20/creazione-motu-torrent-team/#comments</comments>
		<pubDate>Sun, 20 May 2007 19:40:00 +0000</pubDate>
		<dc:creator>Andrea Veri</dc:creator>
				<category><![CDATA[MOTU]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Torrent Team]]></category>

		<guid isPermaLink="false">http://blogit.abluepaper.com/?p=4</guid>
		<description><![CDATA[Era da parecchio tempo ormai che l&#8217;idea di creare una squadra che si dedicasse solamente alla manutenzione di pacchetti legati al protocollo bittorrent mi percorreva la mente. Da intendere però che per manutenzione non si preveda solo la creazione di pacchetti non presenti negli archivi ma anche di tenere aggiornate le applicazioni già presenti nelle&#8230;]]></description>
				<content:encoded><![CDATA[<p>Era da parecchio tempo ormai che l&#8217;idea di creare una squadra che si dedicasse solamente alla manutenzione di pacchetti legati al protocollo bittorrent mi percorreva la mente. Da intendere però che per manutenzione non si preveda solo la creazione di pacchetti non presenti negli archivi ma anche di tenere aggiornate le applicazioni già presenti nelle componenti main e universe tramite merges e syncs da debian, creando una collaborazione tra upstream e debian stesso per migliorare i programmi disponibili introducendo magari nuove realtà anche nel mondo delle librerie legate ai torrent. Proprio in questo settore mi sto impegnando ad aggiungere il supporto per la libreria creata da Rasterbar software, chiamata &#8220;libtorrent-rasterbar&#8221;, usata da numerossimi client che si sono diffusi negli ultimi tempi navigando nei meandri delle applicazioni torrent. Mi era caduto l&#8217;occhio soprattutto su linkage (<a href="http://zeflunk.googlepages.com/">http://zeflunk.googlepages.com/</a>) che richiede tra le altre cose la libreria citata in precedenza, che verrà introdotta appena l&#8217;upstream sistemerà un errore legato al soname che coincide purtroppo con quella della libreria già esistenti nei database (libtorrent).<br />Non mi resta che linkarvi le pagine legate al team, così potrete osservare più da vicino come viene organizzato il lavoro tra i membri:</p>
<p><span style="font-weight: bold">Launchpad:</span> <a href="https://launchpad.net/%7Emotu-torrent">https://launchpad.net/~motu-torrent</a><br /><span style="font-weight: bold">Wiki:</span> <a href="https://wiki.ubuntu.com/MOTU/Teams/Torrent">https://wiki.ubuntu.com/MOTU/Teams/Torrent</a><br /><span style="font-weight: bold">Bug reports:</span> <a href="https://bugs.launchpad.net/%7Emotu-torrent/+packagebugs">https://bugs.launchpad.net/~motu-torrent/+packagebugs</a></p>
<p>A presto</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dragonsreach.it/2007/05/20/creazione-motu-torrent-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
