Personal tools

Log in

Changes

From IGEP - ISEE Wiki

Jump to: navigation, search

IGEPv5 Ubuntu Distro

105 bytes added, 19:14, 17 March 2014
no edit summary
Mount your microsd in your host PC or IGEPv5 after mount the disk it should show you two partitions, the first one boot when we will copy the MLO and u-boot.img and the second one where we uncompress the downloaded file.
=== Mount the microsd card partitions ===
Use the command mount if automount is not enabled as
<pre>mount /dev/mmcblk0p1 /mnt/p1
mount /dev/mmcblk0p2 /mnt/p2
</pre>Copy MLO and u-boot.img (both files can be downloaded reside inside the package u-boot-xxxxxxx-omap5-isee.tar.bz2) inside /mnt/p1
<pre>cp MLO u-boot.img /mnt/p1
</pre>go to /mnt/p2
Now uncompress the rootfs (downloaded file) <span style="color: rgb(255, 0, 0);">as root</span>
<pre>cd /mnt/p2
sudo tar xvfj ubuntu-core-12.04.4-isee-XXXXXXXXXXX-armhf.tar.bz2 (where xxxxxxx is the release name)
</pre>Sync disk
<pre>$ sync
</pre>Unmount the disks
<pre>umount /mnt/p1
umount /mnt/p2
</pre>And finally eject the disk.
If automount is enabled the partitions will be accessed on:
and
/media/&lt;your user/rootfs
use both directories for copy the files in this case you don't need create the directories, you directly can copy and uncompress the file there.