Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

QEMU

No change in size, 19:09, 10 January 2012
no edit summary
=== Extending Rootfs partition<br> ===
We will extend the second partition (rootfs) adding a 20 Giga Bytes partitionto rootfs.<br>
First you should create a new raw file using qemu-img as:<br>
<pre>$ qemu-img create -f raw addon.raw 20G
</pre>it should create a file like this:<br>
-rw-r--r-- 1 mcaro mcaro 21474836480 2012-01-10 19:03 addon.raw<br>
Now we concat at end the addon file to our original file as:<br>
$ cat addon.raw &gt;&gt; igep-nano.img<br>
<br>
<br>
<br>