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:
  1. Download GMSInstaller.apk from here.
  2. Install APK file and run it.
  3. 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.
  1. Download and Extract RemixRoot.zip to desktop
  2. Copy system.sfs from your pendrive or hdd wherever you have installed Remix OS to the desktop
  3. 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
  4. Copy that system.img to RemixRoot folder
  5. Open terminal again and type:
    Code:
    sudo -i
  6. Enter your password (If you are running in live cd then no password)
  7. Change directory to RemixRoot folder.
    Code:
    cd /home/user_name/Desktop/RemixRoot
  8. If you did it right next line of terminal will end with RemixRoot# followed by blinking cursor
  9. Now run rootx.sh script by typing
  10. sh rootx.sh
  11. If everything goes right there wont be any error message and you will get a root.img in your RemixRoot folder
  12. Rename it to system.img and copy to your pendrive/hdd replacing previous system.img
  13. Reboot and go to RemixOS and update SuperSU binaries
  14. 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:
  1. Install squashfs-tools which is needed to extract system.sfs file
  2. Point working location to Desktop
  3. 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.
Share on Google Plus

About Unknown

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment

1 comments: