<?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=4359&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Today I Learned]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=4359</link>
		<description><![CDATA[The most recent posts in Today I Learned.]]></description>
		<lastBuildDate>Sun, 04 Jul 2021 12:26:44 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30503#p30503</link>
			<description><![CDATA[<p>Yesterday really but playing around with it some more today. I seem to be gravitating towards encryption, fascinating stuff imo, especially this post quantum computing cryptography.</p><p><a href="https://gitea.blesmrt.net/exa/codecrypt" rel="nofollow">https://gitea.blesmrt.net/exa/codecrypt</a></p><p>its in the repos - do a <span class="bbc"># apt install codecrypt</span></p><div class="quotebox"><blockquote><div><p>Codecrypt - ccr</p><p>The post-quantum cryptography tool.</p><p>Codecrypt is currently unmaintained, although I still successfully use it. If you are interested in developing/maintaining it, ping me.<br />About</p><p>This is a GnuPG-like unix program for encryption and signing that uses only quantum-computer-resistant algorithms:</p><p>&#160; &#160; McEliece cryptosystem (compact QC-MDPC variant) for encryption<br />&#160; &#160; Hash-based Merkle tree algorithm (FMTSeq variant) for digital signatures</p><p>Codecrypt is free software. The code is licensed under terms of LGPL3 in a good hope that it will make combinations with other tools easier.<br />Why this?</p><p>Go read <a href="http://pqcrypto.org/" rel="nofollow">http://pqcrypto.org/</a></p></div></blockquote></div>]]></description>
			<author><![CDATA[dummy@example.com (dice)]]></author>
			<pubDate>Sun, 04 Jul 2021 12:26:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30503#p30503</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30478#p30478</link>
			<description><![CDATA[<p>Disk images can be mounted directly if the partition offset is known:</p><div class="codebox"><pre><code>$ gdisk -l disk.img
[...]
Number  Start (sector)    End (sector)  Size       Code  Name
   1              34            2047   1007.0 KiB  EF02  BIOS boot partition
   2            2048        20971486   10.0 GiB    8300  Linux filesystem
$ sudo mount -o offset=$((2048*512)) disk.img /mnt
$ ls /mnt
bin   dev  home  lost+found  mnt  proc  run   srv  tmp  var
boot  etc  lib   media       opt  root  sbin  sys  usr
$</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Head_on_a_Stick)]]></author>
			<pubDate>Thu, 01 Jul 2021 06:47:25 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30478#p30478</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30477#p30477</link>
			<description><![CDATA[<p>Note that recently the kernel&#039;s <span class="bbc">loop</span> module has <span class="bbc">max_part=0</span> by default, which means that the partitions (eg <span class="bbc">/dev/loop0p1</span>) will not be set up. Many strands of hair have been lost due to this.</p><p>To get the good&#160; behaviour, I&#039;ve added a file <span class="bbc">/etc/modprobe.d/loop.conf</span> with the following line:</p><div class="codebox"><pre><code>options loop max_part=15</code></pre></div><p> before the loading of the <span class="bbc">loop</span> module. Almost any number other than 15, within bounds, is also fine.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Thu, 01 Jul 2021 05:05:25 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30477#p30477</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30476#p30476</link>
			<description><![CDATA[<p>TIL how to mount the disk image file I use as a hard drive in DOS with PCem. This is one of those things that I <em>used to know</em> at one point, but suffered from the o&#039;l &quot;use it or lose it&quot; problem.</p><p>Beforehand: Run PCem, configure the machine, make a new hard drive image, run the machine, configure the drive in the BIOS, install DOS on it (using floppy disk images), exit PCem.</p><p>These commands must be run with root privilages (I use sudo).</p><p># Attach the hard drive image file as a loopback device<br />losetup -f -P /home/rob/.pcem/disks/dos_622_62mb.img</p><p># Verify the loopback device is the expected number and has the expected partition<br />losetup -l</p><p># Mount the partition and open in the file explorer<br />mount /dev/loop0p1 /mnt<br />caja /mnt</p><p>Copy files to/from the DOS hard drive.</p><p># Disconnect and unmount the hard drive image file<br />umount /dev/loop0p1<br />losetup -d /dev/loop0</p><p># Verify loopback is cleared (shouldn&#039;t output anything)<br />losetup -l</p><p>It&#039;s still way less of a hassle to use DOSBox, as it uses files directly on your normal file system, but each emulator has its use cases.</p>]]></description>
			<author><![CDATA[dummy@example.com (Tatwi)]]></author>
			<pubDate>Thu, 01 Jul 2021 01:42:22 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30476#p30476</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30472#p30472</link>
			<description><![CDATA[<div class="quotebox"><cite>starbreaker wrote:</cite><blockquote><div><p>TIL that cpupower-gui is a handy way to throttle clock speeds on my machines so that they aren&#039;t running quite as hot in the summer (they make good space heaters in the winter).</p></div></blockquote></div><p>Nice gui utility that one. So many hidden gems inside debian.</p><p>Today i learnt about cryfs.</p><p><a href="https://www.cryfs.org/tutorial" rel="nofollow">https://www.cryfs.org/tutorial</a></p><div class="codebox"><pre><code>cryfs - cryptographic filesystem for the cloud

CryFS encrypts your files, so you can safely store them anywhere.

       The  goal  of  CryFS is not only to keep file contents, but also file sizes, metadata and directory structure confidential.  CryFS uses en‐
       crypted same-size blocks to store both the files themselves and the block&#039;s relations to another.  These blocks are  stored  as  individual
       files in the base directory, which can then be synchronized with cloud services such as Dropbox.

       The  blocks  are  encrypted using a random key, which is stored in a configuration file encrypted by the user&#039;s passphrase.  By default, it
       will be stored together with the data in the base directory, but you can choose a different location if you do not want it in your cloud or
       when using a weak passphrase.</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (dice)]]></author>
			<pubDate>Wed, 30 Jun 2021 14:43:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30472#p30472</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30464#p30464</link>
			<description><![CDATA[<p>TIL that cpupower-gui is a handy way to throttle clock speeds on my machines so that they aren&#039;t running quite as hot in the summer (they make good space heaters in the winter).</p>]]></description>
			<author><![CDATA[dummy@example.com (starbreaker)]]></author>
			<pubDate>Tue, 29 Jun 2021 14:15:26 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30464#p30464</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30389#p30389</link>
			<description><![CDATA[<p>Today I Learned: that if I follow the simple instructions on the webpages that come with the distro (Beowulf 3.1.1) <br />I can tether my iphone to usb and have the internet working rather that wait for wicd to start asking questions<br /> and then waiting some more. (on my laptop (Toshiba r552j))</p><p>Thank you for the well documented web pages that are included with the (unpacked) .iso</p>]]></description>
			<author><![CDATA[dummy@example.com (GlennW)]]></author>
			<pubDate>Wed, 23 Jun 2021 06:59:29 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30389#p30389</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30377#p30377</link>
			<description><![CDATA[<div class="quotebox"><cite>sgage wrote:</cite><blockquote><div><div class="quotebox"><cite>zapper wrote:</cite><blockquote><div><div class="quotebox"><cite>dice wrote:</cite><blockquote><div><p>Good question, i was thinking the same. Perhaps the 64 has some mods? I highly doubt a computer from 1982 would be able to run devuan beowulf, but i would be happy to be proven wrong.</p></div></blockquote></div><p>Wait 64mb of ram? you say? That seems a bit unlikely, I mean I could understand 32mb... and maybe jwm if its 32 bit and be using something like console-tdm to start it, if you turn off certain services... *cough* dbus *cough*</p><p>Even then, 32mb seems like a stretch, but yeah, 64K sounds insanely low to be able to run devuan...</p><p>You&#039;d have a better chance of using OpenBSD for something that small... </p><p>Just sayin...</p><p>I would also love to be proven wrong... <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p></div></blockquote></div><p>Not just the 64K of RAM, either. When was the kernel ported to 8-bit 6502 (or 6509 - whatever variant they used)? Never.</p></div></blockquote></div><p>Ah, lots of problems then! Well, I wonder though, if any BSD&#039;s support 8 bit still... </p><p>OpenBSD supposedly could, but it probably has very slow support I imagine... <img src="https://dev1galaxy.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p><p>If it does at all.</p><p>Looks like it doesn&#039;t at the moment...<br /><a href="https://www.openbsd.org/plat.html" rel="nofollow">https://www.openbsd.org/plat.html</a></p><p>Although it does support this:</p><p>luna88k </p><p>Dunno about NetBSD though. That might lol.</p><p>Yep it does:</p><p><a href="https://wiki.netbsd.org/ports/amiga/" rel="nofollow">https://wiki.netbsd.org/ports/amiga/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (zapper)]]></author>
			<pubDate>Tue, 22 Jun 2021 12:15:00 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30377#p30377</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30373#p30373</link>
			<description><![CDATA[<div class="quotebox"><cite>andyprough wrote:</cite><blockquote><div><div class="quotebox"><cite>sgage wrote:</cite><blockquote><div><p>Not just the 64K of RAM, either. When was the kernel ported to 8-bit 6502 (or 6509 - whatever variant they used)? Never.</p></div></blockquote></div><p>No, it wasn&#039;t ported, and I&#039;m not really running Beowulf on one, but a unix-like kernel was written in 6502 assembly by the LUnix (Little Unix) project folks between 1993 and 2004. The LUnix home page is still up for anyone wanting to download LUnix and take it for a spin on their favorite Commodore 64 rig: <a href="http://lng.sourceforge.net/" rel="nofollow">http://lng.sourceforge.net/</a></p></div></blockquote></div><p>Wow, that&#039;s pretty cool! I was pretty good at 6502 assembly language back in the late 70&#039;s/early 80&#039;s - strange days! My first computer was a Commodore PET/CBM. It&#039;s amazing what you can do in assembly!</p>]]></description>
			<author><![CDATA[dummy@example.com (sgage)]]></author>
			<pubDate>Tue, 22 Jun 2021 11:17:45 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30373#p30373</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30369#p30369</link>
			<description><![CDATA[<div class="quotebox"><cite>sgage wrote:</cite><blockquote><div><p>Not just the 64K of RAM, either. When was the kernel ported to 8-bit 6502 (or 6509 - whatever variant they used)? Never.</p></div></blockquote></div><p>No, it wasn&#039;t ported, and I&#039;m not really running Beowulf on one, but a unix-like kernel was written in 6502 assembly by the LUnix (Little Unix) project folks between 1993 and 2004. The LUnix home page is still up for anyone wanting to download LUnix and take it for a spin on their favorite Commodore 64 rig: <a href="http://lng.sourceforge.net/" rel="nofollow">http://lng.sourceforge.net/</a></p>]]></description>
			<author><![CDATA[dummy@example.com (andyprough)]]></author>
			<pubDate>Tue, 22 Jun 2021 05:23:33 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30369#p30369</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30368#p30368</link>
			<description><![CDATA[<div class="quotebox"><cite>zapper wrote:</cite><blockquote><div><div class="quotebox"><cite>dice wrote:</cite><blockquote><div><div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>@andyprough:</p><p>How do you run linux on a computer with only 64k RAM???</p></div></blockquote></div><p>Good question, i was thinking the same. Perhaps the 64 has some mods? I highly doubt a computer from 1982 would be able to run devuan beowulf, but i would be happy to be proven wrong.</p></div></blockquote></div><p>Wait 64mb of ram? you say? That seems a bit unlikely, I mean I could understand 32mb... and maybe jwm if its 32 bit and be using something like console-tdm to start it, if you turn off certain services... *cough* dbus *cough*</p><p>Even then, 32mb seems like a stretch, but yeah, 64K sounds insanely low to be able to run devuan...</p><p>You&#039;d have a better chance of using OpenBSD for something that small... </p><p>Just sayin...</p><p>I would also love to be proven wrong... <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p></div></blockquote></div><p>Not just the 64K of RAM, either. When was the kernel ported to 8-bit 6502 (or 6509 - whatever variant they used)? Never.</p>]]></description>
			<author><![CDATA[dummy@example.com (sgage)]]></author>
			<pubDate>Mon, 21 Jun 2021 20:12:37 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30368#p30368</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30361#p30361</link>
			<description><![CDATA[<div class="quotebox"><cite>dice wrote:</cite><blockquote><div><div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>@andyprough:</p><p>How do you run linux on a computer with only 64k RAM???</p></div></blockquote></div><p>Good question, i was thinking the same. Perhaps the 64 has some mods? I highly doubt a computer from 1982 would be able to run devuan beowulf, but i would be happy to be proven wrong.</p></div></blockquote></div><p>Wait 64mb of ram? you say? That seems a bit unlikely, I mean I could understand 32mb... and maybe jwm if its 32 bit and be using something like console-tdm to start it, if you turn off certain services... *cough* dbus *cough*</p><p>Even then, 32mb seems like a stretch, but yeah, 64K sounds insanely low to be able to run devuan...</p><p>You&#039;d have a better chance of using OpenBSD for something that small... </p><p>Just sayin...</p><p>I would also love to be proven wrong... <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[dummy@example.com (zapper)]]></author>
			<pubDate>Mon, 21 Jun 2021 17:16:12 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30361#p30361</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30357#p30357</link>
			<description><![CDATA[<div class="quotebox"><cite>golinux wrote:</cite><blockquote><div><div class="quotebox"><cite>dice wrote:</cite><blockquote><div><p>Today i learned about this very cool link.</p><p><a href="https://oldcomputers.net/" rel="nofollow">https://oldcomputers.net/</a></p><p>Steve&#039;s Old Computer Museum! </p><div class="quotebox"><blockquote><div><p>Early personal computers were nothing like present day computers - they had personality!<br />Each was different and more exciting than the previous, with new features and capabilities.<br />old computer This website is dedicated to the preservation and display of these vintage computer systems.<br />To the left you can &quot;click&quot; and explore old computers from the dawn of time!<br />For fun, view 150 old computers all at the same time to appreciate how diverse and interesting they are</p></div></blockquote></div></div></blockquote></div><p>Well, here is some Devuan trivia that&#039;s not so trivial.&#160; The Devuan Board of Trustees has 3 members who are involved with computer preservation!&#160; </p><p>Gabriele “Asbesto” Zaverio (MusIF) :: director, “<span class="bbu"><a href="https://museo.freaknet.org/it/" rel="nofollow">Museo dell’Informatica Funzionante</a></span>” computer museum</p><p>Emiliano Russo (MIAI) :: director, “<span class="bbu"><a href="https://www.tripadvisor.it/Attraction_Review-g187776-d8650488-Reviews-Museo_Interattivo_Di_Archeologia_Informatica-Cosenza_Province_of_Cosenza_Calabria.html" rel="nofollow">Museo Interattivo di Archeologia Informatica</a></span>” computer museum</p><p>Stefania Calcagno (ESOCOP) :: president, <span class="bbu"><a href="https://www.esocop.org/" rel="nofollow">European Society for Computer Preservation</a></span></p><p>You can find that info on our website at <a href="https://www.devuan.org/os/team" rel="nofollow">https://www.devuan.org/os/team</a></p></div></blockquote></div><p>Thanks for sharing, i particularly liike the ESoCop link, good works.</p>]]></description>
			<author><![CDATA[dummy@example.com (dice)]]></author>
			<pubDate>Mon, 21 Jun 2021 15:48:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30357#p30357</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30356#p30356</link>
			<description><![CDATA[<div class="quotebox"><cite>fsmithred wrote:</cite><blockquote><div><p>@andyprough:</p><p>How do you run linux on a computer with only 64k RAM???</p></div></blockquote></div><p>Good question, i was thinking the same. Perhaps the 64 has some mods? I highly doubt a computer from 1982 would be able to run devuan beowulf, but i would be happy to be proven wrong.</p>]]></description>
			<author><![CDATA[dummy@example.com (dice)]]></author>
			<pubDate>Mon, 21 Jun 2021 15:46:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30356#p30356</guid>
		</item>
		<item>
			<title><![CDATA[Re: Today I Learned]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=30355#p30355</link>
			<description><![CDATA[<div class="quotebox"><cite>dice wrote:</cite><blockquote><div><p>Today i learned about this very cool link.</p><p><a href="https://oldcomputers.net/" rel="nofollow">https://oldcomputers.net/</a></p><p>Steve&#039;s Old Computer Museum! </p><div class="quotebox"><blockquote><div><p>Early personal computers were nothing like present day computers - they had personality!<br />Each was different and more exciting than the previous, with new features and capabilities.<br />old computer This website is dedicated to the preservation and display of these vintage computer systems.<br />To the left you can &quot;click&quot; and explore old computers from the dawn of time!<br />For fun, view 150 old computers all at the same time to appreciate how diverse and interesting they are</p></div></blockquote></div></div></blockquote></div><p>Well, here is some Devuan trivia that&#039;s not so trivial.&#160; The Devuan Board of Trustees has 3 members who are involved with computer preservation!&#160; </p><p>Gabriele “Asbesto” Zaverio (MusIF) :: director, “<span class="bbu"><a href="https://museo.freaknet.org/it/" rel="nofollow">Museo dell’Informatica Funzionante</a></span>” computer museum</p><p>Emiliano Russo (MIAI) :: director, “<span class="bbu"><a href="https://www.tripadvisor.it/Attraction_Review-g187776-d8650488-Reviews-Museo_Interattivo_Di_Archeologia_Informatica-Cosenza_Province_of_Cosenza_Calabria.html" rel="nofollow">Museo Interattivo di Archeologia Informatica</a></span>” computer museum</p><p>Stefania Calcagno (ESOCOP) :: president, <span class="bbu"><a href="https://www.esocop.org/" rel="nofollow">European Society for Computer Preservation</a></span></p><p>You can find that info on our website at <a href="https://www.devuan.org/os/team" rel="nofollow">https://www.devuan.org/os/team</a></p>]]></description>
			<author><![CDATA[dummy@example.com (golinux)]]></author>
			<pubDate>Mon, 21 Jun 2021 15:34:10 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=30355#p30355</guid>
		</item>
	</channel>
</rss>
