<?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"
	>

<channel>
	<title>Lionel's blog</title>
	<atom:link href="http://www.porcheron.info/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.porcheron.info</link>
	<description></description>
	<pubDate>Tue, 01 Jul 2008 10:17:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<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</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></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>
		</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</dc:creator>
		
		<category><![CDATA[Debian]]></category>

		<category><![CDATA[Debian-en]]></category>

		<category><![CDATA[GNU/Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></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&#8230; 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&#8230; you have to modify your client configuration. As I am lazy, I don&#8217;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&#8230; 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&#8217;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&#8217;ll talk about Xen another time ;-)). 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>
		</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</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></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&#8217;s time to be intrepid!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/mandatory-ubuntu-804-lts-release-post/feed/</wfw:commentRss>
		</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</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></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&#8217;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 href="http://www.porcheron.info/blog/wp-content/uploads/2007/11/ubuntu_server_slashdot.png" title="Ubuntu Server Advertising on slashdot"></a></p>
<p style="text-align: center"><a href="http://www.porcheron.info/blog/wp-content/uploads/2007/11/ubuntu_server_slashdot.png" title="Ubuntu Server Advertising on slashdot"><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&#8217;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>
		</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</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></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>
		</item>
		<item>
		<title>Ubuntu Server Team</title>
		<link>http://www.porcheron.info/ubuntu-server-team/</link>
		<comments>http://www.porcheron.info/ubuntu-server-team/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 13:23:12 +0000</pubDate>
		<dc:creator>lionel</dc:creator>
		
		<category><![CDATA[GNU/Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/ubuntu-server-team/</guid>
		<description><![CDATA[One of the thing I should have done on the 18th of october, is blogging about the new Ubuntu release : 7.10, codename Gutsy Gibbon. No need to make another list of new (great) features included in the release, I would like to talk about the server team.
During gutsy cycle, Canonical have hired a bunch [...]]]></description>
			<content:encoded><![CDATA[<p>One of the thing I should have done on the 18th of october, is blogging about the new Ubuntu release : 7.10, codename Gutsy Gibbon. No need to make another list of <a href="http://www.ubuntu.com/getubuntu/releasenotes/710tour" title="Ubuntu 7.10" target="_blank">new (great) features included in the release</a>, I would like to talk about the <a href="https://launchpad.net/~ubuntu-server" title="Ubuntu Server Team on Launchpad" target="_blank">server team</a>.</p>
<p>During gutsy cycle, <a href="http://www.canonical.com" title="Canonical website" target="_blank">Canonical</a> have hired a <a href="https://launchpad.net/~canonical-server" title="Canonical Server Team on Launchpad" target="_blank">bunch of people</a> for taking care of the server platform. The team has been growing (thanks to the community), and we are now 78 members. This team is working hard to make Ubuntu Server rocks (well, it&#8217;s already rocks, but rocks <strong>more</strong>). First results have reached gutsy, there will be more for hardy, the next Ubuntu release (due in April) which will be a LTS (Long Term Support, which for the server team means 5 years).</p>
<p>Lot of people have been asking &#8220;Why I should use Ubuntu as a server, Ubuntu is a desktop distro?&#8221;. I remember <a href="https://launchpad.net/~adconrad" target="_blank" title="Adam Conrad on Launchpad">Adam Conrad</a> saying about differences between Debian and Ubuntu as a server : &#8220;Release schedule, LTS releases, commercial support from Canonical, and a different logo&#8221;. From my experience, I think it is an excellent summary of the advantages of Ubuntu.</p>
<p>If you&#8217;re looking into contributing or if you want to help us, reporting bug is a good starting point!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/ubuntu-server-team/feed/</wfw:commentRss>
		</item>
		<item>
		<title>blog revival</title>
		<link>http://www.porcheron.info/blog-revival/</link>
		<comments>http://www.porcheron.info/blog-revival/#comments</comments>
		<pubDate>Fri, 02 Nov 2007 13:23:08 +0000</pubDate>
		<dc:creator>lionel</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/blog-revival/</guid>
		<description><![CDATA[Yes, I know I should have blog more frequently during the past months. I have been really busy at work (do to company growing and growing). Well, I have migrated to the latest and greatest Wordpress release, updated my theme (the old one was broken during the upgrade), and better configured my blog : it [...]]]></description>
			<content:encoded><![CDATA[<p>Yes, I know I should have blog more frequently during the past months. I have been really busy at work (do to company growing and growing). Well, I have migrated to the latest and greatest Wordpress release, updated my theme (the old one was broken during the upgrade), and better configured my blog : it is now host on the root of <a href="http://www.porcheron.info" title="http://www.porcheron.info">my website</a><a href="http://www.porcheron.info" title="my website"></a>, permalinks are more understandable (thanks <a href="http://www.jibees.net/blog/" title="JB">JB</a> for his help).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/blog-revival/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Canonical Landscape</title>
		<link>http://www.porcheron.info/canonical-landscape/</link>
		<comments>http://www.porcheron.info/canonical-landscape/#comments</comments>
		<pubDate>Thu, 16 Aug 2007 23:34:50 +0000</pubDate>
		<dc:creator>lionel</dc:creator>
		
		<category><![CDATA[GNU/Linux]]></category>

		<category><![CDATA[Ubuntu-en]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/blog/?p=56</guid>
		<description><![CDATA[During Ubuntu Live in Portland, Canonical (the Ubuntu main sponsor) announced the availability of Landscape a tool for Canonical support customers.
This tool was designed to manage your IT infrastructure: all your servers/desktops/laptops are configurable through a web interface. The web interface also permit to get an inventory (hardware and software), to monitor them, etc. For [...]]]></description>
			<content:encoded><![CDATA[<p>During <a href="http://www.ubuntulive.com">Ubuntu Live</a> in Portland, Canonical (the Ubuntu main sponsor) announced the availability of <a href="http://canonical.com/landscape">Landscape</a> a tool for Canonical support customers.<br />
This tool was designed to manage your IT infrastructure: all your servers/desktops/laptops are configurable through a web interface. The web interface also permit to get an inventory (hardware and software), to monitor them, etc. For a complete (and better) description visit the <a href="http://canonical.com/landscape">presentation page on Canonical website</a>.<br />
This tool appears to be the dreamed tool for the sysadmin I am. I have to confess that we have started a super-secret project for a similar tool. Well, that&#8217;s said, I also have to confess that landscape looks better than our tool right now&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/canonical-landscape/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MSN Filtering</title>
		<link>http://www.porcheron.info/msn-filtering/</link>
		<comments>http://www.porcheron.info/msn-filtering/#comments</comments>
		<pubDate>Thu, 16 Aug 2007 23:09:23 +0000</pubDate>
		<dc:creator>lionel</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/blog/?p=55</guid>
		<description><![CDATA[I have just discovered during the last days that MSN was filtering the content of the messages we sent.  On his blog, Nion explains in details what&#8217;s going on. To make it brief, we can&#8217;t send anymore URL/mail addresses that ends with &#8220;.info&#8221;. Sadly, my domaines ends with&#8230; &#8220;.info&#8221;. I don&#8217;t use too much [...]]]></description>
			<content:encoded><![CDATA[<p>I have just discovered during the last days that MSN was filtering the content of the messages we sent.  On <a href="http://nion.modprobe.de/blog/archives/578-censorship-on-MSN.html">his blog, Nion</a> explains in details what&#8217;s going on. To make it brief, we can&#8217;t send anymore URL/mail addresses that ends with &#8220;.info&#8221;. Sadly, my domaines ends with&#8230; &#8220;.info&#8221;. I don&#8217;t use too much MSN, but that&#8217;s annoying&#8230;<br />
For people who still use MSN, it&#8217;s time to move to a better alternative. Who said <a href="http://www.jabber.org">Jabber</a>? <img src='http://www.porcheron.info/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/msn-filtering/feed/</wfw:commentRss>
		</item>
		<item>
		<title>seamlessrdp: Windows applications integrated in your Linux desktop</title>
		<link>http://www.porcheron.info/seamlessrdp-windows-applications-integrated-in-your-linux-desktop/</link>
		<comments>http://www.porcheron.info/seamlessrdp-windows-applications-integrated-in-your-linux-desktop/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 08:57:35 +0000</pubDate>
		<dc:creator>lionel</dc:creator>
		
		<category><![CDATA[GNU/Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu-en]]></category>

		<guid isPermaLink="false">http://www.porcheron.info/blog/?p=53</guid>
		<description><![CDATA[Cendio has recently released in OpenSource a component called &#8220;seamlessrdp&#8221;. The difference with opening a session with rdesktop on a Windows server it that individual application is integrated in your environement.
You need two components : a component on the server side, another on the client side. On the client side, rdesktop superior to 1.5 get [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cendio.com">Cendio</a> has recently released in OpenSource a component called &#8220;seamlessrdp&#8221;. The difference with opening a session with rdesktop on a Windows server it that individual application is integrated in your environement.</p>
<p>You need two components : a component on the server side, another on the client side. On the client side, rdesktop superior to 1.5 get it.</p>
<p>For the server side, you will get details intructions on <a href="http://www.cendio.com/seamlessrdp/">Cendio seammlessrdp webpage</a>. It just consists in unzipping a zip somewhere on your Windows machine.</p>
<p>Here is the command line I use to launch Internet Explorer on a remote machine :<br />
<code><br />
$ rdesktop -a 24 -A -s "c:\seamlessrdp\seamlessrdpshell.exe c:\program files\internet explorer\iexplore.exe" windows_server -u lionel -p -<br />
</code></p>
<p>Here is the result on my desktop :</p>
<div align="center">
<a href='http://www.porcheron.info/blog/wp-content/uploads/2007/08/seamlessrdp.png' title='seamlessrdp screenshot'><img src='http://www.porcheron.info/blog/wp-content/uploads/2007/08/seamlessrdp.thumbnail.png' alt='seamlessrdp screenshot' /></a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.porcheron.info/seamlessrdp-windows-applications-integrated-in-your-linux-desktop/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
