Root the Ouya – Then add Google Play!

Root the Ouya: A step-by-step tutorial with all of the data in one place.

Initially, I thought this was covered very well and that my input was simply not necessary. However, the issue with the website and especially forums is as they get older they tend to get harder to read. Links break down and information starts to become old. I have a few articles on my blog here that I’ve had to update from time to time. To be honest the SuperUser (root) option feels like it should be in the Manage > System menu of the Ouya. After all, Ouya was touted as being %100 hackable. So why jump through all of the hoops of websites to do it?

Disclaimer:

Loading third-party APKs or the use of ADB scripts onto any device without knowing the source is dangerous! Use extreme caution when doing this as it could potentially brick your Android device. Not responsible for any broken/damaged Ouya consoles for following this blog! I should also note that a lot of this I did not make! The reason why I am posting this so makes it easy for us with Ouya to load and root when I need to. Anyone else is free to follow along.:)

Why host the files?

S, Why start a “Root the Ouya” article now? your just cashing in on the hits aren’t you?

Why yes, all $0 dollars. If you'd like a refund we'll double that amount! ;)

APK Spam while root the Ouya via the installed web-browser. But the serious answer is the pictures above. Basically, a trap to make you download an APK that you don’t want on your Ouya. APK Spam while trying to root the Ouya - Choose your download! Then if you hit cancel it dumps us to Dev-Host links which work. But when you use the default Ouya browser to attempt to download the APK and root the Ouya. You get a pop-up asking you to install a possible ad-ware APK. And then you’re presented with three download links. Can you guess which link is the actual file? If you guessed the smallest one you are correct. And if you ever tried to navigate to that download link it is rather the pain on the Ouya controller even with the mouse. As an Ouya user, you shouldn’t have to be pulling teeth just to get an APK.

Why is the root on Android/Ouya locked away, to begin with?

Simply put lock is designed to block applications from doing malicious things to smartphones. Things such as HTML re-direction, data mining, password sniffing, and other fun and dangerous stuff like that. That developing on Android is (for the most part) open-sourced underneath Java certain precautions have to be taken to prevent users of their product from doing something dangerous such as downloading a free game only to find out that it destroys the entire partition of your phone completely bricking the thing! To root something is to remove that layer or protection that keeps your OS stable (and sane). This is ultimately why rooting any device is considered not for amateurs and for people who understand the risks.

Why root the Ouya?

But to answer the question about why would you root and Ouya is to get more versatility out of your console. The Ouya Store is great but there is something that is in other stores like Google Play. Anyone who had tried searching for APKs to download for your Ouya has hit that inescapable barrier that everything exists on Google Play and you can't easily download APKs from Google Play and put them onto your Ouya. Also, rooting your system allows you to run background services that otherwise normally did not come with your Ouya. Things like Apple and DNLA streaming or even ChromeCast streaming; To sharing your Ouya with a Windows network with Samba. There are things on other Android networks which do work on your Ouya it's just either the developer doesn't have the time to contact Ouya or it was never their intention but it works anyways!

Do I need to root the Ouya in order to side-load APKs?

Depends. If it's a game probably not. Every single game I have had to install has never asked for special permissions and if it ever does I don't install it as a question the legitimacy of said package. However, when it comes to applications. Specifically; Ones that need to install a background service (or a daemon) in order to enhance your device and make it do things beyond the parameters of what your manufacturer's OS gives you. Then that is when you have to root the Ouya to make those services work.

Let's begin to root the Ouya!

This tutorial is longer and not as elegant as the GUI methods of rooting your Ouya in the past however by the end of this you will know quite a little about how these rooting scripts work for Ouya.

 Installing root software:Download all files to root the ouya.

Currently, the only reliable method of rooting your Ouya is by doing it manually via ADB shell. I have combined all of the files you will require to perform the process of rooting your Ouya so you no longer have to bounce back and forth. Acquire all of the binaries for manual rooting on the Ouya The archive is compressed using 7-zip for the fastest delivery to you. Extract these files to the C:\rootouya folder.

Ouya ADB network setup.

It has gotten a hell of a lot simpler with the network ADB connector which is in the updated versions of the Ouyas OS.

Ouya Setup Network ADB through the menu system.

We first have to tell the Ouya to open up the ADB ports so that we can connect to it wireless. Click Manage - System - Development. Turn ADB: ON and ADB OVER NETWORK: ON It will then show you the IP address of your wireless network. (Note: if you are connected via LAN and you also connect via wireless network as well. It may show you the IP address of the wireless network.)

Ouya Network Screen IP address

On my Ouya I was testing out both wireless and Ethernet connectivity. By going into Manager - Network from your main Ouya menu. You can see your real IP address.

Passing ADB commands from your windows PC.

Now that we installed our SDK and our Ouya is set up correctly. now we open a command line in windows and launch adb to begin screen capture.  I should note this is how you do it in Windows. For Linux and Mac, your mileage may vary!

cd C:\rootouya\
ADB connect 11.1.1.217

It should respond with something like: connected to 11.1.1.217:5555

Great! now we get down to business with unlocking the Ouya's filesystem:

adb shell

While in Ouya's ADB shell we type in:

su
mount -o rw,remount -t ext4 /dev/block/platform/sdhci-tegra.3/by-name/APP

If the default Ouya SU command passed successfully this should unlock all of the storage devices within the Ouya allowing us to modify core system files. (There used to be /dev/block/platform/sdhci-tegra.3/by-name/UDA and /dev/block/platform/sdhci-tegra.3/by-name/CAC that needed to be mounted but found out that simply was not necessary) 

Now we exit out of the shell (type exit twice because we are in superuser mode)

exit
exit

Good! Next, we are going to push our modified "SU" binary files as well as all of the zip and apk files into the Ouya you technically do not need to copy all APKs over to the Ouya, but it's nice to have in case you need to re-install:

adb push C:\rootouya\download /sdcard/download

Alright! now that we are back in the shell we are first going to use the "cat" command as a weird way of copying a file into the system folder that we need "SU" to exist in. Then we can make a symbolic link to our "SU" command so that applications in Ouya can reach these binaries from the default user directory as well as change and modify the permissions to "SU" itself. Finally back out of superuser status and exit the Ouya ADB shell.


adb shell
su
cat /sdcard/download/su > /system/xbin/su 
ln -s /system/xbin/su /system/bin/su 
chmod 6755 /system/xbin/su 
exit 
exit
Install all APKs.

adb install .\download\busybox.apk
adb install .\download\de.robv.android.xposed.installer_v29_665be7.apk
adb install .\download\Mod_Collection4Ouya.5.1.apk
adb install .\download\superuser.apk

These commands assume that you have already pushed these binaries into the respective /sdcard/download folder. if you pushed them elsewhere on your Ouya then you need need to modify this path accordingly.

This will install the following APKs

  • Busybox.apk - This utility is nice for those who have gone into ADB shell and realized that all of the commands that they are used to in Linux are gone. Which is this program called BusyBox
  • SuperUser.apk - This utility is for controlling which programs get superuser access and which ones do not.
  • de.robv.android.xposed.installer_v29_665be7 - This will install the latest release of the Xposed installed onto your Ouya.
  • Mod_Collection4Ouya.5.1 - This has a collection of valuable tools such as installing ClockWorkMod, Google Play Store, and changing over-scan, resolution, and Joystick control.

Also, note at this stage you can use anything to install APKs such as using a file explorer utility in the Android OS like Ouyas FilePwn.

Back to the Ouya for SuperUser.apk .

You can then go under MAKE > SOFTWARE > and then click on SuperUser:

SuperUser InstallClick Install to update the "SU" command and once complete you can modify any programs that require superuser access from here. Turn on and off notifications so it does not bother you while you are gaming on your Ouya. This completes rooting the Ouya manually. I like this method a lot more as it restores of the feeling of OneClickRoot gave you. On top of that, this procedure can be repeated over and over regardless of how many updates Ouya pushes to your console. Also, if you installed KingRoot like I did and really hate the way of screws with your Ouya. You can do the manual root over KingRoot to simply remove what it has done and at the end simply uninstall the KingRoot APK.

Google Play on Ouya:

Now that you have rooted the Ouya the next thing you would want to seriously help you out is a means to get those APKs installed on your Ouya with relative ease. That it would be nice if you could have the library of GooglePlay as well as the library of Ouya games to complete your system. This mod will do it however it does not come without its listing of problems.

  • Having two marketplaces on one android device has been known to cause conflicts such as a lot of warning messages whenever you install a game from the Ouya Marketplace versus the Google Play marketplace.
  • The Ouya becomes more unstable with the extra services running on it. A few times I have had to hard-reset my Ouya due to bouncing between Google Play and Ouya Discover.
  • In the event of a software upgrade to your Ouya, you will need to re-root the Ouya and re-install the Xposed framework.
  • You will no longer receive small updates from the Ouya network. They will all belong downloads because Ouya has no idea what you were doing as root hence it replaces everything in your android directory just to be on the safe side
  • You cannot purchase apps from Google Play with your Ouya. I have experienced where it times out or simply quits the application. This is not an issue as a work-around is to buy it on your PC first and then download it to your Ouya via Google Play later.
  • Not all apps on Google Play will work! This is mostly due to a design issue that many of the apps on the Google Play Store were designed for touchscreens. Games like Angry Birds have not developed stable controller support for (Although with apps such as Amazon's FireTV as well as many other android-on-tv devices this may change). So if an app works on your Ouya, awesomesauce if not well, you probably shouldn't give the dev a single star as they simply may not know or were not anticipating their app being run on a game console.:)

There are also advantages to doing this mod as well:

  • Google TV apps such as YouTube for GoogleTV will work flawlessly on your Ouya
  • You no longer have to worry about finding alternative sources for public and/or open-source APKs.
  • The Google Playlist of applications is far greater than the list of applications underneath the Ouya store.

So please keep all of this in mind when thinking about performing the software mod to your Ouya.

 Mod_Collection4Ouya.5.1.apk.

This APK should be already installed if you downloaded the file above. The Mod Collection for Ouya is an assortment of mods and programs that you can install which allow you to install certain programs and apply patches that will make the games that you have side-loaded work better with your Ouya. Mod Collection For Ouya Part 1 Otherwise, a lot of the features are self-explanatory and personally, I like to use the reboot option as a soft way of starting the system fresh without having to power it off and back on again. It should be noted that ps4ouya.zip and OneClickOuyaRecovery.zip are already located in the /sdcard/download/ folder in case you want to attempt to install the play store or CWM recovery.

Download Xposed installer.

de.robv.android.xposed.installer_v29_665be7.apk is the filename we used to install this. It is already installed onto your Ouya if you ran the script above. The Xposed installer is the first part of getting GooglePlay functional. Without the Xposed framework, the Google Play network will act as if there is no internet. This framework does is to enable Ouya to actually talk to Google Authentication services. Xposed Framework v2.5.1 Main Menu.You will be greeted with the Xposed Installer main menu. To get to this menu again you can click on MAKE > SOFTWARE from the Ouya main menu and select Xposed Installer. Use your joystick to select the Framework button as we are going to install Xposed to our Ouya. Xposed Framework Warning.Because this version of Xposed is designed for more android systems than just the Ouya it places the disclaimer pretty much saying that they aren't responsible for anything that happens. Anyone who mods their Android services for more functionality is fully aware of the dangers and risks. Click the OK button to continue. Just as a side-note: I have done this to all three of my Ouyas. They have all come back without going into a loop of death. At the date of this blog I am currently running the Chupacabra update with hotfixes 1 and 2. Xposed Framework for Ouya 2.5.1From here simply click to Install/Update to begin. Xposed Framework for Ouya 2.5.1Even though I had the Cancel button highlighted you will want to click the OK button to reboot your Ouya. With all luck, your Ouya will come back happily to the main menu. We are not done yet! Click on MAKE > SOFTWARE from the Ouya main menu and select Xposed Installer again as we have more work to do before Google Play will work. Xposed Framework Install Modules Section.Now just like the old Xposed Framework, we shall now go into modules to bind the ModCollection for Ouya to the framework. Xposed Check-Box for Mod Collection for Ouya.Unlike version 2.1.4 where it was a cluster of text and really hard to see where the check-box is. This version corrected that issue! You won't be able to actually check the box with your joystick because it would instead just launch the program. Use the Ouyas mouse-pad to check the box. Once checked you may back out of this menu. Xposed Framework for Ouys v2.5.1 complete and rebootNow that the active version is the same as our bundled version. And we have linked the Mod Collection for Ouya to the new framework. We may now reboot our Ouya. Special thanks to the Xposed team and their hard work on this framework. Be sure to visit their website. Although as of this date, the Experimental release 2.7.1 does not talk nicely with the Google Play store on Ouya that there may be newer versions down the road.

 Getting back to Google Play and Root the Ouya

Google Play Store on the Ouya complete.After you install the Play Store and enable the module in your framework and you have run the Google Store install in the Ouya Mod Collection. You may now finally go under your MAKE > SOFTWARE section of your Ouya and finally launch the Play Store. If you have installed the Xposed Framework and linked the modules to the Mod Collection for Ouya. You should then be able to type in your GMail or Google Play account to log in and begin downloading all of those APKs from the Google Play Store.

Related Blogs:

Ouya-to-Cyanogen-TitleCyanogenMod 11 and the Ouya

Updates and fixes to this blog:

12/28/2014 -  It has been confirmed that the RootMyOuya.1.1.apk is no longer functional due to the latest update to Ouya as of 11/3/2014. Looking at the later threads in the XDA Developer forums confirms that due to all of the updates that have happened that the APK is no longer seen as a valid file for the Ouya/Android environment. An archive of the old instructions can be accessed here if you want to see them. But for now, we move on!

07/15/2014 - After a bit of testing it has been confirmed at the latest stable version of the Xposed Framework Installer is version 2.5.1. Going any version beyond 2.5.1 currently causes Google Play services to lock up. This section has been updated accordingly however if you still wish to use the old you may do so by clicking here to visit the archived section of my blog for the old files.

We should note the newer version of 2.5.1 seems to have stopped a lot of the random lockups that happened with Ouya. If you have the old Xposed v2.1.4 installer already installed on your Ouya and wish to upgrade or re-follow these steps described in this blog. Please uninstall your old Xposed Framework by clicking the archived section as well.

4/27/2015 - KingRoot_v3.3.1.apk is no longer a viable option that this website can support. You can read about it here. Until something better comes along the only option that is the most stable is to manually root by hand.

08/24/2015 - With the update to Cyanogen Mods and Screen Capture this article was also updated with a massively reduced version of the ADB download to save both steps and disk space for everyone using it.

09/24/2015 - Editing was done for header formats and ease of flow between computer ADB and Ouya. Linkage updated with new ADB software.

09/26/2015 - Major cleanup of the article with the introduction of "rootouya.zip" to allow simplification of the blog article.

Fin.

Thanks for checking out my "Root the Ouya" Documentation. Happy Side-Loading!

May server protect you.

END OF LINE+++

44 thoughts on “Root the Ouya – Then add Google Play!

  1. Great guide, worked perfectly!

    On the Install all APKs step, the commands should probably read: "adb install .\download\busybox.apk" instead of "adb install busybox.apk"
    If you try the command as written, it fails because the apks are in a subfolder. Easy for anyone who's worked with terminals to figure out on their own, but I thought I'd mention that in case a beginner gets lost.

    Reply
    • Hello Zanz,

      I will revise the documentation. Back when it was written it was assumed that you'd be in the same directory as the APKs. Providing the direct link to the apk's with the note to the user that if they downloaded it elsewhere then they'll have to revise the path will be more acceptable.

      Thank you for checking out this blog.

      Reply
  2. It worked! Of course, that's probably no surprise to S-Config. I was a bit surprised as this device is "old" and rooting docs fall out of date as the device ages. I forget what versions of the OS and such I had on the Ouya. I kept it up to date. When I got the step to install the APKs, the command kicked back saying the file didn't exist (or some such thing). I did as S suggested and browsed with a file manager to downloads and installed each that way. The other minor challenge was that I have 2-factor authentication enabled on my Google account, so I had to create an "app password" and attempt to login a few times. Eventually it accepted my app password (I don't think I gave the newly created password enough time to propagate the Google system) and then prompted me to login via browser. So, I got to again plug in my ID and regular password (not the unique app password), which then triggered my Google auth app to confirm login. I was able to launch Play store. Shortly after that, Play store updated itself (even though I set auto-update to off in Mod Collection, but I'm now guessing that's for Ouya updates only). The play icon disappeared for a bit in the Make section and re-appeared. Launching it showed a new interface. As I browsed and searched Play, the app restarted. I noticed that my profile icon changed from showing only my first initial to my profile pic. Seems that was it for updates. I then searched for and installed VLC as I'm hoping to it will have better luck in playing MKV files. Regardless of my video playing efforts, I now have choices, which is FAR more than I had before. Thank you to S-Config and to all those that you've drawn upon to create this easy to follow procedure. I greatly appreciate it.

    Reply
  3. the update of the su command does not work
    the chmod on the new su will not take effect, which leads to a not executable su command.
    So, your ouya is useless, because you cant do anything after that.

    i had to factory reset my OUYA. :(

    something is not right in this guide

    Reply
    • It sounds like your Ouya is refusing to accept the remount command to make the partitional read-write so you can upload the revised SU.

      This guide we've been using since 2014. With others confirming these commands. I don't think there's something wrong with the guide.

      Reply
      • well, the remount works. I can overwrite the su with the modified su.
        then doing the chmod on su, which gave no error. But something didnt go right, because the su command is not exectable afterwards.
        (it's readable, but not writeable, and not executable)
        So that means i cannot get su anymore, and i cannot overwrite it with a backup. I had to reflash the ouya via adb to make it work again. A factory reset did nothing. What can be the reason that the su is not made executable with chmod?

        Reply
  4. Hi S,

    Great website, when i started to fiddle around with my ouya this website helped me out a lot.

    I have recently beginning to use my ouya again and tried to root is. i've been following the tutorial but whenever i used the cat command ''cat /sdcard/download/su > /system/xbin/su'' i get an error message ''can't create /system/xbin/su: permission denied''.

    If you have any tips or tricks to help me out it would be very much appreciated.

    Thanks in advance!

    Reply
    • Hmmm, usually if you 'su' into your shell prior to typing that command you shouldn't have this problem unless your Ouya was modded prior. you could try install busybox.apk by itself which gets you more linux-like commands for your Ouya and you could try to add 'sudo' before that command.

      Reply
  5. Hey thanks for guide and, I followed the guide everything was going great, but after I get to the last step “install all apks” I get the message saying to many files?

    Reply
    • Odd that you are getting such an error. But you are almost done anyways so technically you could just simply put the APKs onto a USB stick and install them manually through the Ouya console.

      I should note: This article is very old. Your mileage will vary. I recommend doing Cyanogen on the Ouya.

      Reply

Leave a Comment to the Void