Remix OS - Installation, ROOTing & more! - Remix OS for PC

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

Related

[ OS ] Builduntu Install Disc v2 - Android ROM Compiling OS

--- copied with permission from nathanpfry.com ---​
Builduntu is a custom branch of the Ubuntu operating system, based on my guide here for preparing Ubuntu 16.04 to compile Android ROMs from source. It includes everything you need to sync with the repository of your choice (Cyanogenmod, AOKP, AOSP, etc) and start building.
I am not responsible for any damage you may cause to your system/files while trying to install Builduntu. This has been tested and verified working by me, so if you break Windows or your system won't boot, it's your fault.
This thread is not the place to ask how to install Linux or Dual Boot!!! These topics are well documented elsewhere and can be easily found in a few seconds on Google.
Thanks to Canonical, Google and me.
Features:
- Xubuntu 16.04 LTS base system
- Installed all necessary packages for compiling (list available in the guide link above)
- Unnecessary junk removed (media players, games etc.)
All you have to do is download the source!
The only requirement is that your host machine supports a 64 bit OS. 32 bit systems will not work!
Instructions:
1. Use your favorite image burning software to write the builduntu ISO to a blank DVD. Will not fit on a CD
2. Boot the disc. When the graphical installer starts, click "Install Xubuntu"
3. Follow the on-screen instructions to select language, username, etc. * Note * When setting up partitions, I recommend doing it yourself if you know how. If not, that's fine, let Ubuntu decide for you.
4. When the installation finishes, reboot and eject the installation media.
5. Sync the Android source locally:
~ A program called "repo" lets you communicate with git repositories and download source code. The following command will install it:
Code:
mkdir ~/bin && curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo && chmod a+x ~/bin/repo
~ Use nano to edit ~/.bashrc
Code:
sudo nano ~/.bashrc
~ At the very bottom (use the Page Down key) paste this code to a new (empty) line:
Code:
export PATH=~/bin:$PATH
~ Save it. In nano that would be Ctrl-O and then Enter. Then Ctrl-X to exit back to a prompt. Restart bash:
Code:
source ~/.bashrc
~ In the terminal, navigate to where you would like to download the Android source code. The command below will make it in your home folder, but if you have limited space you may want to create it somewhere else. Faster is better, i.e. SSD would be best, USB external is basically unusable.
Code:
mkdir ~/android
cd ~/android
~ Now to initialize the repo. Decide the flavor of Android to build, i.e. AOKP, CyanogenMod, AOSP etc.
For the purposes of the tutorial, here's the command for CyanogenMod 13:
Code:
repo init -u https://github.com/CyanogenMod/android.git -b cm-13.0
repo sync
When that is finished downloading, you're ready to start compiling ROMs!
Download Builduntu ISO:
Click here for mirrors!
Let me know how it works for you!
Feel free to buy me a Zico (donate) if you like my work. It would be greatly appreciated!
Please hit the "Thanks" button if this project helps you out!​
Code:
[U][B]Changelog:[/B][/U]
v1.0 - First Release Mar 05 2014
v1.1 - Rebuilt from scratch the hard way
v1.2 - 4/20 Release - Update to 14.04 LTS Official
v2.0 - Update to 16.04 LTS with OpenJDK 8 for Android M builds
This is just awesome +1
This is Xubuntu 13.10...
I burned image on DVD using Brasero (ubuntu program) and run installation process from that DVD.
And before the end of installation I got this error:
{
"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"
}
Of course "buildbuntu" doesn't boot, some errors with reading/writing sda partition.
Luckly I installed it on my test drive so my workspace isn't damaged.
lozohcum said:
This is Xubuntu 13.10...
I burned image on DVD using Brasero (ubuntu program) and run installation process from that DVD.
Click to expand...
Click to collapse
I installed it to a fresh system just fine yesterday, not sure what your issue could be from. Could you post an installation log? Did you verify the md5sum of your downloaded file?
It is in fact Xubuntu 14.04. Canonical hasn't bothered changing the initial splash screen yet because it's still in beta. If you run the Live instance and check the version of ubuntu it correctly identifies as Trusty Tahr.
sylentprofet said:
I installed it to a fresh system just fine yesterday, not sure what your issue could be from. Could you post an installation log? Did you verify the md5sum of your downloaded file?
It is in fact Xubuntu 14.04. Canonical hasn't bothered changing the initial splash screen yet because it's still in beta. If you run the Live instance and check the version of ubuntu it correctly identifies as Trusty Tahr.
Click to expand...
Click to collapse
How to take installation log?
lozohcum said:
How to take installation log?
Click to expand...
Click to collapse
After the error appears it should load you into a live desktop session. The install log will be located there, perhaps in /var/log, /var/log/installer or the guest session home directory. Look around for .log files
edit : delete
I was hoping for a ubuntu base same as your virtual os..xubuntu ui is different and difficult
Ccahe error
Im trying to compile tihe ccache and when i set it up i recieve this error
bash: prebuilts/misc/linux-x86/ccache/ccache: No such file or directory
any ideas on how i can fix this would be appreciated
thanks
perfectpitch said:
Im trying to compile tihe ccache and when i set it up i recieve this error
bash: prebuilts/misc/linux-x86/ccache/ccache: No such file or directory
any ideas on how i can fix this would be appreciated
thanks
Click to expand...
Click to collapse
First, make sure ccache is installed (I'm reasonably sure it is out of the box)
Code:
sudo apt-get install ccache
If that's ok, check this link below and scroll down to Step 4a (optional).
http://forum.xda-developers.com/showthread.php?t=2506695
Ccache is not necessary and not ideal for all systems, so you may just want to disable it in your build process. Hope this helps.
Thanks I'll check it out
Sent from my Nexus 4 using XDA Premium 4 mobile app
so i dual booted ubuntu 13.10 on my laptop... but i couldn't build on it due to some stupidity... anyway, if someone could answer me some questions, maybe I'll uninstall ubuntu and switch to this since it's way easier for me.
1) did anyone successfully dual boot it? even with UEFI on?
2) can we transfer the source codes from an OS to another by packaging them and then extracting them in the new xubuntu? will it work that way?
Sent from my Nexus 4
lozohcum said:
This is Xubuntu 13.10...
I burned image on DVD using Brasero (ubuntu program) and run installation process from that DVD.
And before the end of installation I got this error:
Of course "buildbuntu" doesn't boot, some errors with reading/writing sda partition.
Luckly I installed it on my test drive so my workspace isn't damaged.
Click to expand...
Click to collapse
Hello, have you already solved that problem? Because since hours, even days I try to install builduntu on my notebook, but always got that error too!. I have usb legacy enabled, raid disabled and uefi boot enabled. I have a small ssd and a normal hdd. What am I doing wrong. I cannot get it to work, neither with manual editing the moint points, nor with automatically install through the system.
Many thanks!!
rodman01 said:
Hello, have you already solved that problem? Because since hours, even days I try to install builduntu on my notebook, but always got that error too!. I have usb legacy enabled, raid disabled and uefi boot enabled. I have a small ssd and a normal hdd. What am I doing wrong. I cannot get it to work, neither with manual editing the moint points, nor with automatically install through the system.
Many thanks!!
Click to expand...
Click to collapse
I never received an installation log from anyone so I have no way to start to figure out what went wrong.
It seems like many users have installed successfully, but a few are encountering errors like the one mentioned above.
I don't know how to help you without more information about the problem and your system. It could be a million things with how vague the descriptions are.
rodman01 said:
Hello, have you already solved that problem? Because since hours, even days I try to install builduntu on my notebook, but always got that error too!. I have usb legacy enabled, raid disabled and uefi boot enabled. I have a small ssd and a normal hdd. What am I doing wrong. I cannot get it to work, neither with manual editing the moint points, nor with automatically install through the system.
Many thanks!!
Click to expand...
Click to collapse
I haven't fixed it. I installed xubuntu and ocnfigured it on my own.
I wasted two DVDs for that Builduntu :/
i installed xubuntu today, it boots without a CD (just to confirm it's installed)
inside settings there's a button called "Install RELEASE", should i? i mean... it's already installed :S
Sent from my Nexus 4
sylentprofet said:
I never received an installation log from anyone so I have no way to start to figure out what went wrong.
It seems like many users have installed successfully, but a few are encountering errors like the one mentioned above.
I don't know how to help you without more information about the problem and your system. It could be a million things with how vague the descriptions are.
Click to expand...
Click to collapse
Yes sure can be many things....but here attached are some log files one/two from my try a couple of minutes ago. Problem is, that I already tried so many things and absolutely not sure whether it is my fault, my hardware or perhaps a bad download, in short where I have to look for the solution? Perhaps the log files give some useful information to you :fingers-crossed:
lozohcum said:
I haven't fixed it. I installed xubuntu and ocnfigured it on my own.
I wasted two DVDs for that Builduntu :/
Click to expand...
Click to collapse
Thanks for the info...can you pass me the download link? Haven't found it after a first and quick search ...
Edit: found it in the meantime....
update
In the meantime, I have also downloaded the "pure" Xubuntu and got it installed with the very first try. Exact with the same settings as last tries with builduntu. Dev environment is installed and source codes downloaded. At the moment I am building my first rom with this software. Hopefully it finishes without errors :fingers-crossed: .
i downloaded the sources on a VM, but couldn't make it work on my secondary OS after compression, tranfser, and extraction of the sources...
now redownloading from scratch on a 1Mbps (that's 128KB/s max) speed
Sent from my Nexus 4

[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)

[WIP] Remix OS for PC W/ Xposed Project ROC - V3.0.207 [Pre-rooted] [Busybox] [GAPPS]

I present to you
Project ROC - Remix OS Custom
{
"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 spend countless nights developing roms, awesome mods, and scripts, if you wish to support my work and future developments you can donate to me via the link here!
Features:
1. XposedFramework V86 X86
2.Pre-rooted with SuperSU 2.76
3.Busybox
4.CM File Manager (root access to files)
5.Deodexed
6.Debloat
7.Adaway
8.GAPPS
Changelog for Project ROC
V3.0.207
Updated to version 3.0.207
Updated GAPPS
Updated SuperSU
V3.0.206
Xposed Framework V86 X86
SuperSU 2.76
Busybox
CM File Manager
Deodex
Adaway
Changelog for Remix OS 3.0.207 by Jide
Remix OS version: 3.0.207
Release date: November 25, 2016
Remix OS Build Number - 64-bit: B2016112101
Remix OS Build Number - 32-bit: B2016112201
Release notes:
1. Added Verbose mode to save log files for easier debugging.
Guidelines: https://github.com/JideTechnology/Remix-OS-For-PC/wiki
2. Updated Linux kernel to 4.4.30
3. Added "Never sleep option" to be seen in languages other than English
4. Fixed a bug there was an issue remembering the last selected system in your boot menu
__________________________________________________ _____________
If you experience any bugs or issues, report it through our Verbose mode!
Changelog for Remix OS 3.0.206 by Jide
Release date: October 11, 2016
Release notes:
- Houdini update resolved issues with apps like Snapchat and Candy Crush
- Fixed most dual GPU issues
- Fixed keyboard input issues when key-mapping is activated
- Fixed conflicts between mouse and keyboard input when key-mapping is activated
- Added Wi-Fi drivers for Realtek wireless cards - rtl8723bs, rtl8723bu, rtl8812au
- Updated Gaming Toolkit to v.1.2.1
- Improved boot menu
- Added touchscreen drivers from Next Window (touchscreen manufacturer)
- Ads have been removed from the 'My apps' section of your app drawer
Click to expand...
Click to collapse
Install Instructions:
LEGACY
1. Extract Project ROC
2. Run Remix OS Installation Tool
3. Select Project ROC with the corresponding version number for the ISO
4. Select desired install location: Hard Disk or USB
5. Select target drive and partition
6. Press OK and allow the installer to finish
7. Close the installer and navigate to the installer location (Since I installed to my C: partition, it was located at C:\RemixOS\)
8. Open menu.lst with your favourite text editor (I used Notepad++)
9. Add this: REMOUNT_RW=1 after SRC=RemixOS/
Make sure the red code is added like this:
Example:
Code:
default 0
timeout 10
title Resident mode - All your data and apps are saved
find --set-root /RemixOS/kernel
kernel /RemixOS/kernel root=/dev/ram0 androidboot.hardware=remix_x86 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 SRC=RemixOS/[B][COLOR="Red"] REMOUNT_RW=1 [/COLOR][/B]DATA= CREATE_DATA_IMG=1
initrd /RemixOS/initrd.img
boot
10. Save and reboot to Project ROC
11. All versions from .205 will have the Xposed Framework files included, but must be manually installed to be able to use. If you want to install and use Xposed Framework then follow these steps!
Boot Remix OS with Debugging
To do this add the flag: "DEBUG=1" just like earlier with the "REMOUNT_RW=1" flag! (You can remove it once you have installed Xposed!)
When it asks you to type exit do not type exit, instead follow this: 1. "su" (allow su permission 2. "cd /system/xposed" 3. "sh flash-script.sh" 4. "exit" 5. "exit"
e.g.
>su
>cd /system/xposed
>sh flash-script.sh
>exit
>exit
12. Update all apps via Google Play Store
UEFI
Thanks to @Vioner for letting me use his instructions!
Now you need to make the change persistent:
For Remix OS installed on hard drive:
LEGACY BOOT:Apply adequate changes to grub.cfg or menu.lst file in your Remix OS installation folder. Editing both files won't hurt
UEFI BOOT: Apply adequate changes to EFI:/boot/grub/grub.cfg file in your ESP (EFI System Partition) - example path Z:/boot/grub/grub.cfg
Instruction on how to access grub.cfg file on Windows
BEWARE, ACCIDENTALLY REMOVING OR MODIFYING SOME FILES FROM ESP PARTITION WILL RENDER SYSTEMS NOT BOOTABLE - WILL REQUIRE RECOVERY TOOLS.
To access ESP, you need to:
start cmd.exe as administrator
Kill Explorer -> Mount the ESP -> Start the Explorer as admin using below commands:
Code:
taskkill /f /im explorer.exe
mountvol Z: /s
explorer.exe
If you fail to mount the system partition then it's probably already mounted. Start notepad as administrator then browse My computer and you should find a SYSTEM drive - that's ESP.
Edit & save the EFI:/boot/grub/grub.cfg file
Reboot and test if the changes worked(if you reboot into Windows, the ESP should be inaccessible again - it automatically unmounts upon restart)
For Remix OS installed on a USB stick:
You will need to access USB partition labeled REMIXOSSYS.
Filesystem of this partition is not supported by Windows, so without any 3rd party apps you won't be able to modify the needed files.
You will need to either use a Linux distribution or edit from Remix OS on other device. Be dexterous
LEGACY BOOT:Apply adequate changes to REMIXOSSYS:/SYSLINUX.CFG
UEFI BOOT: Apply adequate changes to REMIXOSSYS:/boot/grub/grub.cfg
Add a post with your results after using the guide and hit Thanks it it worked for you List your device brand and model & GPUs models + Remix OS version
Downloads:
Google Drive
32-bit: V3.0.207
V3.0.207 (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11) https://drive.google.com/open?id=0B-mpriMWe2WUX1RkaWhGTXFxQlU
V3.0.207 GAPPS (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11) https://drive.google.com/open?id=0B-mpriMWe2WUZm04R2o2U3lIR00
64-bit: V3.0.207
V3.0.207 (XPOSED NOT INCLUDED, IT CAUSED BOOT PROBLEMS https://drive.google.com/open?id=0B-mpriMWe2WUUWtVVW5hLXdYUkk
V3.0.207 GAPPS (XPOSED NOT INCLUDED, IT CAUSED BOOT PROBLEMS) https://drive.google.com/open?id=0B-mpriMWe2WUaFVUS0JBVGZGN3M
32-bit: V3.0.206
V3.0.206 (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11)https://drive.google.com/open?id=0B-mpriMWe2WUclVMWUZnZ1dIY0E
V3.0.206 GAPPS (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11) https://drive.google.com/open?id=0B-mpriMWe2WUNk5ZWDUxTU9ralE
64-bit: V3.0.206
V3.0.206 (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11) https://drive.google.com/open?id=0B-mpriMWe2WUUTl1ZDlRN3BZLWs
V3.0.206 GAPPS (XPOSED INCLUDED BUT MUST BE INSTALLED USING STEP 11) https://drive.google.com/open?id=0B-mpriMWe2WUR2JiVmZKelRKdU0
Credits:
Jide for providing us with an awesome OS
@rovo89 for Xposed Framework
@Chainfire for SuperSU
@Stericson for Busybox
@mrRobinson for Adaway
@HypoTurtle You are the real MVP, you quite literally made this possible, from creating modified files, to helping my stubborn brain understanding what to do!
@[email protected] You are just awesome bro, Giving me all the information I need!
@PizzaG for linking me to the the right places! You saved me so much time!
Android (Google) for Android
CyanogenMod Team for the apps
Donations
ORIOL BLADE RADUA - Thanks for the first donation; It means a lot to me!
I spend countless nights developing roms, awesome mods, and scripts, if you wish to support my work and future developments you can donate to me via the link here!​
....is there any chance for a 64bit system support?
<<<New World Order (NWO)>>>
[email protected] said:
....is there any chance for a 64bit system support?
<<<New World Order (NWO)>>>
Click to expand...
Click to collapse
Yes there is, it will probably be done by tomorrow!
moman2000 said:
Yes there is, it will probably be done by tomorrow!
Click to expand...
Click to collapse
Any news on 64 version?
Ota2501 said:
Any news on 64 version?
Click to expand...
Click to collapse
It is done! Uploading now!
moman2000 said:
It is done! Uploading now!
Click to expand...
Click to collapse
...great news!
<<<New World Order (NWO)>>>
[email protected] said:
...great news!
<<<New World Order (NWO)>>>
Click to expand...
Click to collapse
MEGA is being slow right now, so instead, I will upload to Google Drive first then MEGA later!
ETA 4 MINS
V3.0.203 x64 is out now!
moman2000 said:
V3.0.203 x64 is out now!
Click to expand...
Click to collapse
And off course, thank you very much, sire.
Ota2501 said:
And off course, thank you very much, sire.
Click to expand...
Click to collapse
My pleasure!
moman2000 said:
My pleasure!
Click to expand...
Click to collapse
Did all the things in instructions. Installed it on NTFS hard disk partition. It shows unknown file system and grub rescue mode.
pra27 said:
Did all the things in instructions. Installed it on NTFS hard disk partition. It shows unknown file system and grub rescue mode.
Click to expand...
Click to collapse
Can you get into Windows, or this error happening when you boot Remix OS? This seems to be related to the menu.lst file, did you edit it like shown in the picture?
moman2000 said:
Can you get into Windows, or this error happening when you boot Remix OS? This seems to be related to the menu.lst file, did you edit it like shown in the picture?
Click to expand...
Click to collapse
Yes I can boot into Windows. This error only appears whenever I install remix os and I just copy pasted and saved carefully all what you have posted in first post.
And that is same as the picture I think.
pra27 said:
Yes I can boot into Windows. This error only appears whenever I install remix os and I just copy pasted and saved carefully all what you have posted in first post.
And that is same as the picture I think.
Click to expand...
Click to collapse
Go to the remixOS folder and open the uninstaller, then reinstall it, open the menu.lst file and just add this: REMOUNT_RW=1 after SRC=RemixOS/
eg
default 0
timeout 10
title Resident mode - All your data and apps are saved
find --set-root /RemixOS/kernel
kernel /RemixOS/kernel root=/dev/ram0 androidboot.hardware=remix_x86 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 SRC=RemixOS/ REMOUNT_RW=1 DATA= CREATE_DATA_IMG=1
initrd /RemixOS/initrd.img
boot
Is this version working in Ubuntu?
SM-N920C cihazımdan Tapatalk kullanılarak gönderildi
matomik said:
Is this version working in Ubuntu?
SM-N920C cihazımdan Tapatalk kullanılarak gönderildi
Click to expand...
Click to collapse
Yes it will work, just use grub-customizer to add an entry for remix os!
But I have realised that it wont work instantly, you will need to use windows, install it (follow the instructions),and then boot it (not from ubuntu's grub but windows), let it boot up then restart and boot from grub! If you have skype I could tell you how to do it easily! Just PM me!
you can fix playback 1080p problem
pra27 said:
Did all the things in instructions. Installed it on NTFS hard disk partition. It shows unknown file system and grub rescue mode.
Click to expand...
Click to collapse
Your problem is with the grub; not sure which grub @moman2000 added but if it's the one jide included then hopefully the ntfs grub module was also included and it just needs to be insmod'ed in grub.cfg/menu.lst
For me 64bit version don't start. Bootloop on remixos. With official version no problem.
framir said:
For me 64bit version don't start. Bootloop on remixos. With official version no problem.
Click to expand...
Click to collapse
I suspect it is Xposed not being comaptible with x64, I will need to ask @rovo89 where the files go for x64!

~RemixOS_x64- UEFI or Legacy -Xposed-SuperSU-Gapps~

~RemixOS_x64- UEFI or Legacy -Xposed-SuperSU-Gapps~
Based on version 3.0.207
UEFI Install
1- Download and extract the package I made
2- Run the installer and select the ISO file
3- Reboot and select: Remix OS option
4- Once in RemixOS open the play store and UPDATE SuperSU
5- Open SuperSU and update the binary. It should say success!!
6- Install XposedInstaller_3.0_alpha4.apk or XposedInstaller_3.1.1.apk (i installed 3.0 alpha4 but doesnt matter which)
7- Reboot and enjoy your RemixOS with newest SuperSU, working Xposed and Gapps
Legacy Install
1- Download and extract the package I made
2- Run the installer and select the ISO file
3- Reboot and select: Remix OS option
4- Once in RemixOS open the play store and UPDATE SuperSU
5- Open SuperSU and update the binary. It should say success!!
6- Install XposedInstaller_3.0_alpha4.apk or XposedInstaller_3.1.1.apk (i installed 3.0 alpha4 but doesnt matter which)
7- Reboot and enjoy your RemixOS with newest SuperSU, working Xposed and Gapps
~RemixOS_x64- UEFI or Legacy -Xposed-SuperSU-Gapps~: https://drive.google.com/open?id=0B_NCp06S3NUmWmVIVUN2ZXRzVDA
Xposed Installer 3.0 Alpha 4: https://drive.google.com/open?id=0B_NCp06S3NUmdG1XSWJGS3dBVUk
Xposed Installer 3.1.1: https://drive.google.com/open?id=0B_NCp06S3NUmU21iY3hCdUJtSFE
Credits go to all involved in creating the software in the first place. Please let me know if it works for you
PizzaG Windows 10 EFI Partition Helper: https://drive.google.com/open?id=0B_NCp06S3NUmUVpNR2RheHpOTlk
Run as Admin
The download link doesn't work, gives 404
@crazygamer64
Hopefully links are fixed. That's really odd, the links were working yesterday. But anyways, should be good again.
PizzaG said:
@crazygamer64
Hopefully links are fixed. That's really odd, the links were working yesterday. But anyways, should be good again.
Click to expand...
Click to collapse
worked now thanks!
@crazygamer64
How did the install go? I'm trying to get some feedback vs ROC version which is the same concept just put together a little different. Trying to narrow down some booting issues on various pc setups vs stock working. Thanks
PizzaG said:
@crazygamer64
How did the install go? I'm trying to get some feedback vs ROC version which is the same concept just put together a little different. Trying to narrow down some booting issues on various pc setups vs stock working. Thanks
Click to expand...
Click to collapse
Well, everything worked out great except for that termux command which gave me : can't open flash-script.sh
crazygamer64 said:
Well, everything worked out great except for that termux command which gave me : can't open flash-script.sh
Click to expand...
Click to collapse
UEFI or Legacy install? If UEFI, maybe try the steps from legacy. cd /system.xposed
then run sh flash-script.sh
PizzaG said:
UEFI or Legacy install? If UEFI, maybe try the steps from legacy. cd /system.xposed
then run sh flash-script.sh
Click to expand...
Click to collapse
Well if I try that then it gives me: no such file or directory edit: now it worked, u typed an . Instead of an /
Termux now gave me: can't create '/system/Xposed.prop': file already exists
Also I am using UEFI
Giving this a shot now. Will update.
Are you planning on maintaining this with OTA updates?
Edit: Awesome. I have Remix OS x64 with R/W and Xposed. Worked great, PizzaG. Many thanks!
Time to AdBlock the crap out of everything.
bobdamnit said:
Giving this a shot now. Will update.
Are you planning on maintaining this with OTA updates?
Edit: Awesome. I have Remix OS x64 with R/W and Xposed. Worked great, PizzaG. Many thanks!
Time to AdBlock the crap out of everything.
Click to expand...
Click to collapse
Glad it worked out for you. Yes, I'll do my best to maintain it as OTA updates come out
PizzaG said:
Glad it worked out for you. Yes, I'll do my best to maintain it as OTA updates come out
Click to expand...
Click to collapse
Awesome. One thing to note, I could not get SuperSu to open at all while in DEBUG mode. I ended up booting normal Remix OS and enabling the debug console and doing it this way. Just a heads up!
Sweet sweet proof:
{
"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"
}
Also, like I previously stated... If you also have another operating system installed (I have Windows 10 Pro x64) you can modify a few things about the new bootup process. Wherever you installed Remix OS (I've installed it to a seperate partition, so for me it is E:/), go there.
- Open the Remix OS folder
- Find "menu.lst" and open it with Notepad++
- Delete the entry for Remix OS DEBUG. Delete the whole entry
- Change "timeout" from '10' to '0'
- Save the file
It will look very similar to this:
Code:
default 0
timeout 0
title Resident mode - RW enabled
find --set-root /RemixOS/kernel
kernel /RemixOS/kernel root=/dev/ram0 androidboot.hardware=remix_x86_x64 androidboot.selinux=permissive quiet SERIAL=random logo.showlogo=1 SRC=RemixOS/ REMOUNT_RW=1 DATA= CREATE_DATA_IMG=1
initrd /RemixOS/initrd.img
boot
What this will do is remove the entry for Remix OS DEBUG -- INSTALL XPOSED, force standard rooted/xposed Remix OS to boot automatically, and remove the 10 second timeout before the Remix OS selection allowing Remix to boot automatically after selecting it in the Windows bootloader. For advanced users, this can be accomplised in the Remix OS/Remix OS DEBUG selection screen also, by pressing Escape to enter the selection screen, "e" to edit lists, and following the on-screen instructions for deleting selections and saving.
Hope this helps!
Worked perfectly, thanks my friend.
After downloading, the RAR won't extract, says that the file is incomplete, any idea?
jor3l said:
After downloading, the RAR won't extract, says that the file is incomplete, any idea?
Click to expand...
Click to collapse
Your download may be corrupted, try downloading again.
Grindher said:
Your download may be corrupted, try downloading again.
Click to expand...
Click to collapse
Already tried 3 times, same result on my mac, just to confirm this is the MD5 of the file:
MD5 (RemixOS_x64- Xposed-SuperSU-Gapps[v2].rar) = 44ba6fcc6330ad98f1ac375d29b54c5f
---------- Post added at 03:15 AM ---------- Previous post was at 02:57 AM ----------
Worked using WinRar, seems like an issue with The Unarchiver (mac), now testing..
howdy,
successful x64 efi install, bootup, xposed (no flash-script, XposedInstaller_3.0_alpha4.apk works, 3.1.1 doesn't).
apparently everything is nominal. xposed youtube adaway seems to be working. (!)
(i do have a remix problem with my fav game five card draw - grunging $ and win/loss amounts, but that's a remix problem not your adaption)
HP Pavilion x2 12-b020nr 12" Detachable Laptop (Intel Core M3, 4 GB RAM, 128GB SSD) with Windows 10
32gb ntfs partition for remix, use grub2win to boot into remix
good work!
Thanks your work, but seem it not working with Ext4 File system of partition, how can i explan data partition Remix OS from 4Gb to 32Gb?
http://support.jide.com/hc/en-us/articles/218463867-How-to-increase-the-memory-size-
daWyrd1 said:
http://support.jide.com/hc/en-us/articles/218463867-How-to-increase-the-memory-size-
Click to expand...
Click to collapse
thanks you! but i wonderwhy which type format of partition is support for that? maybe only NTFS or include Ext4, bro?
Thanks, it work for me
daWyrd1 said:
howdy,
successful x64 efi install, bootup, xposed (no flash-script, XposedInstaller_3.0_alpha4.apk works, 3.1.1 doesn't).
apparently everything is nominal. xposed youtube adaway seems to be working. (!)
(i do have a remix problem with my fav game five card draw - grunging $ and win/loss amounts, but that's a remix problem not your adaption)
HP Pavilion x2 12-b020nr 12" Detachable Laptop (Intel Core M3, 4 GB RAM, 128GB SSD) with Windows 10
32gb ntfs partition for remix, use grub2win to boot into remix
good work!
Click to expand...
Click to collapse
I try but not work,still error like this
Any idea with my problem,bro?
Gửi từ Redmi Note 3 của tôi bằng cách sử dụng Tapatalk

Remix OS, can it be updated to use the Kernel from Android-x86 6.0-r3?

Hey guys,
Android-x86 6.0-r3 was released. It has new video drivers that I would like to try. Since Remix OS is basically Android-x86, is it possible to use the kernel from Android-x86 6.0-r3 on the latest Remix OS 3.0.207?
I was reading what Chih-Wei Huang said here.
http://thread.gmane.org/gmane.comp.handhelds.android.x86/28994
You don't need to rebuild initrd.img for new kernel.
Just replace the kernel image (bzImage)
and modules in /system/lib/modules.
Click to expand...
Click to collapse
I know this probably sounds a lot easier said than done. But does anyone know if the same kernel from Android-x86 6.0-r3 could be integrated into Remix OS 3.0.207 and does anyone know what is the process to accomplish this hopefully without having to reinstall everything from scratch?
Try and report here. Will mostly work as I tried something similar before but can't guarantee
I'll give it a try later. I'm thinking I can use RMXTools for this?
I believe the files to replace are in the system.img file?
I extracted the system.img with RMXTools
{
"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'm assuming I can delete the folder 4.4.24-android-x86_64 and replace it with the one from Android-x86 6.0-r3?
Then hit create-img to rebuild the system.img file? I never used this tool so I'm not sure if that is the process.
I still need to find out where bzImage is located too
**Update**
Ok so I'm using Remix OS 3.0.207 64 Bit
I used RMXTools 1.5
First I made a backup of kernel and system.img under the RemixOS folder
1) Extracted the system.img from Remix OS
2) Deleted \lib\modules\4.4.24-android-x86_64 folder and then copied 4.4.62-android-x86_64 from Android-x86 6.0-r3 64bit
3) Repacked system.img
4) Replaced system.img with the modified system.img and also replaced the kernel file from the one from Android-x86 6.0-r3 64bit
Booted up and sure enough the kernel is updated and everything appears to be normal. However the MESA driver did not get updated.
Now I'm going to try to overwrite the whole lib and lib64 folders in the system.img from Remix OS with the ones from Android-x86 6.0-r3 64bit. Hopefully this doesn't break everything. I'll report back.
Well that made it not boot. Could be because that overwrote some files needed for the xposed framework. Besides the files I mentioned first, I had to research on which files are associated with the mesa drivers and only replaced those files and the kernel files and it looks like it worked
what changed?
RoboR1 said:
what changed?
Click to expand...
Click to collapse
Just the kernel was updated to the latest from Android-x86 6.0-r3 as well as the video drivers. That's all that I updated.
Now I really need to figure out how to disable the taskbar completely on Remix OS
Can you upload the modded iso, please?
I exactly made that with my old pc and it worked xD
Regardless... You're awesome!
modaifallah said:
I exactly made that with my old pc and it worked xD
Regardless... You're awesome!
Click to expand...
Click to collapse
Where is the system.img file? I only have a system.sys file inside the iso.
dayara said:
Where is the system.img file? I only have a system.sys file inside the iso.
Click to expand...
Click to collapse
Extract the system.img from the system.sfs using 7-zip. If 7-zip couldn't do it as Remix OS uses newer SFS system, boot Remix OS and add REMOUNT_RW=1 at the end of kernel line in grub. System.img file will be created in the Remix OS installation folder.
modaifallah said:
Extract the system.img from the system.sfs using 7-zip. If 7-zip couldn't do it as Remix OS uses newer SFS system, boot Remix OS and add REMOUNT_RW=1 at the end of kernel line in grub. System.img file will be created in the Remix OS installation folder.
Click to expand...
Click to collapse
7-zip does not decompress the file, and the command "REMOUNT_RW = 1" in the GRUB gives me error. Can someone upload the modified iso?
Thank you anyway.
I could modify the original system.img on the iso but does anyone know if I can use any iso program like UltraISO to add the modified file back to the iso without breaking the iso?
saulin78 said:
I could modify the original system.img on the iso but does anyone know if I can use any iso program like UltraISO to add the modified file back to the iso without breaking the iso?
Click to expand...
Click to collapse
I think you can use UltraISO or ISO Master.
https://mega.nz/#!XsgDSJIT!uxNTNWX0UhZPa2Q1BJBREMwweNk8w6ITkY-Hp36m3Xk
OK I modded the ISO. Testing it before I upload it. I only have a Laptop with no Windows right now to test. So I'm going to try it with unetbootin, using a big partition formated as EXT4 and set as active and I'll try to install it to the HDD using the USB created with unetbootin
saulin78 said:
OK I modded the ISO. Testing it before I upload it. I only have a Laptop with no Windows right now to test. So I'm going to try it with unetbootin, using a big partition formated as EXT4 and set as active and I'll try to install it to the HDD using the USB created with unetbootin
Click to expand...
Click to collapse
OK!
I can test it too. I have a table-pc with Linux.
You can install Remix OS from USB:
> Prepare a USB flash drive with Remix OS installed & Boot from USB*flash drive
> Choose ‘Resident mode’, press ‘e’
> Delete USB_PARTITION=1 in the command line
> add INSTALL=2 (or 1 for manual install)
> Press ‘F10’ to boot
> The installation will take place automatically.*
Click to expand...
Click to collapse
dayara said:
OK!
I can test it too. I have a table-pc with Linux.
You can install Remix OS from USB:
Click to expand...
Click to collapse
It hanged up at the installation screen when I booted with the USB created with unetbootin. I ghosted a Windows partition and tried to install it using the Remix OS installer.
However I get to the Writing Speed Test
Formatting the data partition then I get this error
/init line 309: mke2fs: not found
It broke the iso. Unless the original iso does the same thing. I'm going to install using the original iso Remix_OS_for_PC_Android_M_64bit_B2016112101.iso
Otherwise I'll try your method
*Edit*
OK the original iso is broken lol
It gives the same error. Well it's very late here. Tomorrow I'll update the kernel and video drivers on this iso RemixOS_x64- Xposed- SuperSU- Gapps.iso
This is the one I use and it creates a system.img instead of syste.sfs as well plus it comes with the xposed framework preinstalled and the google playstore activated thanks to PizzaG
saulin78 said:
It hanged up at the installation screen when I booted with the USB created with unetbootin. I ghosted a Windows partition and tried to install it using the Remix OS installer.
However I get to the Writing Speed Test
Formatting the data partition then I get this error
/init line 309: mke2fs: not found
It broke the iso. Unless the original iso does the same thing. I'm going to install using the original iso Remix_OS_for_PC_Android_M_64bit_B2016112101.iso
Otherwise I'll try your method
Click to expand...
Click to collapse
I recommend that you use Rufus to create booteable USB.
https://rufus.akeo.ie/
OK I updated PizzaG's RemixOS_x64- Xposed- SuperSU- Gapps.iso based on 3.0.207 with the Google Apps, SuperSU and Xposed Framework preinstalled.
It has the updated Kernel and Mesa drivers. Those are the only changes I made. I only tested it in dual boot using the Remix Installer Tool in Windows. However you should be able to also install to a USB and either run it from the USB or install from the USB using dayara's instructions.
> Prepare a USB flash drive with Remix OS installed & Boot from USB*flash drive
> Choose ‘Resident mode’, press ‘e’
> Delete USB_PARTITION=1 in the command line
> add INSTALL=2 (or 1 for manual install)
> Press ‘F10’ to boot
> The installation will take place automatically.*
You would need to prepare the HDD first, creating a ext4 partition and setting the partition active. You can do this using Hiren's Boot CD and using Parted Magic. More instructions are here: https://chubbable.com/remix-os-installation#hdd-single-boot-install
I have uploaded it here: https://drive.google.com/open?id=0B5u0FwLcOxHqdkZfYVhlVzdPWms
saulin78 said:
OK I updated PizzaG's RemixOS_x64- Xposed- SuperSU- Gapps.iso based on 3.0.207 with the Google Apps, SuperSU and Xposed Framework preinstalled.
It has the updated Kernel and Mesa drivers. Those are the only changes I made. I only tested it in dual boot using the Remix Installer Tool in Windows. However you should be able to also install to a USB and either run it from the USB or install from the USB using dayara's instructions.
> Prepare a USB flash drive with Remix OS installed & Boot from USB*flash drive
> Choose ‘Resident mode’, press ‘e’
> Delete USB_PARTITION=1 in the command line
> add INSTALL=2 (or 1 for manual install)
> Press ‘F10’ to boot
> The installation will take place automatically.*
You would need to prepare the HDD first, creating a ext4 partition and setting the partition active. You can do this using Hiren's Boot CD and using Parted Magic. More instructions are here: https://chubbable.com/remix-os-installation#hdd-single-boot-install
I have uploaded it here: https://drive.google.com/open?id=0B5u0FwLcOxHqdkZfYVhlVzdPWms
Click to expand...
Click to collapse
Thank you!! I'm going to try it and then I'll comment. :good:
Doesn't boot for me. Black screen after grub...

Categories

Resources