Easiest way to merge partitions under debian (unix)? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:30:59Z http://stackoverflow.com/feeds/question/355533 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/355533/easiest-way-to-merge-partitions-under-debian-unix 1 Easiest way to merge partitions under debian (unix)? Michał Minicki 2008-12-10T09:44:22Z 2009-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#355591 2 Answer by Anders Westrup for Easiest way to merge partitions under debian (unix)? Anders Westrup 2008-12-10T10:11:07Z 2008-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 &amp;&amp; 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#355601 0 Answer by codelogic for Easiest way to merge partitions under debian (unix)? codelogic 2008-12-10T10:17:13Z 2008-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#440800 1 Answer by Teddy for Easiest way to merge partitions under debian (unix)? Teddy 2009-01-13T21:09:04Z 2009-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>