How to access pc hard drive while booting remix OS from USB flash drive? - Remix OS for PC

How to access pc hard drive while booting remix OS from USB flash drive?

not possible i think. android cant read other partitions.

RoboR1 said:
not possible i think. android cant read other partitions.
Click to expand...
Click to collapse
Rohan M said:
How to access pc hard drive while booting remix OS from USB flash drive?
Click to expand...
Click to collapse
Not true. I used this https://play.google.com/store/apps/details?id=eu.chainfire.stickmount and I can see my windows partitions sadly and oddly not my Linux ones. The windows partitions are read only but still that is great.
Sent from my XT1575 using Tapatalk

EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT * EDIT *
This method don't working on RemixOS! Sorry cause dumb post.
stiw47
Off Topic:
Personal Opinion: Why so easily say "not possible I think"? Is it something impossible in cyber computer world. + this not required any advanced knowledge, this is a basic Linux staffs. Does not matter how much Remix looks like Windows, it is a still Linux base, have Linux Kernel and Busybox. Tip: Try to learn to not doing everything via GUI, try to learning using a CLI.
The end of off topic.
Let's start:
Unfortunately, I cannot boot Remix on my Toshiba Satellite L775D (probably hardware issue, I cannot boot Android x86 M and L also), but I have Android x86 KitKat installed on one of my partitions. Beside Android x86 (ext4), I have one Windows (ntfs), three Linux's (ext4), one data/storage partition (ntfs, data=PODACI on Serbian, on screenshots) and one trying of booting PhoenixOS (ext4). This is how look like:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
I successful mounting all my partitions inside Android x86, and I suppose it is same in Remix (let me someone correct if I'm wrong). I mounting all my partitions in rw mode.
1. Linux partitions (ext2, 3, 4)
First, determine what is a name of drive you want to mount. Format for this, is sdXY, where X standing for HDD's order (a, b, c...) and Y for partition number on that disk (1, 2, 3...). For example: my Arch Linux is on sixth partition on first hard drive, it is a sda6. All partitions in Android are presented under /dev/block, so full path for my Archie will be /dev/block/sda6
Second, make folder where you want to mount partition. For example, I maded for me /storage/sdcard0/partitions/ARCH for mounting my Arch Linux partition.
Third, open terminal and execute:
Code:
su
busybox mount /dev/block/sda6 /storage/sdcard0/partitions/ARCH
And whoala, go in Root Explorer, or what ever, open /storage/sdcard0/partitions/ARCH, and you have your partition as rw. Of course, you have to edit comand line abowe, to be appropriate for your scenario (name of drive sda6 and folder where you want to mount partition).
2. Windows partitions (ntfs):
Even a Linux Desktop OSs, need a little program (binary, executable... what ever) called ntfs-3g for mounting ntfs partitions in rw mode. Fortunately, ntfs-3g exist ported for Android, thanks to devs.
First, download ntfs-3g from here
Second, extract .zip
Third, copy extracted ntfs-3g executable to your /system/xbin
Fourth, give them permission 755 (or rwxr-xr-x , how you like)
Fifth, make folder where you want to mount your ntfs partition. For example: I maded a folder /storage/sdcard0/partitions/PODACI for my ntfs storage partition (label PODACI)(partition which Windows people call "D:"). Notice before next step: My storage partition is sda2 (/dev/block/sda2)
Sixth and last: Open terminal and execute:
Code:
su
ntfs-3g /dev/block/sda2 /storage/sdcard0/partitions/PODACI
Output in terminal will be something like an error, but open Root Explorer or what ever and, whoala, your partition is here in rw mode.
Notice: You making folders for mounting just one time, of course. Every next time, you just execute comands.
You can make a script for mounting your desired partition(s) on boot. For example, for my storage partition above:
Code:
#! /system/bin/sh
ntfs-3g /dev/block/sda2 /storage/sdcard0/partitions/PODACI
[/CODE]
save as text file, and run (for example) via Script Manager app, as root and on boot options checked.

stiw47 said:
Off Topic:
Personal Opinion: Why so easily say "not possible I think"? Is it something impossible in cyber computer world. + this not required any advanced knowledge, this is a basic Linux staffs. Does not matter how much Remix looks like Windows, it is a still Linux base, have Linux Kernel and Busybox. Tip: Try to learn to not doing everything via GUI, try to learning using a CLI.
The end of off topic.
Let's start:
Unfortunately, I cannot boot Remix on my Toshiba Satellite L775D (probably hardware issue, I cannot boot Android x86 M and L also), but I have Android x86 KitKat installed on one of my partitions. Beside Android x86 (ext4), I have one Windows (ntfs), three Linux's (ext4), one data/storage partition (ntfs, data=PODACI on Serbian, on screenshots) and one trying of booting PhoenixOS (ext4). This is how look like:
I successful mounting all my partitions inside Android x86, and I suppose it is same in Remix (let me someone correct if I'm wrong). I mounting all my partitions in rw mode.
1. Linux partitions (ext2, 3, 4)
First, determine what is a name of drive you want to mount. Format for this, is sdXY, where X standing for HDD's order (a, b, c...) and Y for partition number on that disk (1, 2, 3...). For example: my Arch Linux is on sixth partition on first hard drive, it is a sda6. All partitions in Android are presented under /dev/block, so full path for my Archie will be /dev/block/sda6
Second, make folder where you want to mount partition. For example, I maded for me /storage/sdcard0/partitions/ARCH for mounting my Arch Linux partition.
Third, open terminal and execute:
Code:
su
busybox mount /dev/block/sda6 /storage/sdcard0/partitions/ARCH
And whoala, go in Root Explorer, or what ever, open /storage/sdcard0/partitions/ARCH, and you have your partition as rw. Of course, you have to edit comand line abowe, to be appropriate for your scenario (name of drive sda6 and folder where you want to mount partition).
2. Windows partitions (ntfs):
Even a Linux Desktop OSs, need a little program (binary, executable... what ever) called ntfs-3g for mounting ntfs partitions in rw mode. Fortunately, ntfs-3g exist ported for Android, thanks to devs.
First, download ntfs-3g from here
Second, extract .zip
Third, copy extracted ntfs-3g executable to your /system/xbin
Fourth, give them permission 755 (or rwxr-xr-x , how you like)
Fifth, make folder where you want to mount your ntfs partition. For example: I maded a folder /storage/sdcard0/partitions/PODACI for my ntfs storage partition (label PODACI)(partition which Windows people call "D:"). Notice before next step: My storage partition is sda2 (/dev/block/sda2)
Sixth and last: Open terminal and execute:
Code:
su
ntfs-3g /dev/block/sda2 /storage/sdcard0/partitions/PODACI
Output in terminal will be something like an error, but open Root Explorer or what ever and, whoala, your partition is here in rw mode.
Notice: You making folders for mounting just one time, of course. Every next time, you just execute comands.
You can make a script for mounting your desired partition(s) on boot. For example, for my storage partition above:
Code:
#! /system/bin/sh
ntfs-3g /dev/block/sda2 /storage/sdcard0/partitions/PODACI
[/CODE]
Wow...nice tuts
I hope this methode included on next remix beta released [emoji4]
Click to expand...
Click to collapse

@stiw47, your sollution didn't work for me. I do everything according to instruction, get error from terminal but partition isn't mounted, can't see it in any file explorer.

Not to brag but I can see my all my first hard drive partitions and my second hard drive partition just fine in the Remix OS file manager, I think I can because I'm using chainfire's Stick Mount app, when I open Remix OS's File Manager, I can find a folder called usbstorage and entering that folder list all my partitions as sda1 2 3 4 5 6 7 and then sdb1 second hard drive.
This is on my HP Envy DV6 and plus running the latest version rooted. 2.101 I think.
Hope this helps somehow.
Sent from my Z00D using XDA Free mobile app

lukros said:
@stiw47, your sollution didn't work for me. I do everything according to instruction, get error from terminal but partition isn't mounted, can't see it in any file explorer.
Click to expand...
Click to collapse
Realy sorry about this, but as I said, this working for me in Android x86 KitKat. I can't run Remix on my laptop. Try to use fuse.ko beside ntfs-3g. Read OP here.

In terminal I can see directories in the Ubunru folder that I created but no file explorer app sees anything.

Yeah, guys, you are right. I didn't been lazy, and I installed Remix on another laptop, just to try. ntfs-3g not working, confirm. About native mount of Linux partitions, it is very strange for me: @dlaciv12 is right - can't see content of partition in file manager, but it is there in Terminal ('ls' comand), strange.
Sorry once again because dumb post.

Well, I'll post this screenshots from my RemixOS on my HP Envy dv6 laptop, where the folder is and what's inside my usbstorage.
Anyone else wanting to access there Windows, Mac or Linux partitions in RemixOS, open File Manager, then My Remix from the left sidebar then usbStorage, all your partitions on all or most hard drives will be listed, I can't get my Zenfone 2E to mount in Remix because it wants to reformat my phone as a memory card, so I'll access my phone from my other 2 Linux OSes or Windows itself.

with root. i used https://play.google.com/store/apps/details?id=com.paragon.mounter.
tested on HFS+ and NTFS.

You are incredible.! Yes, I can see all contents on all partitions of my HD. U DA MAN!
Sent from XDA running on Remix OS

Related

[Ubuntu] T3buntu

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Please OP remove my old post about Ubuntu on Tab 3...
T3buntu (Had to call it something...)
Disclaimer:
What you do with this information is up to you. If your device breaks while trying anything in here you do that at your own risc.
I cant be held responsible for anything that happens to your device.
Everything in here was tested on a Samsung Galaxy Tab3 10.1(5210) if you try anything in here on any other device thats up to you.
Most of the work is made by the Linux on Android team i have just tested and fixed some stuff.
The image is ext2, x86 but im working on a ext4, AMD64 image.
”Changelog”
1. Replaced lxde with KDE Plasma
2. Added entryś in etc/fstab for int/ext SdCards
3. Edited bootscript from the Linux on Android team so that the SdCards in the Tab is correcly mounted and works with fstab.
4. Installed "missing" packages to minimize errors.
Works:
Wifi
Battery indicator
Int/Ext SdCard
Most of the stuff in Ubuntu.
Issues:
Leftpanel is black
Slow startup, but can be fixed. I will add that later.
Some apps dont work if you start them as root.
Couldnt make jpg work as wallpaper so using png at the moment.
Rotation isnt setup since we cant use xrandr to rotate the screen..
Not tested:
GPS
ToDo
Streamline startup
Add init.d support on the Tab
Tweaking were ever possible.
Fix sound
Now for the fun stuff.
Installation:
1. Root your device. I used this Guide.
2. Install Busybox.
3. Install Linux on Android.
4. Install a VNC client of your shoice, i preferr Jump Desktop free.
5. Copy bootscript.sh to /data/data/com.zpwebsites.linuxonandroid/files/ overwrite the old file.
6. Unpack and Copy the t3buntuv1.2_20131216.img to a place of your choosing on either internal or external sdcard.
7. Make a Linux on Android widget and point it to the img file you copied in 6.
OBS !! This image is preconfigured with the user ubuntu and psw t3buntu..
8. Now click on the LOA widget you made in 7 and let linux ”bootup”
9. In your VNC client connect to localhost.
DONE ! Your now in Ubuntu..
If you want more screenspace you can uncomment
# service call activity 42 s16 com.android.systemui
In bootscript.sh this will remove the android panel. The problem with this at the moment is that to
get it back you have to restart the Tab becourse the ´am´ command to get it back ”Seg faults” on
my tab and i havnt figured out why yet.
Consider this image as alpha...
OBS !! The image file is BIG 1.4GB compressed and 4GB decompressed. Will try and make it smaller not sure how the Linux on Android team made there images so small...
LINK to imagefile
LINK to bootscript
Credits
Linux on Android team
The one that made the scripts from the start. Not sure who made them...
How about a link to get 3. Linux on Android.
I know I'm top lazy to Google.
Sent from my GT-P5210 using XDA Premium HD app
Awesome! Glad to see something! And having Ubuntu is a very cool os to have! Good work and thank you!
Sent from my SCH-I605 using xda app-developers app
Added links to Linux on Android and Busybox in first post.
Nice, but there are a few things...
The bootscript.sh contains one little, but crucial error.
At line 172, character 44, you forgot one space, which makes the mount procedure unusable:
Code:
$bbox mount -o bind /storage/extSdCard $mnt/extSdCard
Which should be:
Code:
$bbox mount -o bind /storage/extSdCard $mnt/extSdCard
Without this (for me) it failes while it's starting up.
And, another thing, my tablet reboots at the moment I have to run VNC to start the X server, even though I'm not doing or touching anything.
After reboot it doesn't start up t3buntu either.
But, very good work !!
And yes, I do have Samsung Galaxy Tab 3 10.1 GT-P5210...
RubenStauttener;48606882]Nice, but there are a few things...
The bootscript.sh contains one little, but crucial error.
At line 172, character 44, you forgot one space, which makes the mount procedure unusable:
Code:
$bbox mount -o bind /storage/extSdCard $mnt/extSdCard
Which should be:
Code:
$bbox mount -o bind /storage/extSdCard $mnt/extSdCard
Without this (for me) it failes while it's starting up.
Havnt noticed any problems here but i have added the space and updated the script since both versions works for me.
And, another thing, my tablet reboots at the moment I have to run VNC to start the X server, even though I'm not doing or touching anything.
After reboot it doesn't start up t3buntu either.
Does it reboot during script execution ? It do sound like a mem issue. Do you have widgets and such running in android ?
You can try with enabling the swapfile in bootscript.sh .
But, very good work !!
And yes, I do have Samsung Galaxy Tab 3 10.1 GT-P5210...
I've got the terminal up and running fine. But I can't VNC into it. What settings are you using for you VNC viewer?
How about native graphic support using libhybris? Or since this device use PowerVR SGX 544, is native X11 possible? Reference: https://wiki.archlinux.org/index.php/Intel_GMA3600
EDIT: https://github.com/trevd/android_kernel_samsung_santos10/tree/cm-10.2/drivers/staging/mrst/pvr and https://github.com/thomas001/cedarview-drm/tree/master/staging/cdv/pvr looks similar
Thanks for sharing but it's not working
VNC: autentification failed !
Jump Desktop: It ask a password, and I don't have this password !
Sent from Gallifrey using TARDIS
Nonta72 said:
Thanks for sharing but it's not working
VNC: autentification failed !
Jump Desktop: It ask a password, and I don't have this password !
Sent from Gallifrey using TARDIS
Click to expand...
Click to collapse
Test password: ubuntu
When run script say mnt error =/
zorrigas said:
Test password: ubuntu
When run script say mnt error =/
Click to expand...
Click to collapse
Thanks, but I already solved it :good:
Sent from my GT-5210 powered by AmatROM HD
Hi, I posted a question in the Q&A forum (them 10 posts), but I guess it really belongs here.
Tried this on my TWRP rooted UANB4 stock rom P5210, stock kernel. And I get the following with your script and image:
Code:
[email protected]:/ $
[email protected]:/ $ cd /storage/extSdCard/Img
[email protected]:/storage/extSdCard/Img $ su
[email protected]:/storage/extSdCard/Img # sh /data/data/com.zpwebsites.linuxonandroid/files/bootscript.sh /storage/extSdCard/Img/t3buntuv1.2_20131216.img
Checking loop device... FOUND
mount: mounting /dev/block/loop255 on /data/local/mnt failed: Invalid argument
Error: Unable to mount the loop device!
1|[email protected]:/storage/extSdCard/Img #
Line : $bbox mount -t ext2 /dev/block/loop255 $mnt
Do I tell busybox to overwrite the mount command?
Otherwise, excellent work, cant wait till I have it running.
*EDIT*
Turns out I just had to copy the image again, I guess my first transfer got cut off.
Totally works, thx
hey. i noticed that the last update was in April of 2014. i was wondering if there was any updates on this.
getting linux on my tablit was the #1 reason i chose to root my GT-P5210 in the first place.
Homage said:
hey. i noticed that the last update was in April of 2014. i was wondering if there was any updates on this.
getting linux on my tablit was the #1 reason i chose to root my GT-P5210 in the first place.
Click to expand...
Click to collapse
I did not try this one. I bet itworks in VNC as it tell us. Instead i did
http://forum.xda-developers.com/showpost.php?p=58175673&postcount=54
I guess I can say it work aceptable in VNC mode, definitly work nice in comand mode. I been working in a native solution but it is a hard bone for my teeth. Look in the general area.
Download link is down
I would like to run Ubuntu on my Tab 3 but the link doesn't work. Could some upload a working link please?
Hi Guys,
Anyona has this .sh script and the t3buntuv1.2_20131216.img file? if you send me im hosting and distributing free as i live i want to use for my home automatization.
THX
G
jorgen_gustavsson said:
Please OP remove my old post about Ubuntu on Tab 3...
T3buntu (Had to call it something...)
Disclaimer:
What you do with this information is up to you. If your device breaks while trying anything in here you do that at your own risc.
I cant be held responsible for anything that happens to your device.
Everything in here was tested on a Samsung Galaxy Tab3 10.1(5210) if you try anything in here on any other device thats up to you.
Most of the work is made by the Linux on Android team i have just tested and fixed some stuff.
The image is ext2, x86 but im working on a ext4, AMD64 image.
”Changelog”
1. Replaced lxde with KDE Plasma
2. Added entryś in etc/fstab for int/ext SdCards
3. Edited bootscript from the Linux on Android team so that the SdCards in the Tab is correcly mounted and works with fstab.
4. Installed "missing" packages to minimize errors.
Works:
Wifi
Battery indicator
Int/Ext SdCard
Most of the stuff in Ubuntu.
Issues:
Leftpanel is black
Slow startup, but can be fixed. I will add that later.
Some apps dont work if you start them as root.
Couldnt make jpg work as wallpaper so using png at the moment.
Rotation isnt setup since we cant use xrandr to rotate the screen..
Not tested:
GPS
ToDo
Streamline startup
Add init.d support on the Tab
Tweaking were ever possible.
Fix sound
Now for the fun stuff.
Installation:
1. Root your device. I used this Guide.
2. Install Busybox.
3. Install Linux on Android.
4. Install a VNC client of your choice, i preferr Jump Desktop free.
5. Copy bootscript.sh to /data/data/com.zpwebsites.linuxonandroid/files/ overwrite the old file.
6. Unpack and Copy the t3buntuv1.2_20131216.img to a place of your choosing on either internal or external sdcard.
7. Make a Linux on Android widget and point it to the img file you copied in 6.
OBS !! This image is preconfigured with the user ubuntu and psw t3buntu..
8. Now click on the LOA widget you made in 7 and let linux ”bootup”
9. In your VNC client connect to localhost.
DONE ! Your now in Ubuntu..
If you want more screenspace you can uncomment
# service call activity 42 s16 com.android.systemui
In bootscript.sh this will remove the android panel. The problem with this at the moment is that to
get it back you have to restart the Tab becourse the ´am´ command to get it back ”Seg faults” on
my tab and i havnt figured out why yet.
Consider this image as alpha...
OBS !! The image file is BIG 1.4GB compressed and 4GB decompressed. Will try and make it smaller not sure how the Linux on Android team made there images so small...
LINK to imagefile <===== this URL broken
LINK to bootscript <===== this URL broken
Credits
Linux on Android team
The one that made the scripts from the start. Not sure who made them...
Click to expand...
Click to collapse

Remix OS - Installation, ROOTing & more!

Hi there. As you may already know, Remix OS has already been released for PC. Remix OS is "re-designed" Android which works on PC and has many good features such as multitasking, Windows shortcuts, etc. In this thread, I want to teach how to install Remix OS, ROOT it and many more. So, let's get started.
1. Install Remix OS on HDD [Using Ubuntu]:
So, to install Remix OS on HDD, you will need Remix OS iso or img file and Ubuntu installed on PC.
First of all, create folder called "remix" (without quotes) on / directory on Ubuntu.
From the Remix ISO/IMG, put the following files in /remix: initrd.img, kernel, ramdisk.img, system.img.
Make a directory /remix/data.
There you go, Remix OS is now on HDD... But how to boot it? You have to add it into GRUB menu. To do this:
Open terminal in ubuntu and type in:
Code:
gksudo gedit /etc/grub.d/40_custom
You'll be prompted for root password, type it in. Then you'll get gedit window with some texts in it. Add this code at the end of the text:
Code:
menuentry 'Remix OS' --class android-x86 {
insmod part_gpt
search --file --no-floppy --set=root /remix/system.img
linux /remix/kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive CMDLINE
initrd /remix/initrd.img
}
Then, in terminal, run this command to update GRUB configuration:
Code:
sudo update-grub
Again, type in root password and vuala, now you have Remix OS installed on HDD and it is available in GRUB menu. Rebooting should yield a menu in GRUB called Remix, which might work. The way I've done it here, Remix will share storage with Ubuntu, but will be unable to see the contents outside of /remix/data. If you prefer, you can pre-allocate space for Remix using an image for /data like so:
Code:
dd if=/dev/zero of=/remix/data.img bs=1M count=XXX
mkfs.ext4 /remix/data.img
(where XXX is how many megabytes you want data.img to be). An image is convenient for portability and backup purposes, so it's up to your preference. I prefer to use /remix/data over an image just because of the limited storage on my tablet.
This is also pretty non-destructive. To remove Remix, just revert or remove /etc/grub.d/40_custom, run update-grub, and if you wish, delete /remix.
2. Install Google Play Services:
After booting into Remix OS, you'll notice that there is not any Google Play Services/apps like Play Store, etc. To install them, you have to:
Download GMSInstaller.apk from here.
Install APK file and run it.
Click on "One-click to install Google Services" (this will automatically download google play services).
There you go, now you have Google Play Services installed.
After installation, you may be unable to install apps from Play Store. To fix this, you have to clear data for Google Play Services, Google Services Framework and Google Play Store and then restart PC/notebook. After restart, try cleaning data again for Google Play Store again.
3. Root Remix OS [Using Ubuntu]:
Now I'll teach you how to ROOT Remix OS. You can learn more about root access here, if you don't already know it.
Download and Extract RemixRoot.zip to desktop
Copy system.sfs from your pendrive or hdd wherever you have installed Remix OS to the desktop
Open Terminal (Ctrl+Alt+T) and type:
Code:
sudo apt-get install squashfs-tools
cd Desktop
unsquashfs system.sfs
This commands will create a new folder on Desktop. There will be system.img in that folder
Copy that system.img to RemixRoot folder
Open terminal again and type:
Code:
sudo -i
Enter your password (If you are running in live cd then no password)
Change directory to RemixRoot folder.
Code:
cd /home/user_name/Desktop/RemixRoot
If you did it right next line of terminal will end with RemixRoot# followed by blinking cursor
Now run rootx.sh script by typing
sh rootx.sh
If everything goes right there wont be any error message and you will get a root.img in your RemixRoot folder
Rename it to system.img and copy to your pendrive/hdd replacing previous system.img
Reboot and go to RemixOS and update SuperSU binaries
That's it! you are now rooted
4. Update Remix OS to the latest version [Using Ubuntu]:
So, new version of Remix OS is released and I want to show how to update your current Remix OS to the latest version.
First of all, download new version of Remix OS (current is 2016012301) from here. Remember to choose EFI.
After downloading, extract system.sfs file from the img and put it in Desktop.
Open the termial and type in:
Code:
sudo apt-get install squashfs-tools
cd Desktop
unsquashfs system.sfs
This code will:
Install squashfs-tools which is needed to extract system.sfs file
Point working location to Desktop
Extract system.sfs file and will create a new folder on the Desktop. There will be system.img in that folder
Now, after we got hands on system.img, which previously were unavailable, we need to copy that system.img to /remix directory which we created in section 1. Install Remix OS on HDD [Using Ubuntu]. This will overwrite previous system.img also. You can also copy initrd.img, kernel and ramdisk.img, but that files are rarely updated.
More instructions may or may not be added.
For instructions, thanks to reddit users crosph and Gopal3. Also XDA members @Chainfire and @hackarchive
Installing Play Services went fine, although even after deleting the cache, rebooting, reinstalling entirely, no installations were possible via the store, for me.
Others had success tho.
HearthC0re said:
Installing Play Services went fine, although even after deleting the cache, rebooting, reinstalling entirely, no installations were possible via the store, for me.
Others had success tho.
Click to expand...
Click to collapse
After installation, you may be unable to install apps from Play Store. To fix this, you have to clear data for Google Play Services, Google Services Framework and Google Play Store and then restart PC/notebook. After restart, try cleaning data again for Google Play Store again.
@DroidTwe4kz With this method is Remix OS installed or will it ask for resident or guest mode each time?
malim20 said:
@DroidTwe4kz With this method is Remix OS installed or will it ask for resident or guest mode each time?
Click to expand...
Click to collapse
It is installed, like Ubuntu. It will save all apps, files and stuff. It won't ask for which mode you want to boot
When I install this way I have an internal storage size of 3.8gb. Did I do something wrong?
1&3 success , 2 failed
1. Just format your target hdd or ssd with ext4 and install there. You will get full space of your media. I used a GPARTED live cd to inject linux sh commands. Any live linux distro is ok while you can use basic commands like fdisk, mount, cd, etc. BTW install requires you modify isolinux.cfg by adding INSTALL=1 DEBUG=0 to an install menu.
2. I failed. I tried various ways with no success. I checked the apps like Google Play*, Service* and they are there in frozen state. As soon as I unfreeze them, they are automatically freezing themselves. Strange...
3. Worked like charm.
Thank you your info.
-------------
P.S. Resident/Guest menus are only shown on live cd image. Once installed, you will see different GRUB menus and just click the first one. Good luck.
thatmayh3mguy said:
When I install this way I have an internal storage size of 3.8gb. Did I do something wrong?
Click to expand...
Click to collapse
I think not. You can even create another partition and put files in it, but then you must make some changes in GRUB configuration file too.
BTW, there's how Remix OS appears in GRUB2 menu.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
DroidTwe4kz said:
Hi there. As you may already know, Remix OS has already been released for PC. Remix OS is "re-designed" Android which works on PC and has many good features such as multitasking, Windows shortcuts, etc. In this thread, I want to teach how to install Remix OS, ROOT it and many more. So, let's get started.
1. Install Remix OS on HDD [Using Ubuntu]:
So, to install Remix OS on HDD, you will need Remix OS iso or img file and Ubuntu installed on PC.
First of all, create folder called "remix" (without quotes) on / directory on Ubuntu.
From the Remix ISO/IMG, put the following files in /remix: initrd.img, kernel, ramdisk.img, system.img.
Make a directory /remix/data.
There you go, Remix OS is now on HDD... But how to boot it? You have to add it into GRUB menu. To do this:
Open terminal in ubuntu and type in:
Code:
gksudo gedit /etc/grub.d/40_custom
You'll be prompted for root password, type it in. Then you'll get gedit window with some texts in it. Add this code at the end of the text:
Code:
menuentry 'Remix OS' --class android-x86 {
insmod part_gpt
search --file --no-floppy --set=root /remix/system.img
linux /remix/kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive CMDLINE
initrd /remix/initrd.img
}
Then, in terminal, run this command to update GRUB configuration:
Code:
sudo update-grub
Again, type in root password and vuala, now you have Remix OS installed on HDD and it is available in GRUB menu. Just boot it up and follow setup guide.
2. Install Google Play Services:
After booting into Remix OS, you'll notice that there is not any Google Play Services/apps like Play Store, etc. To install them, you have to:
Download GMSInstaller.apk from here.
Install APK file and run it.
Click on "One-click to install Google Services" (this will automatically download google play services).
There you go, now you have Google Play Services installed.
After installation, you may be unable to install apps from Play Store. To fix this, you have to clear data for Google Play Services, Google Services Framework and Google Play Store and then restart PC/notebook. After restart, try cleaning data again for Google Play Store again.
3. Root Remix OS [Using Ubuntu]:
Now I'll teach you how to ROOT Remix OS. You can learn more about root access here, if you don't already know it.
Download and Extract RemixRoot.zip to desktop
Copy system.img from your pendrive or hdd wherever you have installed Remix Os to this folder (ie RemixRoot folder it should be alongside Readme.txt)
Open Terminal (Ctrl+Alt+T)
Type:
Code:
sudo -i
Enter your password (If you are running in live cd then no password)
Change directory to RemixRoot folder.
Code:
cd /home/user_name/Desktop
If you did it right next line of terminal will end with RemixRoot# followed by blinking cursor
Now run rootx.sh script by typing
sh rootx.sh
If everything goes right there wont be any error message and you will get a root.img in your RemixRoot folder
Rename it to system.img and copy to your pendrive/hdd replacing previous system.img
Reboot and go to RemixOS and update SuperSU binaries
That's it! you are now rooted
More instructions may or may not be added.
For instructions, thanks to reddit users crosph and Gopal3. Also XDA members @Chainfire and @hackarchive
Click to expand...
Click to collapse
complete! I'll give it a try! Thanks @DroidTwe4kz
MerbinJAnselm said:
complete! I'll give it a try! Thanks @DroidTwe4kz
Click to expand...
Click to collapse
You're welcome
Any clue to all these awesome trick on windows?
wiryawang said:
Any clue to all these awesome trick on windows?
Click to expand...
Click to collapse
how about this
Guide Dual Boot RemixOS and Windows on PC
kretex said:
how about this
Guide Dual Boot RemixOS and Windows on PC
Click to expand...
Click to collapse
Looks promising good. how about the root procedure on Windows?
A couple of us over at Reddit installed Google Play Services and had suspicious activity on our accounts shortly after:
https://www.reddit.com/r/RemixOS/comments/414lxc/accounts_compromised_be_careful_with_the_services/
Anybody know of a potentially safer package?
MrGarak said:
A couple of us over at Reddit installed Google Play Services and had suspicious activity on our accounts shortly after:
https://www.reddit.com/r/RemixOS/comments/414lxc/accounts_compromised_be_careful_with_the_services/
Anybody know of a potentially safer package?
Click to expand...
Click to collapse
That's why I'm using 2-Step Verification
Same here It's still worrying though!
Stuck
Hello. So I have a problem. I have downloaded the file and placed all the files in the folder. I am running Linux Mint 17.3 based on Ubuntu but when I tried to boot remix OS I get stuck on a screen that's says Detecting Android-x86... Found at /dev/sda1 and nothing else. Did I do something wrong? How can I fix it? Thanks in advance.
Matt_Alexander said:
Hello. So I have a problem. I have downloaded the file and placed all the files in the folder. I am running Linux Mint 17.3 based on Ubuntu but when I tried to boot remix OS I get stuck on a screen that's says Detecting Android-x86... Found at /dev/sda1 and nothing else. Did I do something wrong? How can I fix it? Thanks in advance.
Click to expand...
Click to collapse
Can you provide us with a picture? I haven't tried it with Mint tho
DroidTwe4kz said:
Can you provide us with a picture? I haven't tried it with Mint tho
Click to expand...
Click to collapse
It wont let me put a photo because of the post threshold as I am a new user. I still have the imgur link. imgur.com/4X8Jltm

Install RemixOS+Win10 32bit on Asus T100TA. Use full partition. No RmxTools

This thread is about how to install RemixOS on HDD without data.img or any size restriction. No need to for any tools to increase RemixOS size.
Update: The more I spend time on this the more I learn new things. We dont need ubuntu to edit grub.cfg. It can be done using Diskpart within Windows.
So the only thing we need Ubuntu right now is to copy the RemixOS files to ext4 partition before we begin installation.
Update 2:If you can boot using gparted (http://gparted.org) then you can directly copy the files to new partition. So no need for Ubuntu. Just copy the Remix ISO files to a subfolder in gparted USB. Once gparted is loaded, open terminal, reformat new partition to ext4, mount it and copy Remix ISO files from USB to partition. Now you can boot from Remix USB and install to this new ext4 partition.
Code:
sudo mkdir /home/user/RemixDir
suod mount -t ext4 /dev/mmcblk0p5 /home/user/RemixDir
sudo cp -r /lib/live/mount/medium/Remix32/* /home/user/RemixDir
/dev/mmcblk0p5 is the partition as seen from gparted.
/lib/live/mount/medium/ is the mount point of gparted USB drive as seen in gparted.
Original:
This is a long thread make sure you read it once before you actually do it. This is long because I documented every step.
Have 2 speedy SD USB3 cards. I am using Sandisk Ultra 64GB & 32GB. You can get away with one but you have to keep reloading Ubuntu and Remix.
Download and install EasyUEFI on Asus T100 from http://easyuefi.com/index-us.html
Download Universal-USB-Installer from http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/
Download Rufus 2.7 Portable from http://rufus.akeo.ie/
Download latest Ubuntu ISO and create bootable USB using Universal-USB-Installer. I am using Ubuntu 15.10. Also, Rufus cannot create persistent Ubuntu.
a. Make the USB persistent. We will need Ubuntu often.​
Get the bootia32.efi for your device from anywhere as Ubuntu does not provide it in their Amd64 ISO. The bootia32.efi from RemixOS did not work for me. For my ASUS T100, I got it from http://www.jfwhome.com/2016/01/04/latest-steps-to-install-ubuntu-on-the-asus-t100ta/ and place under /EFI/Boot folder in Ubuntu USB.
Download RemixOS 32-bit zip and extract it somewhere. Use Rufus to load Remix32 ISO to SD card. Universal-USB-Installer created USB will not boot.
Open the Remix OS SD card. Go to efi/boot and edit grub.cfg. We don’t need to put Windows entry here as we will do it later after everything is done.
Code:
menuentry 'RemixOS' --class android-x86 {
search --file --no-floppy --set=root /kernel
set root='hd1,gpt5'
linuxefi /kernel root=/dev/ram0 androidboot.hardware=remix_x86 androidboot.selinux=permissive INSTALL=1
initrdefi /initrd.img
}
Extract Remix ISO as well. Create a folder in Ubuntu USB called Remix32 and copy contents of Remix ISO to Remix32 folder in Ubuntu USB.
Start Windows on ASUS T100 and create new partition using Disk Management. Label it RemixOS. I would rather do it here than from Ubuntu so I don’t mess up Windows. Does not matter what filesystem you use here as you will format again from Ubuntu.
Connect Ubuntu USB to ASUS
Now boot Asus T100 and hit delete key like crazy to get into boot setup. If you see ASUS logo you are too late.
Disable secure boot and make Ubuntu USB first boot option. Save changes and restart.
When you see Try Ubuntu screen press CTRL+ALT+DEL, screen should resize to native resolution. Then select Try Ubuntu and let Ubuntu load.
Open Files, you should see RemixOS partition. Right click and select format.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Select Custom type​Name: RemixOS​Filesystem: ext3 (I tried ext4 before but had lot of problems running RemixOS so changed to ext3. You can use ext4 if you have problem with ext3.)​
After format complete, select Computer -> cdrom. This is the Ubuntu USB folder. You should have RemixOS folder here. Copy the content from this folder to RemixOS partition you created above.
Shutdown Ubuntu, plug Remix32 USB and get to boot from it.
You will see only RemixOS option here. You can press C and go to grub> prompt. Type ls to see all your partitions and make sure RemixOS partition has files are at ls (hd1,gpt5)/
If you see this message, something was not copied over from Remix32 ISO to new partition.
Android-x86 installer is not available
Press RETURN to run live version
After you answer/choose following options, Choose to Run Android-x86 not Reboot. You will be at RemixOS logo and install will continue and complete.
If you are reinstalling RemixOS after say changing partition from ext3 to ext4 or updating/upgrading RemixOS, skip Grub and Grub2 install.
But do over-write system.
Once reboot, you will not see RemixOS/Windows yet. It is still Windows only.
[*]Now we will boot Ubuntu again.
[*]This is where Linux purists are gonna kill me. I don’t know any other way to show Windows + RemixOS boot option, so if you know please let me know and I will update my post.
[*]Open Disks application in Ubuntu.
[*]Select EFI partition and mount it.
Lets boot Windows, open Admin Command Prompt and type Diskpart. Once in, type List Volume to see all partitions on disk. Select volume and then assign a drive letter to it. You can now edit grub.cfg.
Open grub.cfg from efi/boot and add Windows 10 entry as follows. This is a one time process, you dont have to redo this if you upgrade RemixOS, but if you over-write grub, this is needed.
Code:
set timeout=30
set gfxmode=1024x768
terminal_output gfxterm
menuentry "Remix OS" {
search --set=root --file /android-2016-03-01/kernel
linuxefi /android-2016-03-01/kernel quiet root=/dev/ram0 androidboot.hardware=remix_x86 androidboot.selinux=permissive
initrdefi /android-2016-03-01/initrd.img
}
menuentry "Windows 10" {
search --file --no-floppy --set=root /EFI/Microsoft/Boot/bootmgfw.efi
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}
We are not done yet . Now lets go back into Windows and open EasyUEFI
Create a new Linux or Other OS entry and select bootia32.efi from EFI partition. Make this first boot option as we will load Windows too from this. You should already have Windows entry pointing to right efi,
Second partition should just have Microsoft related files. If you see something that does not belong here, use Diskpart in Windows or Disks in Ubuntu to delete them.
Finally after 30 steps, restart and you have your RemixOS. Go ahead and install Google Play and if you get any error installing apps from play store, just remove your account from the device and add it again.
Enjoy....
Dude thanks I have a t100 that I could install the alpha on and this one nothing. I also have a Minix that run windows and I could never get the alpha working. The beta couldn't work on anything. What I did after a lot of tries was just copy all the files to a USB stick and use your grub file but I removed the 0,5 part for the HD. What happen was that when it loaded resident mode, it just formated the stick by itself and now it works !
Thanks you so much
Thanks bro, finally my VivoTab M81C its working with your method. Do you have all yours sensors working? (WiFi, bluetooth, gyroscope and GPS) I can just makeit work WiFi.
Still doesn't help those of us on Dell Venue 8 Pro.......
Glad it worked for you.
-Dante- said:
Thanks bro, finally my VivoTab M81C its working with your method. Do you have all yours sensors working? (WiFi, bluetooth, gyroscope and GPS) I can just makeit work WiFi.
Click to expand...
Click to collapse
Lets list the things that DON'T work: Camera (The light is always on but no video in Skype), Bluetooth (Can see a MISC device in my phone but cannot pair), Screen rotation, audio works but crashes often (I just restart the device). Hey, I can atleast run MS Word on it and play android games on it, so no complaints.
Take it step-by-step
meebner said:
Still doesn't help those of us on Dell Venue 8 Pro.......
Click to expand...
Click to collapse
I know how frustrating it is when everyone in the world can install it except us, all I can say is take it in steps. If your device does not even boot when you select Recovery or Guest mode, just press c and go to grub> prompt. From there try playing with grub commands as listed at http://www.gnu.org/software/grub/manual/grub.html#Commands. It might or might not work but you will learn something about grub
<Edit> Wanted to to add, when at grub> prompt type ls. It will list out your partitions, then if you try ls (hd0, gptN) where N is your partition, you will know what file system it is. You can they enter that info in grub.cfg or reboot and command edit (e) and add it there.
Depending on how much time you are ready to spend on getting RemixOS installed, you can search askubuntu. Usually you will get an idea about what is involved in getting ISO to boot in 32 bit EFI. See http://askubuntu.com/questions/392719/32-bit-uefi-boot-support.
Good luck.
Thanks for sharing your grub.cfg. I was already on the right track, but since I didn't know the syntax or the path to the Windows bootloader I couldn't do much more than make a Windows entry in the boot menu that didn't actually do anything. I was going nuts trying to find the proper grub entry for Windows. Now my Toshiba Encore 2 is dual booting perfectly. If only there was a way to install Remix on a NTFS partition, instead, so I could have more than 4gb of data... Just FYI, the 64-bit Remix works just fine; just point grub to the 64-bit file instead of the 32-bit file in your cfg.
Nice share
I tried almost everything, but nothing worked for 32-bit UEFI Windows users, because my system is legacy only and I couldn't test any of the methods myself but you can help them. Can I post a link to your post on my post?
Sent from my Moto G using XDA Labs
Sure, no problem
SalarX said:
Nice share
I tried almost everything, but nothing worked for 32-bit UEFI Windows users, because my system is legacy only and I couldn't test any of the methods myself but you can help them. Can I post a link to your post on my post?
Sent from my Moto G using XDA Labs
Click to expand...
Click to collapse
Sure you can. More people helped the better.
I feel lot of people have these great budget ultrabooks/netbooks which for any corporate reason never got software that the hardware deserved.
I modified this to run on my 64-bit T100HA, but just changing the 32-bit references to 64. It boots, but I am stuck with the same black screen I had when I used the bundled in Installer. I guess it just doesn't work for me. I'm giving it to my wife, and buying a Nook or Kindle Fire for comics. Kinda bummed.
Does it sleep properly?
Shanesgc said:
Does it sleep properly?
Click to expand...
Click to collapse
No it does not. The screen goes dim but does not go off completely.
TP4LG said:
No it does not. The screen goes dim but does not go off completely.
Click to expand...
Click to collapse
I don't think any version of android sleeps properly on this thing. Super frustrating.
Hurray! This worked for me - at least Remix OS is creating data right now. i just had to do one more thing:
- add the bootia32.efi from remix os volume into the efi trusted file and put remix os at the top of boot list directly from efi setup
- everything works. Clearly for Play store to work decently you need to remove unknown source AND set good time zone.
- now i was wondering if there is a way to change the size of the data.img to use most of my 16gb partition for remix os
lilins said:
Hurray! This worked for me - at least Remix OS is creating data right now. i just had to do one more thing:
- add the bootia32.efi from remix os volume into the efi trusted file and put remix os at the top of boot list directly from efi setup
- everything works. Clearly for Play store to work decently you need to remove unknown source AND set good time zone.
- now i was wondering if there is a way to change the size of the data.img to use most of my 16gb partition for remix os
Click to expand...
Click to collapse
Try RMXtools by @imadlatch
Sent from my Moto G using XDA Labs
SalarX said:
Try RMXtools by @imadlatch
Sent from my Moto G using XDA Labs
Click to expand...
Click to collapse
Thanks. that worked but as an internal drive can only be ntfs or fat32 i assume it is not possible to boot the remix pc from ntfs... so is there a way to tell android x 86 base boot files to look for data.img on my sdcard reader or use the whole sdcard as data disc ?
it would be the best way to have enought space to enjoy
lilins said:
Thanks. that worked but as an internal drive can only be ntfs or fat32 i assume it is not possible to boot the remix pc from ntfs... so is there a way to tell android x 86 base boot files to look for data.img on my sdcard reader or use the whole sdcard as data disc ?
it would be the best way to have enought space to enjoy
Click to expand...
Click to collapse
What format is your SD card?
I've not tried it, but maybe, you can keep your boot files (efi or isolinux) to the fat32 drive and move your all other files such as kernel, data.img, system.img, etc to an NTFS drive, overcoming the size limitation.
Sent from my Moto G using XDA Labs
---------- Post added at 04:32 PM ---------- Previous post was at 04:07 PM ----------
TP4LG said:
7. Added a new entry for Other OS and selected partition E and pointed to efi file at E:\efi\boot\bootia32.efi
Click to expand...
Click to collapse
If you could try one thing that would great. This might help many to achieve a data size partition greater than 4 gb
1. Moving all the files to an NTFS drive (keeping the EFI and isolinux folders in your current FAT32).
2. If that doesn't work, moving the kernel file back to your FAT32 drive.
3. If that fails too, moving initrd.img back to your FAT32 drive too.
4. If that fails, moving system.img back to your FAT32 partition too. (means in the end just leaving data.img on an NTFS partition)
Share your finding, by hit n trial
Sent from my Moto G using XDA Labs
I already tried something similar. I tried to install RemixOS on ext4 partition. It uses the entire partition size for OS, no data.img needed at all. But the downside is it does not turn WIFI ON. I can see lot of "intent" errors in logcat when I switch to prompt window by pressing ALT+F1 in RemixOS and typing logcat at the prompt.
I will try your suggestion later today and post results to this thread.
SalarX said:
What format is your SD card?
I've not tried it, but maybe, you can keep your boot files (efi or isolinux) to the fat32 drive and move your all other files such as kernel, data.img, system.img, etc to an NTFS drive, overcoming the size limitation.
Sent from my Moto G using XDA Labs
---------- Post added at 04:32 PM ---------- Previous post was at 04:07 PM ----------
If you could try one thing that would great. This might help many to achieve a data size partition greater than 4 gb
1. Moving all the files to an NTFS drive (keeping the EFI and isolinux folders in your current FAT32).
2. If that doesn't work, moving the kernel file back to your FAT32 drive.
3. If that fails too, moving initrd.img back to your FAT32 drive too.
4. If that fails, moving system.img back to your FAT32 partition too. (means in the end just leaving data.img on an NTFS partition)
Share your finding, by hit n trial
Sent from my Moto G using XDA Labs
Click to expand...
Click to collapse
I agree to test, but which file holds the args to look for the "ntfs drive" files instead of the fat32 drive where boot.efi file is?
Envoyé de mon SM-A510F en utilisant Tapatalk
lilins said:
I agree to test, but which file holds the args to look for the "ntfs drive" files instead of the fat32 drive where boot.efi file is?
Envoy�© de mon SM-A510F en utilisant Tapatalk
Click to expand...
Click to collapse
set root='(hd0,gpt5)'
This tells the boot manager to look for the kernel file to boot and initrd.img.
Regarding to look for boot.efi, that you already specify in your bios settings.
Now the question is, do we need to specify an argument to detect system.img and data.img or is that automatically done?
Sent from my Moto G using XDA Labs

[GUIDE][AIO]UEFI DUAL-BOOT + INCREASE STORAGE + MOUNT INTERNAL HDD Remix OS2.0 Beta

Want to have Android on your PC?
Looking to dual-boot alongside 64-bit Windows?
Want to increase internal storage beyond the maximum 8GB allocated by the Remix OS Beta PC installer?
Want to turn Android into an everyday replacement for Windows? Want to mount your internal hard disk drives and network shares?
Look no further for the ultimate guide!
After poring through countless threads, I managed to put together a working and rooted system of Remix OS, dual-booting alongside my UEFI Windows 10 setup for my own use, with storage space more than the maximum of 8GB (if installed via the Windows installer).
Below are the steps for how to install, dual-boot, root and mount 64-bit Remix OS 2.0 Beta on an ext4 partition.
SHRINKING/CREATING A PARTITION FOR REMIX OS
1. Open "Disk Management" in Windows.
2. Right-click on your system drive's primary partition (usually C, the largest-volume partition) and select "Shrink Volume". Set the desired new size for your system partition by subtracting your desired partition size for Remix OS. Mine is 20GB.
3. Wait and when you're done, right-click on the Unallocated Space. Select "New Volume" and format it to FAT32.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
1. INSTALL REMIX OS ON EXT4 PARTITION
1. Download Remix OS (I am using the 64-bit version) here.
2. Install it onto a USB drive using the installer executable.
3. Boot the USB drive using your motherboard's UEFI boot menu.
4. Press "Tab", then "e" with "Resident Mode" highlighted. Press the down arrow button to go down two lines. Hit space at the end of the line before "initrd" and press "space". Type "INSTALL=0" (in caps, without quotes at the end of the line).
5. Press "Ctrl+X" to run the installer.
6. Select the partition which you just created (a "vfat" partition, usually the last number in the hard disk) and would like to install Remix OS on.
7. Format it to "ext4" partition when prompted to do so (ext4 partition will use up all the available space for the data while fat32 will require you to create a "data.img" file of specified size). Select "Yes" when prompted to create GRUB and GRUB2 EFI bootloader, and when asked for a system-write image.
8. Boot into Remix OS Beta after installation is complete and go through the first start settings until you reach the home screen. Don't mess around too much here first. There are more things to configure.
2. ROOTING REMIX OS
1. Download Linux Mint Cinnamon 64-bit version here.
2. Install it onto a USB drive using Rufus.
3. Boot the USB drive using your motherboard's UEFI boot menu.
4. Download "remixroot.zip" from this post. Save the file in your Downloads folder.
5. Open File Manager and mount your ext4 partition (should be named "Android-x86") by clicking on it. Its contents should appear.
6. Open a Terminal Window. Type the following commands:
Code:
cd Downloads
sudo unzip remixroot.zip -d "/media/mint/Android-x86/android-2016-03-01"
cd /media/mint/Android-x86/android-2016-03-01
sudo sh remixroot.sh
7. If there are no error messages, shutdown Linux Mint.
3. DUAL-BOOT REMIX OS with WINDOWS
1. Boot into Windows.
2. Download Grub2Win
3. Install it by executing Setup.bat.
4. Open Grub2Win.exe for the first time and click on "Manage EFI Partition Modules. Ensure that the Grub2Win EFI Modules are installed. Set Grub2Win as the default EFI boot loader. Close Grub2Win.
5. Download and paste this grub.cfg in the directory where you installed Grub2Win.
6. Append (hd0,5) to the partition (hard disk, partition number) where you installed Remix OS.
7. Save grub.cfg. Open Grub2Win again and click on "Manage Boot Menu" to check if the settings are correct.
4. UPDATING SUPERSU BINARY
1. Boot into Remix OS Beta by restarting your computer. The Grub2Win EFI boot loader should appear with 2 options. Select "Remix OS".
2. Download the Google Play Services installer from here.
3. Install the Google Play Services downloader, download the package and reboot Remix OS when prompted.
4. Setup your Google Account for the Google Play Store.
5. Update "SuperSU" (if available) and download "Root Checker" to check for Root Access. A SuperSU prompt should be displayed.
6. Update SuperSU binary after launching SuperSU and reboot.
5. MOUNTING INTERNAL HDD
1. Download Paragon Mounter here.
2. Grant the application root access when prompted. It should automatically mount your NTFS system drives.
3. You may access them by opening File Explorer and navigating to "Storage>My Remix>Paragon_NTFS_X" for each partition.
That's all. Hope this guide has been of use. Give a thanks and like my site's Facebook page if you have found this guide helpful. I quite like Remix OS and think feel that Android can be quite a viable replacement for Windows, especially those who tend to browse the net and watch YouTube videos more. After all, we do use Android on our phones on a daily basis already.
If I will install grub2win on Windows, I don't need to install grub and grub2 bootloader on Remix OS installation, right?
Sent from my XT1095 using Tapatalk
There is no way getting this to work on a 32 bit uefi? I have hardware that supports 64 bit, but my stupid bios only supports 32 bit. Quite annoying!
lucasdeeiroz said:
If I will install grub2win on Windows, I don't need to install grub and grub2 bootloader on Remix OS installation, right?
Sent from my XT1095 using Tapatalk
Click to expand...
Click to collapse
Hmm, technically, you're right. However, I just hit "Yes" when prompted twice during the installation process to avoid any troubles. Just don't format your primary boot partition (the one with Windows) when prompted to do so. Installing grub and grub2 bootloader won't make any difference as they will be residing on the secondary partition and the computer will boot to the first partition always (the one with Windows on it).
It is also not really possible to add an entry for Remix OS in the Windows Boot Loader at this time, from what I've read as EasyBCD is limited for a UEFI boot loader, only good for legacy Bios. Therefore, I decided to use Grub2win as the defauly bootloader. Do tell me if it works!
joakimbo said:
There is no way getting this to work on a 32 bit uefi? I have hardware that supports 64 bit, but my stupid bios only supports 32 bit. Quite annoying!
Click to expand...
Click to collapse
Wait, what do you mean by your bios supports only 32 bit with 64 bit hardware? If I'm not wrong, UEFI BIOS does not have 32-bit/64-bit classification. It's the operating system. Do you mean a 32-bit Windows installation?
If you want to be on the safe side, you could try downloading the 32-bit Remix OS ISO image and install it using the same method by booting from your USB drive. However, since you have 64-bit hardware, you should be able to install the 64-bit RemixOS fine, regardless of whether you have a 32/64-bit Windows. Have you tried it?
@XDantheManX, To get 20GB for Remix OS, do I have to follow all the 5 steps? Please be more simple. I seem to get lost at your 1st step, I am so sure if I installed the Remix OS, it will go to the New Volume just previously made.
I want to dual boot Remix OS with Ubuntu. I've already installed Remix on a ext4 partition but now I'm unable to add Remix's boot entry in GRUB2's boot selection menu. Could you pleeeease help me with that? Please?
tithy said:
@XDantheManX, To get 20GB for Remix OS, do I have to follow all the 5 steps? Please be more simple. I seem to get lost at your 1st step, I am so sure if I installed the Remix OS, it will go to the New Volume just previously made.
Click to expand...
Click to collapse
Yes, you may install Remix OS on the New Volume from the partition you have shrunk. You may set it to 20GB or more, depending on how much you'd like to shrink the volume by.
As for increased storage space, you'll just have to follow step 1 and 3 to dual boot with windows. Install Remix using the USB installer and add its boot entry into Grub2win. The other steps are for rooting Remix OS (optional) and mounting your Windows partitions (eg. C: drive) to access them in Remix OS.
afiur.fahim said:
I want to dual boot Remix OS with Ubuntu. I've already installed Remix on a ext4 partition but now I'm unable to add Remix's boot entry in GRUB2's boot selection menu. Could you pleeeease help me with that? Please?
Click to expand...
Click to collapse
I am assuming you installed Remix OS on a separate partition using the USB installer. To dual boot Remix OS, you'll have to add a custom menu entry into Ubuntu's GRUB2. Download the grub.cfg file attached in the first post, copy the highlighted line of code in the screenshot (adjust hd (0,5) accordingly) and create a file in the /etc/grub.d folder
http://ubuntuguide.net/manually-addingremoving-entries-to-grub-2-menu
XDantheManX said:
Wait, what do you mean by your bios supports only 32 bit with 64 bit hardware? If I'm not wrong, UEFI BIOS does not have 32-bit/64-bit classification. It's the operating system. Do you mean a 32-bit Windows installation?
Click to expand...
Click to collapse
UEFI indeed has 32-bit and 64-bit implementations, and cheaper systems use 32-bit UEFI while running 64-bit processors. Poorly coded operating systems (actually just Linux) do not handle booting a 64-bit OS from 32-bit UEFI because again, bad programmers. And that assessment is from Intel, not me.
https://blogs.intel.com/evangelists/2015/07/22/why-cheap-systems-run-32-bit-uefi-on-x64-systems/
is there any way to usb tether from android phone? #littlebit_oot
XDantheManX said:
I am assuming you installed Remix OS on a separate partition using the USB installer. To dual boot Remix OS, you'll have to add a custom menu entry into Ubuntu's GRUB2. Download the grub.cfg file attached in the first post, copy the highlighted line of code in the screenshot (adjust hd (0,5) accordingly) and create a file in the /etc/grub.d folder
Click to expand...
Click to collapse
Thanks-a-lot! I was able to add boot entry by editing '40_custom' file
Single boot remix os
Hi all. is there any way to boot remix os from hdd. i have installed remix os from usb use "install=1" its worked for me. i have 32 bit uefi .
Hi! I have a question? I have tablet Acer Asire switch 10E and i guess iam able to do do all the steps in the tutorial however, I have already tried once but I was trynig to install normal Android instead, but instalation was kind of same and I remember it that the instalater asked me: Do you want to install grub-2 bootloader? I hit "yes" but then when i restarted the laptop i messed up with windows entry completely eventhogh I installed it on seperated HDD partion... So question is: is it gonna be the same case here? I do not wanna destroy my laptop again, but I wanna try it! Can anyone help me? Note: My laptop does not have real HDD. It has some kind of EMMC and I know that grup call it as mmcblk(number of partion)

[GUIDE] Remix OS 3.0 alongside GRUB2

Hello everyone!
After a long day yesterday trying to install Remix OS alongside my already existing Windows 10 and Fedora 24 installations, managed by GRUB2, I finally completed the task.
I decided that I'm going to save other people wanting to do this some trouble, and post the updated guide, since personally I couldn't find it anywhere. It's mainly based on this guide and other similar ones (including the one by @remixtester here on XDA), and since RemixOS changed the install process a little bit, now it's actually done in 10 easy steps.
Recommended system requirements:
2 GHz dual core processor or better
2 GB system memory
Minimum 8 GB of free hard drive space
Internet access is helpful
1. Download the official latest Remix OS 3.0
2. Install Remix OS to a flash drive, using the provided Windows tool. If you don't have Windows, use Rufus or similar piece of software for your OS.
3. Create an at least 8 GB ext4 partition, and disable secure boot. Remember the partition number you are assigned
4. Boot from the flash drive, from the menu that follows click "e" on Resident Mode.
5. Delete > DATA= USB_DATA_PARTIOTION=1 and replace it with > INSTALL=1
6. Select your partition number, format it to ext4
7. Skip GRUB2, skip EFI GRUB and skip Write/Read Access
8. Reboot back to your Linux distro and open the Terminal
9. Log in as superuser and input: > gedit /etc/grub.d/40_custom
Add (do not remove the existing text in the file) the following text to the file. Replace the "X" in set root='(hd0,gptX)' with your partition number. Also paste the text exactly as is, the formatting is crucial for it to work:
HTML:
menuentry 'Remix OS' --class android-x86 {
insmod part_gpt
insmod ext2
set root='(hd0,gptX)'
linuxefi /RemixOS/kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive SRC=/RemixOS UVESA_MODE=1920x1080 verbose logo.showlogo=1
initrdefi /RemixOS/initrd.img
}
10. Rebuild your GRUB:
For Fedora distribution:
grub2-mkconfig -o /boot/efi/EFI/Fedora/grub.cfg
For other Linux distributions:
grub2-mkconfig -o /boot/grub2/grub.cfg
Alternatively:
update-grub
Upon reboot you'll see Remix OS added to your OS entries and you should be able to boot up and use it just fine.
@engmia Great guide! Although I prefer Grub-Customiser!
The GUI makes everything so easy!
Just to be sure...
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
If that's my partition list, and that the 20 GO is the partition I created for Remix OS, then I should write set root='(hd0,gpt4)' ?
7. SKIP GRUB2, EFI GRUB and Write/Read Access
Click to expand...
Click to collapse
So thats skip Grub2, skip EFI grub and Yes to W/R Access?
set root='(hd0,gptX)'
Click to expand...
Click to collapse
https://drive.google.com/open?id=0B9L5kBcmfDqVbWxRU29CbDh4S00
This means it will read set root='hd2,gpt4)'?
Another thing is it cant find /RemixOS/kernel
any ideas?
Ok followed each step by step and i end up with
something (hd2,gpt4) something
must load kernel first
Click to expand...
Click to collapse
on bootup.
Now previously i had it installed via windows 10 on my ssd where i deleted the entry from windows boot manager and put the entry in grub. Everything booted fine. But i didnt want it on my ssd. So i followed this to put it on its own partition on a hdd with ubuntu on it. Also when i try to do the grub2-mkconfig it says "command not recognized did you mean grub-mkconfig"
Vodkanakas said:
Ok followed each step by step and i end up with
on bootup.
Now previously i had it installed via windows 10 on my ssd where i deleted the entry from windows boot manager and put the entry in grub. Everything booted fine. But i didnt want it on my ssd. So i followed this to put it on its own partition on a hdd with ubuntu on it. Also when i try to do the grub2-mkconfig it says "command not recognized did you mean grub-mkconfig"
Click to expand...
Click to collapse
In Ubuntu you can just do
Code:
sudo update-grub
Ok still cannot get this thing going. So heres the run down
UEFI Boot only in bios
sda1,2,3,4 Only windows 10 it makes 4 partitions
sdb1 storage
sdc1 efi
sdc2 ubuntu
sdc3 RemixOS
sdc4 Swap
so i do everything that the instructions say and i get an error for unable to find /RemixOS/kernel and i need to load the kernel first. i think its detecting the partition now due to no having the disk hd2,gpt3 error
Is it possible to install grub/theme using Windows?
Wryth said:
Just to be sure...
If that's my partition list, and that the 20 GO is the partition I created for Remix OS, then I should write set root='(hd0,gpt4)' ?
Click to expand...
Click to collapse
Yes, correct.
Vodkanakas said:
Ok still cannot get this thing going. So heres the run down
UEFI Boot only in bios
sda1,2,3,4 Only windows 10 it makes 4 partitions
sdb1 storage
sdc1 efi
sdc2 ubuntu
sdc3 RemixOS
sdc4 Swap
so i do everything that the instructions say and i get an error for unable to find /RemixOS/kernel and i need to load the kernel first. i think its detecting the partition now due to no having the disk hd2,gpt3 error
Click to expand...
Click to collapse
This sounds like an error due to a wrong path set in the GRUB configuration. Are you certain you have set the correct number for your device? Do you have 3 separate hard drives on your device?
engmia said:
This sounds like an error due to a wrong path set in the GRUB configuration. Are you certain you have set the correct number for your device? Do you have 3 separate hard drives on your device?
Click to expand...
Click to collapse
Yes three seperate hdd in computer and set root='(hd2,gpt3)'
Vodkanakas said:
Yes three seperate hdd in computer and set root='(hd2,gpt3)'
Click to expand...
Click to collapse
Sorry for the late reply. Frankly I don't know how to help you, I can only repeat that to me it looks an error in the partition path. Try double checking what number has your distribution been assigned to terminal.
Guys, FYI we are reworking the INSTALL=1 installer. It should be done within 2-3 weeks. Initial release might be unofficial.
i clicked remix os on the grub and this messages shows up
error: cant find command `linuxefi';
error: cant find command `initrdefi'.
Press any key to continue.....
Click to expand...
Click to collapse
what should i do now? my resolution is 1366x768, http://imgur.com/a/yz4xs
@Ravagioli in grub customizer change linuxefi to linux and initrdefi to initrd.
Can I set the data partition to a specific partiorion on my hdd ??
I have booted RemixOS with no problems however i think it would be better if i could mount one of my hard disk partition as the data partition !!
How can I do that ??
I'm on Kali linux and refind bootmanager !!
Is there a way to disable the Flashing Remix OS logo and see exactly what's going on in the terminal?
It seems to stick for an awful long time on this screen. I've put the files in a seperate partition in Ubuntu /dev/sda3 (hd0,3)
The boot sequence seems to go fine right until this screen, and I'm using the UVESA=1920x1080
I have a Lenovo laptop, booting in legacy mode with an intel chipset.
Thanks for your help
Lisa
This can only be done when install Remix to flash drive? What about hard drive?
uttarayan21 said:
I have booted RemixOS with no problems however i think it would be better if i could mount one of my hard disk partition as the data partition !!
How can I do that ??
I'm on Kali linux and refind bootmanager !!
Click to expand...
Click to collapse
pipyakas said:
This can only be done when install Remix to flash drive? What about hard drive?
Click to expand...
Click to collapse
This guide is for installing it to the hard drive?
Just make sure to check what the updates in the install procedure are, as you were informed the INSTALL=1 will be reworked and something might've changed.
lisa107b said:
Is there a way to disable the Flashing Remix OS logo and see exactly what's going on in the terminal?
It seems to stick for an awful long time on this screen. I've put the files in a seperate partition in Ubuntu /dev/sda3 (hd0,3)
The boot sequence seems to go fine right until this screen, and I'm using the UVESA=1920x1080
I have a Lenovo laptop, booting in legacy mode with an intel chipset.
Thanks for your help
Lisa
Click to expand...
Click to collapse
I'm quite sure there was a full text boot option somewhere, try Googling it. As far as I could remember, the flashing logo was there when the install procedure wasn't completed successfully. Can you boot from a USB drive?
Make sure to see the last few posts. @Vioner informed the install=1 will be reworked.
engmia said:
This guide is for installing it to the hard drive?
Just make sure to check what the updates in the install procedure are, as you were informed the INSTALL=1 will be reworked and something might've changed.
I'm quite sure there was a full text boot option somewhere, try Googling it. As far as I could remember, the flashing logo was there when the install procedure wasn't completed successfully. Can you boot from a USB drive?
Make sure to see the last few posts. @Vioner informed the install=1 will be reworked.
Click to expand...
Click to collapse
Thanks, but I managed to work out what my problem was, you need to ensure the SRC= command points to the remix 'system.img' I wrote everything up here for those still having problems:
https://forum.xda-developers.com/re...oot-screen-t3329554/post70838891#post70838891
lisa107b said:
Thanks, but I managed to work out what my problem was, you need to ensure the SRC= command points to the remix 'system.img' I wrote everything up here for those still having problems:
https://forum.xda-developers.com/re...oot-screen-t3329554/post70838891#post70838891
Click to expand...
Click to collapse
Awesome, happy to hear you worked it out.

Categories

Resources