<?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=1944&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Devuan + paralleized OpenRC + KDE]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=1944</link>
		<description><![CDATA[The most recent posts in Devuan + paralleized OpenRC + KDE.]]></description>
		<lastBuildDate>Sun, 06 Oct 2019 00:04:59 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=18155#p18155</link>
			<description><![CDATA[<p>@ b3bgd</p><p>I admit to be a Newbie and I&#039;m not ashamed for that, I accept and welcome each constructive criticism.</p><p>Don&#039;t take me wrong, but, if you convey the rights commands how should be... I will correct immediately as already in the past have done.</p><p>ᑟ ᐒ</p>]]></description>
			<author><![CDATA[dummy@example.com (Terence)]]></author>
			<pubDate>Sun, 06 Oct 2019 00:04:59 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=18155#p18155</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17862#p17862</link>
			<description><![CDATA[<p>Hei Terence.</p><p>Nice to have a «KDE-relative» on this forum!<br />Sorry for not being present earlier!</p><p>Cheers,<br />Olav</p>]]></description>
			<author><![CDATA[dummy@example.com (F_Sauce)]]></author>
			<pubDate>Sun, 15 Sep 2019 11:01:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17862#p17862</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17855#p17855</link>
			<description><![CDATA[<div class="quotebox"><cite>Terence wrote:</cite><blockquote><div><p>2. Check &#039;OpenRC&#039; is parallelized:</p><div class="codebox"><pre><code>(ps -eo &quot;ppid,args&quot; 2&gt;/dev/null || echo &quot;ps call error&quot;) \
| awk &#039;NR==1 || $1==1&#039; | less</code></pre></div><p>Output:</p></div></blockquote></div><p>Again, this has nothing to do with openrc either. And even if would be correct, it wouldn&#039;t mean &quot;openrc&quot; is &quot;parallelised&quot;. It just shows you the processes that have a parent pid (ppid) of 1, e.g., that have been started by init (whichever that is) directly, parallel or not.</p><p>So, you are just listing a bunch of processes that have been started by init.You might as well run <span class="bbc">ps --ppid 1</span>, it&#039;s the same think, you don&#039;t need that hugeload of command.</p><p>Guess what happens on Ubuntu with no openrc installed (and with systemd init):</p><div class="codebox"><pre><code># (ps -eo &quot;ppid,args&quot; 2&gt;/dev/null || echo &quot;ps call error&quot;) | awk &#039;NR==1 || $1==1&#039;
 PPID COMMAND
    1 /usr/sbin/cron -f
    1 /usr/sbin/ModemManager --filter-policy=strict
    1 /usr/sbin/irqbalance --foreground
    1 /usr/sbin/acpid
    1 /usr/sbin/atd -f
[...]</code></pre></div><p>Guess what we see on Devuan with Sys V and no openrc ever installed:</p><div class="codebox"><pre><code> (ps -eo &quot;ppid,args&quot; 2&gt;/dev/null || echo &quot;ps call error&quot;) \
&gt; | awk &#039;NR==1 || $1==1&#039; 
 PPID COMMAND
    1 udevd --daemon
    1 /sbin/dhclient -4 -v -pf /run/dhclient.eth0.pid -lf /var/lib/dhcp/dhclient.eth0.leases -I -df /var/lib/dhcp/dhclient6.eth0.leases eth0
    1 /usr/sbin/rsyslogd
    1 /usr/sbin/cron
    1 /usr/sbin/ntpd -p /var/run/ntpd.pid -g -u 101:106
[...]</code></pre></div><p>Please don&#039;t get me wrong, there is nothing personal here, but please make sure you understand what you are posting before making it a tutorial.</p>]]></description>
			<author><![CDATA[dummy@example.com (b3bgd)]]></author>
			<pubDate>Sat, 14 Sep 2019 19:27:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17855#p17855</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17854#p17854</link>
			<description><![CDATA[<div class="quotebox"><cite>Terence wrote:</cite><blockquote><div><div class="codebox"><pre><code>pidof /sbin/init &amp;&amp; echo &quot;openrc&quot; || echo &quot;other&quot;</code></pre></div></div></blockquote></div><p>That shell command doesn&#039;t have much to do with openrc. You only check the PID of /sbin/init, which is almost always 1, even with the default Sys V or systemd or whatever, and then you print a random message, in this case &quot;openrc&quot;. Could as well be anything else. Just run the same command as root on a Devuan, Debian, Ubuntu, CentOS or any other Linux that does not even has openrc installed, and check the results for yourself.<br />Guess what happens on a Ubuntu 18.04 with systemd:</p><div class="codebox"><pre><code># pidof /sbin/init &amp;&amp; echo &quot;openrc&quot; || echo &quot;other&quot;
1
openrc</code></pre></div><p><img src="https://dev1galaxy.org/img/smilies/roll.png" width="15" height="15" alt="roll" /></p><p>You might want to try something else, like seeing where init is actually pointing:</p><div class="codebox"><pre><code># ls -alh /sbin/init 
lrwxrwxrwx 1 root root 20 sep  5 06:59 /sbin/init -&gt; /lib/systemd/systemd</code></pre></div><p>See? It points to systemd on Ubuntu here.</p><p>In case it doesn&#039;t, you might want to check the executable yourself. For example, on Devuan with Sys V and no OpenRC installed:</p><div class="codebox"><pre><code># strings /proc/1/exe | grep INIT_VERSION
INIT_VERSION=sysvinit-2.88</code></pre></div><p>See? Here we have Sys V /sbin/init.</p><p>Also, if I remember correctly, OpenRC doesn&#039;t always replace init...?</p>]]></description>
			<author><![CDATA[dummy@example.com (b3bgd)]]></author>
			<pubDate>Sat, 14 Sep 2019 18:55:30 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17854#p17854</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17373#p17373</link>
			<description><![CDATA[<div class="quotebox"><cite>macondo wrote:</cite><blockquote><div><div class="quotebox"><cite>Terence wrote:</cite><blockquote><div><p>Dear All, dear Devs,</p><p>Counter-check everything is like you want!<br />1. Check &#039;OpenRC&#039; is up and running:</p></div></blockquote></div><div class="codebox"><pre><code>pidof /sbin/init &amp;&amp; echo &quot;openrc&quot; || echo &quot;other&quot;</code></pre></div><p>Output:</p><div class="quotebox"><blockquote><div><p>1<br />openrc</p></div></blockquote></div><p>Thanks to all you guys (Terence, golinux, fmithred, et.al.) I followed your instructions to the letter, reinstalled Devuan, moved to Ceres and got openrc, kudos to the devs and you too. THANKS!</p><p>By the way, small typo: there is a quotation mark missing after the word &#039;other&#039;, no biggie...</p></div></blockquote></div><p>Thanks a lot for your feedback &amp; forall your correction, i apply it and appreciate, thanks again.</p>]]></description>
			<author><![CDATA[dummy@example.com (Terence)]]></author>
			<pubDate>Thu, 08 Aug 2019 08:46:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17373#p17373</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17362#p17362</link>
			<description><![CDATA[<div class="quotebox"><cite>Terence wrote:</cite><blockquote><div><p>Dear All, dear Devs,</p><p>Counter-check everything is like you want!<br />1. Check &#039;OpenRC&#039; is up and running:</p></div></blockquote></div><div class="codebox"><pre><code>pidof /sbin/init &amp;&amp; echo &quot;openrc&quot; || echo &quot;other&quot;</code></pre></div><p>Output:</p><div class="quotebox"><blockquote><div><p>1<br />openrc</p></div></blockquote></div><p>Thanks to all you guys (Terence, golinux, fmithred, et.al.) I followed your instructions to the letter, reinstalled Devuan, moved to Ceres and got openrc, kudos to the devs and you too. THANKS!</p><p>By the way, small typo: there is a quotation mark missing after the word &#039;other&#039;, no biggie...</p>]]></description>
			<author><![CDATA[dummy@example.com (macondo)]]></author>
			<pubDate>Wed, 07 Aug 2019 16:16:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17362#p17362</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=17357#p17357</link>
			<description><![CDATA[<div class="quotebox"><cite>Ogis1975 wrote:</cite><blockquote><div><p>Hello I have a question for OpenRC users who use the option <span class="bbc">paralleized OpenRC</span><br />Parallel startup in OpenRC was disabled by default due to <a href="https://bugs.gentoo.org/show_bug.cgi?id=391945" rel="nofollow">https://bugs.gentoo.org/show_bug.cgi?id=391945</a> this bug. I understand this is a critical bug. Is any of you is affected by this bug? How do you think it is safe to use this feature?</p></div></blockquote></div><p><a href="https://bugs.gentoo.org/show_bug.cgi?id=391945" rel="nofollow">https://bugs.gentoo.org/show_bug.cgi?id=391945</a>This bug same to be solved, see <a href="https://bugs.gentoo.org/391945#c42" rel="nofollow">https://bugs.gentoo.org/391945#c42</a>last post, here the plain text:</p><div class="quotebox"><blockquote><div><p><strong>Benda Xu gentoo-dev 2019-07-09 10:40:44 UTC</strong><br />This bug is has been turned into a feature request to upstream the boot dependency loop solver implemented for Debian.</p><p>The present status: in Debian the loop solver by Okunev worked perfectly well for more than 5 years.</p></div></blockquote></div>]]></description>
			<author><![CDATA[dummy@example.com (Terence)]]></author>
			<pubDate>Wed, 07 Aug 2019 07:36:21 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=17357#p17357</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=11025#p11025</link>
			<description><![CDATA[<p>Hello, Terence. I use ext4 filesystem.</p><div class="quotebox"><blockquote><div><p>Our motherboard should be similar</p></div></blockquote></div><p>Yes, it is, but my cpu is not over-clocked.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ogis1975)]]></author>
			<pubDate>Tue, 31 Jul 2018 14:33:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=11025#p11025</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10989#p10989</link>
			<description><![CDATA[<div class="quotebox"><cite>Ogis1975 wrote:</cite><blockquote><div><p>No, i use 8 cores. It is Intel i7 920 (8) @ 2.7GHz</p></div></blockquote></div><p>May i ask you which file-system you use? &#039;ext4&#039;, &#039;btrfs&#039; other?</p><p>Our motherboard should be similar, i use an MSI-x58 over-clocked CPU from 2.93 to 4.0 GHz (182x22).</p>]]></description>
			<author><![CDATA[dummy@example.com (Terence)]]></author>
			<pubDate>Mon, 30 Jul 2018 15:52:51 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10989#p10989</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10988#p10988</link>
			<description><![CDATA[<div class="quotebox"><blockquote><div><p>Thanks for your feedback first.</p></div></blockquote></div><p>You&#039;re welcome <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><div class="quotebox"><blockquote><div><p>Do you use only one core?</p></div></blockquote></div><p>No, i use 8 cores. It is Intel i7 920 (8) @ 2.7GHz</p><div class="quotebox"><blockquote><div><p>OpenRC is relatively new</p></div></blockquote></div><p>Well, it&#039;s not so important anymore. Simply bleeding edge is not for me. I choose stability and time-tested methods.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ogis1975)]]></author>
			<pubDate>Mon, 30 Jul 2018 14:57:02 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10988#p10988</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10985#p10985</link>
			<description><![CDATA[<div class="quotebox"><cite>Ogis1975 wrote:</cite><blockquote><div><p>OpenRC, in my opinion, is not ready for production. Anyone using OpenRC should have that in mind. In addition, I did not notice practically any difference between sysvinit and OpenRC (I mean loading and reloading speeds). So, I decided to stay with a verified sysvinit.&#160; Thank you for your attention.</p></div></blockquote></div><p>Thanks for your feedback first.<br />Till now i installed Devuan+OpenRC+KDE &quot;only&quot; in the VirtualBox using 4 of 12 CPU-cores (Xeon 6 core 12 threads), the new PC-Parts (on which was supposed to install the final system) are on the way, hence i cannot tell you about the behavior in real machine.<br />I also not seen the warning message (cause of VM?), however i start the machine several time @ day and never got any problem.</p><p>Do you use only one core? I can imagine that one core managing 20 processes running all under PID N°1 can cause difficulties. <br />I also tested TrueOS (FreeBSD) in the past on real machine there use also &quot;OpenRC&quot; but @ time i not yet knew how to parallelize it.<br />Those test was abandoned due too slow network and my incapability to set up a dark UI.</p><p>The dark UI (e.g. obsidian coast or breeze dark) is essential for my eyes and even if KDE take (for me) the wrong way (wit Dolphin, Kate, Kdesudo) i&#039;m forced to use it (even if the appearances are to be settled twice (as user and as admin)) because is the only UI i learn to modify the appearance properly. For other machines @ home i have to use KDE too because of similarity of Kick-Off with Windows (used in the company) and for maintenance simplicity (only one UI).</p><p>Now, i would&#039;t go back to Kubuntu (cause of systemd). OpenRC is relatively new (@ least in Linux (as far i know)) nonetheless it is daily improved.<br />I hope, soon will be removed the latter rest of systemd from Devuan so i can sleep quieter.</p><p>Additional feedback will follow after assembly and install on latest incoming hardware.</p>]]></description>
			<author><![CDATA[dummy@example.com (Terence)]]></author>
			<pubDate>Mon, 30 Jul 2018 13:16:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10985#p10985</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10953#p10953</link>
			<description><![CDATA[<p>Thanks for the reply, MiyoLinux. Sorry for my bad English.&#160; As for OpenRc, i will write my notes. At the beginning of the installation, i selected &quot;Expert install&quot; and go to step when you need to choose init system. There is a warning on that screen &quot;it is a experimental software. Use it at own risk&quot;. This means openRC. I decided to insult myself, so I chose OpenRC. I installed the minimal system. No DE and DM, just i3wm. I used to access the graphical environment startx. I decided to check the system resources that were used with command &quot;top&quot;. I was surprised. It turns out that a system, which is not overloaded, uses 20 percent of cpu. I found out that the culprit is an OpenRC process named &quot;yes&quot;. Ten minutes later, the system began to jerk, the reboot took about 10 minutes. So, I understood one that the warning on the wiring screen it was not for nothing. OpenRC, in my opinion, is not ready for production. Anyone using OpenRC should have that in mind. In addition, I did not notice practically any difference between sysvinit and OpenRC (I mean loading and reloading speeds). So, I decided to stay with a verified sysvinit.&#160; Thank you for your attention.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ogis1975)]]></author>
			<pubDate>Sat, 28 Jul 2018 13:57:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10953#p10953</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10947#p10947</link>
			<description><![CDATA[<p>So far, I&#039;ve never had it hang up during the boot process (I shutdown daily). Can&#039;t say that it won&#039;t, but it hasn&#039;t yet. </p><p>I noticed that the last version of OpenRC mentioned in that report was 0.13.de18640, the last post was from 2014, and the last update to the report was 2015. The current version in Devuan is 0.23-1+b1. It does still give a warning about the possible hang at boot if you enable the parallel option, but I like living on the edge. LOL!!! <img src="https://dev1galaxy.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>I can&#039;t testify as to the safety of it. Sorry. All that I know is that it has worked flawlessly for me so far. <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p><p>Also, in my personal experience, it does seem to boot a little faster having parallel enabled, but it&#039;s not really so much faster that it makes me go, &quot;WOW!!!&quot; <img src="https://dev1galaxy.org/img/smilies/big_smile.png" width="15" height="15" alt="big_smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (MiyoLinux)]]></author>
			<pubDate>Fri, 27 Jul 2018 20:47:42 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10947#p10947</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10946#p10946</link>
			<description><![CDATA[<p>Hello I have a question for OpenRC users who use the option <span class="bbc">paralleized OpenRC</span><br />Parallel startup in OpenRC was disabled by default due to <a href="https://bugs.gentoo.org/show_bug.cgi?id=391945" rel="nofollow">this bug</a>. I understand this is a critical bug. Is any of you is affected by this bug? How do you think it is safe to use this feature?</p>]]></description>
			<author><![CDATA[dummy@example.com (Ogis1975)]]></author>
			<pubDate>Fri, 27 Jul 2018 18:14:40 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10946#p10946</guid>
		</item>
		<item>
			<title><![CDATA[Re: Devuan + paralleized OpenRC + KDE]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=10916#p10916</link>
			<description><![CDATA[<p>Yes, either the graphical or non-graphical expert install will let you do what you want. If you select a mirror during the install, then the DVD and the netinstall isos will give you the same thing. If you have a very slow connection and cannot use a mirror, then you should use the DVD.</p><p>I find the non-graphical install easier to use than the graphical. (Easier to use the keyboard only, rather than have to keep moving between mouse and keyboard.)</p><p>The wiki is at friendsofdevuan.org. It&#039;s a work-in-progress, so it may not have what you want yet. Your suggestion is good - enough people are confused by the difference between the installer isos and the live isos, that there should be a simple explanation available. Maybe a page that has an overview of different install methods would be appropriate. (I&#039;m talking to myself and the people who are editing the wiki.)</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Tue, 24 Jul 2018 14:21:50 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=10916#p10916</guid>
		</item>
	</channel>
</rss>
