-
-
Save huahouye/8a90593bd56261e019ff8785c9043cea to your computer and use it in GitHub Desktop.
Revisions
-
cs8425 revised this gist
Oct 3, 2016 . 1 changed file with 4 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -18,8 +18,11 @@ Boot linux liveCD to partition and format the disk. `$ sudo gparted` partition table type: msdos (one partition for example here.) finished partition:  -
cs8425 revised this gist
Oct 3, 2016 . 1 changed file with 3 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -57,11 +57,11 @@ Wait until finished. 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.) -
cs8425 revised this gist
Oct 3, 2016 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -56,11 +56,15 @@ Wait until finished. ## step 4: Reboot to linux liveCD again. This time we are going to install bootloader. 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. `# grub-install --root-directory=/media/xubuntu/RemixOS /dev/sda` add `grub.cfg` to `/media/xubuntu/RemixOS/boot/grub/` `androidboot.hardware=remix_x86` to `androidboot.hardware=remix_x86_64` if used 64bit iso. -
cs8425 revised this gist
Oct 3, 2016 . 1 changed file with 5 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -15,6 +15,7 @@ I use 32GB here. ## step 2: Boot linux liveCD to partition and format the disk. `$ sudo gparted` partition table type: msdos @@ -55,9 +56,13 @@ Wait until finished. ## step 4: Reboot to linux liveCD again. This time we are going to install bootloader. 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. `# grub-install --root-directory=/media/xubuntu/RemixOS /dev/sda` add `grub.cfg` to `/media/xubuntu/RemixOS/boot/grub/` `androidboot.hardware=remix_x86` to `androidboot.hardware=remix_x86_64` if used 64bit iso. ``` -
cs8425 revised this gist
Sep 29, 2016 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -47,6 +47,7 @@ Select "Yes" let rootfs could be mount as rw!! Wait until finished.   -
cs8425 revised this gist
Sep 29, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -5,7 +5,7 @@ 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: @@ -46,7 +46,7 @@ Select "Yes" let rootfs could be mount as rw!!  Wait until finished.   -
cs8425 created this gist
Sep 29, 2016 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,88 @@ # 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 (32bit here) * VirtualBox ## step 1: Create a virtual machine with a hard disk (at least 4GB). I use 32GB here.  ## step 2: Boot linux liveCD to partition and format the disk. `$ sudo gparted` partition table type: msdos one partition for example here. finished partition:  ## step 3: Boot Remix OS iso with boot flag: `INSTALL=1`  select partition that we had format.  (format function seems buggy here, so, skip it)  Install bootloader latter.   Select "Yes" let rootfs could be mount as rw!!  Wait until finished   ## step 4: Reboot to linux liveCD again. This time we are going to install bootloader. `# grub-install --root-directory=/media/xubuntu/RemixOS /dev/sda` 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 } ```  and reboot to RemixOS.  First time will take a little long at here.  Finally, and enjoy :)  This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ 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 }