<div class="gmail_quote">2009/2/1 Jeffrey Ratcliffe <span dir="ltr">&lt;<a href="mailto:jeffrey.ratcliffe@gmail.com">jeffrey.ratcliffe@gmail.com</a>&gt;</span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
2009/1/31 Andy Green &lt;<a href="mailto:andy@openmoko.com">andy@openmoko.com</a>&gt;:<br>
&gt; Ext3 is better IMO because it can soak up a lot of casual damage that<br>
&gt; ext2 can&#39;t. &nbsp;With my usage pattern I am randomly powering things off all<br>
&gt; the time I appreciate how ext3 never makes any difficulty for me about<br>
&gt; that. &nbsp;Whereas after a day of it ext2 is on its knees.<br>
<br>
OK. You&#39;ve convinced me.<br>
<br>
Is there a way of backing up /dev/mmcblk0p2, repartitioning the uSD<br>
with one partition, formatting it to ext3, and restoring the backup?<br>
<br>
Or is it quicker to wipe, repartition, format and install from scratch?</blockquote><div><br>You can convert an ext2-fs to an ext3-fs rather easy. There are several examples on the web, like this:&nbsp; <a href="http://www.troubleshooters.com/linux/ext2toext3.htm">http://www.troubleshooters.com/linux/ext2toext3.htm</a> (boot the nand-system and convert it from there).<br>
<br>And while you&#39;re on the converting trip: convert your obsolete mmcblk0p1 into a swap partition:<br><br>mkswap /dev/mmcblk0p1<br>swapon /dev/mmcblk0p1<br><br>For easiness, put it into your /etc/fstab on both nand and sd-card system:<br>
<br>/dev/mmcblk0p1&nbsp; swap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; swap&nbsp;&nbsp;&nbsp; auto,pri=1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0&nbsp; 0<br><br></div></div>