• CES
  • AMARTS
  • Electronic Kid
  • Useful-news
  • Forum
  • Fellowship
  • E-Library
  • All
gravatar

how to install Android in to PC


Introduction

We have implemented an easy installer to install Android-x86 to a harddisk. The supported filesystems are

  • ext3
  • ext2
  • ntfs
  • fat32
You can install Android-x86 to an NTFS filesystem to co-exist with Windows. See the Advanced section for details.

Step by step

  • Burn the iso image to cdrom, or create a bootable USB disk (recommended). See the Advanced section for details.
  • Boot from the Android-x86 installation CD/USB, choose the 'Install Android to harddisk' item, as show below
  • After seconds of booting, you will see a partition selection dialog. You can choose an existing partition to install Android-x86, or you can create or modify partitions by choosing 'Create/Modify partitions'. Note you can install Android-x86 to an external disk like USB drive. If the target drive is not shown, try 'Detect devices'.
  • Android-x86 can co-exist with other operating system or data in the chosen partition. If the partition is formatted, you may choose 'Do not format' to keep existing data. Otherwise, choose a filesystem type to format. Note the type you chosen must match the partition id, or the boot loader will fail to boot.
Also note if you choose to format to fat32, you will see a warning that android cannot save data to fat32. You can still proceed to install, but the installed android system will work like a live cd system. That is, all data will lose after power off. Therefore we do not recommend to install Android-x86 to a fat32 partition.
  • Next question is whether to install boot loader Grub. Usually you should answer yes, unless you want to install boot loader by hand yourself. Note the installer only creates boot items for Android-x86. If you hope to boot other operating systems, you need to add the item to /grub/menu.lst manually. See the Advanced section for how to do this.
  • If you are lucky, the installation will begin, and you will see the progress bar.
  • If you see this screen, the installation is complete. Congratulations! Now you can run Andrond-x86 directly, or you can reboot and run it.


Advanced

How to create a bootable USB stick for Android-x86?

  • Use the USB image
    Download the compressed USB image, uncompress and dump it to a USB stick. On a Linux host, you can use the command
    # zcat android-x86-1.6-r2_usb.img.gz | dd of=/dev/sdc
    where /dev/sdc is the device name of the target USB disk. However, some broken BIOS may fail to boot such a USB disk.
  • Create a bootable USB stick by iso
    There are some open source tools that can convert an iso into a bootable USB disk, say

Multi-boot

To boot other operating systems, you have to add items for them to /grub/menu.lst. For example, to boot Windows, add the following:
title Windows
    rootnoverify (hd0,0)
    chainloader +1
This assumes the Windows is installed to the first partition of the first hard disk. Or you need to change rootnoverify to the appropriate value. See Grub manual for details.
Updated (2010-10): Since froyo-x86, if there is an NTFS partition in the installed disk, the installer will ask if you want to create a boot item for Windows, as show below


Issues

VMware

You have to change your virtual disk type to be IDE because the default type in VMware is SCSI, and Android-x86 kernel is not configured to support SCSI. You can follow these steps:

  • Create a virtual machine.
  • Edit virtual machine settings after the virtual machine created.
  • Choose the hard disk and remove it.
  • Add a hard disk to create a new virtual disk, then you can choose IDE as your virtual disk type.
  • When finished, you can install android-x86 normally.
Source From: android-x86.org