<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=8037&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Where is the release information stored?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=8037</link>
		<description><![CDATA[The most recent posts in Where is the release information stored?.]]></description>
		<lastBuildDate>Tue, 07 Jul 2026 00:38:46 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64585#p64585</link>
			<description><![CDATA[<p>yeah the both do something like this</p><div class="codebox"><pre><code>PRETTY_NAME=&quot;PeppermintOS&quot;
NAME=&quot;Peppermint&quot;
ID=debian
VERSION_CODENAME=daedalus
HOME_URL=&quot;https://peppermintos.com/&quot;
SUPPORT_URL=&quot;https://sourceforge.net/p/peppermintos/pepos/&quot;
BUG_REPORT_URL=&quot;https://sourceforge.net/p/peppermintos/pepos/&quot;</code></pre></div><p>You could be right&#160; some fluke during install any way thanks!</p>]]></description>
			<author><![CDATA[dummy@example.com (grafiksinc)]]></author>
			<pubDate>Tue, 07 Jul 2026 00:38:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64585#p64585</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64574#p64574</link>
			<description><![CDATA[<p>Does your /etc/os-release (or whatever it points to if it&#039;s a symlink) have data in it?</p><p>My best guess is that my install failed in some way and that it should be populated instead of empty.</p>]]></description>
			<author><![CDATA[dummy@example.com (chabala)]]></author>
			<pubDate>Mon, 06 Jul 2026 17:12:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64574#p64574</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64568#p64568</link>
			<description><![CDATA[<p>hmmm This is interesting&#160; I run both daedalus and excalibur and </p><p>in both cases lsb_release -a returns</p><div class="codebox"><pre><code>Distributor ID:	Debian
Description:	PeppermintOS
Release:	n/a
Codename:	daedalus</code></pre></div><p>and </p><div class="codebox"><pre><code>Distributor ID:	Debian
Description:	PeppermintOS Devuan
Release:	n/a
Codename:	excalibur</code></pre></div><p>I wonder what would cause your n/a&#039;s</p>]]></description>
			<author><![CDATA[dummy@example.com (grafiksinc)]]></author>
			<pubDate>Mon, 06 Jul 2026 08:48:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64568#p64568</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64343#p64343</link>
			<description><![CDATA[<p>Looks like I&#039;m running Debian something:</p><div class="codebox"><pre><code>$ uname -a
Linux hp845g8 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 GNU/Linux</code></pre></div><p>I can make scripts:</p><div class="codebox"><pre><code>#!/usr/bin/env bash

shopt -s nullglob

for file in /etc/*version /etc/*release; do
    echo &quot;$file:&quot;
    cat &quot;$file&quot;
done</code></pre></div><div class="codebox"><pre><code>$ ./checkRelease 
/etc/debian_version:
12.6
/etc/devuan_version:
daedalus
/etc/os-release:</code></pre></div><p>But, do we need to code-golf this? Or can we just put some data in the os-release file?</p>]]></description>
			<author><![CDATA[dummy@example.com (chabala)]]></author>
			<pubDate>Fri, 19 Jun 2026 16:45:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64343#p64343</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64342#p64342</link>
			<description><![CDATA[<p>You could run <span class="bbc">ls -l /etc/*version</span> and <span class="bbc">ls -l /etc/*release</span> to see what files exist. As well as <span class="bbc">uname -a</span></p>]]></description>
			<author><![CDATA[dummy@example.com (chris2be8)]]></author>
			<pubDate>Fri, 19 Jun 2026 16:25:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64342#p64342</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64333#p64333</link>
			<description><![CDATA[<p>Yes:</p><div class="codebox"><pre><code>$ cat /etc/debian_version
12.6
$ cat /etc/devuan_version
daedalus</code></pre></div><p>No obvious <span class="bbc">peppermint_version</span> file in /etc though.</p><p>But then, one has to remember that one is running devuan to know to check for <span class="bbc">devuan_version</span>. So if I wanted a generic command to show me release information, it could become a script full of conditional checks like:</p><div class="codebox"><pre><code>[ -s &quot;/etc/redhat-release&quot; ] &amp;&amp; cat /etc/redhat-release
[ -s &quot;/etc/arch-release&quot; ] &amp;&amp; cat /etc/arch-release
[ -s &quot;/etc/debian_version&quot; ] &amp;&amp; cat /etc/debian_version
[ -s &quot;/etc/devuan_version&quot; ] &amp;&amp; cat /etc/devuan_version</code></pre></div><p>or, we could populate the <span class="bbc">/etc/os-release</span> file, and not need a script. Some of those other tools I mentioned might even be able to find the information too.</p>]]></description>
			<author><![CDATA[dummy@example.com (chabala)]]></author>
			<pubDate>Fri, 19 Jun 2026 04:02:30 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64333#p64333</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64332#p64332</link>
			<description><![CDATA[<p>yes, it should have both.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Fri, 19 Jun 2026 02:51:14 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64332#p64332</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64330#p64330</link>
			<description><![CDATA[<p>Does it have </p><div class="codebox"><pre><code>/etc/debian_version</code></pre></div><p> or </p><div class="codebox"><pre><code>/etc/devuan_version</code></pre></div><p>?</p>]]></description>
			<author><![CDATA[dummy@example.com (bigbenaugust)]]></author>
			<pubDate>Fri, 19 Jun 2026 02:27:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64330#p64330</guid>
		</item>
		<item>
			<title><![CDATA[Re: Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64252#p64252</link>
			<description><![CDATA[<p>check <span class="bbc">/var/lib/apt/lists</span></p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Wed, 10 Jun 2026 03:06:55 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64252#p64252</guid>
		</item>
		<item>
			<title><![CDATA[Where is the release information stored?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=64250#p64250</link>
			<description><![CDATA[<p>I&#039;m running Devuan-based PeppermintOS. Which version, you might ask; I&#039;ve found it&#039;s difficult to tell.</p><p>I&#039;ve noticed that all the places I&#039;m used to looking to see my release information seem to be unpopulated:</p><p>neofetch: &quot;OS: n/a x86_64&quot;</p><p>$ lsb_release -a<br />No LSB modules are available.<br />Distributor ID:&#160; &#160; n/a<br />Description:&#160; &#160; n/a<br />Release:&#160; &#160; n/a<br />Codename:&#160; &#160; n/a</p><p>$ ll /etc/os-release <br />lrwxrwxrwx 1 root root 21 Jun 30&#160; 2024 /etc/os-release -&gt; ../usr/lib/os-release</p><p>$ ll /usr/lib/os-release <br />-rw-r--r-- 1 root root 0 Feb 20 08:42 /usr/lib/os-release</p><p>I know the whole point is not using systemd, but surely putting some release information in one of the well known locations would be good. Pretty sure the LSB spec isn&#039;t systemd specific.</p><p>Is there another distro-specific release information file I don&#039;t know about?</p>]]></description>
			<author><![CDATA[dummy@example.com (chabala)]]></author>
			<pubDate>Wed, 10 Jun 2026 01:39:49 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=64250#p64250</guid>
		</item>
	</channel>
</rss>
