<?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>apt-get install debian-wizard</title>
	<atom:link href="https://raphaelhertzog.com/feed/" rel="self" type="application/rss+xml" />
	<link>https://raphaelhertzog.com</link>
	<description>Insider infos, master your Debian/Ubuntu distribution</description>
	<lastBuildDate>Mon, 10 Nov 2025 16:20:52 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.5</generator>
	<item>
		<title>How to choose your SSH agent with Wayland and systemd</title>
		<link>https://raphaelhertzog.com/2025/11/10/how-to-choose-your-ssh-agent-with-wayland-and-systemd/</link>
					<comments>https://raphaelhertzog.com/2025/11/10/how-to-choose-your-ssh-agent-with-wayland-and-systemd/#comments</comments>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Mon, 10 Nov 2025 16:20:52 +0000</pubDate>
				<category><![CDATA[Documentation]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[User Documentation]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[gpg]]></category>
		<category><![CDATA[ssh-agent]]></category>
		<category><![CDATA[systemd]]></category>
		<category><![CDATA[wayland]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4072</guid>

					<description><![CDATA[If you read the above title, you might wonder how the switch to wayland (yes, the graphical stack replacing the venerable X11) can possibly relate to SSH agents. The answer is easy. For as long as I can remember, as a long time user of gpg-agent as SSH agent (because my SSH key is a [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>If you read the above title, you might wonder how the switch to wayland (yes, the <a href="https://wayland.freedesktop.org/">graphical stack</a> replacing the venerable X11) can possibly relate to SSH agents. The answer is easy.</p>



<p>For as long as I can remember, as a long time user of gpg-agent as SSH agent (because my SSH key is a GPG sub-key) I relied on <code>/etc/X11/Xsession.d/90gpg-agent</code> that would configure the <code>SSH_AUTH_SOCK</code> environment variable (pointing to gpg-agent&#8217;s socket) provided that I added <code>enable-ssh-support</code> in <code>~/.gnupg/gpg-agent.conf</code>. </p>



<p>Now when I switched to Wayland, that shell script used in the startup sequence of Xorg was no longer used. During a while I cheated a bit by setting <code>SSH_AUTH_SOCK</code> directly in my <code>~/.bashrc</code>. But that only works for terminals, and not for other applications that are started by the session manager (which is basically <code>systemd --user</code>).</p>



<p>So how is that supposed to work out of the box nowadays? The SSH agents (as packaged in Debian) have all adopted the same trick, their <code>.socket</code> unit have an <code>ExecStartPost</code> setting which runs <code>systemctl --user set-environment SSH_AUTH_SOCK=some-value</code>. This command dynamically modifies the environment of the running systemd daemon and thus influences the environment for the future units started. Putting this in a socket unit ensures an early run, before most of the applications are started so it&#8217;s a good choice. They tend to also explicitly ensure this with a directive like <code>Before=graphical-session-pre.target</code>.</p>



<p>However, in a typical installation you end up with multiple SSH agents (right now I have ssh-agent, gpg-agent, and gcr-ssh-agent), which one is the one that the user ends up using? Well, that is not clearly defined, the one that wins is the one that runs last&#8230; because each of them overwrites the value in the systemd environment.</p>



<p>Some of them fight to have that place (cf <a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1079246#20">#1079246</a> for gcr-ssh-agent) by setting explicit <code>After</code> directives. In the above bug I argue that we should let <code>gpg-agent.socket</code> have the priority since that&#8217;s the only one that is not enabled by default and that requires the user to opt-in. However, ultimately there will always be cases where you will want to be explicit about the SSH agent that should win.</p>



<p>You could rely on systemd overrides to add/remove ordering directives but that&#8217;s pretty fragile. Instead the right way to deal with this is to &#8220;mask&#8221; the socket units of the SSH agents that you don&#8217;t want. Note that disabling (i.e. <code>systemctl --user disable</code>) either will not work[1] or will not be sufficient[2]. In my case, I wanted to keep gpg-agent.socket so I masked gcr-ssh-agent.socket and ssh-agent.socket:</p>



<pre class="wp-block-code"><code>$ systemctl --user mask ssh-agent.socket gcr-ssh-agent.socket
Created symlink '/home/rhertzog/.config/systemd/user/ssh-agent.socket' → '/dev/null'.
Created symlink '/home/rhertzog/.config/systemd/user/gcr-ssh-agent.socket' → '/dev/null'.</code></pre>



<p>Note that if you want that behaviour to apply to all users of your computer, you can use <code>sudo systemctl --global mask ssh-agent.socket gcr-ssh-agent.socket</code>. Now on next login, you will only get a single ssh agent socket unit that runs and the SSH_AUTH_SOCK value will thus be predictable again!</p>



<p>Hopefully you will find that useful as it&#8217;s already the second time that I stumble upon this either for me or for a relative. Next time, I will know where to look it up. <img src="https://s.w.org/images/core/emoji/16.0.1/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>



<p>[1]: If you try to run <code>systemctl --user disable gcr-ssh-agent.socket</code>, you will get a message saying that it will not work because the unit is enabled for all users at the &#8220;global&#8221; level. You can do it with <code>--global</code> instead of <code>--user</code> but it doesn&#8217;t help, cf below.</p>



<p>[2]: Disabling an unit basically means stopping to explicitely schedule its startup as part of a desired target. However, the unit can still be started as a dependency of other units and that&#8217;s the case here because a socket unit will typically be pulled in by its corresponding service unit.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://raphaelhertzog.com/2025/11/10/how-to-choose-your-ssh-agent-with-wayland-and-systemd/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>Freexian is looking to expand its team with more Debian contributors</title>
		<link>https://raphaelhertzog.com/2024/03/29/freexian-is-looking-to-expand-its-team-with-more-debian-contributors/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Fri, 29 Mar 2024 15:13:40 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[Me]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4061</guid>

					<description><![CDATA[It&#8217;s been a while that I haven&#8217;t posted anything on my blog, the truth is that Freexian has been doing very well in the last years and that I have a hard time to allocate time to write articles or even to contribute to my usual Debian projects&#8230; the exception being debusine since that&#8217;s part [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="alignright size-full"><a href="https://raphaelhertzog.com/files/2024/03/Logo_Freexian.png"><img decoding="async" width="300" height="93" src="https://raphaelhertzog.com/files/2024/03/Logo_Freexian.png" alt="" class="wp-image-4063"/></a></figure></div>


<p>It&#8217;s been a while that I haven&#8217;t posted anything on my blog, the truth is that <a href="https://www.freexian.com">Freexian</a> has been doing very well in the last years and that I have a hard time to allocate time to write articles or even to contribute to my usual Debian projects&#8230; the exception being <a href="https://salsa.debian.org/freexian-team/debusine">debusine</a> since that&#8217;s part of the Freexian work (have a look at our <a href="https://lists.debian.org/debian-devel-announce/2024/03/msg00000.html">most recent announce</a>!).</p>


<div class="wp-block-image">
<figure class="alignright size-full"><a href="https://raphaelhertzog.com/files/2011/06/team.png"><img decoding="async" width="120" height="119" src="https://raphaelhertzog.com/files/2011/06/team.png" alt="" class="wp-image-1946" srcset="https://raphaelhertzog.com/files/2011/06/team.png 120w, https://raphaelhertzog.com/files/2011/06/team-100x100.png 100w" sizes="(max-width: 120px) 100vw, 120px" /></a></figure></div>


<p>That being said, given Freexian&#8217;s growth and in the hope to reduce my workload, <strong>we are looking to extend our team with Debian members</strong> of more varied backgrounds and skills, so they can help us in areas like sales / marketing / project management. <strong>Have a look at <a href="https://lists.debian.org/debian-jobs/2024/03/msg00002.html">our announce on debian-jobs@lists.debian.org</a>.</strong></p>


<div class="wp-block-image">
<figure class="alignleft size-full is-resized"><a href="https://raphaelhertzog.com/files/2024/03/debian.png"><img fetchpriority="high" decoding="async" width="310" height="395" src="https://raphaelhertzog.com/files/2024/03/debian.png" alt="" class="wp-image-4062" style="width:88px;height:auto" srcset="https://raphaelhertzog.com/files/2024/03/debian.png 310w, https://raphaelhertzog.com/files/2024/03/debian-235x300.png 235w" sizes="(max-width: 310px) 100vw, 310px" /></a></figure></div>


<p>As a <a href="https://www.freexian.com/about/">mission-oriented company</a>, we are looking to work with persons already involved in Debian (or persons who were waiting the right opportunity to get involved). <strong>All our collaborators can spend 20% of their paid work time on the Debian projects they care about.</strong></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, July 2022</title>
		<link>https://raphaelhertzog.com/2022/08/31/freexians-report-about-debian-long-term-support-july-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Wed, 31 Aug 2022 09:43:50 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4056</guid>

					<description><![CDATA[Like each month, have a look at the work funded by Freexian’s Debian LTS offering. Debian project funding No any major updates on running projects.Two 1, 2 projects are in the pipeline now.Tryton project is in a review phase. Gradle projects is still fighting in work. In July, we put aside 2389 EUR to fund [&#8230;]]]></description>
										<content:encoded><![CDATA[<div class="wp-block-image">
<figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>


<p>Like <a href="//raphaelhertzog.com/tag/Freexian+LTS/">each month</a>, have a look at the work funded by <a href="http://www.freexian.com/services/debian-lts.html">Freexian’s Debian LTS offering</a>.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<p>No any major updates on running projects.<br>Two <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24">1</a>, <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19">2</a> projects are in the pipeline now.<br>Tryton project is in a <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24#note_313139">review phase</a>. Gradle projects is still <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19#note_310400">fighting</a> in work.</p>



<p>In July, we put aside 2389 EUR to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</p>



<p>We’re looking forward to receive more projects from various Debian teams! Learn more about the rationale behind this initiative in <a href="https://raphaelhertzog.com/2020/12/14/funding-debian-development-projects-with-freexian-first-project-received/">this article</a>.</p>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In July, 14 contributors have been paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available:</p>



<ul class="wp-block-list"><li>Abhijith PA did 0.00h (out of 14.00h assigned, thus carrying over 14.00h to the next month).</li><li>Andreas Rönnquist did 0.00h (out of 0.00h assigned and 10.50h from previous period, thus carrying over 10.50h to the next month).</li><li><a href="https://gladk.de/posts/202207_floss/">Anton Gladky</a> did 23.00h (out of 25.00h assigned, thus carrying over 2.00h to the next month).</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-july-2022.html">Ben Hutchings</a> did 3.00h (out of 24.00h assigned, thus carrying over 21.00h to the next month).</li><li>Dominik George did 0.00h (out of 0.00h assigned and 22.17h from previous period, thus carrying over 22.17h to the next month).</li><li><a href="https://people.debian.org/~pochu/lts/reports/2022-07.txt">Emilio Pozuelo Monfort</a> did 72.00h (out of 35.75h assigned).</li><li>Enrico Zini did 0.00h (out of 0.00h assigned and 8.00h from previous period, thus carrying over 8.00h to the next month).</li><li><a href="https://dl.gambaru.de/blog/202207_LTS_report.txt">Markus Koschany</a> did 35.75h (out of 35.75h assigned).</li><li><a href="http://inguza.com/report/debian-long-term-support-work-2022-july">Ola Lundqvist</a> did 8.00h (out of 0.00h assigned and 12.00h from previous period, thus carrying over 4.00h to the next month).</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-07.txt">Roberto C. Sánchez</a> did 14.25h (out of 29.25h assigned and 2.75h from previous period, thus carrying over 17.75h to the next month).</li><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00035.html">Stefano Rivera</a> did 8.00h (out of 6.25h assigned and 20.75h from previous period, thus carrying over 19.00h to the next month).</li><li><a href="https://lists.debian.org/debian-lts/2022/08/msg00000.html">Sylvain Beucler</a> did 3.50h (out of 35.75h assigned, thus carrying over 32.25h to the next month).</li><li><a href="http://blog.alteholz.eu/2022/08/my-debian-activities-in-july-2022/">Thorsten Alteholz</a> did 20.00h (out of 35.75h assigned).</li><li><em>Utkarsh Gupta</em> did not report back about their work so we assume they did nothing (out of 35.75 available hours, thus carrying them over to the next month).</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In July, we have released 3 DLAs. July was the period, when the Debian Stretch had already ELTS status, but Debian Buster was still in the hands of security team. Many member of LTS used this time to update internal infrastructure, documentation and some internal tickets. Now we are ready to take the next release in our hands: Buster!</p>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 83 months)</li><li><a href="https://github.com">GitHub</a> (for 74 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 51 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 94 months)</li><li><a href="http://www.linode.com">Linode</a> (for 88 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 78 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 77 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 33 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 20 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 15 months)</li><li><a href="https://www.edf.fr">EDF SA</a> (for 4 months)</li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 99 months)</li><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 99 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 93 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 85 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 84 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 78 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 68 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 62 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 52 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 46 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 35 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 33 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 27 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 27 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 21 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 18 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 17 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 16 months)</li><li><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a> (for 8 months)</li><li><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a> (for 5 months)</li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 99 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 99 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 96 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 96 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 95 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 93 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 93 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 93 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 93 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 92 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 88 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 83 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 81 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 75 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 75 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 75 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 67 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 67 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 61 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 57 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 55 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 41 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 33 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 30 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 26 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 20 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 17 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 12 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 11 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 10 months)</li><li><a href="https://www.alterway.fr">Alter Way</a> (for 3 months)</li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, June 2022</title>
		<link>https://raphaelhertzog.com/2022/07/26/freexians-report-about-debian-long-term-support-june-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Tue, 26 Jul 2022 08:38:30 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4052</guid>

					<description><![CDATA[Like each month, have a look at the work funded by Freexian’s Debian LTS offering. Debian project funding No any major updates on running projects.Two 1, 2 projects are in the pipeline now.Tryton project is in a review phase. Gradle projects is still fighting in work. In June, we put aside 2254 EUR to fund [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>



<p>Like <a href="//raphaelhertzog.com/tag/Freexian+LTS/">each month</a>, have a look at the work funded by <a href="http://www.freexian.com/services/debian-lts.html">Freexian’s Debian LTS offering</a>.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<p>No any major updates on running projects.<br>Two <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24">1</a>, <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19">2</a> projects are in the pipeline now.<br>Tryton project is in a <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24#note_313139">review phase</a>. Gradle projects is still <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19#note_310400">fighting</a> in work.</p>



<p>In June, we put aside 2254 EUR to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</p>



<p>We’re looking forward to receive more projects from various Debian teams! Learn more about the rationale behind this initiative in <a href="https://raphaelhertzog.com/2020/12/14/funding-debian-development-projects-with-freexian-first-project-received/">this article</a>.</p>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In June, 15 contributors have been paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available:</p>



<ul class="wp-block-list"><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00006.html">Abhijith PA</a> did 14.00h (out of 14.00h assigned).</li><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00013.html">Andreas Rönnquist</a> did 14.50h (out of 14.50h assigned and 10.50h from previous period, thus carrying over 10.50h to the next month).</li><li><a href="https://gladk.de/posts/202206_floss/">Anton Gladky</a> did 16.00h (out of 16.00h assigned).</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-june-2022.html">Ben Hutchings</a> did 16.00h (out of 0.00h assigned and 16.00h from previous period).</li><li><a href="https://chris-lamb.co.uk/posts/free-software-activities-in-june-2022#debian-lts">Chris Lamb</a> did 18.00h (out of 18.00h assigned).</li><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00015.html">Dominik George</a> did 1.83h (out of 6.00h assigned and 18.00h from previous period, thus carrying over 22.17h to the next month).</li><li><a href="https://people.debian.org/~pochu/lts/reports/2022-06.txt">Emilio Pozuelo Monfort</a> did 30.25h (out of 9.25h assigned and 21.00h from previous period).</li><li><a href="https://lists.debian.org/msgid-search/20220701151336.4v3mjzxukgify3xw@enricozini.org">Enrico Zini</a> did 8.00h (out of 9.50h assigned and 6.50h from previous period, thus carrying over 8.00h to the next month).</li><li><a href="https://dl.gambaru.de/blog/202206_LTS_report.txt">Markus Koschany</a> did 30.25h (out of 30.25h assigned).</li><li><em>Ola Lundqvist</em> did nothing (out of 12.00 available hours, thus carrying them over to the next month).</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-06.txt">Roberto C. Sánchez</a> did 27.50h (out of 11.75h assigned and 18.50h from previous period, thus carrying over 2.75h to the next month).</li><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00035.html">Stefano Rivera</a> did 8.00h (out of 30.25h assigned, thus carrying over 20.75h to the next month).</li><li><a href="https://lists.debian.org/debian-lts/2022/07/msg00000.html">Sylvain Beucler</a> did 30.25h (out of 13.75h assigned and 16.50h from previous period).</li><li><a href="http://blog.alteholz.eu/2022/07/my-debian-activities-in-june-2022/">Thorsten Alteholz</a> did 30.25h (out of 30.25h assigned).</li><li><em>Utkarsh Gupta</em> did not report back about their work so we assume they did nothing (out of 30.25 available hours, thus carrying them over to the next month).</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In June we released <a href="https://lists.debian.org/debian-lts-announce/2022/06/threads.html">27 DLAs</a>.<br><br>This is a special month, where we have two releases (stretch and jessie) as ELTS and NO release as LTS. Buster is still handled by the security team and will probably be given in LTS hands at the beginning of the August. During this month we are updating the infrastructure, documentation and improve our internal processes to switch to a new release.<br>Many developers have just returned back from Debconf22, hold in Prizren, Kosovo! Many (E)LTS members could meet face-to-face and discuss some technical and social topics! Also <a href="https://debconf22.debconf.org/talks/59-debian-long-term-support-bof/">LTS BoF</a> took place, where the project was introduced (<a href="https://meetings-archive.debian.net/pub/debian-meetings/2022/DebConf22/debconf22-223-debian-long-term-support-bof.webm">link to video</a>).</p>



<figure class="wp-block-video"><video controls src="https://meetings-archive.debian.net/pub/debian-meetings/2022/DebConf22/debconf22-223-debian-long-term-support-bof.webm"></video></figure>



<p></p>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold. We are pleased to welcome <strong><a href="https://www.alterway.fr">Alter Way</a></strong> where their support of Debian is publicly acknowledged at the higher level, see this <a href="https://www.linkedin.com/posts/v%C3%A9ronique-torner-80783377_opensource-secops-activity-6942521620414541824-egVp?utm_source=linkedin_share&amp;utm_medium=member_desktop_web">French quote of Alterway&#8217;s CEO</a>.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 82 months)</li><li><a href="https://github.com">GitHub</a> (for 73 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 50 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 93 months)</li><li><a href="http://www.linode.com">Linode</a> (for 87 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 76 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 76 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 32 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 19 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 14 months)</li><li><a href="https://www.edf.fr">EDF SA</a> (for 3 months)</li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 98 months)</li><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 98 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 92 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 83 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 83 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 77 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 67 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 61 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 50 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 45 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 34 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 32 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 26 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 26 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 20 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 17 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 16 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 15 months)</li><li><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a> (for 7 months)</li><li><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a> (for 4 months)</li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 98 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 98 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 95 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 95 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 94 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 92 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 92 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 92 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 91 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 91 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 87 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 82 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 80 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 74 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 74 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 74 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 66 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 65 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 60 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 55 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 54 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 40 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 32 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 29 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 24 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 19 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 16 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 11 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 10 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 9 months)</li><li><strong><a href="https://www.alterway.fr">Alter Way</a></strong></li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, May 2022</title>
		<link>https://raphaelhertzog.com/2022/06/23/freexians-report-about-debian-long-term-support-may-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Thu, 23 Jun 2022 12:15:09 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4046</guid>

					<description><![CDATA[Like each month, have a look at the work funded by Freexian’s Debian LTS offering. Debian project funding Two [1, 2] projects are in the pipeline now. Tryton project is in a final phase. Gradle projects is fighting with technical difficulties. In May, we put aside 2233 EUR to fund Debian projects. We’re looking forward [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>



<p>Like <a href="//raphaelhertzog.com/tag/Freexian+LTS/">each month</a>, have a look at the work funded by <a href="http://www.freexian.com/services/debian-lts.html">Freexian’s Debian LTS offering</a>.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<p>Two [<a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24">1</a>, <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19">2</a>] projects are in the pipeline now. Tryton project is in a <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24#note_313139">final phase</a>. Gradle projects is <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19#note_310400">fighting</a> with technical difficulties.</p>



<p>In May, we put aside 2233 EUR to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</p>



<p>We’re looking forward to receive more projects from various Debian teams! Learn more about the rationale behind this initiative in <a href="https://raphaelhertzog.com/2020/12/14/funding-debian-development-projects-with-freexian-first-project-received/">this article</a>.</p>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In May, 14 contributors have been paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available:</p>



<ul class="wp-block-list"><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00008.html">Abhijith PA</a> did 14.0h (out of 14h assigned).</li><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00002.html">Andreas Rönnquist</a> did 14.5h (out of 25.0h assigned), thus carrying over 10.5h to June.</li><li><a href="https://gladk.de/posts/202205_floss/">Anton Gladky</a> did 19h (out of 19h assigned).</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-may-2022.html">Ben Hutchings</a> did 8h (out of 11h assigned and 13h from April), thus carrying over 16h to June.</li><li><a href="https://chris-lamb.co.uk/posts/free-software-activities-in-april-2022#debian-lts">Chris Lamb</a> did 18h (out of 18h assigned).</li><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00004.html">Dominik George</a> did 2h (out of 20.0h assigned), thus carrying over 18h to June.</li><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00000.html">Enrico Zini</a> did 9.5h (out of 16.0h assigned), thus carrying over 6.5h to June.</li><li><a href="https://people.debian.org/~pochu/lts/reports/2022-05.txt">Emilio Pozuelo Monfort</a> did 28h (out of 13.75h assigned and 35.25h from April), thus carrying over 21h to June.</li><li><a href="https://dl.gambaru.de/blog/202205_LTS_report.txt">Markus Koschany</a> did 40h (out of 40h assigned).</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-05.txt">Roberto C. Sánchez</a> did 13.5h (out of 32h assigned), thus carrying over 18.5h to June.</li><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00001.html">Sylvain Beucler</a> did 23.5h (out of 20h assigned and 20h from April), thus carrying over 16.5h to June.</li><li><a href="https://lists.debian.org/debian-lts/2022/06/msg00007.html">Stefano Rivera</a> did 5h in April and 14h in May (out of 17.5h assigned), thus anticipating 1.5h for June.</li><li><a href="http://blog.alteholz.eu/2022/06/my-debian-activities-in-may-2022/">Thorsten Alteholz</a> did 40h (out of 40h assigned).</li><li><a href="https://utkarsh2102.com/posts/foss-in-may-22/">Utkarsh Gupta</a> did 35h (out of 19h assigned and 30h from April), thus carrying over 14h to June.</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In May we released <a href="https://lists.debian.org/debian-lts-announce/2021/06/threads.html">49 DLAs</a>. The <a href="https://security-tracker.debian.org/tracker/status/release/oldoldstable">security tracker</a> currently lists 71 packages with a known CVE and the <a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/dla-needed.txt">dla-needed.txt file</a> has 65 packages needing an update.</p>



<p>The number of paid contributors increased significantly, we are pleased to welcome our latest team members: Andreas Rönnquist, Dominik George, Enrico Zini and Stefano Rivera.</p>



<p>It is worth pointing out that we are getting close to the end of the LTS period for Debian 9. After June 30th, no new security updates will be made available on security.debian.org. We are preparing to overtake Debian 10 Buster for the next two years and to make this process as smooth as possible.</p>



<p>But Freexian and its team of paid Debian contributors will continue to maintain Debian 9 going forward for the customers of the <a href="https://deb.freexian.com/extended-lts/">Extended LTS offer</a>. If you have Debian 9 servers to keep secure, it’s time to subscribe!</p>



<p>You might not have noticed, but Freexian formalized a <a href="https://www.freexian.com/apropos/index.html">mission statement</a> where we explain that our purpose is to help improve Debian. For this, we want to fund work time for the Debian developers that recently joined Freexian as collaborators. The <a href="https://deb.freexian.com/extended-lts/">Extended LTS</a> and the <a href="https://php.freexian.com/">PHP LTS</a> offers are built following a model that will help us to achieve this if we manage to have enough customers for those offers. So consider subscribing: you help your organization but you also help Debian!</p>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 81 months)</li><li><a href="https://github.com">GitHub</a> (for 72 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 49 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 92 months)</li><li><a href="http://www.linode.com">Linode</a> (for 86 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 75 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 75 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 31 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 18 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 13 months)</li><li><strong><a href="https://www.edf.fr">EDF SA</a></strong></li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 97 months)</li><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 96 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 90 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 82 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 82 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 76 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 66 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 60 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 49 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 43 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 33 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 31 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 25 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 25 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 19 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 16 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 14 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 14 months)</li><li><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a> (for 6 months)</li><li><a href="https://www.telecats.nl">Telecats BV</a> (for 4 months)</li><li><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a> (for 3 months)</li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 97 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 97 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 94 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 94 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 92 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 91 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 91 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 90 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 90 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 90 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 86 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 81 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 78 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 73 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 73 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 73 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 64 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 64 months)</li><li><a href="http://www.people-doc.com">People Doc</a> (for 61 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 59 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 54 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 53 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 39 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 31 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 28 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 23 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 18 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 15 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 10 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 9 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 8 months)</li><li><strong><a href="https://www.alterway.fr">Alter Way</a></strong></li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, April 2022</title>
		<link>https://raphaelhertzog.com/2022/06/03/freexians-report-about-debian-long-term-support-april-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Fri, 03 Jun 2022 16:42:59 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4041</guid>

					<description><![CDATA[Like each month, have a look at the work funded by Freexian’s Debian LTS offering. Debian project funding Two projects are currently in the pipeline: Gradle enterprise and Tryton update. Progress is quite slow on the Gradle one, there are technical difficulties. The tryton one was stalled because the developer had not enough time but [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>



<p>Like <a href="//raphaelhertzog.com/tag/Freexian+LTS/">each month</a>, have a look at the work funded by <a href="http://www.freexian.com/services/debian-lts.html">Freexian’s Debian LTS offering</a>.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<p>Two projects are currently in the pipeline: <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/19">Gradle enterprise</a> and <a href="https://salsa.debian.org/freexian-team/project-funding/-/issues/24">Tryton update</a>. Progress is quite slow on the Gradle one, there are technical difficulties. The tryton one was stalled because the developer had not enough time but seems to progress smoothly in the last weeks.</p>



<p>In April, we put aside 2635 EUR to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</p>



<p>We’re looking forward to receive more projects from various Debian teams! Learn more about the rationale behind this initiative in <a href="https://raphaelhertzog.com/2020/12/14/funding-debian-development-projects-with-freexian-first-project-received/">this article</a>.</p>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In April, 11 contributors have been paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available:</p>



<ul class="wp-block-list"><li><a href="https://lists.debian.org/debian-lts/2022/05/msg00001.html">Abhijith PA</a> did 14h out of 14h assigned</li><li><a href="https://gladk.de/posts/202204_floss/">Anton Gladky</a> did 20h out of 20h assigned</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-april-2022.html">Ben Hutchings</a> did 11h out of 16h assigned and 8h from March, thus carrying over 13h to May</li><li><a href="https://chris-lamb.co.uk/posts/free-software-activities-in-april-2022#debia">Chris Lamb</a> did 18h out of 18h assigned</li><li><a href="https://people.debian.org/~pochu/lts/reports/2022-04.txt">Emilio Pozuelo Monfort</a> did 18h (out of 53.25h assigned), thus carrying over 35.25h to May</li><li><a href="https://www.jeremiahfoster.com/blog.html#April https://www.jeremiahfoster.com/blog.html#April">Jeremiah Foster</a> did 9.5h out of 13.5h assigned, thus carrying over 4h to May</li><li><a href="https://dl.gambaru.de/blog/202204_LTS_report.txt">Markus Koschany</a> did 40 out of 40h assigned</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-04.txt">Roberto C. Sánchez</a> did 18h carried out from March</li><li><a href="https://lists.debian.org/debian-lts/2022/05/msg00000.html">Sylvain Beucler</a> did 20h out of 14.5h assigned and 25.5h from March, thus carrying over 20h to May</li><li><a href="http://blog.alteholz.eu/2022/05/my-debian-activities-in-april-2022/">Thorsten Alteholz</a> did 40h out of 40h assigned</li><li><a href="https://utkarsh2102.com/posts/foss-in-april-22/">Utkarsh Gupta</a> did 23.25h out of 51.5h assigned and 1.75h from March, thus carrying over 30h to May</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In April we released <a href="https://lists.debian.org/debian-lts-announce/2021/06/threads.html">21 DLAs</a> and we were glad to welcome a new customer with <strong><a href="https://www.alterway.fr">Alter Way</a></strong>.</p>



<p>The <a href="https://security-tracker.debian.org/tracker/status/release/oldoldstable">security tracker</a> currently lists 72 packages with a known CVE and the <a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/dla-needed.txt">dla-needed.txt file</a> has 71 packages needing an update.</p>



<p>It is worth pointing out that we are getting close to the end of the LTS period for Debian 9. After June 30th, no new security updates will be made available on security.debian.org.</p>



<p>But Freexian and its team of paid Debian contributors will continue to maintain Debian 9 going forward for the customers of the <a href="https://deb.freexian.com/extended-lts/">Extended LTS offer</a>. If you have Debian 9 servers to keep secure, it&#8217;s time to subscribe!</p>



<p>You might not have noticed, but Freexian formalized a <a href="https://www.freexian.com/apropos/index.html">mission statement</a> where we explain that our purpose is to help improve Debian. For this, we want to fund work time for the Debian developers that recently joined Freexian as collaborators. The <a href="https://deb.freexian.com/extended-lts/">Extended LTS</a> and the <a href="https://php.freexian.com">PHP LTS</a> offers are built following a model that will help us to achieve this if we manage to have enough customers for those offers. So consider subscribing: you help your organization but you also help Debian!</p>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 80 months)</li><li><a href="https://github.com">GitHub</a> (for 71 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 48 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 91 months)</li><li><a href="http://www.linode.com">Linode</a> (for 85 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 75 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 74 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 30 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 17 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 12 months)</li><li><strong><a href="https://www.edf.fr">EDF SA</a></strong></li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 97 months)</li><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 96 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 90 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 82 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 81 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 75 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 65 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 59 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 49 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 43 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 32 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 30 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 24 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 24 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 18 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 15 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 14 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 13 months)</li><li><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a> (for 5 months)</li><li><a href="https://www.telecats.nl">Telecats BV</a> (for 3 months)</li><li><strong><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a></strong></li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 96 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 96 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 93 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 93 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 92 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 91 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 91 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 90 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 90 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 89 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 85 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 80 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 78 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 72 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 72 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 72 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 64 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 64 months)</li><li><a href="http://www.people-doc.com">People Doc</a> (for 60 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 58 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 54 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 52 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 38 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 30 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 27 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 23 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 17 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 14 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 9 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 8 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 7 months)</li><li><strong><a href="https://www.alterway.fr">Alter Way</a></strong></li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Debian 9 soon out of (free) security support</title>
		<link>https://raphaelhertzog.com/2022/05/11/debian-9-soon-out-of-free-security-support/</link>
					<comments>https://raphaelhertzog.com/2022/05/11/debian-9-soon-out-of-free-security-support/#comments</comments>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Wed, 11 May 2022 13:13:03 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[ELTS]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4035</guid>

					<description><![CDATA[Organizations that are still running Debian 9 servers should be aware that the security support of the Debian LTS team will end on June 30th 2022. If upgrading to a newer Debian release is not an option for them, then they should consider subscribing to Freexian&#8217;s Extended LTS to get security support for the packages [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Organizations that are still running Debian 9 servers should be aware that the security support of the <a href="https://wiki.debian.org/LTS">Debian LTS team</a> will end on June 30th 2022.</p>



<p>If upgrading to a newer Debian release is not an option for them, then they should consider subscribing to <a href="https://deb.freexian.com/extended-lts/">Freexian&#8217;s Extended LTS</a> to get security support for the packages that they are using on their servers.</p>



<figure class="wp-block-image size-large"><a href="https://raphaelhertzog.com/files/2022/05/debian-lts-periods.png"><img loading="lazy" decoding="async" width="801" height="235" src="https://raphaelhertzog.com/files/2022/05/debian-lts-periods.png" alt="" class="wp-image-4037" srcset="https://raphaelhertzog.com/files/2022/05/debian-lts-periods.png 801w, https://raphaelhertzog.com/files/2022/05/debian-lts-periods-300x88.png 300w, https://raphaelhertzog.com/files/2022/05/debian-lts-periods-768x225.png 768w" sizes="auto, (max-width: 801px) 100vw, 801px" /></a></figure>



<p>It&#8217;s worth pointing out that we made some important changes to Freexian&#8217;s Extended LTS offering :</p>



<ul class="wp-block-list"><li>we are now willing to support each Debian release for up to 10 years (so 5 years of ELTS support after the 5 initial years), provided that we have customers willing to pay the required amount.</li><li>we have changed our pricing scheme so that we can announce up-front the (increasing) cost over the 5 years of ELTS</li><li>we have dropped the requirement to subscribe to the <a href="https://www.freexian.com/services/debian-lts.html">Debian LTS sponsorship</a>, though it&#8217;s still a good idea to contribute to the funding of that project to ensure that one&#8217;s packages are properly monitored/maintained during the LTS period</li></ul>



<p>This means that we have again extended the life of <a href="https://deb.freexian.com/extended-lts/docs/debian-8-support/">Debian 8 Jessie</a>, this time until June 30th 2025. And that <a href="https://deb.freexian.com/extended-lts/docs/debian-9-support/">Debian 9 Stretch</a> – that will start its &#8220;extended&#8221; life on July 1st 2022 – can be maintained up to June 30th 2027.</p>



<p>Organizations using Debian 10 should consider <a href="https://www.freexian.com/services/debian-lts.html">sponsoring the Debian LTS team</a> since security support for that Debian release will soon transition from the regular security team to the LTS team.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://raphaelhertzog.com/2022/05/11/debian-9-soon-out-of-free-security-support/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, March 2022</title>
		<link>https://raphaelhertzog.com/2022/04/28/freexians-report-about-debian-long-term-support-march-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Thu, 28 Apr 2022 10:47:34 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4031</guid>

					<description><![CDATA[Every month we review the work funded by Freexian&#8217;s Debian LTS offering. Please find the report for March below. Debian project funding There was no new activity in Debian project funding in the two existing projects. However, there was a survey run with hundreds of Debian Developers and Debian contributors. The survey results are being [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>



<p><a href="//raphaelhertzog.com/tag/Freexian+LTS/">Every month</a> we review the work funded by <a href="http://www.freexian.com/services/debian-lts.html">Freexian&#8217;s Debian LTS offering</a>. Please find the report for March below.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<ul class="wp-block-list"><li>There was no new activity in Debian project funding in the two existing projects. However, there was a survey run with hundreds of Debian Developers and Debian contributors. The survey results are being collated and we will use the anonymized data to further develop the Freexian project funding initiative.</li><li>We are preparing to more broadly announce additional support for Debian 8 Jessie and Debian 9 Stretch. Now, Debian 8 can be supported until June 2025 and Debian 9 until June 2027. <a href="https://deb.freexian.com/extended-lts/">More information</a> on ELTS support is available.</li><li>In March € 2250 was put aside to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</li></ul>



<p>Learn more about the rationale behind this initiative in <a href="https://raphaelhertzog.com/2020/12/14/funding-debian-development-projects-with-freexian-first-project-received/">this article</a>.</p>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In March, 11 contributors were paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available below. If you&#8217;re interested in participating in the LTS or ELTS teams, we welcome participation from the Debian community. Simply get in touch with <a href="mailto:jeremiah@freexian.com">Jeremiah</a> or <a href="mailto:raphael@freexian.com">Raphaël</a> if you are if you are interested in participating.</p>



<ul class="wp-block-list"><li><a href="https://lists.debian.org/debian-lts/2022/04/msg00007.html">Abhijith PA</a> did 12.0h out of 12h assigned.</li><li><a href="https://gladk.de/posts/202203_floss/">Anton Gladky</a> did 20h out of 20h assigned.</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-march-2022.html">Ben Hutchings</a> did 16h out of 24h assigned.</li><li><a href="https://chris-lamb.co.uk/posts/free-software-activities-in-march-2022#debian-lts">Chris Lamb</a> did 18h out of 18h assigned.</li><li><a href="https://people.debian.org/~pochu/lts/reports/2022-03.txt">Emilio Pozuelo Monfort</a> did 59.5h out of 59.5h assigned.</li><li><a href="https://www.jeremiahfoster.com/blog.html#March">Jeremiah Foster</a> did 13.5 out of 20h assigned.</li><li><a href="https://dl.gambaru.de/blog/202203_LTS_report.txt">Markus Koschany</a> did 40h out of 40h assigned.</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-03.txt">Roberto C. Sánchez</a> did 14h out of 32h assigned, carrying over 18h</li><li><a href="https://lists.debian.org/debian-lts/2022/04/msg00002.html">Sylvain Beucler</a> did 14.5h out of 40h assigned, carrying over 25.5h</li><li><a href="http://blog.alteholz.eu/2022/04/my-debian-activities-in-march-2022/">Thorsten Alteholz</a> did 40h out of 40h assigned.</li><li><a href="https://utkarsh2102.com/posts/foss-in-march-22/">Utkarsh Gupta</a> did 57.75h out of 59.5h assigned, carrying over 1.75 hours.</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In March we released <a href="https://lists.debian.org/debian-lts-announce/2022/03/threads.html">42 DLAs</a>.</p>



<p>The <a href="https://security-tracker.debian.org/tracker/status/release/oldoldstable">security tracker</a> currently lists 81 packages with a known CVE and the <a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/dla-needed.txt">dla-needed.txt file</a> has 52 packages needing an update.</p>



<p>We&#8217;re glad to welcome a few new sponsors such as <a href="https://www.edf.fr/">Électricité de France</a> (Gold sponsor), <a href="https://www.telecats.nl/">Telecats BV</a> and <a href="https://www.soliton.co.jp/">Soliton Systems</a>. </p>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 79 months)</li><li><a href="https://github.com">GitHub</a> (for 70 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 47 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 90 months)</li><li><a href="http://www.linode.com">Linode</a> (for 84 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 73 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 73 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 29 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 16 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 11 months)</li><li><strong><a href="https://www.edf.fr">EDF SA</a></strong></li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 95 months)</li><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 95 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 89 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 80 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 80 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 74 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 64 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 58 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 47 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 42 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 31 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 29 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 23 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 23 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 17 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 14 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 13 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 12 months)</li><li><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a> (for 4 months)</li><li><strong><a href="https://www.telecats.nl">Telecats BV</a></strong></li><li><strong><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a></strong></li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 95 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 95 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 92 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 92 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 91 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 89 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 89 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 89 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 88 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 88 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 84 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 79 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 77 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 71 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 71 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 71 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 63 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 62 months)</li><li><a href="http://www.people-doc.com">People Doc</a> (for 59 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 57 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 52 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 51 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 37 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 29 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 26 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 22 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 16 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 13 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 8 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 7 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 6 months)</li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Join Freexian to help improve Debian</title>
		<link>https://raphaelhertzog.com/2022/03/29/join-freexian-to-help-improve-debian/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Tue, 29 Mar 2022 10:29:15 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[Goals]]></category>
		<category><![CDATA[Mission]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4026</guid>

					<description><![CDATA[Freexian has set itself new ambitious goals in support of Debian and we would like to expand our team to help us reach those goals. We have drafted a mission statement to clarify our purpose and our values, and we hope to be able to attract talented software developers, entrepreneurs and Debian experts from our [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p>Freexian has set itself <a href="https://www.freexian.com/apropos/index.html#ambition">new ambitious goals</a> in support of Debian and we would like to <a href="https://www.freexian.com/apropos/join-us.html">expand our team</a> to help us reach those goals. We have drafted a <a href="https://www.freexian.com/apropos/index.html#mission">mission statement</a> to clarify our purpose and our values, and we hope to be able to attract talented software developers, entrepreneurs and Debian experts from our community.</p>



<blockquote class="wp-block-quote is-layout-flow wp-block-quote-is-layout-flow"><p>Freexian&#8217;s mission is to help Debian evolve to be the leading Linux distribution and a model to follow in the free software world.</p><p>We want to achieve that by enabling passionate contributors to spend most of their time working on Debian and free software, combining lucrative work in support of enterprise customers, core contributions to Debian&#8217;s processes, and personal goals.</p><cite><em>Extract from Freexian&#8217;s mission statement</em></cite></blockquote>



<p>If Debian is an important part of your life, if improving Debian is something that you enjoy doing, if you have enough skills and Debian expertise to match some of the roles that we have described on our <a href="https://www.freexian.com/apropos/join-us.html">Join us</a> page, then we would love to hear from you at <a href="mailto:gerants@freexian.com">gerants@freexian.com</a>, so we can figure out a way to work together.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Freexian’s report about Debian Long Term Support, February 2022</title>
		<link>https://raphaelhertzog.com/2022/03/17/freexians-report-about-debian-long-term-support-february-2022/</link>
		
		<dc:creator><![CDATA[Raphaël Hertzog]]></dc:creator>
		<pubDate>Thu, 17 Mar 2022 11:32:29 +0000</pubDate>
				<category><![CDATA[Debian News]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Freexian]]></category>
		<category><![CDATA[LTS]]></category>
		<guid isPermaLink="false">https://raphaelhertzog.com/?p=4021</guid>

					<description><![CDATA[Every month we review the work funded by Freexian’s Debian LTS offering. Please find the report for February below. Debian project funding In February Raphaël and the LTS worked on a survey of Debian developers meant to solicit ideas for improvements in the Debian project at large. You can see the results of the initial [&#8230;]]]></description>
										<content:encoded><![CDATA[
<div class="wp-block-image"><figure class="alignright"><img loading="lazy" decoding="async" width="128" height="128" src="/files/2015/03/Debian-LTS-2-small.png" alt="A Debian LTS logo" class="wp-image-3226" srcset="https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small.png 128w, https://raphaelhertzog.com/files/2015/03/Debian-LTS-2-small-100x100.png 100w" sizes="auto, (max-width: 128px) 100vw, 128px" /></figure></div>



<p><a href="//raphaelhertzog.com/tag/Freexian+LTS/">Every month</a> we review the work funded by <a href="https://www.freexian.com/services/debian-lts.html">Freexian’s Debian LTS offering</a>. Please find the report for February below.</p>



<h3 class="wp-block-heading">Debian project funding</h3>



<ul class="wp-block-list"><li>In February Raphaël and the LTS worked on a survey of Debian developers meant to solicit ideas for improvements in the Debian project at large. You can see the results of the initial discussion <a href="https://salsa.debian.org/debian/grow-your-ideas/-/issues">here in the list of ideas</a> of which there are already over 30.</li><li>The full survey is due to be emailed to Debian Developers shortly.</li><li>In February € 2250 was put aside to <a href="https://salsa.debian.org/freexian-team/project-funding">fund Debian projects</a>.</li></ul>



<h3 class="wp-block-heading">Debian LTS contributors</h3>



<p>In February, 12 contributors were paid to work on <a href="https://wiki.debian.org/LTS">Debian LTS</a>, their reports are available below. If you&#8217;re interested in participating in the LTS or ELTS teams, we welcome participation from the Debian community. Simply get in touch with <a href="mailto:jeremiah@freexian.com">Jeremiah</a> or <a href="mailto:raphael@freexian.com">Raphaël</a> if you are if you are interested in participating.</p>



<ul class="wp-block-list"><li><a href="https://lists.debian.org/debian-lts/2022/03/msg00001.html">Abhijith PA</a> did 10h out of 10h available.</li><li><a href="https://gladk.de/posts/202202_floss/">Anton Gladky</a> did 20h out of 20h available.</li><li><a href="https://www.decadent.org.uk/ben/blog/debian-lts-work-february-2022.html">Ben Hutchings</a> did 16h out of 16h available.</li><li><a href="https://chris-lamb.co.uk/posts/free-software-activities-in-february-2022#debian-lts">Chris Lamb</a> did 18h out of 18h available.</li><li><a href="https://lists.debian.org/debian-lts/2022/03/msg00017.html">Emilio Pozuelo Monfort</a> did 42.75h out of 42.75h available.</li><li><a href="https://www.jeremiahfoster.com/blog.html#February">Jeremiah Foster</a> worked 20 hours out of 20 available on LTS administration and 2.9 hours on funded projects.</li><li><a href="https://dl.gambaru.de/blog/202202_LTS_report.txt">Markus Koschany</a> did 30h (out of 40h available), thus carrying over 10h to March.</li><li><a href="https://people.debian.org/~roberto/lts_elts_reports/2022-02.txt">Roberto C. Sánchez</a> did 12h out of 12h available.</li><li><a href="https://lists.debian.org/debian-lts/2022/03/msg00000.html">Sylvain Beucler</a> did 13h (out of 40h available), thus carrying over 27h to March.</li><li><a href="http://blog.alteholz.eu/2022/03/my-debian-activities-in-february-2022/">Thorsten Alteholz</a> did 40h out of 40h available.</li><li><a href="https://utkarsh2102.com/posts/foss-in-feb-22/">Utkarsh Gupta</a> did 15.75h (out of 42.75h available), thus carrying over 27h to March.</li></ul>



<h3 class="wp-block-heading">Evolution of the situation</h3>



<p>In February we released <a href="https://lists.debian.org/debian-lts-announce/2022/02/threads.html">24 DLAs</a>.</p>



<p>The <a href="https://security-tracker.debian.org/tracker/status/release/oldoldstable">security tracker</a> currently lists 61 packages with a known CVE and the <a href="https://salsa.debian.org/security-tracker-team/security-tracker/raw/master/data/dla-needed.txt">dla-needed.txt file</a> has 26 packages needing an update.</p>



<p>You can find out more about the Debian LTS project via the following video: </p>



<figure class="wp-block-embed is-type-rich is-provider-embed-handler wp-block-embed-embed-handler wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe loading="lazy" title="Debian Long Term Support with Freexian" width="500" height="281" src="https://www.youtube.com/embed/KAdBj1ErQpM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<h3 class="wp-block-heading">Thanks to our sponsors</h3>



<p>Sponsors that joined recently are in bold.</p>



<ul class="wp-block-list"><li>Platinum sponsors:<ul><li><a href="http://www.toshiba.co.jp/worldwide/index.html">TOSHIBA</a> (for 78 months)</li><li><a href="https://github.com">GitHub</a> (for 68 months)</li><li><a href="https://cip-project.org">Civil Infrastructure Platform (CIP)</a> (for 46 months)</li></ul></li><li>Gold sponsors:<ul><li><a href="https://www.roche.com/about/business/diagnostics.htm">Roche Diagnostics International AG</a> (for 89 months)</li><li><a href="http://www.linode.com">Linode</a> (for 83 months)</li><li><a href="http://www.babiel.com">Babiel GmbH</a> (for 72 months)</li><li><a href="https://www.plathome.com">Plat&#8217;Home</a> (for 71 months)</li><li><a href="http://www.ox.ac.uk">University of Oxford</a> (for 28 months)</li><li><a href="https://deveryware.com">Deveryware</a> (for 15 months)</li><li><a href="https://vyos.io">VyOS Inc</a> (for 10 months)</li></ul></li><li>Silver sponsors:<ul><li><a href="http://www.positive-internet.com">The Positive Internet Company</a> (for 94 months)</li><li><a href="http://www.domainnameshop.com">Domeneshop AS</a> (for 93 months)</li><li><a href="http://www.nantesmetropole.fr/">Nantes Métropole</a> (for 87 months)</li><li><a href="http://www.univention.de">Univention GmbH</a> (for 79 months)</li><li><a href="http://portail.univ-st-etienne.fr/">Université Jean Monnet de St Etienne</a> (for 79 months)</li><li><a href="https://ribboncommunications.com/">Ribbon Communications, Inc.</a> (for 73 months)</li><li><a href="https://www.exonet.nl">Exonet B.V.</a> (for 63 months)</li><li><a href="https://www.lrz.de">Leibniz Rechenzentrum</a> (for 57 months)</li><li><a href="https://www.cineca.it">CINECA</a> (for 46 months)</li><li><a href="https://www.diplomatie.gouv.fr">Ministère de l&#8217;Europe et des Affaires Étrangères</a> (for 40 months)</li><li><a href="https://www.cloudways.com">Cloudways Ltd</a> (for 29 months)</li><li><a href="https://dinahosting.com">Dinahosting SL</a> (for 27 months)</li><li><a href="https://platform.sh">Platform.sh</a> (for 22 months)</li><li><a href="https://www.bauermedia.com">Bauer Xcel Media Deutschland KG</a> (for 21 months)</li><li><a href="https://www.moxa.com">Moxa Intelligence Co., Ltd.</a> (for 16 months)</li><li><a href="https://sipgate.de">sipgate GmbH</a> (for 13 months)</li><li><a href="https://ovhcloud.com">OVH US LLC</a> (for 11 months)</li><li><a href="https://www.tilburguniversity.edu/">Tilburg University</a> (for 11 months)</li><li><strong><a href="https://www.gsi.de">GSI Helmholtzzentrum für Schwerionenforschung GmbH</a></strong></li><li><strong><a href="https://www.telecats.nl">Telecats BV</a></strong></li><li><strong><a href="https://www.soliton.co.jp">Soliton Systems K.K.</a></strong></li></ul></li><li>Bronze sponsors:<ul><li><a href="http://www.evolix.fr">Evolix</a> (for 94 months)</li><li><a href="http://www.seznam.cz">Seznam.cz, a.s.</a> (for 94 months)</li><li><a href="http://linuxhotel.de">Linuxhotel GmbH</a> (for 91 months)</li><li><a href="http://intevation.de">Intevation GmbH</a> (for 90 months)</li><li><a href="https://daevel.fr">Daevel SARL</a> (for 89 months)</li><li><a href="http://bitfolk.com">Bitfolk LTD</a> (for 88 months)</li><li><a href="http://www.megaspace.de">Megaspace Internet Services GmbH</a> (for 88 months)</li><li><a href="http://www.greenbone.net">Greenbone Networks GmbH</a> (for 87 months)</li><li><a href="http://numlog.fr">NUMLOG</a> (for 87 months)</li><li><a href="http://www.wingo.ch/">WinGo AG</a> (for 86 months)</li><li><a href="http://lheea.ec-nantes.fr">Ecole Centrale de Nantes &#8211; LHEEA</a> (for 83 months)</li><li><a href="https://www.entrouvert.com/">Entr&#8217;ouvert</a> (for 78 months)</li><li><a href="https://adfinis.com">Adfinis AG</a> (for 75 months)</li><li><a href="http://www.legi.grenoble-inp.fr">Laboratoire LEGI &#8211; UMR 5519 / CNRS</a> (for 70 months)</li><li><a href="https://www.tesorion.nl/">Tesorion</a> (for 70 months)</li><li><a href="http://www.allogarage.fr">GNI MEDIA</a> (for 69 months)</li><li><a href="http://bearstech.com">Bearstech</a> (for 61 months)</li><li><a href="http://lihas.de">LiHAS</a> (for 61 months)</li><li><a href="http://www.people-doc.com">People Doc</a> (for 57 months)</li><li><a href="http://www.catalyst.net.nz">Catalyst IT Ltd</a> (for 56 months)</li><li><a href="http://www.supagro.fr">Supagro</a> (for 51 months)</li><li><a href="https://demarcq.net">Demarcq SAS</a> (for 50 months)</li><li><a href="https://www.univ-grenoble-alpes.fr">Université Grenoble Alpes</a> (for 36 months)</li><li><a href="https://www.touchweb.fr">TouchWeb SAS</a> (for 28 months)</li><li><a href="https://www.spin-ag.de">SPiN AG</a> (for 24 months)</li><li><a href="https://www.corefiling.com">CoreFiling</a> (for 20 months)</li><li><a href="http://www.isc.cnrs.fr">Institut des sciences cognitives Marc Jeannerod</a> (for 15 months)</li><li><a href="https://www.osug.fr/">Observatoire des Sciences de l&#8217;Univers de Grenoble</a> (for 11 months)</li><li><a href="https://www.werfen.com">Tem Innovations GmbH</a> (for 6 months)</li><li><a href="https://wordfinder.pro">WordFinder.pro</a> (for 6 months)</li><li><a href="https://www.resif.fr">CNRS DT INSU Résif</a> (for 4 months)</li></ul></li></ul>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
