Cómo instalar Remix OS en VirtualBox

Remix OS es un sistema operativo  basado en Android disponible para PCS.

Este sistema operativo se puede instalar en un pendrive, y después reiniciar nuestro PC desde el pendrive.

Nosotros nos hemos decidido por otra posibilidad: utilizar REMIX OS desde una máquina virtual de VirtualBox.

Esto no se puede hacer directamente, aunque sí con algunos “trucos” que son los que se describen a continuación.

Para ello necesitaremos:

1.- Tener instalado VirtualBox

2.- Descargar Remix OS (podemos elegir 32bits o 64 bits) http://www.jide.com/remixos-for-pc#downloadNow

3.- Hacer uso de un LIVE-CD de Linux (lo necesitamos para crear particiones e instalar GRUB). Yo he utilizado https://www.linuxmint.com/download.php

4.- Seguir las instrucciones que aparecen a continuación.

 

Fuente original: https://gist.github.com/cs8425/7315d86a273e57a988245345df68a4f9

Ayuda para la configuración del grub (en caso de necesidad): http://askubuntu.com/questions/254491/failed-to-get-canonical-path-of-cow

 

 

La información que se muestra a continuación es un copia-pega de la fuente original indicada más arriba (https://gist.github.com/cs8425/7315d86a273e57a988245345df68a4f9).

 

 

How to REAL install Remix OS on VirtualBox

This is how to REAL install Remix OS on VirtualBox. rootfs could be writable!!!

Needs:

  • any linux liveCD iso file (Xubuntu here)
  • Remix OS iso file (“Remix_OS_for_PC_Android_M_32bit_B2016092201.iso” here)
  • VirtualBox

step 1:

Create a virtual machine with a hard disk (at least 4GB). I use 32GB here. VM info

step 2:

Boot linux liveCD to partition and format the disk.

$ sudo gparted

partition table type: msdos

(one partition for example here.)

finished partition: finish partition

step 3:

Boot Remix OS iso with boot flag: INSTALL=1 boot flag

select partition that we had format. select partition

(format function seems buggy here, so, skip it) skip format

Install bootloader latter. skip bootloader skip bootloader

Select “Yes” let rootfs could be mount as rw!! rw rootfs

Wait until finished.

copy reboot

step 4:

Reboot to linux liveCD again. This time we are going to install bootloader.

# grub-install --root-directory=/media/xubuntu/RemixOS /dev/sda

(Where /media/xubuntu/RemixOS is the path you mount the partition that just created in step 2.)

(And /dev/sda is the devices you wants to install.)

add grub.cfg to /media/xubuntu/RemixOS/boot/grub/

androidboot.hardware=remix_x86 to androidboot.hardware=remix_x86_64 if used 64bit iso.

set default=0 
set timeout=10
set gfxmode=800x600
terminal_output gfxterm

menuentry 'Remix OS' --class android-x86 {
        search --file --no-floppy --set=root /RemixOS/kernel
        linux /RemixOS/kernel root=/dev/sda1 androidboot.hardware=remix_x86 androidboot.selinux=permissive SERIAL=random DATA=/data
        initrd /RemixOS/initrd.img
}

install bootloader

and reboot to RemixOS. reboot to RemixOS

First time will take a little long at here. first boot

Finally, and enjoy? Finally

 


Archivado en: Software, Uncategorized Tagged: Android, instalar Android en VirtualBox, REMIX OS, virtualbox

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.

Cómo instalar Remix OS en VirtualBox

Remix OS es un sistema operativo  basado en Android disponible para PCS.

Este sistema operativo se puede instalar en un pendrive, y después reiniciar nuestro PC desde el pendrive.

Nosotros nos hemos decidido por otra posibilidad: utilizar REMIX OS desde una máquina virtual de VirtualBox.

Esto no se puede hacer directamente, aunque sí con algunos “trucos” que son los que se describen a continuación.

Para ello necesitaremos:

1.- Tener instalado VirtualBox

2.- Descargar Remix OS (podemos elegir 32bits o 64 bits) http://www.jide.com/remixos-for-pc#downloadNow

3.- Hacer uso de un LIVE-CD de Linux (lo necesitamos para crear particiones e instalar GRUB). Yo he utilizado https://www.linuxmint.com/download.php

4.- Seguir las instrucciones que aparecen a continuación.

 

Fuente original: https://gist.github.com/cs8425/7315d86a273e57a988245345df68a4f9

Ayuda para la configuración del grub (en caso de necesidad): http://askubuntu.com/questions/254491/failed-to-get-canonical-path-of-cow

 

 

La información que se muestra a continuación es un copia-pega de la fuente original indicada más arriba (https://gist.github.com/cs8425/7315d86a273e57a988245345df68a4f9).

 

 

How to REAL install Remix OS on VirtualBox

This is how to REAL install Remix OS on VirtualBox. rootfs could be writable!!!

Needs:

  • any linux liveCD iso file (Xubuntu here)
  • Remix OS iso file (“Remix_OS_for_PC_Android_M_32bit_B2016092201.iso” here)
  • VirtualBox

step 1:

Create a virtual machine with a hard disk (at least 4GB). I use 32GB here. VM info

step 2:

Boot linux liveCD to partition and format the disk.

$ sudo gparted

partition table type: msdos

(one partition for example here.)

finished partition: finish partition

step 3:

Boot Remix OS iso with boot flag: INSTALL=1 boot flag

select partition that we had format. select partition

(format function seems buggy here, so, skip it) skip format

Install bootloader latter. skip bootloader skip bootloader

Select “Yes” let rootfs could be mount as rw!! rw rootfs

Wait until finished.

copy reboot

step 4:

Reboot to linux liveCD again. This time we are going to install bootloader.

# grub-install --root-directory=/media/xubuntu/RemixOS /dev/sda

(Where /media/xubuntu/RemixOS is the path you mount the partition that just created in step 2.)

(And /dev/sda is the devices you wants to install.)

add grub.cfg to /media/xubuntu/RemixOS/boot/grub/

androidboot.hardware=remix_x86 to androidboot.hardware=remix_x86_64 if used 64bit iso.

set default=0 
set timeout=10
set gfxmode=800x600
terminal_output gfxterm

menuentry 'Remix OS' --class android-x86 {
        search --file --no-floppy --set=root /RemixOS/kernel
        linux /RemixOS/kernel root=/dev/sda1 androidboot.hardware=remix_x86 androidboot.selinux=permissive SERIAL=random DATA=/data
        initrd /RemixOS/initrd.img
}

install bootloader

and reboot to RemixOS. reboot to RemixOS

First time will take a little long at here. first boot

Finally, and enjoy? Finally

 


Archivado en: Software, Uncategorized Tagged: Android, instalar Android en VirtualBox, REMIX OS, virtualbox

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *

Este sitio usa Akismet para reducir el spam. Aprende cómo se procesan los datos de tus comentarios.