Easiest way to merge partitions under debian (unix)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:30:59Zhttp://stackoverflow.com/feeds/question/355533http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/355533/easiest-way-to-merge-partitions-under-debian-unix1Easiest way to merge partitions under debian (unix)?Michał Minicki2008-12-10T09:44:22Z2009-10-20T15:50:25Z
<p>I have two unix partitions under debian which I would like to merge (disk space problems :/). What would be the easiest way to do it? I think it would be best to tar or copy files from one partition to the other, delete one and resize the other. I will use parted to resize but how should I copy the files? There are links, permissions and devices which need to be moved without change.</p>
http://stackoverflow.com/questions/355533/easiest-way-to-merge-partitions-under-debian-unix/355591#3555912Answer by Anders Westrup for Easiest way to merge partitions under debian (unix)?Anders Westrup2008-12-10T10:11:07Z2008-12-10T10:11:07Z<p>You could run the following (as root) to copy the files. It works for symlinks, devices and ordinary files.</p>
<pre><code>cd /partition2
tar cf - . | ( cd /partition1 && tar xf - )
</code></pre>
<p>Another way is to use cpio, but I never remember the correct syntax.</p>
http://stackoverflow.com/questions/355533/easiest-way-to-merge-partitions-under-debian-unix/355601#3556010Answer by codelogic for Easiest way to merge partitions under debian (unix)?codelogic2008-12-10T10:17:13Z2008-12-10T10:17:13Z<p>You can also use SquashFS to create a mirror of the partition and copy that over. After resizing your 2nd partition, mount the SquashFS image and copy over the necessary files. Keep in mind that your kernel will need SquashFS support to mount the image.</p>
<ul>
<li><a href="http://squashfs.sourceforge.net/" rel="nofollow">SquashFS</a></li>
</ul>
http://stackoverflow.com/questions/355533/easiest-way-to-merge-partitions-under-debian-unix/440800#4408001Answer by Teddy for Easiest way to merge partitions under debian (unix)?Teddy2009-01-13T21:09:04Z2009-10-20T15:50:25Z<p>Since this is Debian with GNU fileutils, <code>cp --archive</code> should work fine.</p>
<pre><code>cp --archive --sparse=always --verbose --one-file-system --target-directory=/TARGET /ORIGIN
</code></pre>
<p>If for some reason you’d want to go via GNU <code>tar</code>, you’d need to do something like this:</p>
<pre><code>cd /origin
find . -xdev -depth -not -path ./lost+found -print0 \
| tar --create --atime-preserve=system --null --files-from=- \
--format=posix --no-recursion --sparse \
| { cd /target; tar --extract --overwrite --preserve-permissions --sparse; }
</code></pre>
<p>(I’ve done this so many times that I’ve got a file with all these command lines for quick reference.)</p>
<p>Warning: Using GNU "<code>tar</code>" will <em>not</em> copy POSIX ACLs; you'll need to use either the above "<code>cp --archive</code>" method or "<a href="http://code.google.com/p/libarchive/" rel="nofollow">bsdtar</a>":</p>
<pre><code>mkdir /target
cd /origin
find . -xdev -depth -not -path ./lost+found -print0 \
| bsdtar -c -n --null -T - --format pax \
| { cd /target; bsdtar -x -pS -f -; }
</code></pre>