<?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=1973&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=1973</link>
		<description><![CDATA[The most recent posts in /lib/systemd/ folder? and /etc/systemd/ folder?.]]></description>
		<lastBuildDate>Wed, 04 Apr 2018 18:45:27 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8229#p8229</link>
			<description><![CDATA[<div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p> Does /lib/sysvinit/init even exist on your setup?</p></div></blockquote></div><p>Yes it exists.</p><p>Edit:<br />Just because of curiosity I checked an other devuan computer (desktop) here. Strange thing is that there the /lib/sysvinit/ does NOT exist. <br />The only difference with my laptop is that I replaced the kernel for libre-kernel 4.16 and installed openbox as the windowmanager.</p><p>So on my laptop (devuan core, no X) it does exist, not on my desktop (devuan core + librekernel + Xserver + openbox) ....</p>]]></description>
			<author><![CDATA[dummy@example.com (Ducas)]]></author>
			<pubDate>Wed, 04 Apr 2018 18:45:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8229#p8229</guid>
		</item>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8227#p8227</link>
			<description><![CDATA[<p>The sysvinit entry in the boot menu has &#039;init=/lib/sysvinit/init&#039;. That gets used in debian when systemd is installed along with sysvinit, and in that case, /sbin/init is a symbolic link pointing to systemd. In devuan, /sbin/init should be the real init (a real file, not a symlink.) Does /lib/sysvinit/init even exist on your setup?</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Wed, 04 Apr 2018 17:54:34 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8227#p8227</guid>
		</item>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8221#p8221</link>
			<description><![CDATA[<p>Thanks fsmithred,</p><p>I Installed the Devuan net-install, without X. </p><p>Here the menuentry for each in my /boot/grub/grub.cfg:</p><div class="codebox"><pre class="vscroll"><code>}
submenu &#039;Advanced options for Devuan GNU/Linux&#039; $menuentry_id_option &#039;gnulinux-advanced-c562ab2a-f161-4647-b133-075f03f08ca4&#039; {
	menuentry &#039;Devuan GNU/Linux, with Linux 3.16.0-5-amd64&#039; --class devuan --class gnu-linux --class gnu --class os $menuentry_id_option &#039;gnulinux-3.16.0-5-amd64-advanced-c562ab2a-f161-4647-b133-075f03f08ca4&#039; {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root=&#039;hd0,msdos1&#039;
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  bfd5444c-4928-4ba9-9b71-6e9ae93a34df
		else
		  search --no-floppy --fs-uuid --set=root bfd5444c-4928-4ba9-9b71-6e9ae93a34df
		fi
		echo	&#039;Loading Linux 3.16.0-5-amd64 ...&#039;
		linux	/vmlinuz-3.16.0-5-amd64 root=/dev/mapper/debinox--vg-root ro  quiet
		echo	&#039;Loading initial ramdisk ...&#039;
		initrd	/initrd.img-3.16.0-5-amd64
	}
	menuentry &#039;Devuan GNU/Linux, with Linux 3.16.0-5-amd64 (sysvinit)&#039; --class devuan --class gnu-linux --class gnu --class os $menuentry_id_option &#039;gnulinux-3.16.0-5-amd64-init-sysvinit-c562ab2a-f161-4647-b133-075f03f08ca4&#039; {
		load_video
		insmod gzio
		if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
		insmod part_msdos
		insmod ext2
		set root=&#039;hd0,msdos1&#039;
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  bfd5444c-4928-4ba9-9b71-6e9ae93a34df
		else
		  search --no-floppy --fs-uuid --set=root bfd5444c-4928-4ba9-9b71-6e9ae93a34df
		fi
		echo	&#039;Loading Linux 3.16.0-5-amd64 ...&#039;
		linux	/vmlinuz-3.16.0-5-amd64 root=/dev/mapper/debinox--vg-root ro  quiet init=/lib/sysvinit/init
		echo	&#039;Loading initial ramdisk ...&#039;
		initrd	/initrd.img-3.16.0-5-amd64</code></pre></div><p>Thanks for the explanation. There is no real problem here, but I am just curious and want to know what is happening&#160; &quot;under the hood&#039;.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ducas)]]></author>
			<pubDate>Wed, 04 Apr 2018 11:47:14 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8221#p8221</guid>
		</item>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8216#p8216</link>
			<description><![CDATA[<p>It&#039;s not two different kernels, it&#039;s two different entries in the boot menu. Look at the menuentry for each in /boot/grub/grub.cfg to see if there&#039;s a difference in the linux lines. </p><p>I&#039;ve only seen that on debian, where you had a choice to boot with sysvinit or systemd. How did you install devuan?</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Wed, 04 Apr 2018 11:26:55 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8216#p8216</guid>
		</item>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8212#p8212</link>
			<description><![CDATA[<p>Thank you for your quick reply! That answers my first question about the systemd files and folders.</p><p>What about the two different kernels? <br />In Grub:&#160; <br />- Devuan GNU/Linux, with Linux 3.16.0-5-amd64<br />- Devuan GNU/Linux, with Linux 3.16.0-5-amd64 (sysvinit)</p><p>What is the difference?</p>]]></description>
			<author><![CDATA[dummy@example.com (Ducas)]]></author>
			<pubDate>Wed, 04 Apr 2018 10:41:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8212#p8212</guid>
		</item>
		<item>
			<title><![CDATA[Re: /lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8211#p8211</link>
			<description><![CDATA[<p>Many packages ship with start-up files for systemd, but work without systemd. For a longer answer see :-</p><p><a href="https://dev1galaxy.org/viewtopic.php?id=1925" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=1925</a></p><p>Geoff</p>]]></description>
			<author><![CDATA[dummy@example.com (Geoff 42)]]></author>
			<pubDate>Wed, 04 Apr 2018 10:34:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8211#p8211</guid>
		</item>
		<item>
			<title><![CDATA[/lib/systemd/ folder? and /etc/systemd/ folder?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=8209#p8209</link>
			<description><![CDATA[<p>Hello,</p><p>I just installed Devuan Jessie.</p><p>I found a systemd-folder in /lib/ and also in /etc/<br />What is the purpose of these folders in a non-systemd distro?</p><p>In Grub I found two 3.16 kernels. One has a (SysV) behind the kernel name. What is the difference?<br />Does the other use systemd?</p><p>Thanks in advance.</p>]]></description>
			<author><![CDATA[dummy@example.com (Ducas)]]></author>
			<pubDate>Wed, 04 Apr 2018 09:36:06 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=8209#p8209</guid>
		</item>
	</channel>
</rss>
