Unroot without ADB

chazall1

Member
Joined
Jun 29, 2010
Messages
111
Reaction score
1
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
 

hookbill

Premium Member
Premium Member
Joined
Nov 30, 2009
Messages
19,368
Reaction score
9
Location
N.E. Ohio
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.
 
OP
chazall1

chazall1

Member
Joined
Jun 29, 2010
Messages
111
Reaction score
1
Sorry and thank you. I will not double post.
 

qoncept

Member
Joined
Nov 6, 2009
Messages
633
Reaction score
0
Location
Iowa
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
 
OP
chazall1

chazall1

Member
Joined
Jun 29, 2010
Messages
111
Reaction score
1
That is what I was looking to do, but wanted some confirmation. Thanks
 
OP
chazall1

chazall1

Member
Joined
Jun 29, 2010
Messages
111
Reaction score
1
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.
 

givmedew

Member
Joined
Nov 20, 2009
Messages
174
Reaction score
0
Location
St Pete, FL and Aurora, IL
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!
 

yoyo814

New Member
Joined
Jan 3, 2010
Messages
12
Reaction score
0
Location
Pittsburgh
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?
 

bigd73

Member
Joined
Jul 25, 2010
Messages
70
Reaction score
0
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
 

charliehal

New Member
Joined
Jul 17, 2010
Messages
8
Reaction score
0
Location
DC metro area
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
 
Top