Skip to content
Lawrence edited this page Jan 15, 2013 · 1 revision

There are two known methods to root the U8150; using the app , or the exploit.

    • Choose only one!**

Table of Contents

z4root

This is the recommended rooting method, known to work on all U8150s.

  1. Download z4root from here. Try to download it directly to your phone, or you can move it to the phone from a computer. (add link to softpedia)
  2. Enable Unknown Sources in Settings/Applications.
  3. Go to the Downloads app, and tap to install.
  4. When you're done, open up z4root, click Root, and you're done!

rageagainstthecage

This is the exploit used in SuperOneClick. However, SuperOneClick itself has not been known to work out.

Requirements

  • Android SDK Platform Tools
  • SuperOneClick (just for the exploit, add link)
  • USB Debugging Enabled: Open Settings/Applications/Development and enable USB Debugging. It will give you a warning, just press yes.

Method

First, plug in your phone and check if your device is recognized by :

    adb devices

You should see the serial number of the phone. If not, check if USB Debugging is enabled.

Next, go to the directory where you saved the SuperOneClick files to, using the command .

    cd /location/of/SuperOneClick

Push to a temporary directory.

    adb push rageagainstthecage /data/local/tmp/rageagainsthtecage

Next, we will get into the Android system and run the exploit from there.

    adb shell
    cd /data/local/tmp
    # gives it permissions to execute
    chmod 0755 rageagainstthecage
    ./rageagainstthecage

Wait until you get kicked out from , and run this command to get back into the Android system:

    adb shell

If everything worked, you should see a instead of a . This means that is now running as root. Now we will mount the system and install apps that will allow you to use the root account. If these commands give you a permission denied message, you are not rooted, so try again.

    mount -o rw,remount /dev/block/mdtblock4 /system
    exit
    adb push su /system/bin/su
    adb push busybox /system/bin/busybox
    adb push sqlite3 /system/bin/sqlite3
    adb push Superuser.apk /system/app/Superuser.apk

Finally, we go into the Android system and modify the permissions so the programs can be run.



After all that, you are now rooted!

Sources

BA Logo

Bibliotheca Anonoma

BASLQC Wiki

  • Introduction - A quick intro to the rationale and ideals of this guide, and modding in general.
  • Essential Maker Skills - Essential Skills that every maker should have.
  • Archivist Tools - All the tools an internet archivist needs under their belt.

General Guides

  • Android Development Codex - All kinds of Android smartphones.
  • Business Class Laptops - Computers that last: The ThinkPad, the HP EliteBook, the Dell Precision/Latitude.
  • EBook Readers - A good eInk screen remains the best way to read literature comfortably.
  • Game Consoles - Homebrew development scenes have made it possible to unlock the full power of your game console's computer chip.
  • Graphing Calculators - This is the last vestige of the age of 80's Home Computers; where programs were simple and graphics were minimal.
  • Home Server - Why buy cloud storage when you can build your own cloud? For media streaming, torrenting, and VPN access (to bypass blocked internet).
  • Routers - Amazingly, your ordinary router probably runs Linux on it's little embedded CPU.
  • Authentication Wallets - Manage your plethora of accounts, passwords, and RSA public keys using a GPG-encrypted wallet.
  • LEGO Mindstorms - The easiest way to build functional robots and machines; using good ol' LEGO and Technic bricks.
  • Vintage Computers - Amiga, Apple ][, and all the other random home computers that defined the 1980s.

Research

  • Genetic Programming - Programs that mutate and evolve by themselves, like Genes. It's a very difficult concept to grasp, but a very powerful method that transcends math or algorithms.

Content Guidelines

  • General Guidelines - The ideals that you should uphold while working with and editing this guide.
  • Device Guide Templates - Templates and general guidelines for creating customized guides for a device.
  • Linux - Run a full desktop OS on your little mobile device; research is being made to make it comfortable to use in the mobile space.

Reference

  • Glossary - Contains all the crazy acronyms and word soup that you'll need to wade through when using this guide.
Clone this wiki locally