<?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=6017&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Archiving it -all-]]></title>
		<link>http://dev1galaxy.org/viewtopic.php?id=6017</link>
		<description><![CDATA[The most recent posts in Archiving it -all-.]]></description>
		<lastBuildDate>Sat, 23 Sep 2023 12:48:06 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44488#p44488</link>
			<description><![CDATA[<div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>It&#039;s a lot.</p></div></blockquote></div><p>And to get an idea of how much a lot...</p><div class="codebox"><pre><code>awk &#039;$1==&quot;Size:&quot; {qty+=1;size+=$2}
   ENDFILE {print &quot;qty: &quot;qty,&quot;size: &quot;size,&quot;(~&quot;int(1+size/1024^3) &quot;G)&quot;,&quot;file:&quot; FILENAME}
   &#039; /var/lib/apt/lists/*Packages</code></pre></div><p>No point downloading an entire repository when the most common stuff is in the 4GB &quot;desktop&quot; ISO, and that can be supplemented with other necessary packages in various different ways.</p><p>I would possibly start with reading <a href="https://blends.debian.org/blends/" rel="nofollow">//blends.debian.org/blends</a></p>]]></description>
			<author><![CDATA[dummy@example.com (boughtonp)]]></author>
			<pubDate>Sat, 23 Sep 2023 12:48:06 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44488#p44488</guid>
		</item>
		<item>
			<title><![CDATA[Re: Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44487#p44487</link>
			<description><![CDATA[<p>Instead of archiving the packages to install, you could just archive the installation itself with all the tools you need already installed and working. Install the system in a virtual machine made with open source tools and you have the entire system inside a single file that you can move around and keep in a safe place.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Sat, 23 Sep 2023 12:31:50 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44487#p44487</guid>
		</item>
		<item>
			<title><![CDATA[Re: Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44485#p44485</link>
			<description><![CDATA[<p>Everything that is available for a sources.list point is described in its &quot;Packages&quot; file that is downloaded to your computer with the &quot;apt-get update&quot; command. All the Packages files are held in <span class="bbc">/var/lib/apt/lists/</span>. To download all daedalus packages you could do something like the following:</p><div class="codebox"><pre><code>awk &#039;$1==&quot;Package:&quot;{P=$2}$1==&quot;Version:&quot;{print P &quot;=&quot; $2}&#039; \
    /var/lib/apt/lists/deb.devuan.org_merged_dists_daedalus_*_binary-amd64_Packages | \
   xargs -n1 apt-get download </code></pre></div><p>It&#039;s a lot.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Sat, 23 Sep 2023 09:13:00 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44485#p44485</guid>
		</item>
		<item>
			<title><![CDATA[Re: Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44482#p44482</link>
			<description><![CDATA[<p>If it&#039;s your own personal system that you want to duplicate, use a &#039;snapshot&#039;, these can be installed to bare metal - otherwise it sounds like you want to &#039;mirror&#039; the repos.</p>]]></description>
			<author><![CDATA[dummy@example.com (Camtaf)]]></author>
			<pubDate>Sat, 23 Sep 2023 08:50:46 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44482#p44482</guid>
		</item>
		<item>
			<title><![CDATA[Re: Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44477#p44477</link>
			<description><![CDATA[<p>To me this sounds like you want to build something like a single-purpose-distro. I&#039;d dive into the docs on distribution-building.</p>]]></description>
			<author><![CDATA[dummy@example.com (Gregors)]]></author>
			<pubDate>Fri, 22 Sep 2023 21:28:15 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44477#p44477</guid>
		</item>
		<item>
			<title><![CDATA[Archiving it -all-]]></title>
			<link>http://dev1galaxy.org/viewtopic.php?pid=44474#p44474</link>
			<description><![CDATA[<p>Hello,</p><p>I am after something unusual. That is, I want to create a CAD <br />suite (IC design) comprising various point tools, and archive<br />a complete chain from tools down through OS dependencies,<br />such that it could be installed at any time in the future, with <br />no need to pull data. So if it was practical, I want to pull every<br />single Linux package that a cold start install would require <br />and have that archive in hand, for the &quot;time capsule&quot;. </p><p>Because distros come and go, and stuff gets broken or buried. </p><p>I design parts that last longer than the foundries that make &#039;em.<br />And then they have to be moved. Meanwhile the commercial tools <br />have gone through major platform changes that make old design<br />database formats obsolete, and the designs can&#039;t be retrieved. <br />Therefore I have moved to open source tools which can be <br />archived right along with the designs, and no hostage taking.</p><p>So my question is, is there a way to &quot;pull every damn thing in<br />the apt repository&quot; that is proper, here and now, for daedalus_5.0.1?<br />And again next time a stable release pops up?&#160; &#160;Assume I have <br />the drive space, the bandwidth and the patience, but not the clue.<br />In the end I want a USB hard drive filled (or less than) with an<br />&quot;air drop&quot; IC design system that can install with no internet and <br />a blank internal HDD. How can I get that &quot;full load&quot; into a local<br />archive (and then point apt at it, but I&#039;d bet that&#039;s documented)?</p>]]></description>
			<author><![CDATA[dummy@example.com (dick_freebird)]]></author>
			<pubDate>Fri, 22 Sep 2023 19:34:00 +0000</pubDate>
			<guid>http://dev1galaxy.org/viewtopic.php?pid=44474#p44474</guid>
		</item>
	</channel>
</rss>
