What's new
DroidForums.net | Android Forum & News

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Unroot without ADB

chazall1

Member
I followed the commands to unroot, when I was using ADB and it worked. What is the proper way to unroot not using ADB. I have used both ADB to root and unroot. I have root without using ADB, How do I unroot on the DX without ADB

Thanks
 
I'm going to leave this thread open because I'd like to see an answer but you know you just asked this question in another thread. Please do not cross post.
 
All you're doing to unroot is deleting the files you put in place when you rooted it. I haven't tried, but you should be able to just run the commands below in your terminal.

Code:
su
rm /system/app/Superuser.apk
rm /system/bin/su
rm /system/bin/busybox
rm /system/bin/rootshell
reboot
 
This worked on my DX. Now I see the information on
Rooting made easy By
johnomaz

You can root and unroot with 1 click. Nice to know.

Its nice to know you have a backup way to root and unroot through the command line.
 
I can confirm this works HOWEVER for some reason "rm /system/bin/rootshell" failed to be removed maybe because I never installed it not sure why it said it failed.

My phone is now unrooted though so awesome. Big fan of not requiring the ADB shell!
 
whenever I go to remove the superuser.apk I get a message saying it failed because system is read only, when I try to chmod system it says it fails again because it's read only. I su at the begining as well, any ideas?
 
whenever I go to remove the superuser.apk I get a message saying it failed because system is read only, when I try to chmod system it says it fails again because it's read only. I su at the begining as well, any ideas?

You need to mount the system folder so it isn't read only. This will work for you.

Code:
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
rm /system/app/Superuser.apk
rm /system/bin/su
rm /system/bin/busybox
rm /system/bin/rootshell
reboot
 
I was having the same problem, but I used root explorer to make it writable because the command didn't work for me. Then I minimized root explorer, went to terminal and finished the process as you posted. Thanks for the post.

Sent from my DROIDX using Tapatalk
 
Back
Top