<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="http://dev1galaxy.org/extern.php?action=feed&amp;tid=7823&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] MX_Devuan_KDE_dinit]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=7823</link>
		<description><![CDATA[The most recent posts in [SOLVED] MX_Devuan_KDE_dinit.]]></description>
		<lastBuildDate>Thu, 14 May 2026 09:30:34 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63803#p63803</link>
			<description><![CDATA[<p>sudo apt install bluedevil<br />sudo apt install ufw</p><p>Added to ISO.</p><p>MXD-Plasma-dinit.&#160; <a href="https://mega.nz/file/rixGSJrC#wpl1J0cOvREh83qYix7UxTtTKr3HcVC-1stF45Hcjus" rel="nofollow">https://mega.nz/file/rixGSJrC#wpl1J0cOv … stF45Hcjus</a></p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Thu, 14 May 2026 09:30:34 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63803#p63803</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63799#p63799</link>
			<description><![CDATA[<p>I&#039;ve modified rc-local.sh to not look for other scripts and put commands for ufw in rc.local. It&#039;s not clean solution but it works for now.</p><p>/etc/dinit.d/scripts contains some artifacts like</p><div class="codebox"><pre><code>cat rc.local
#!/usr/bin/sh</code></pre></div><p>with regular user permissions. Almost all scripts in this folder have regular user permissions. I did not create them, strange <img src="http://dev1galaxy.org/img/smilies/hmm.png" width="15" height="15" alt="hmm" /></p><p>bluetooth is strated</p><div class="quotebox"><blockquote><div><p>dinitctl status bluetoothd<br />Service: bluetoothd<br />&#160; &#160; State: STARTED<br />&#160; &#160; Activation: start due to dependent(s)<br />&#160; &#160; Process ID: 893</p></div></blockquote></div><p>but I&#039;ve no bluetooth: no icon for it, no bluetooth in KDE settings.</p>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Wed, 13 May 2026 21:54:09 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63799#p63799</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63798#p63798</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>ufw</p><p>type = scripted<br />command = /usr/sbin/ufw enable<br />stop-command = /usr/sbin/ufw disable<br />depends-on = mount-all<br />logfile&#160; &#160; = /tmp/ufw.log</p></div></blockquote></div><p>the same:</p><div class="codebox"><pre><code>dinitctl status ufw
Service: ufw
    State: STARTED
    Activation: start due to dependent(s)</code></pre></div><p>but</p><div class="codebox"><pre><code>ufw status
Status: inactive</code></pre></div><p>I can add ufw enable to rc.local to bypass this issue but rc-local service does not start. Log file:</p><div class="codebox"><pre><code>ls: cannot access &#039;/etc/dinit.d/scripts/rc-local/*.start&#039;: No such file or directory</code></pre></div><p>service:</p><div class="codebox"><pre><code>/etc/dinit.d# cat rc-local
type = scripted
command = /usr/bin/sh /etc/dinit.d/scripts/rc-local.sh start
stop-command = /usr/bin/sh /etc/dinit.d/scripts/rc-local.sh stop

depends-on = login.target
logfile = /tmp/rc-local.log</code></pre></div><p>script:</p><div class="codebox"><pre><code>cat /etc/dinit.d/scripts/rc-local.sh
#!/usr/bin/sh

case &quot;$1&quot; in
        start)
        sh -c &quot;/etc/dinit.d/scripts/rc.local&quot; &amp;&amp; ls -1 /etc/dinit.d/scripts/rc-local/*.start  |  while read script; do sh -c $script;  done;
        ;;

        stop)
        ls -1 /etc/dinit.d/scripts/rc-local/*.stop  |  while read script; do sh -c $script;  done;
        ;;

        *)
        exit 1
        ;;
esac</code></pre></div><p>the folder called by script is almost empty:</p><div class="codebox"><pre><code>ls /etc/dinit.d/scripts/rc-local/
README</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Wed, 13 May 2026 21:09:10 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63798#p63798</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63691#p63691</link>
			<description><![CDATA[<p>ufw</p><div class="codebox"><pre><code>type = scripted
command = /usr/sbin/ufw enable
stop-command = /usr/sbin/ufw disable
depends-on = mount-all
logfile	= /tmp/ufw.log</code></pre></div><p>bluetoothd</p><div class="codebox"><pre><code>type = process
command = /usr/libexec/bluetooth/bluetoothd

depends-on = dbus</code></pre></div><p>sudo dinit-check ufw<br />sudo dinit-check bluetoothd</p><p>if OK, then<br />sudo dinitctl enable ufw<br />sudo dinitctl enable bluetoothd</p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Sat, 09 May 2026 05:03:58 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63691#p63691</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63684#p63684</link>
			<description><![CDATA[<div class="codebox"><pre><code>Configure Timeshift to take one snapshot per week. I have not had any problems after updates.</code></pre></div><p>I&#039;ve reinstalled MXD again and had no issue with today&#039; s update.</p><p>I&#039;ve few questions about MXD and dinit (I&#039;m new in dinit)</p><p>1. The distro has no doas preinstalled but I see preconfigured doas.conf in /etc/</p><p>2. I created ufw in /etc/dinit.d:</p><div class="codebox"><pre><code>type         = scripted
command      = /usr/sbin/ufw enable
stop-command = /usr/sbin/ufw disable
restart      = false</code></pre></div><p>and not sure if I need depends-on, before, logfile? Also the service strarts but ufw is not enabled after reboot.</p><p>3. Service rc-local was in place already:</p><div class="codebox"><pre><code>type = scripted
command = /usr/bin/sh /etc/dinit.d/scripts/rc-local.sh start
stop-command = /usr/bin/sh /etc/dinit.d/scripts/rc-local.sh stop
depends-on = login.target</code></pre></div><p>it&#039; s enabled and started but rc.local is ignored. What can be wrong?</p><p>4. It seems that bluetooth is installed:</p><div class="codebox"><pre><code>dpkg -l | grep blue  
ii  bluetooth                                           5.85-4                                       all          Bluetooth support (metapackage)
ii  bluez                                               5.85-4                                       amd64        Bluetooth tools and daemons
ii  bluez-alsa-utils                                    4.3.1-3.1+b1                                 amd64        Bluetooth Audio ALSA Backend (utils)
ii  bluez-firmware                                      1.2-13                                       all          Firmware for Bluetooth devices
ii  libasound2-plugin-bluez:amd64                       4.3.1-3.1+b1                                 amd64        Bluetooth Audio ALSA Backend (plugins)
ii  libbluetooth3:amd64                                 5.85-4                                       amd64        Library to use the BlueZ Linux Bluetooth stack
ii  libkf6bluezqt-data                                  6.23.0-2                                     all          data files for bluez-qt
ii  libkf6bluezqt6:amd64                                6.23.0-2                                     amd64        Qt wrapper for bluez
ii  papirus-mxblue                                      25.06.02mx25                                 all          papirus blue folders with tabs for MX
ii  qml6-module-org-kde-bluezqt:amd64                   6.23.0-2                                     amd64        QML wrapper for bluez</code></pre></div><p>but I don&#039; t see any traces of bluetooth to set it up.</p>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Fri, 08 May 2026 21:31:08 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63684#p63684</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63668#p63668</link>
			<description><![CDATA[<p>Configure Timeshift to take one snapshot per week. I have not had any problems after updates.</p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Fri, 08 May 2026 04:03:48 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63668#p63668</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63663#p63663</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>You can&#039;t install that particular distro to the same drive you are booting from in ventoy. I have had that in MX Linux since even the file managers don&#039;t let us access that drive either.</p></div></blockquote></div><p>Thanks for info. Anyway it&#039;s over - kernel panic after update, not this distro fault but ceres one. <br />My experience: MX_Devuan_KDE_dinit is great but as it&#039;s based on unstable it does not survive un update <img src="http://dev1galaxy.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Thu, 07 May 2026 23:10:51 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63663#p63663</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63601#p63601</link>
			<description><![CDATA[<p>You can&#039;t install that particular distro to the same drive you are booting from in ventoy. I have had that in MX Linux since even the file managers don&#039;t let us access that drive either.</p>]]></description>
			<author><![CDATA[dummy@example.com (Bizz91)]]></author>
			<pubDate>Mon, 04 May 2026 23:01:56 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63601#p63601</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63600#p63600</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Maybe your SSD is not visible in Live, look before installing it in Gparted and try to mount it manually.</p></div></blockquote></div><p>The installer works as expected when I use a Ventoy flash drive. The aforementioned strange behavior only occurs when booting the Live system from this second SSD using Ventoy. In such cases, I see all partitions on the first drive and only Ventoy-related partitions on the second. As a result, I am unable to install the distribution to the second drive.</p>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Mon, 04 May 2026 21:59:15 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63600#p63600</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63582#p63582</link>
			<description><![CDATA[<p>Gazelle Installer? I have never had problems with it, and I have not changed the default settings. Maybe your SSD is not visible in Live, look before installing it in Gparted and try to mount it manually.</p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Mon, 04 May 2026 05:01:08 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63582#p63582</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63577#p63577</link>
			<description><![CDATA[<p>I found an interesting feature of this distribution - the installer refuses to see the second disk. Both disks are SSDs. Why?</p>]]></description>
			<author><![CDATA[dummy@example.com (Devarch)]]></author>
			<pubDate>Sun, 03 May 2026 20:55:11 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63577#p63577</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63558#p63558</link>
			<description><![CDATA[<p>Posted right there few mins ago on your Mx Linux forum post and the devuanusers.com post too. All the best of luck man.<br />Can&#039;t wait for a distro on X Libre with any init plus sysd shim and MX Tools or Tweaks And Sonic DE (Plasma 6 fork) with X Server support since Plasma 6.8 will be wayland only and this Sonic DE will like Plasma 6 with that X server support.<br />I am in &quot;do one thing well&quot; team.</p>]]></description>
			<author><![CDATA[dummy@example.com (Bizz91)]]></author>
			<pubDate>Sat, 02 May 2026 22:40:10 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63558#p63558</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63552#p63552</link>
			<description><![CDATA[<p>Grahamps, thank you for your support.</p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Sat, 02 May 2026 15:29:54 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63552#p63552</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63551#p63551</link>
			<description><![CDATA[<p>I am going to be following this closely, it&#039;s inspired me to restart my tribute build; full disclosure, for the rough start I did use the last KDE build as a spring board. Either way, the kernel has humbled me again and dinit has proved both insanely quick and straight forward but unforgiving. So massive kudos and a serious thank you.</p>]]></description>
			<author><![CDATA[dummy@example.com (Grahamps)]]></author>
			<pubDate>Sat, 02 May 2026 14:47:29 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63551#p63551</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] MX_Devuan_KDE_dinit]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=63481#p63481</link>
			<description><![CDATA[<p>nathan2423, thank you! I&#039;m more interested in popularizing Devuan, Void, Artix. My ISO is essentially Devuan and its stable operation is the merit of the developers of Devuan, Debian, AntiX. I&#039;ve provided an easy-to-install and streamlined build for beginners. I was not kicked out of here by the administrators and that&#039;s good) I&#039;m just an experimenter.</p><p>&gt;&gt; I&#039;d be surprised if you didn&#039;t get at least 50% of the engagement as the MXArch thread.</p><p>Dinit is not interesting for MX developers - they are interested in the pop project&#160; -MX-Arch. I once published my build there, but no one was interested in it.</p>]]></description>
			<author><![CDATA[dummy@example.com (Valera)]]></author>
			<pubDate>Tue, 28 Apr 2026 15:05:37 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=63481#p63481</guid>
		</item>
	</channel>
</rss>
