<?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=4485&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=4485</link>
		<description><![CDATA[The most recent posts in [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries.]]></description>
		<lastBuildDate>Wed, 08 Sep 2021 12:38:27 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31385#p31385</link>
			<description><![CDATA[<p>For what it&#039;s worth, I installed Chimaera beta as a VBox VM last night to see whether the method I suggested to @manyroads works the way it does under Beowulf, changing the apt repository to:</p><div class="codebox"><pre><code>deb https://download.virtualbox.org/virtualbox/debian bullseye contrib non-free</code></pre></div><p>Unfortunately that didn&#039;t work as expected. Not sure if this is because Chimaera is still in beta.</p><p><span class="postimg"><img src="https://i.imgur.com/m0Jdhik.png" alt="virtualbox error" /></span></p><p>I did manage to install VirtualBox using </p><div class="codebox"><pre><code>dpkg -i virtualbox*.deb</code></pre></div><p>After adding $USER to the &quot;vboxusers&quot; group and a reboot, I noticed only 32-bit is available but I suspect this is simply because I was basically installing VirtualBox in a VirtualBox VM rather than on bare metal (same story with another distro).</p><p><strong>@manyroads</strong>, for now it looks like you&#039;ll have to install the *.deb file using <strong>dpkg -i</strong> as <strong>fsmithred</strong> suggested.</p><p><strong>UPDATE:</strong> </p><p>Followed the instructions found <a href="https://linoxide.com/how-to-install-virtualbox-on-debian-11/" rel="nofollow">over here</a>. This time I <em>did</em> manage to install it from the VBox repo. It should look like this:</p><div class="codebox"><pre><code>deb [arch=amd64] http://download.virtualbox.org/virtualbox/debian bullseye contrib</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (tylerdurden)]]></author>
			<pubDate>Wed, 08 Sep 2021 12:38:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31385#p31385</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31356#p31356</link>
			<description><![CDATA[<div class="quotebox"><cite>manyroads wrote:</cite><blockquote><div><p>Thanks @tylerdurden</p></div></blockquote></div><p>You&#039;re welcome! Give it a shot &amp; don&#039;t hesitate to let me know if it worked. I haven&#039;t tried it under Chimaera so far myself but I&#039;ll be looking into that later this week since it&#039;s in beta phase now.</p>]]></description>
			<author><![CDATA[dummy@example.com (tylerdurden)]]></author>
			<pubDate>Tue, 07 Sep 2021 20:49:11 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31356#p31356</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31343#p31343</link>
			<description><![CDATA[<p>Thanks @tylerdurden</p>]]></description>
			<author><![CDATA[dummy@example.com (manyroads)]]></author>
			<pubDate>Tue, 07 Sep 2021 12:37:50 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31343#p31343</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31330#p31330</link>
			<description><![CDATA[<div class="quotebox"><cite>manyroads wrote:</cite><blockquote><div><p>FWIW... the VBox from Oracle does not install a number of required packs like dkms, guest additions, etc. As for using flatpaks, appmage, snaps, etc. They&#039;re not really my cup of tea. </p><p>I just thought folks might like to know about all the manual tasks I uncovered in order to get things usable (in my situation).</p></div></blockquote></div><p>Manyroads:</p><p>Regarding virtualbox on Devuan, this is how I go about it (using a perl script):</p><p>Add the repository keys:</p><div class="codebox"><pre><code>wget -q https://www.virtualbox.org/download/oracle_vbox_2016.asc -O- | sudo apt-key add - 
wget -q https://www.virtualbox.org/download/oracle_vbox.asc -O- | sudo apt-key add -</code></pre></div><p>Add this to <strong>/etc/apt/sources.list</strong>:</p><div class="codebox"><pre><code>deb https://download.virtualbox.org/virtualbox/debian buster contrib non-free</code></pre></div><p>Install kernel headers:</p><div class="codebox"><pre><code>sudo apt-get install linux-headers-$(uname -r)</code></pre></div><p>Update repositories and install virtualbox:</p><div class="codebox"><pre><code>sudo apt-get update &amp;&amp; sudo apt-get dist-upgrade
sudo apt-get install virtualbox-6.1</code></pre></div><p>Add <strong>$USER </strong>to <strong>vboxusers</strong> group:</p><div class="codebox"><pre><code>sudo usermod -a -G vboxusers $USER</code></pre></div><p>Logout and login again. Should work.</p><p>The extension pack can be downloaded from the Virtualbox website and installed manually from Virtualbox or on the command line:</p><div class="codebox"><pre><code>sudo VBoxManage extpack install $file</code></pre></div><p>If you&#039;re interested, I&#039;ve created a perl script to automate this. </p><p>Hope this helps.</p><p>PS : <span class="postimg"><img src="https://i.imgur.com/XMEURf3.png" alt="screenshot" /></span></p><p><strong>edit:</strong> tidied up some syntax</p>]]></description>
			<author><![CDATA[dummy@example.com (tylerdurden)]]></author>
			<pubDate>Mon, 06 Sep 2021 21:09:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31330#p31330</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31323#p31323</link>
			<description><![CDATA[<p>Thank you Fred and Lars. In my case, for my family users I support in the Debian world I&#039;ll just stick with MX.</p>]]></description>
			<author><![CDATA[dummy@example.com (manyroads)]]></author>
			<pubDate>Mon, 06 Sep 2021 13:18:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31323#p31323</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31320#p31320</link>
			<description><![CDATA[<p><span class="bbc">dpkg -i &lt;packages&gt;</span> to install .deb packages you downloaded.<br />then<br /><span class="bbc">apt -f install</span> to install the missing dependencies. (no package names in this command.)</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Mon, 06 Sep 2021 11:43:07 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31320#p31320</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31317#p31317</link>
			<description><![CDATA[<p>Hi</p><p>Then you should consider unstable for newer packages or another distro that has the packages you want. Or tinker a lot to go agianst what is the nature of Devuan.</p><p>Have a nice day<br />Lars H</p>]]></description>
			<author><![CDATA[dummy@example.com (larsH)]]></author>
			<pubDate>Mon, 06 Sep 2021 05:45:07 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31317#p31317</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31311#p31311</link>
			<description><![CDATA[<p>FWIW... the VBox from Oracle does not install a number of required packs like dkms, guest additions, etc. As for using flatpaks, appmage, snaps, etc. They&#039;re not really my cup of tea. </p><p>I just thought folks might like to know about all the manual tasks I uncovered in order to get things usable (in my situation).</p>]]></description>
			<author><![CDATA[dummy@example.com (manyroads)]]></author>
			<pubDate>Sun, 05 Sep 2021 21:10:51 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31311#p31311</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31292#p31292</link>
			<description><![CDATA[<p>Virtualbox 6.1.26 now is available from Orcale directly as .deb. Can be installed via dpkg -i name.deb</p><p>rolfie</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Sat, 04 Sep 2021 19:42:28 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31292#p31292</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31290#p31290</link>
			<description><![CDATA[<p>Hi</p><p>What Devuan has in its repos are mostly what Debian ships with in its stable version. So those program are not a part of Devuan. But if you need, most of it can be installed via for example flatpaks. They are not a pert of devuan but flatpak is in the repositories.</p><p>Hope this and may DuckDuckGo or Google help you</p><p>Have a nice day<br />Lars H</p>]]></description>
			<author><![CDATA[dummy@example.com (larsH)]]></author>
			<pubDate>Sat, 04 Sep 2021 19:29:24 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31290#p31290</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] chimaera (beta) running with dwm & i3wm: discoveries]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=31288#p31288</link>
			<description><![CDATA[<p>I have spent the last day installing the &#039;next&#039; version of Devuan (trying to anyway) and seeing what was to be discovered.&#160; The base level version looks nice enough with its basic xfce4 lay out.&#160; However, I have noticed numerous software products missing from the repos (making the setup, arrangement, I use unnecessarily difficult to setup).</p><p>Here are the major apps I have found I need to source from Debian (or other) deb file sources/ or self-build:<br />Dropbox<br />Skype<br />Zoom <br />OnlyOffice<br />j4-dmenu-desktop<br />deadbeef<br />xed (simple Mint editor)<br />firefox that is non-esr <br />Calibre<br />Many/most? Virtualbox essential components (At this juncture, I am unable to get VirtualBox functioning. )</p><p>Missing entirely from the ecosphere:<br />nemo-dropbox (yes I&#039;m the only person on the planet who uses nemo on dwm and i3wm)</p><p>I think that&#039;s it for now.&#160; I hope this is of some value.</p>]]></description>
			<author><![CDATA[dummy@example.com (manyroads)]]></author>
			<pubDate>Sat, 04 Sep 2021 19:16:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=31288#p31288</guid>
		</item>
	</channel>
</rss>
