<?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=3334&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Install Devuan over existing Linux system?]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=3334</link>
		<description><![CDATA[The most recent posts in Install Devuan over existing Linux system?.]]></description>
		<lastBuildDate>Mon, 24 Feb 2020 17:34:49 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20208#p20208</link>
			<description><![CDATA[<p>For installing with debootstrap see <a href="https://www.debian.org/releases/stable/amd64/apds03.en.html" rel="nofollow">https://www.debian.org/releases/stable/ … 03.en.html</a> ← that&#039;s for Debian but the instructions should also work for Devuan.</p>]]></description>
			<author><![CDATA[dummy@example.com (Head_on_a_Stick)]]></author>
			<pubDate>Mon, 24 Feb 2020 17:34:49 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20208#p20208</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20196#p20196</link>
			<description><![CDATA[<div class="quotebox"><cite>Roger wrote:</cite><blockquote><div><p>I had intended to install Devuan in an empty machine, using an iso file on a USB stick, and of course it is still possible to do that; however, I am interested in finding our whether one can make the iso file accessible to the existing Ubuntu system, and install Devuan by overwriting from there. Has anyone any ideas on that?</p></div></blockquote></div><p>It&#039;s extremely easy if you have a home filesystem on different partition. Just perform clean installation overwriting existing system and don&#039;t format partition with home directories. The best way is to boot iso from usb stick. Another way is to make the root filesystem via debootstrap. In this case you don&#039;t even need an iso file with installer but you&#039;l need to reconfigure GRUB or you won&#039;t be able to boot Devuan. You can also use qemu.</p>]]></description>
			<author><![CDATA[dummy@example.com (ToxicExMachina)]]></author>
			<pubDate>Sun, 23 Feb 2020 11:24:32 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20196#p20196</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20183#p20183</link>
			<description><![CDATA[<div class="quotebox"><cite>Roger wrote:</cite><blockquote><div><p>I am interested in finding our whether one can make the iso file accessible to the existing Ubuntu system, and install Devuan by overwriting from there.</p></div></blockquote></div><p>Not sure I understand what you want to do but it is possible to boot an ISO image saved on the Ubuntu system by making a custom GRUB menu entry for it pointing to the installer kernel &amp; initrd images.</p><p>Something like this saved to /boot/grub/custom.cfg should do it:</p><div class="codebox"><pre><code>menuentry &#039;Start Installer&#039; {
   isofile=example.iso
   loopback loop (hd0,1)/$isofile
   linux (loop)/install/vmlinuz vga=normal quiet toram
   initrd (loop)/install/initrd.gz
}</code></pre></div><p>^ That presumes you have saved the image to /example.iso on /dev/sda1, <em>mutatis mutandis</em>.</p><p>I&#039;m not 100% sure if the <em>toram</em> option will work with the installer kernel but it&#039;s needed to stop it being over-written during the installation process if you&#039;re installing to /dev/sda1. If you&#039;re installing to another partition then remove the <em>toram</em> option.</p><div class="quotebox"><cite>Roger wrote:</cite><blockquote><div><p>Ubuntu&#039;s ridiculous attitude about root accounts</p></div></blockquote></div><p>Unlock the root account by assigning a password:</p><div class="codebox"><pre><code>sudo passwd root</code></pre></div><div class="quotebox"><cite>Roger wrote:</cite><blockquote><div><p>Gnome menu devoid of xterms</p></div></blockquote></div><p>I use this to generate a menu entry for /usr/bin/x-terminal/emulator:</p><div class="codebox"><pre><code># ~/.local/share/applications/x-terminal-emulator.desktop
[Desktop Entry]
Type=Application
Encoding=UTF-8
Name=x-terminal-emulator
Comment=Terminal emulator
Exec=x-terminal-emulator
Icon=terminal
Categories=System;</code></pre></div><p>Then set xterm to the x-terminal-emulator alternative:</p><div class="codebox"><pre><code># update-alternatives --set x-terminal-emulator /usr/bin/lxterm</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Head_on_a_Stick)]]></author>
			<pubDate>Sat, 22 Feb 2020 20:31:24 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20183#p20183</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20176#p20176</link>
			<description><![CDATA[<p>You should be able to boot off a live CD (or equivalent), su/sudo to root, mount the hard disk and chroot to it. That should get you into the new system as root, where you could reset passwords as desired. Then you could reboot and log on normally to investigate it. But I&#039;ve not had to do it myself so I&#039;m not sure if I&#039;ve missed a step.</p><p>Or you could just back up the hard disk from the live system, eg over the network to one of your existing systems.</p><p>Or use the live system to edit /etc/shadow on the new system to set the root password hash to the same as on a system where you know the root password.</p><p>Chris</p>]]></description>
			<author><![CDATA[dummy@example.com (chris2be8)]]></author>
			<pubDate>Sat, 22 Feb 2020 17:42:57 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20176#p20176</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20173#p20173</link>
			<description><![CDATA[<p>Just treat it as if it were an empty disk, insert &amp; boot from your pendrive, run the installer, partition the disk how you want it, &amp; install it. <img src="http://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (Camtaf)]]></author>
			<pubDate>Sat, 22 Feb 2020 10:20:41 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20173#p20173</guid>
		</item>
		<item>
			<title><![CDATA[Install Devuan over existing Linux system?]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=20165#p20165</link>
			<description><![CDATA[<p>My private network has two desktop machines running Devuan, and they have been running virtually continuously for eight years. I thought it would be a good idea to get a new machine in order to be ready for a failure, and also to keep my hand in with the installation process. The new machine has an Asus B360M motherboard, which I believe will handle Linux, and to my surprise when I first turned it on, I was immediately dumped into a Gnome desktop. So obviously the hardware handles X11 graphics which is good news.</p><p>But it is filled with Gnome bloatware and garbage, and I am hampered in investigating what is there by not knowing the password set up by the vendor, and Ubuntu&#039;s ridiculous attitude about root accounts. I had intended to install Devuan in an empty machine, using an iso file on a USB stick, and of course it is still possible to do that; however, I am interested in finding our whether one can make the iso file accessible to the existing Ubuntu system, and install Devuan by overwriting from there. Has anyone any ideas on that?</p><p>In passing, I must comment that if I wanted a desktop system filled with bloatware, and a Gnome menu devoid of xterms, I might as well stay with Windows. Linux does of course allow access to tty&#039;s using function keys, but that isn&#039;t any use without a password to log in. I can get the password, either from the vendor, or by diverting the boot process, and would like to investigate what Ubuntu has provided, before I erase it and set up my familiar Devuan.</p>]]></description>
			<author><![CDATA[dummy@example.com (Roger)]]></author>
			<pubDate>Fri, 21 Feb 2020 19:55:28 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=20165#p20165</guid>
		</item>
	</channel>
</rss>
