<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>How do you all backup a USB-stick operating system?</title>
        <description> Over here I&amp;#039;ve been taking say, an Arch-E02 stick and plug it into a Windows machine with another USB stick that&amp;#039;s unallocated. Use the freeware Partition Wizard and copy. This works quickly, but you&amp;#039;re fairly limited to one destination.

I&amp;#039;ve heard you all talk about making a TAR file out of an install, and think that sounds great - after all I could have a folder somewhere with several builds - meaning a lot more flexibility than that one single backup. A lot of solutions have crossed my mind, like a hard drive with a lot of 8-GB partitions and one last FAT32 partition with a text file stating what is in each partition, but that would likely run into problems as well. 

Do any of you have a method for making a folder of TARs or RARs or Zips of pogOSs? Heh, PogOS&amp;#039;s...</description>
        <link>https://forum.doozan.com/read.php?8,21954,21954#msg-21954</link>
        <lastBuildDate>Wed, 11 Mar 2026 08:42:55 -0500</lastBuildDate>
        <generator>Phorum 5.2.23</generator>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21966#msg-21966</guid>
            <title>Re: letting you know</title>
            <link>https://forum.doozan.com/read.php?8,21954,21966#msg-21966</link>
            <description><![CDATA[ <pre class="bbcode">
tar -czf /media/HDD/Backup/Joey_rootfs_150520.tar.gz .</pre>
<br />
The above is the gzip compession, fast but not compressed as much as bz2<br />
<br />
to make it smaller, but the backup command will take longer:<br />
<br />
<pre class="bbcode">
tar -cjf /media/HDD/Backup/Joey_rootfs_150520.tar.bz2 .
</pre>]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Wed, 20 May 2015 17:08:15 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21964#msg-21964</guid>
            <title>makes all the difference</title>
            <link>https://forum.doozan.com/read.php?8,21954,21964#msg-21964</link>
            <description><![CDATA[ I can&#039;t tell you how good it feels to do command line stuff and have the knowledge of what&#039;s going on. Real paradigm shift. <br />
I&#039;ll try this ASAP but not now, as measuring twice is working for me]]></description>
            <dc:creator>JoeyPogoPlugE02</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Wed, 20 May 2015 17:00:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21963#msg-21963</guid>
            <title>Re: letting you know</title>
            <link>https://forum.doozan.com/read.php?8,21954,21963#msg-21963</link>
            <description><![CDATA[ Joey,<br />
<br />
restamp showed how to copy a live rootfs. You can also make a simple back up process by taking it offline. Bring the stick to where you want to backup and mount it in this box.<br />
<br />
 # where to keep the backup tarball, for example /media/HDD/Backup<br />
<pre class="bbcode">
mkdir /media/HDD/Backup</pre>
<br />
<br />
# change dir to top directory of the USB rootfs  (assuming it&#039;s mounted as /media/USB)<br />
<pre class="bbcode">
cd /media/USB</pre>
 <br />
<br />
# create the tarball named Joey_rootfs_150520.tar.gz<br />
<pre class="bbcode">
tar -czf /media/HDD/Backup/Joey_rootfs_150520.tar.gz .
</pre>]]></description>
            <dc:creator>bodhi</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Wed, 20 May 2015 16:05:27 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21956#msg-21956</guid>
            <title>letting you know</title>
            <link>https://forum.doozan.com/read.php?8,21954,21956#msg-21956</link>
            <description><![CDATA[ Sure if you&#039;d like to expound, no pressure. I&#039;ve used most of those commands and have nothing against learning the proper methods. <br />
<br />
Truth be fully told, I&#039;m not above foolproof methods either, like a way to insert stick into another Linux box and tar a drive image out of it. <br />
I&#039;m just doing what I can, day to day; you know how things can get lazy in the summer.]]></description>
            <dc:creator>JoeyPogoPlugE02</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Wed, 20 May 2015 00:19:08 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21955#msg-21955</guid>
            <title>Re: How do you all backup a USB-stick operating system?</title>
            <link>https://forum.doozan.com/read.php?8,21954,21955#msg-21955</link>
            <description><![CDATA[ I&#039;ve used something like the following for years:<br />
<br />
<pre class="bbcode"># cd / &amp;&amp; find . dev -mount | cpio -oc | gzip &gt;/Some-mounted-offline-backup-partition/root-`date +%F`.cgz</pre>
<br />
You&#039;ll need to repeat this for every active filesystem on the USB stick (perhaps /var, /home, etc.), but not the pseudo-file systems (proc, sys, run, etc.).  The &quot;dev&quot; above is only needed on the root-fs as it requires some /dev entries be defined before it mounts the dev pseudo-fs.<br />
<br />
I have done this for years on active machines and had any problems reincarnating a system from a backup.  Of course, it isn&#039;t plug-and-play, you have to build a new USB drive from the .cgz backup files first using fdisk, mkfs, and &quot;cpio -icdm&quot;.  If you&#039;d like more information, let me know.]]></description>
            <dc:creator>restamp</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Tue, 19 May 2015 21:36:16 -0500</pubDate>
        </item>
        <item>
            <guid>https://forum.doozan.com/read.php?8,21954,21954#msg-21954</guid>
            <title>How do you all backup a USB-stick operating system?</title>
            <link>https://forum.doozan.com/read.php?8,21954,21954#msg-21954</link>
            <description><![CDATA[ Over here I&#039;ve been taking say, an Arch-E02 stick and plug it into a Windows machine with another USB stick that&#039;s unallocated. Use the freeware Partition Wizard and copy. This works quickly, but you&#039;re fairly limited to one destination.<br />
<br />
I&#039;ve heard you all talk about making a TAR file out of an install, and think that sounds great - after all I could have a folder somewhere with several builds - meaning a lot more flexibility than that one single backup. A lot of solutions have crossed my mind, like a hard drive with a lot of 8-GB partitions and one last FAT32 partition with a text file stating what is in each partition, but that would likely run into problems as well. <br />
<br />
Do any of you have a method for making a folder of TARs or RARs or Zips of pogOSs? Heh, PogOS&#039;s...]]></description>
            <dc:creator>JoeyPogoPlugE02</dc:creator>
            <category>Off-Topic</category>
            <pubDate>Tue, 19 May 2015 19:18:08 -0500</pubDate>
        </item>
    </channel>
</rss>
