<?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>~lionel.porcheron &#187; Ubuntu</title>
	<atom:link href="http://www.porcheron.info/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.porcheron.info</link>
	<description></description>
	<lastBuildDate>Sun, 31 Jan 2010 17:21:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Setup your Debian/Ubuntu repository with reprepro</title>
		<link>http://www.porcheron.info/setup-your-debianubuntu-repository-with-reprepro/</link>
		<comments>http://www.porcheron.info/setup-your-debianubuntu-repository-with-reprepro/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 14:03:58 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[reprepro]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=72</guid>
		<description><![CDATA[Since several years, I have some Ubuntu/Debian repositories on my servers for some custom packages and/or some local backports. I use to have my hand-made repositories, and mrpouit introduced me reprepro. It covers almost all the features we can expect from a package repository and it's quite easy to setup. Here is a quick installation [...]]]></description>
			<content:encoded><![CDATA[<p>Since several years, I have some Ubuntu/Debian repositories on my servers for some custom packages and/or some local backports. I use to have my hand-made repositories, and <a href="http://mrpouit.free.fr">mrpouit</a> introduced me <a href="http://mirrorer.alioth.debian.org/">reprepro</a>. It covers almost all the features we can expect from a package repository and it's quite easy to setup. Here is a quick installation process on Ubuntu Hardy.<br />
<code><br />
# sudo apt-get install reprepro<br />
# mkdir /srv/reprepro<br />
# cd /srv/reprepro<br />
# mkdir conf dists incoming indices logs pool project tmp<br />
</code></p>
<p>Let's configure our repository:<br />
# cd conf<br />
We will have three files:<br />
 * "distributions": the distributions the repository support<br />
 * "incoming": what to do with the incoming directory<br />
 * "uploaders": uploaders authorization</p>
<p>Let's begin with uploaders. We will make our life easy: all uploaders have an ssh access on the server, so we will limit with Unix file system access to this directory. You can limit with gpg key, but we will not do that. Here our uploaders file:<br />
<code><br />
allow * by unsigned<br />
</code></p>
<p>Here is our incoming file:<br />
<code><br />
Name: default<br />
IncomingDir: incoming<br />
TempDir: tmp<br />
Allow: hardy hardy-backports<br />
Cleanup: on_deny on_error<br />
</code></p>
<p>Our default queue is called "default", it take files from incoming, temp directory is "tmp", and by default, it goes in intrepid.</p>
<p>Let's have a look to distributions file. You have a section for each distribution in your configuration file. We describe here a sample for "hardy":<br />
<code><br />
Origin: Alveonet<br />
Label: Alveonet<br />
Suite: hardy<br />
Codename: hardy<br />
Version: 8.04<br />
Architectures: i386 amd64 source<br />
Components: main<br />
Description: Alveonet specific (or backported) packages<br />
SignWith: xxxxxxxxx<br />
DebOverride: ../indices/override.hardy.main<br />
UDebOverride: ../indices/override.hardy.main.debian-installer<br />
DscOverride: ../indices/override.hardy.main.src<br />
DebIndices: Packages Release . .gz .bz2<br />
UDebIndices: Packages . .gz .bz2<br />
DscIndices: Sources Release .gz .bz2<br />
Contents: . .gz .bz2<br />
Log: packages.alveonet.org.log<br />
</code></p>
<p>For the full explanation, you should refer to the reprepro manual. Most of the parameters are explicit, and this is the advised configuration.</p>
<p>Let's create our GPG key. Be warned that you have to do that in root, not with sudo otherwise it will go in your home directory.<br />
<code><br />
# gpg --gen-key<br />
</code><br />
Answer the question with the entity that run your package repository. Insert your key id (found with <code>gpg --list-secret-keys</code>) in the distribution file.</p>
<p>You have to touch the override (for now, we will let them empty) :<br />
<code><br />
# cd /srv/reprepro/indices<br />
# touch override.hardy.main<br />
# touch override.hardy.main.debian-installer<br />
# touch override.hardy.main.src<br />
</code></p>
<p>You can verify that it's all functional with exporting the (empty) repository:<br />
<code><br />
# reprepro -Vb /srv/reprepro export<br />
</code></p>
<p>You should see on your console something like the following:<br />
<code><br />
Exporting hardy...<br />
 generating Contents-i386...<br />
 generating Contents-amd64...<br />
Successfully created './dists/hardy/Release.gpg.new'<br />
Exporting hardy...<br />
Created directory "./dists/hardy"<br />
Created directory "./dists/hardy/main"<br />
Created directory "./dists/hardy/main/binary-i386"<br />
Created directory "./dists/hardy/main/binary-amd64"<br />
Created directory "./dists/hardy/main/source"<br />
</code></p>
<p>For uploading, nothing more easier. When building your package, you have to copy in the incoming directory the ".changes" and all the files listed here (the .dsc, .diff.gz and .orig.tar.gz). And then launch the command:<br />
<code><br />
# reprepro -Vb /srv/reprepro processincoming default<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/setup-your-debianubuntu-repository-with-reprepro/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>munin: migration from a 32bit to a 64bit host</title>
		<link>http://www.porcheron.info/munin-migration-from-a-32bit-to-a-64bit-host/</link>
		<comments>http://www.porcheron.info/munin-migration-from-a-32bit-to-a-64bit-host/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 20:57:00 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[munin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=68</guid>
		<description><![CDATA[When you migration your munin from a 32bits to a 64bits installation, you have to dump restore all your rrd files. Saying that looks like a pain, but in fact, it is easy to do . We migrate some months ago our munin/nagios server at work from an old 32bits server to a brand new [...]]]></description>
			<content:encoded><![CDATA[<p>When you migration your munin from a 32bits to a 64bits installation, you have to dump restore all your rrd files. Saying that looks like a pain, but in fact, it is easy to do <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . We migrate some months ago our munin/nagios server at work from an old 32bits server to a brand new rack server using a 64bit Ubuntu 8.04.1, we performed the following scripts and kept our historic.</p>
<p>Here are the two scripts (you need some disk space to perform the dump / restore) . I assume you have copied the content of you "old" server on the new server. On Ubuntu/Debian servers, rrd files usually lives in /var/lib/munin.</p>
<p>First dump script :</p>
<pre>#!/bin/bash
for f in `find /var/lib/munin -name '*.rrd' -print` ; do
    xml_file=`dirname $f`/`basename $f .rrd`.xml
   rrdtool dump "$f" &gt; "${xml_file}"
   chown root:root "${xml_file}"
done</pre>
<p>Import script :</p>
<pre>#!/bin/bash
for f in `find /var/lib/munin -name '*.xml' -print` ; do
   rrd_file=`dirname $f`/`basename $f .xml`.rrd
   mv -f "${rrd_file}" "${rrd_file}.bak"
   chown root:root "${rrd_file}.bak"
   rrdtool restore "$f" "${rrd_file}"
   chown munin:munin "${rrd_file}"
done</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/munin-migration-from-a-32bit-to-a-64bit-host/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Using listadmin to manage mailman</title>
		<link>http://www.porcheron.info/using-listsadmin-to-manage-mailman/</link>
		<comments>http://www.porcheron.info/using-listsadmin-to-manage-mailman/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 17:09:51 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[listadmin]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=69</guid>
		<description><![CDATA[I'm managing a bunch of mailman lists for work and out-of-work activities. The web interface of mailman is great, but sometimes, it is just slow to have to go through the web interface. It is unproductive when you have several pending messages and you have to go through all the queues. Hopefully, listadmin is there [...]]]></description>
			<content:encoded><![CDATA[<p>I'm managing a bunch of mailman lists for work and out-of-work activities. The web interface of mailman is great, but sometimes, it is just slow to have to go through the web interface. It is unproductive when you have several pending messages and you have to go through all the queues. Hopefully, listadmin is there <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Setup is easy on Ubuntu or Debian:</p>
<pre>$ sudo apt-get install listadmin</pre>
<p>Configuration is not really difficult. It is a file ~/.listadmin.ini, here is a sample configuration:</p>
<pre># lists.xxxxxx.com
adminurl https://lists.xxxxxx.com/admindb/{list}
password secret
dev@lists.xxxxxx.com
users@lists.xxxxx.com</pre>
<p>Launching with the command line:</p>
<pre>lionel@brehat:~$ listadmin lists.xxxxxx.fr
fetching data for dev@lists.xxxxxx.com ... nothing in queue
fetching data for users@lists.xxxxxx.com ...
[1/1] ============== users@lists.xxxxxxx.com =====================
From:     uaowiqemxjoije@mbit.ru
Subject:  Faire de l'argent en ligne - Plus de 500 euro/jour! ba
Reason:   Message avec destination implicite                   Spam? 0
Approve/Reject/Discard/Skip/view Body/Full/jump #/Undo/Help/Quit ? D
Submit changes? [yes] yes</pre>
<p>By default, listadmin will go through all the lists in your configuration file. Note that you can have several lists on several hosts. You can limit to some list / host appending a list name or a regexp to the command line. In my example, I just limited to a host.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/using-listsadmin-to-manage-mailman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu install party at Toulouse</title>
		<link>http://www.porcheron.info/ubuntu-install-party-at-toulouse/</link>
		<comments>http://www.porcheron.info/ubuntu-install-party-at-toulouse/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 23:40:10 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[install-party]]></category>
		<category><![CDATA[odyssud]]></category>
		<category><![CDATA[toulibre]]></category>
		<category><![CDATA[toulouse]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Ubuntu-fr]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=92</guid>
		<description><![CDATA[Some of you may have noticed the announce made on the well known linuxfr website, but there will be an Ubuntu party near Toulouse (in Blagnac) next saturday. During this party, you will be able to: install Ubuntu on your computer. People from Ubuntu-fr and Toulibre will be delighted to help you in installing our [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you may have noticed the <a title="linuxfr announce" href="http://linuxfr.org/2008/11/04/24638.html" target="_blank">announce</a> made on the well known <a href="http://linuxfr.org" target="_blank">linuxfr</a> website, but there will be an Ubuntu party near Toulouse (in Blagnac) next saturday. During this party, you will be able to:</p>
<ul>
<li>install Ubuntu on your computer. People from <a href="http://www.ubuntu-fr.org" target="_blank">Ubuntu-fr</a> and <a href="http://www.toulibre.org" target="_blank">Toulibre</a> will be delighted to help you in installing our favourite OS.</li>
<li>Assist to conference about Ubuntu and FOSS in general.</li>
<li>Talk about Ubuntu and FOSS</li>
<li>Buy goodies <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ul>
<p>I will give three presentations (damn, I have to finish my slides!): <em>"What's New in Ubuntu 8.10"</em>, <em>"Ubuntu at Home and at Work"</em> and <em>"Contributing to Ubuntu"</em> with <a href="http://www.reponses.net" target="_blank">Christophe</a> (Ubuntu-fr president). I will post my the slides when they are ready and photos.</p>
<p>You can find on Toulibre website <a href="http://www.toulibre.org/ubuntuParty" target="_self">all the details about the event</a>.</p>
<p>Hope to see you on saturday!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/ubuntu-install-party-at-toulouse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>6 months with apt-cacher</title>
		<link>http://www.porcheron.info/6-months-with-apt-cacher/</link>
		<comments>http://www.porcheron.info/6-months-with-apt-cacher/#comments</comments>
		<pubDate>Wed, 29 Oct 2008 23:51:17 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=73</guid>
		<description><![CDATA[At work we started to use apt-cacher few days before Ubuntu 8.04 (Hardy) release. I previously explained the setup in this blog. Ubuntu 8.10 (Intrepid) is about to be released, it's time to do a review of how things have gone during the last six months. Figures: you can find attached to this post a [...]]]></description>
			<content:encoded><![CDATA[<p>At work we started to use apt-cacher few days before Ubuntu 8.04 (Hardy) release. I previously explained the setup in this blog. Ubuntu 8.10 (Intrepid) is about to be released, it's time to do a review of how things have gone during the last six months.</p>
<ul>
<li><strong>Figures:</strong> you can find attached to this post a screenshot of our report page (you can get a similar page on http://your_cacher:3142/report.html). As you can see, we have avoided around 140 MB. We have around 40 servers running Ubuntu and around 40 desktops/laptops running diffent Ubuntu flavours (Ubuntu/Kubuntu/Xubuntu).</li>
<li><strong>Feeling:</strong> More than figures, apt-cacher is a nice tool to use: you do not wait anymore your downloads. It's often in the local cache. Applying kernel security update does not mean anymore to wait for downloads. You downlard your kernel around 30MB/s!</li>
</ul>
<p>We have no regrets in the short time investment we made on installing and configuring this tool. We may have a look in the future on apt-cacher-ng, but now, everything is running well.</p>
<p style="text-align: center;"><a href="http://www.porcheron.info/blog/wp-content/uploads/2008/10/apt-cacher.png"><img class="size-medium wp-image-74 aligncenter" title="apt-cacher" src="http://www.porcheron.info/blog/wp-content/uploads/2008/10/apt-cacher-300x221.png" alt="" width="300" height="221" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/6-months-with-apt-cacher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Better jesred rules</title>
		<link>http://www.porcheron.info/better-jesred-rules/</link>
		<comments>http://www.porcheron.info/better-jesred-rules/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 08:56:49 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=66</guid>
		<description><![CDATA[A friend of mine give me better rules for jesred. You can now browse the repository in the browser: ﻿regex ^http://((.*)archive.ubuntu.com/ubuntu/(dists&#124;pool)/.*(deb&#124;bz2&#124;Release&#124;Release.gpg))$ http://apt-cacher:3142/\1 regex ^http://(security.ubuntu.com/ubuntu/(dists&#124;pool)/.*(deb&#124;bz2&#124;Release&#124;Release.gpg))$ http://apt-cacher:3142/\1 Thanks Jerôme!]]></description>
			<content:encoded><![CDATA[<p>A friend of mine give me better rules for jesred. You can now browse the repository in the browser:</p>
<p>﻿<span style="font-size: small;">regex ^http://((.*)archive.ubuntu.com/ubuntu/(dists|pool)/.*(deb|bz2|Release|Release.gpg))$    http://apt-cacher:3142/\1</span><br />
<span style="font-size: small;">regex ^http://(security.ubuntu.com/ubuntu/(dists|pool)/.*(deb|bz2|Release|Release.gpg))$    http://apt-cacher:3142/\1</span></p>
<p>Thanks Jerôme!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/better-jesred-rules/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bandwith optimization: squid, apt-cacher and jesred</title>
		<link>http://www.porcheron.info/bandwith-optimization-squid-apt-cacher-and-jesred/</link>
		<comments>http://www.porcheron.info/bandwith-optimization-squid-apt-cacher-and-jesred/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 21:23:24 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=64</guid>
		<description><![CDATA[At work, I now have around 50 desktops running Ubuntu and around 40 servers (including customers machines) also running Ubuntu. As you can imagine, when you have a security update of X, this represents a lot of bandwith usage! Not to speak about Hardy upgrade! We started to look at different solutions to optimize our [...]]]></description>
			<content:encoded><![CDATA[<p>At work, I now have around 50 desktops running Ubuntu and around 40 servers (including customers machines) also running Ubuntu. As you can imagine, when you have a security update of X, this represents a lot of bandwith usage! Not to speak about Hardy upgrade! We started to look at different solutions to optimize our precious bandwith.</p>
<p>Some search gave:</p>
<ul>
<li><em><strong>local mirror</strong></em>: huch... this is a bit too much for us <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li><em><strong>squid usage</strong></em>: good, but you need to tweak too much your squid installation to keep your .deb inside the pool. And squid can make .deb expires even they are still valid.</li>
<li><em><strong>apt-proxy/apt-cacher/apt-cacher-ng</strong></em>: all looks good but... you have to modify your client configuration. As I am lazy, I don't want to do that (and also, because I have mobile users who only want to use the cache when they are on the corporate network). Between the three, I chose apt-cacher, just based on some reading on the web... Other may be as good as apt-cacher!</li>
</ul>
<p>We selected the association: <a title="squid" href="http://www.squid-cache.org" target="_blank">squid</a> + <a title="apt-cacher" href="http://packages.qa.debian.org/a/apt-cacher.html">apt-cacher</a> + <a title="jesred" href="http://www.linofee.org/~jel/webtools/jesred/">jesred</a>. Let's have a look on each component:</p>
<ul>
<li><em><strong>apt-cacher</strong></em>: .deb and Packages/Source cache. You can also import data from another source (for exemple from a cd-rom).</li>
<li><em><strong>squid</strong></em>: THE proxy, we use it as a transparent proxy in our case.</li>
<li><em><strong>jesred</strong></em>: rewrite squid URL and redirect access to the Ubuntu archive to apt-cacher.</li>
</ul>
<p>The installation described below was made on a <a title="Ubuntu" href="http://www.ubuntu.com" target="_blank">Ubuntu</a> 8.04. The machine is a Xen virtual machine (I'll talk about Xen another time <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> ). All the softwares are taken from Ubuntu repositories: squid beeing in main, other packages are in universe (ensure universe is enabled). Installation and configuration is really easy!</p>
<p><strong>squid installation</strong></p>
<p><code># apt-get install squid</code></p>
<p><strong>squid configuration</strong></p>
<p>Edit /etc/squid.conf and add in ACL definititions:<br />
<code>acl mylan src 10.0.0.0/255.255.0.0</code></p>
<p>Allow traffic from you network:<br />
<code>http_access allow mylan</code></p>
<p>You can now test your squid. It should be operational.</p>
<p><strong>apt-cacher installation</strong></p>
<p><code># apt-get install apt-cacher</code></p>
<p>I just changed the admin_email value in <code>/etc/apt-cacher/apt-cacher.conf</code></p>
<p>As a quick test, set http_proxy env value and try to use apt. Everything should go throught the cache (check the logs).</p>
<p><strong>jesred installation</strong></p>
<p><code># apt-get install jesred</code></p>
<p><strong>jesred configuration</strong></p>
<p>Edit <code> /etc/jesred.acl</code> to authorize your network (just add you lan at the end of the file).</p>
<p>Edit <code>/etc/jesred.rules</code> and add:<br />
<code>regex ^http://((.*)archive.ubuntu.com/ubuntu/(dists|pool)/.*)$    http://localhost:3142/\1<br />
regex ^http://(security.ubuntu.com/ubuntu/(dists|pool)/.*)$    http://localhost:3142/\1</code></p>
<p>I have also added two aborts in order to use upgrade-manager:<br />
<code>abort .gpg<br />
abort ReleaseAnnouncement<br />
</code><br />
Last but not least, the glue between all the elements:</p>
<p>Edit <code>/etc/squid.conf</code> and add:<br />
<code>redirect_program /usr/lib/squid/jesred</code></p>
<p>Finished ! Now your squid redirect all requests to *archive.ubuntu.com and security.ubuntu.com to apt-cacher. Happy installation / upgrades!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/bandwith-optimization-squid-apt-cacher-and-jesred/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Mandatory Ubuntu 8.04 LTS release post</title>
		<link>http://www.porcheron.info/mandatory-ubuntu-804-lts-release-post/</link>
		<comments>http://www.porcheron.info/mandatory-ubuntu-804-lts-release-post/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 20:20:14 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/?p=63</guid>
		<description><![CDATA[I guess everybody has already read it, but Ubuntu has released a new release : 8.04 (8 for 2008, 4 for april). Note that this release is a LTS release (Ubuntu and Ubuntu Server only, Kubuntu and orther derivates are not ong term surpport release). As a result, you can upgrade from Ubuntu 7.10 (aka [...]]]></description>
			<content:encoded><![CDATA[<p>I guess everybody has already read it, but <a title="Ubuntu" href="http://www.ubuntu.com">Ubuntu</a> has released a new release : 8.04 (8 for 2008, 4 for april). Note that this release is a LTS release (Ubuntu and Ubuntu Server only, Kubuntu and orther derivates are not ong term surpport release). As a result, you can upgrade from Ubuntu 7.10 (aka Gutsy) and 6.06.2 (aka Dapper).</p>
<p>I run 8.04 on my laptop and on my personal servers for several months now, and it run quite well. <a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/218126" target="_blank">This bug on Ubuntu Kernel</a> made my life at work a bit more difficult, but it should hopefully be fixed in 8.04.1 (due july 3rd).</p>
<p>Now, it's time to be intrepid!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/mandatory-ubuntu-804-lts-release-post/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server on slashdot!</title>
		<link>http://www.porcheron.info/ubuntu-server-on-slashdot/</link>
		<comments>http://www.porcheron.info/ubuntu-server-on-slashdot/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 16:34:09 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/ubuntu-server-on-slashdot/</guid>
		<description><![CDATA[Yesterday I was talking about Ubuntu advertisings on youtube, today, there is an Ubuntu Server advertising on slashdot : Canonical is pushing hard Ubuntu Server those days (a lot of cool specs have been written for hardy), and that's a very good thing for the server platform!]]></description>
			<content:encoded><![CDATA[<p>Yesterday I was talking about Ubuntu advertisings on youtube, today, there is an Ubuntu Server advertising on slashdot :</p>
<p><a title="Ubuntu Server Advertising on slashdot" href="http://www.porcheron.info/blog/wp-content/uploads/2007/11/ubuntu_server_slashdot.png"></a></p>
<p style="text-align: center"><a title="Ubuntu Server Advertising on slashdot" href="http://www.porcheron.info/blog/wp-content/uploads/2007/11/ubuntu_server_slashdot.png"><img src="http://www.porcheron.info/blog/wp-content/uploads/2007/11/ubuntu_server_slashdot.thumbnail.png" alt="Ubuntu Server Advertising on slashdot" /></a></p>
<p>Canonical is pushing hard Ubuntu Server those days (a lot of cool specs have been written for hardy), and that's a very good thing for the server platform!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/ubuntu-server-on-slashdot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Server Advertisings</title>
		<link>http://www.porcheron.info/ubuntu-server-advertisings/</link>
		<comments>http://www.porcheron.info/ubuntu-server-advertisings/#comments</comments>
		<pubDate>Wed, 28 Nov 2007 16:07:42 +0000</pubDate>
		<dc:creator>Lionel Porcheron</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/ubuntu-server-advertisings/</guid>
		<description><![CDATA[Gerry Carr (Canonical marketing manager) just announced on the Ubuntu marketing mailing list two advertisings for the Ubuntu Server edition. Some US business and IT-related websites show the videos. Here are the videos on youtube: http://www.youtube.com/watch?v=vkMlCeDu-0c&#38;feature=related http://www.youtube.com/watch?v=F6L51uZjaZU&#38;feature=related See the complete announce.]]></description>
			<content:encoded><![CDATA[<p>Gerry Carr (Canonical marketing manager) just announced on the Ubuntu marketing mailing list two advertisings for the Ubuntu Server edition. Some US business and IT-related websites show the videos. Here are the videos on youtube:</p>
<p><tt><a href="http://www.youtube.com/watch?v=vkMlCeDu-0c&amp;feature=related">http://www.youtube.com/watch?v=vkMlCeDu-0c&amp;feature=related</a></tt><br />
<tt><a href="http://www.youtube.com/watch?v=F6L51uZjaZU&amp;feature=related">http://www.youtube.com/watch?v=F6L51uZjaZU&amp;feature=related</a></tt></p>
<p>See the complete <a href="https://lists.ubuntu.com/archives/ubuntu-marketing/2007-November/002593.html" target="_blank">announce.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/ubuntu-server-advertisings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
