About 2 weeks ago, Jasbir released an Ubuntu 11.10 image and installation instructions for GK802 and Hi802 mini PCs based on Freescale i.MX6. I could only find time to give it try yesterday and today. I’ll provide the steps I followed to install the image, and my quick first impressions of the stability and performance of this image. Installation Instructions I mainly followed the instructions provided by Jasbir, and run GParted to increased the partition size on my micro SD card. The image is for a 8 GB micro SD, but those instructions should work on 4GB SD card and greater, as the rootfs partition is only 3GB large. Download the Ubuntu 11.10 image, uboot, as well as the kernel image and modules in a Linux PC:
1 2 3 4 |
wget http://dl.miniand.com/jas-hacks/gk802/ubuntu_gk802.img.gz wget http://dl.miniand.com/jas-hacks/gk802/u-boot.imx wget http://dl.miniand.com/jas-hacks/gk802/uImage_3.0.35-0269_cpu_freq wget http://dl.miniand.com/jas-hacks/gk802/modules_3.0.35-02695.tar |
Copy the image, uboot and the kernel to the micro SD card by typing the commands below:
1 2 3 4 |
gzip -d ubuntu_gk802.img.gz sudo dd if=ubuntu_gk802.img of=/dev/<sd_device> sudo dd if=u-boot.imx bs=1k seek=1 of=/dev/<sd_device> && sync sudo dd if=uImage_3.0.35-0269_cpu_freq of=/dev/<sd_drive> bs=1048576 seek=1 && sudo sync |
Replace /dev/<sd_device> by your […]