<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Debian on iMil.net</title>
    <link>http://imil.net/blog/tags/debian/</link>
    <description>Recent content in Debian on iMil.net</description>
    <generator>Hugo</generator>
    <language>en-us</language>
    <lastBuildDate>Sun, 21 Aug 2022 20:43:27 +0200</lastBuildDate>
    <atom:link href="http://imil.net/blog/tags/debian/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>Build a Single in Tree Linux Kernel Module (Debian &amp; Clones)</title>
      <link>http://imil.net/blog/posts/2022/build-a-single-in-tree-linux-kernel-module-debian--clones/</link>
      <pubDate>Sun, 21 Aug 2022 20:43:27 +0200</pubDate>
      <guid>http://imil.net/blog/posts/2022/build-a-single-in-tree-linux-kernel-module-debian--clones/</guid>
      <description>&lt;p&gt;How misleading and complicated this task should be that I&amp;rsquo;m writing such an article in 2022?&lt;br&gt;&#xA;Anyway, if you struggle compiling a simple, standalone Linux kernel module on Debian, Ubuntu, Mint and the like, here&amp;rsquo;s the recipe:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Fetch &lt;code&gt;linux-source-&amp;lt;version&amp;gt;&lt;/code&gt; and &lt;code&gt;linux-headers-&amp;lt;version&amp;gt;&lt;/code&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ sudo apt install linux-source-5.4.0 linux-headers-&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;uname -r&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Do &lt;strong&gt;not&lt;/strong&gt; use &lt;code&gt;apt-get source linux-source-&amp;lt;version&amp;gt;&lt;/code&gt;, &lt;em&gt;only pain will you find&lt;/em&gt;.&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;Untar the fetched archive where you&amp;rsquo;d like&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ tar jxvf /usr/src/linux-source-5.4.0.tar.bz2&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Copy your current kernel configuration&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ cd linux-source-5.4.0&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ cp /boot/config-&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;uname -r&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt; .config&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Prepare the build environment&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ make oldconfig scripts prepare modules_prepare&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Copy current kernel exported symbols file&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ cp /usr/src/linux-headers-&lt;span style=&#34;color:#66d9ef&#34;&gt;$(&lt;/span&gt;uname -r&lt;span style=&#34;color:#66d9ef&#34;&gt;)&lt;/span&gt;/Module.symvers .&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Build the module you need&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ make -C . M&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;arch/x86/kvm&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;ul&gt;&#xA;&lt;li&gt;Test it&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-shell&#34; data-lang=&#34;shell&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;$ sudo insmod arch/x86/kvm/kvm-intel.ko&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Eventually backup the current loaded module (&lt;code&gt;modinfo &amp;lt;module&amp;gt;&lt;/code&gt;), replace it with your freshly built one and don&amp;rsquo;t forget to &lt;code&gt;depmod -a&lt;/code&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Kubernetes under my desk</title>
      <link>http://imil.net/blog/posts/2018/kubernetes-under-my-desk/</link>
      <pubDate>Tue, 16 Oct 2018 14:52:05 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2018/kubernetes-under-my-desk/</guid>
      <description>&lt;p&gt;I&amp;rsquo;m diving into &lt;a href=&#34;https://kubernetes.io&#34;&gt;Kubernetes&lt;/a&gt; for a couple of months now. Discovering the possibilities and philosophy behind the hype definitely changed my mind. Yes, it is huge (in every sense ;) ) and it does change the way we, ex-sysops / ops / syasdmins do our work. Not tomorrow, not soon, now.&lt;/p&gt;&#xA;&lt;p&gt;I&amp;rsquo;ve had my hands on various managed &lt;a href=&#34;https://kubernetes.io/docs/setup/scratch/&#34;&gt;kubernetes clusters&lt;/a&gt; like &lt;em&gt;GKE (Google Container Engine)&lt;/em&gt;, &lt;em&gt;EKS (AWS Elastic Container Service)&lt;/em&gt; or the more humble &lt;a href=&#34;https://kubernetes.io/docs/setup/minikube/&#34;&gt;minikube&lt;/a&gt; but I&amp;rsquo;m not happy when I don&amp;rsquo;t understand what a technology is made of. So I &lt;em&gt;googled&lt;/em&gt; and &lt;em&gt;googled&lt;/em&gt; (yeah sorry &lt;em&gt;Qwant&lt;/em&gt; and &lt;em&gt;duckduckgo&lt;/em&gt; I needed actual answers), until I found &amp;gt;&lt;a href=&#34;https://github.com/salmanb/Kubernetes-HA-on-baremetal&#34;&gt;many&lt;/a&gt; &amp;gt;&lt;a href=&#34;https://github.com/kelseyhightower/kubernetes-the-hard-way&#34;&gt;incredibly&lt;/a&gt; &amp;gt;&lt;a href=&#34;http://nerdcoding.org/blog/2018/2018-05-08-Kubernetes-with-KVM-debian-host.html&#34;&gt;useful&lt;/a&gt; resources.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Running Debian from an USB stick on a MacBook Pro</title>
      <link>http://imil.net/blog/posts/2017/running-debian-from-an-usb-stick-on-a-macbook-pro/</link>
      <pubDate>Fri, 04 Aug 2017 12:53:12 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2017/running-debian-from-an-usb-stick-on-a-macbook-pro/</guid>
      <description>&lt;p&gt;Yeah well, it happened. In my &lt;a href=&#34;http://imil.net/blog/2017/07/31/Running-FreeBSD-from-an-USB-stick-on-a-MacBook-Pro/&#34;&gt;last post&lt;/a&gt; I was excited to get back to a BSD UNIX (FreeBSD) for my laptop, &lt;a href=&#34;https://twitter.com/iMilnb/status/892138918560374784&#34;&gt;I thought I had fought the worse&lt;/a&gt; when rebuilding kernel and world in order to have a working &lt;em&gt;DRM&lt;/em&gt; module for the Intel Iris 6100 that is bundled with this &lt;em&gt;MacBook Pro&lt;/em&gt; generation. But I was wrong. None of the BSDs around had support for the &lt;em&gt;BCM43602&lt;/em&gt; chip that provides WiFi to the laptop. What&amp;rsquo;s the point of a laptop without WiFi&amp;hellip;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Start pkgsrc&#39;s nginx with systemd</title>
      <link>http://imil.net/blog/posts/2016/start-pkgsrc-s-nginx-with-systemd/</link>
      <pubDate>Sun, 28 Feb 2016 08:17:20 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2016/start-pkgsrc-s-nginx-with-systemd/</guid>
      <description>&lt;p&gt;Not so long ago, I wrote about &lt;a href=&#34;https://imil.net/blog/2015/07/05/using-pkgsrc-on-debian-gnulinux/&#34;&gt;using pkgsrc on Debian GNU/Linux&lt;/a&gt;, and assumed you&amp;rsquo;d start an installed service using &lt;a href=&#34;https://www.netbsd.org/docs/guide/en/chap-rc.html&#34;&gt;rc.d&lt;/a&gt;. When I setup the new &lt;a href=&#34;//iMil.net&#34;&gt;iMil.net&lt;/a&gt; server, I decided to give a try to &lt;a href=&#34;http://www.linux-kvm.org/page/Main_Page&#34;&gt;kvm&lt;/a&gt; as it is easier to maintain, has good performances (&lt;a href=&#34;https://major.io/2014/06/22/performance-benchmarks-kvm-vs-xen/&#34;&gt;sometimes better than Xen&lt;/a&gt;), nice administration tools, plus &lt;a href=&#34;http://netbsd.gw.com/cgi-bin/man-cgi?virtio+4+NetBSD-7.0&#34;&gt;NetBSD now has a good VirtIO driver&lt;/a&gt; but no &lt;a href=&#34;http://wiki.xen.org/wiki/Xen_Linux_PV_on_HVM_drivers&#34;&gt;PVHVM&lt;/a&gt; support yet.&lt;/p&gt;&#xA;&lt;p&gt;The first thing I do when setting up a &lt;em&gt;Debian Jessie&lt;/em&gt; server is getting rid of &lt;code&gt;systemd&lt;/code&gt;, whose philosophy and quality don&amp;rsquo;t match my personnal taste; but in that case, I wanted to use &lt;code&gt;libvirtd&lt;/code&gt; so I could manage my virtual machines with &lt;code&gt;virt-manager&lt;/code&gt;, and as a matter of fact, &lt;code&gt;libvirtd&lt;/code&gt; has a hard dependency on &lt;code&gt;systemd&lt;/code&gt;. There was no escape this time, I had to learn and use it.&lt;/p&gt;</description>
    </item>
    <item>
      <title>NetBSD/amd64 7.0 on kvm</title>
      <link>http://imil.net/blog/posts/2016/netbsdamd64-7-0-kvm/</link>
      <pubDate>Fri, 29 Jan 2016 11:04:30 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2016/netbsdamd64-7-0-kvm/</guid>
      <description>&lt;p&gt;If you recently tried to install &lt;a href=&#34;https://www.netbsd.org/releases/formal-7/NetBSD-7.0.html&#34;&gt;NetBSD 7.0&lt;/a&gt; using &lt;a href=&#34;http://www.linux-kvm.org/page/Main_Page&#34;&gt;Linux KVM&lt;/a&gt; you might have encountered the following failure:&lt;/p&gt;&#xA;&lt;p&gt;&lt;img src=&#34;http://imil.net/blog/stuff/NetBSD-7.0-kvm.png&#34; alt=&#34;&#34;&gt;&lt;/p&gt;&#xA;&lt;p&gt;This bug have been recently fixed on the 7-branch but the official ISO images are not yet updated, so you&amp;rsquo;ll have to use &lt;a href=&#34;http://nyftp.netbsd.org/pub/NetBSD-daily/netbsd-7/&#34;&gt;NetBSD daily builds&lt;/a&gt; mini-ISO which includes &lt;a href=&#34;https://releng.netbsd.org/cgi-bin/req-7.cgi?show=1011&#34;&gt;Christos fix to bus_dma.c&lt;/a&gt;&lt;/p&gt;&#xA;&lt;p&gt;For the record, here&amp;rsquo;s the &lt;code&gt;virt-install&lt;/code&gt; command I use:&lt;/p&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;&#34;&gt;&lt;code class=&#34;language-sh&#34; data-lang=&#34;sh&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;sudo virt-install&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --virt-type kvm&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --name korriban&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --ram &lt;span style=&#34;color:#ae81ff&#34;&gt;4096&lt;/span&gt; --disk path&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;/dev/vms/korriban,bus&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;virtio&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --vcpus &lt;span style=&#34;color:#ae81ff&#34;&gt;2&lt;/span&gt;&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --network bridge:br0,model&lt;span style=&#34;color:#f92672&#34;&gt;=&lt;/span&gt;virtio&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --graphics vnc&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --accelerate&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --noautoconsole&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --cdrom /home/imil/iso/boot.iso&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;    --cpu host&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Performances are really good, the host is a &lt;em&gt;Debian GNU/Linux 8.0 amd64&lt;/em&gt; running on &lt;a href=&#34;https://www.online.net/fr/serveur-dedie/dedibox-classic&#34;&gt;Online&amp;rsquo;s Dedibox Classic 2015&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Using pkgsrc on debian GNU/Linux</title>
      <link>http://imil.net/blog/posts/2015/using-pkgsrc-on-debian-gnulinux/</link>
      <pubDate>Sun, 05 Jul 2015 16:42:43 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2015/using-pkgsrc-on-debian-gnulinux/</guid>
      <description>&lt;p&gt;While I tend to appreciate &lt;a href=&#34;http://debian.org&#34;&gt;debian GNU/Linux&lt;/a&gt;, its tendency to be quite late on software versionning is sometimes annoying. Also, as a &lt;a href=&#34;http://pkgsrc.org&#34;&gt;pkgsrc&lt;/a&gt; developer, I am used to have greater control over the packages I install, for example regarding the options I&amp;rsquo;d like to include.&lt;/p&gt;&#xA;&lt;p&gt;For these reasons and a couple more, I sometimes choose to use &lt;a href=&#34;http://pkgsrc.org&#34;&gt;pkgsrc&lt;/a&gt; along with &lt;code&gt;apt&lt;/code&gt; to deal with particular packages. In this article, I&amp;rsquo;ll show how to achieve that task.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Migrating Debian Wheezy to LMDE</title>
      <link>http://imil.net/blog/posts/2014/migrating-debian-wheezy-to-lmde/</link>
      <pubDate>Wed, 12 Nov 2014 12:07:18 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2014/migrating-debian-wheezy-to-lmde/</guid>
      <description>&lt;p&gt;My &amp;ldquo;mediacenter&amp;rdquo;, a small x86 machine plugged to the living-room TV was a diskless (PXE/NFS root) Debian &lt;a href=&#34;https://www.debian.org/releases/wheezy/&#34;&gt;Wheezy&lt;/a&gt; until the past week end. After having tried &lt;a href=&#34;http://www.linuxmint.com/&#34;&gt;Linux Mint&lt;/a&gt; on a laptop of mine and being impressed by its integration quality, I decided to migrate my mediacenter to &lt;a href=&#34;http://www.linuxmint.com/edition.php?id=102&#34;&gt;LMDE&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I did not reinstalled the system, mainly because &lt;em&gt;Mint&lt;/em&gt; does not support &lt;a href=&#34;https://wiki.debian.org/fr/Debootstrap&#34;&gt;debootstrap&lt;/a&gt;, instead I followed a couple of &lt;em&gt;HOWTOs&lt;/em&gt; I found on their forums: &lt;a href=&#34;http://forums.linuxmint.com/viewtopic.php?f=199&amp;amp;t=155931&#34;&gt;this one&lt;/a&gt; and &lt;a href=&#34;http://forums.linuxmint.com/viewtopic.php?f=197&amp;amp;t=101438&#34;&gt;this one&lt;/a&gt;.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Install NetBSD (or any PV-capable system) on IBM&#39;s SoftLayer</title>
      <link>http://imil.net/blog/posts/2014/install-netbsd-or-any-pv-capable-system-on-ibms-softlayer/</link>
      <pubDate>Mon, 03 Nov 2014 20:28:30 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2014/install-netbsd-or-any-pv-capable-system-on-ibms-softlayer/</guid>
      <description>&lt;p&gt;At ${DAYWORK}, I happen to use IBM&amp;rsquo;s cloud: &lt;a href=&#34;http://www.softlayer.com/&#34;&gt;SoftLayer&lt;/a&gt;. It has all the&#xA;features you&amp;rsquo;d expect from such a platform, and can instantiate pretty much any&#xA;major &lt;em&gt;GNU/Linux&lt;/em&gt; distribution you&amp;rsquo;d think of; but here&amp;rsquo;s the thing, we also use&#xA;&lt;a href=&#34;http://www.NetBSD.org/&#34;&gt;NetBSD&lt;/a&gt; for some infrastructure services, and as you&amp;rsquo;d guess, there&amp;rsquo;s no&#xA;&lt;em&gt;NetBSD&lt;/em&gt; support at all on &lt;em&gt;SoftLayer&lt;/em&gt;.&lt;/p&gt;&#xA;&lt;p&gt;I had to reverse some bits of their provisioning system to understand how to&#xA;achieve &lt;em&gt;NetBSD&lt;/em&gt; installation, but most of all, automatic provisioning.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Mounting UFS2 read/write on Linux</title>
      <link>http://imil.net/blog/posts/2014/mounting-ufs2-readwrite-on-linux/</link>
      <pubDate>Fri, 31 Oct 2014 12:49:00 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2014/mounting-ufs2-readwrite-on-linux/</guid>
      <description>&lt;p&gt;I recently had the need to mount an &lt;code&gt;UFS2&lt;/code&gt; (NetBSD) partition under GNU/Linux, and while this is surprising, a standard Linux distro, Debian in my case, is not able to mount it in read/write mode.&lt;/p&gt;&#xA;&lt;p&gt;I came across this project &lt;a href=&#34;https://github.com/DanielO/fuse-ufs2&#34;&gt;https://github.com/DanielO/fuse-ufs2&lt;/a&gt; which has basic &lt;code&gt;UFS2&lt;/code&gt; read/write support. It is not very stable, I made it crash a couple of times while using &lt;code&gt;vim&lt;/code&gt; on the mounted partition, but it does support simple operations like &lt;code&gt;cp&lt;/code&gt;, &lt;code&gt;rm&lt;/code&gt; and such.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Debian backport of OpenSSH 6.2</title>
      <link>http://imil.net/blog/posts/2013/debian-backport-of-openssh-6-2/</link>
      <pubDate>Mon, 29 Apr 2013 12:48:00 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2013/debian-backport-of-openssh-6-2/</guid>
      <description>&lt;p&gt;&lt;strong&gt;Update&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;As written on the comments:&#xA;_&#xA;Colin Watson Says:&#xA;May 17th, 2013 at 7:12 pm&lt;/p&gt;&#xA;&lt;p&gt;I uploaded 6.2 packages to Debian a week or so after you posted this, so you can/should now just use those instead. I expect they should build fine on wheezy.&#xA;_&lt;/p&gt;&#xA;&lt;p&gt;&lt;strong&gt;As a matter of fact, the following is now deprecated&lt;/strong&gt;&lt;/p&gt;&#xA;&lt;p&gt;At ${DAYWORK}, we used to have our own &lt;a href=&#34;http://www.openssh.com/&#34;&gt;OpenSSH&lt;/a&gt; debian package which included the famous &lt;a href=&#34;http://code.google.com/p/openssh-lpk/&#34;&gt;OpenSSH LPK&lt;/a&gt; patch, which permits the use of an &lt;a href=&#34;http://www.openldap.org/&#34;&gt;OpenLDAP&lt;/a&gt; server as an SSH public key provider.&lt;/p&gt;</description>
    </item>
    <item>
      <title>Les économies de Noël</title>
      <link>http://imil.net/blog/posts/2012/les-economies-de-noel/</link>
      <pubDate>Wed, 26 Dec 2012 12:05:09 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2012/les-economies-de-noel/</guid>
      <description>&lt;p&gt;Upgrade de ma bonne vieille &lt;em&gt;tatooine&lt;/em&gt; de &lt;em&gt;squeeze&lt;/em&gt; en &lt;em&gt;wheezy&lt;/em&gt; terminé. Modulo quelques &lt;a href=&#34;http://lists.debian.org/debian-user/2012/12/msg01112.html&#34;&gt;soucis de polices&lt;/a&gt;, ça s&amp;rsquo;est plutôt bien passé. Il y a bien ce vieux message de &lt;code&gt;grub&lt;/code&gt;:&lt;/p&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;!-- raw HTML omitted --&gt;&#xA;&lt;p&gt;Mais les réponses sur les MLs sont laconiques et surtout, cela n&amp;rsquo;empêche nullement &lt;code&gt;grub&lt;/code&gt; de fonctionner puisque mon &lt;em&gt;/boot&lt;/em&gt; est un soft RAID sur des partitions physiques, sans LVM. Merci past-iMil.&#xA;Comme cette machine était la dernière affublée d&amp;rsquo;un bureau &lt;em&gt;gnome 2&lt;/em&gt; et qu&amp;rsquo;il était simplement inenvisageable de basculer au monstre &lt;em&gt;gnome 3&lt;/em&gt;, elle aussi a migré vers &lt;a href=&#34;http://www.xfce.org/&#34;&gt;XFCE&lt;/a&gt; (4.8 pour wheezy). Hormis le fait que le look par défaut est à gerber, je retrouve mon bon vieux bureau XFCE muni de ses icônes &lt;em&gt;Faenza&lt;/em&gt;, le thème GTK2 &lt;em&gt;BSM Simple Dark Menu&lt;/em&gt; et les décorations de fenêtres &lt;em&gt;Elegant Brit&lt;/em&gt;. J&amp;rsquo;aime ce setup. Je n&amp;rsquo;ai encore trouvé aucun thème GTK3 qui se mariait bien avec &lt;em&gt;BSM Simple&lt;/em&gt;, pour le moment ce sera &lt;em&gt;Hope&lt;/em&gt;.&#xA;Dans la foulée, j&amp;rsquo;ai tout de même gagné un bon &lt;em&gt;Go&lt;/em&gt; de RAM, et je ne veux même pas savoir ce que cela aurait donné avec le bureau &lt;em&gt;JavaScript&lt;/em&gt; de gnome 3.&#xA;Bref, plutôt satisfait, encore quelques &lt;em&gt;glitches&lt;/em&gt;, mais l&amp;rsquo;experience est globalement positive.&#xA;Mais ouiii, il arrive le screenshot :)&#xA;&lt;a href=&#34;http://imil.net/blog/gfx/shot-tatooine-wheezy-xfce-201212.png&#34;&gt;&lt;img src=&#34;http://imil.net/blog/gfx/shot-tatooine-wheezy-xfce-201212.png&#34; alt=&#34;&#34;&gt;&lt;/a&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <title>Les migrations de la rentrée</title>
      <link>http://imil.net/blog/posts/2009/les-migrations-de-la-rentree/</link>
      <pubDate>Mon, 05 Oct 2009 14:34:04 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2009/les-migrations-de-la-rentree/</guid>
      <description>&lt;p&gt;&lt;a href=&#34;http://www.gcu.info/2009/10/annonce-de-service/&#34;&gt;On peut lire sur GCU&lt;/a&gt; que nous avons passé une partie du week end, après un bafr bien arrosé, à mettre à jour &lt;a href=&#34;http://www.unixgarden.com/index.php/administration-systeme/adminspotting-zone0-le-serveur-parfait&#34;&gt;Zone0.GCU-Squad.org&lt;/a&gt;, machine qui héberge le site, et moult services du groupe.&lt;/p&gt;&#xA;&lt;p&gt;Il faut l&amp;rsquo;avouer, cette mise à jour fut une promenade de santé en comparaison de sa cauchemardesque installation voila deux ans. Je me propose tout de même de vous raconter les quelques manipulations qui furent nécessaires à sa migration vers 2009.&lt;/p&gt;</description>
    </item>
    <item>
      <title>D&amp;#xE9;gageuntu 9.01</title>
      <link>http://imil.net/blog/posts/2009/dgageuntu-901/</link>
      <pubDate>Sun, 25 Jan 2009 17:39:30 +0000</pubDate>
      <guid>http://imil.net/blog/posts/2009/dgageuntu-901/</guid>
      <description>&lt;p&gt;De frustrations en déconvenues, j&amp;rsquo;ai profité d&amp;rsquo;un upgrade de machine pour virer ubuntu et repasser à &lt;a href=&#34;http://debian.org/&#34;&gt;debian&lt;/a&gt;.&lt;/p&gt;&#xA;&lt;p&gt;Oui, ubuntu est un bon produit dans sa globalité, j&amp;rsquo;en ai fait des éloges à ses débuts, j&amp;rsquo;ai pris sa défense lorsque les premières bourdes sont apparues, j&amp;rsquo;ai même &lt;a href=&#34;http://imil.net/wp/?p=199&#34;&gt;encore recemment chanté les louanges&lt;/a&gt; de héron boiteux, mais voila, me concernant, la qualité du travail effectué par les mainteneurs d&amp;rsquo;ubuntu depuis quelques mois n&amp;rsquo;a fait qu&amp;rsquo;empirer.&lt;/p&gt;</description>
    </item>
  </channel>
</rss>
