Football Fans: Download the 2012 Schedule App from Google Play!


Go Back   Android Forums > Android Phones > Samsung Behold 2 > Behold 2 - All Things Root

Behold 2 - All Things Root Rooting, ROMS, Overclocking, etc.



Reply
 
LinkBack Thread Tools
Old February 17th, 2010, 12:07 PM   #1 (permalink)
Senior Member
 
BH_MAN's Avatar
 
Join Date: Feb 2010
Posts: 1,382
 
Device(s): Behold 2 w/ BH_MAN Galaxy 1.6 / R7 Do Not PM me With Problem's Post in Thread!
Thanks: 156
Thanked 1,673 Times in 433 Posts
Default [How-to] Root for App's working with Persistent root

First off, I want to say thanks to Kam187 & the Creators of asroot

Okay, Below is the Method I used for getting Root working for my app's.
Even though Shell is running as Root, any Call's made to su trigger's the white List Superuser.apk, So don't think your phone is wide open. G1's & MT3G Setup's are the same regard sh.

I'm not sure is the apk is counted as warez or not, if so I hope a Mod will remove the link to the Apk or let me know to Remove it...

Okay, File's Need to complete the Task is....

Try3 Placed in C:\SDK\tools> found here > try3

SU for /system/bin found here > su

Superuser app control for our App's found Here > Superuser.apk

Next, Mount the SDCARD and place the SU file in the root of the sdcard like so ( /sdcard ). This is Important!!!

From here we do the Following.. ( Kam187 script the I edited ).

Quote:
adb push try3 /data/local
adb shell chmod 0755 /data/local/try3
adb shell
/data/local/try3 /system/bin/sh
mount -o rw,remount /dev/st9 /system
chmod 04755 /system/bin/sh
cat /sdcard/su > /system/bin/su1
cat /sdcard/su > /system/bin/su
chmod 04755 /system/bin/su
su
cat /system/bin/playlogo > /system/bin/playlogo_real
/system/bin/chmod 0755 /system/bin/playlogo_real



echo "#!/system/bin/sh
/data/local/try3 /system/bin/sh
mount -o rw,remount /dev/st9 /system
chmod 04755 /system/bin/sh
cat /system/bin/su1 > /system/bin/su
chmod 04755 /system/bin/su
/system/bin/playlogo_real" > /system/bin/playlogo
Once Done, place the Superuser.apk in your SDK tools Directory.
Mine happens to look like this
Quote:
C:\SDK\tools>
Once you have that Copied over, Open a Command prompt and CD to your sdk\tools directory and type the following.
Quote:
adb install Superuser.apk
Once done, do a reboot of the Phone, Once boot up is complete open a Command Prompt ( or app that needs Root ).

For Command Prompt, type:
Quote:
adb shell
Quote:
su
If done correctly you will now see the deny or allow prompt on the Phone, or just open any app that needs root & you will see the same window.

Here's some Picture of it working

SU working with SU apk on Twitpic & SU working with SU apk on Twitpic

BH_MAN is offline  
Last edited by BH_MAN; February 17th, 2010 at 02:15 PM.
Reply With Quote
Sponsors
Old February 17th, 2010, 12:12 PM   #2 (permalink)
CEO of DNPSEA foundation
 
shawn1224's Avatar
 
Join Date: Dec 2009
Location: Houston, TX
Posts: 2,144
 
Device(s): HTC Inspire 4G (CyanogenMod 7 RC 1)
Thanks: 170
Thanked 282 Times in 201 Posts
Default

Awesome ... I tried to install Superuser whitelist from market and it was always unsuccessful.

Thanks
shawn1224 is online now  
Reply With Quote
Old February 17th, 2010, 03:55 PM   #3 (permalink)
New Member
 
Join Date: Feb 2010
Posts: 14
 
Device(s):
Thanks: 2
Thanked 10 Times in 3 Posts
Default

Confirmed Working thanks...
Eugene373 is offline  
Reply With Quote
Old February 17th, 2010, 04:02 PM   #4 (permalink)
Senior Member
 
BH_MAN's Avatar
 
Join Date: Feb 2010
Posts: 1,382
 
Device(s): Behold 2 w/ BH_MAN Galaxy 1.6 / R7 Do Not PM me With Problem's Post in Thread!
Thanks: 156
Thanked 1,673 Times in 433 Posts
Default

Quote:
Originally Posted by Eugene373 View Post
Confirmed Working thanks...
Used your Photo's.. Hope you don't mind
BH_MAN is offline  
Reply With Quote
Old February 18th, 2010, 11:47 AM   #5 (permalink)
Junior Member
 
Join Date: Nov 2009
Posts: 47
 
Device(s):
Thanks: 0
Thanked 3 Times in 3 Posts
Default

I have the Galaxy ROM on my behold 2. I have tried this twice and both times I have had to reflash my device.

I am no expert at this stuff so I am obviously doing something wrong.

First time I tried following the instructions skipping the copy of play_logo to real since I already had root. phone basically started doing a fc on any download operation.

Second time I tried replacing the sh which becomes su based the galaxy rom instructions with this su so it would become su. same basic problem as before.

Both times I had to start over on the phone to get things back.
rone is offline  
Reply With Quote
Old February 18th, 2010, 12:40 PM   #6 (permalink)
Junior Member
 
Join Date: Nov 2009
Posts: 47
 
Device(s):
Thanks: 0
Thanked 3 Times in 3 Posts
Default

During my third reflash I got it working by mixing the instructions for this with the galaxy rom flashing instructions.

I copied this su out as su1 as in the instructions for this.

I replaced this line
cat /system/bin/sh > /system/bin/su
in the galaxy rom instructions with this line
cat /system/bin/su1 > /system/bin/su
when building the new playlogo.

I think I am getting the hang of this stuff.
rone is offline  
Reply With Quote
Old February 22nd, 2010, 11:28 PM   #7 (permalink)
Junior Member
 
xblue95's Avatar
 
Join Date: Jan 2010
Posts: 81
 
Device(s): MT3G Slide on the way! BeHold 2 kicked to the curb! (99.9% Mac OSX 10.6.2) (00.1% Win XP SP2 dua
Thanks: 12
Thanked 3 Times in 3 Posts
Default

Again, can someone confirm that BH_MAN's code works in the 1st post, What's up with rone's code changes? Thought I'd try this to get "Titanium Backup" working.

Whoami
xblue95 is offline  
Last edited by xblue95; February 22nd, 2010 at 11:29 PM.
Reply With Quote
Old February 23rd, 2010, 07:54 AM   #8 (permalink)
Junior Member
 
Join Date: Nov 2009
Posts: 47
 
Device(s):
Thanks: 0
Thanked 3 Times in 3 Posts
Default

Quote:
Originally Posted by xblue95 View Post
Again, can someone confirm that BH_MAN's code works in the 1st post, What's up with rone's code changes? Thought I'd try this to get "Titanium Backup" working.

Whoami
My changes where my successful attempt to get this working on behold2 while running the galaxy ROM at the same time.

BH_MAN has packaged the whole thing together. If I was trying this again I would follow this thread.

http://androidforums.com/samsung-behold-2/46614-port-galaxy-behold-2-123-install-done-right.html
rone is offline  
Reply With Quote
Old February 23rd, 2010, 11:11 AM   #9 (permalink)
Junior Member
 
xblue95's Avatar
 
Join Date: Jan 2010
Posts: 81
 
Device(s): MT3G Slide on the way! BeHold 2 kicked to the curb! (99.9% Mac OSX 10.6.2) (00.1% Win XP SP2 dua
Thanks: 12
Thanked 3 Times in 3 Posts
Default

Quote:
Originally Posted by rone View Post
My changes where my successful attempt to get this working on behold2 while running the galaxy ROM at the same time.

BH_MAN has packaged the whole thing together. If I was trying this again I would follow this thread.

http://androidforums.com/samsung-behold-2/46614-port-galaxy-behold-2-123-install-done-right.html
I didn't think of that, I assumed BH_MAN's code was for a Galaxy ROM'd phone. My phone is Galaxy ROM'd, so it is safe to run the 1st post code on Galaxy ROM'd phone? I just want to make sure, sorry I'm not quit clear yet.
xblue95 is offline  
Reply With Quote
Old February 23rd, 2010, 11:35 AM   #10 (permalink)
Junior Member
 
Join Date: Nov 2009
Posts: 47
 
Device(s):
Thanks: 0
Thanked 3 Times in 3 Posts
Default

Quote:
Originally Posted by xblue95 View Post
I didn't think of that, I assumed BH_MAN's code was for a Galaxy ROM'd phone. My phone is Galaxy ROM'd, so it is safe to run the 1st post code on Galaxy ROM'd phone? I just want to make sure, sorry I'm not quit clear yet.
When I ran the instructions in the first post of this thread on my phone already running galaxy ROM. It caused me troubles.

I knew enough to not copy the playlogo to playlogo_real again but still ran into problems when I replaced my current playlogo with the one from the post.

What I ended up doing was go back to stock rom and then go back to galaxy rom mixing the instuctions from from the galaxy rom thread and this thread.

bh_man has taken the guess work out of it by doing that in the other thread I referenced.

Now that 1.6 is out for the galaxy I am guessing (hoping) it will not be long be long before we see it on the behold 2. You may just want to wait for that before rushing into anything else.
rone is offline  
Reply With Quote
Sponsors
Old March 31st, 2010, 03:16 PM   #11 (permalink)
Senior Member
 
BH_MAN's Avatar
 
Join Date: Feb 2010
Posts: 1,382
 
Device(s): Behold 2 w/ BH_MAN Galaxy 1.6 / R7 Do Not PM me With Problem's Post in Thread!
Thanks: 156
Thanked 1,673 Times in 433 Posts
Default

This Method DOES NOT WORK FOR 1.6...

But, We have options... After Getting my Hands on a Little Something Something....
My Custom Kernel Once Flashed will Root Sh giving use Root. But, You have to Install SU into Bin & install the Superuser.apk. Once Done you Need to Flash Back to the Latest Kernel so the Phone Can Connect to the Carrier..
1.6 Rootable Kernel When Update Goes Live for 1.6 Here > 1.6 Hack for Root
BH_MAN is offline  
Reply With Quote
Old April 10th, 2010, 12:24 PM   #12 (permalink)
Member
 
Join Date: Apr 2010
Location: Somerville, MA
Posts: 213
 
Device(s): Samsung Behold II 1.6 galaxy BH_MAN R9 ROM Motorola Cliq XT 1.5 w/ MotoBlur
Thanks: 128
Thanked 18 Times in 15 Posts
suyash100@gmail.com
Default BH2 drivers

i have windows 7 x86 and i cannot use adb. on list of devices it doesnt show my device. i think its the drivers can you please help me find the right driver and how to install it?
suyash1 is offline  
Reply With Quote
Old April 10th, 2010, 11:50 PM   #13 (permalink)
Junior Member
 
Join Date: Jan 2010
Location: Sanford,Florida
Posts: 22
 
Device(s): lg vue,samsung behold2,motorola cliq xt and now tmobile G2
Thanks: 1
Thanked 0 Times in 0 Posts
Default ok i think i give up

Ok I have tried to do this epersistent root and can't find they way to do it? I need help please. All I want to know is for somebody to tell me how to root this phone all i want to delete are the apps it comes with. I also have been in other forums but at last nothing. Anybody that can help me do this in simple words or step by step I would be very happy and much appreciated
Calisto1224 is offline  
Reply With Quote
Old April 12th, 2010, 01:25 AM   #14 (permalink)
Senior Member
 
BH_MAN's Avatar
 
Join Date: Feb 2010
Posts: 1,382
 
Device(s): Behold 2 w/ BH_MAN Galaxy 1.6 / R7 Do Not PM me With Problem's Post in Thread!
Thanks: 156
Thanked 1,673 Times in 433 Posts
Default

Quote:
Originally Posted by Calisto1224 View Post
Ok I have tried to do this epersistent root and can't find they way to do it? I need help please. All I want to know is for somebody to tell me how to root this phone all i want to delete are the apps it comes with. I also have been in other forums but at last nothing. Anybody that can help me do this in simple words or step by step I would be very happy and much appreciated
If you got the Update over the OTA... It's not going to work!!! They Patched the Root Hack in the New Kernel that came with the OTA... You will Have to Odin this Kernel before You can Root the Phone!

http://androidforums.com/all-things-root-behold-2/53468-custom-behold-2-kernel-odin-ready-1-5-a.html
BH_MAN is offline  
Reply With Quote
Old April 16th, 2010, 01:16 AM   #15 (permalink)
Junior Member
 
Join Date: Apr 2010
Location: Ogden, Utah
Posts: 51
 
Device(s): Behold 2 1.6 ( No Twiz w/ Busybox & Rooted Kernel )
Thanks: 15
Thanked 1 Time in 1 Post
Default

noob question. What is persistent root and what does it do thats better for you?
beckhamsoccerman is offline  
Reply With Quote
Old April 16th, 2010, 09:10 AM   #16 (permalink)
Senior Member
 
chadmd23's Avatar
 
Join Date: Dec 2009
Location: NYC
Posts: 527
 
Device(s): Galaxy Nexus
Thanks: 69
Thanked 59 Times in 35 Posts
Send a message via AIM to chadmd23 Send a message via MSN to chadmd23 Send a message via Yahoo to chadmd23 Send a message via Skype™ to chadmd23
Default

Quote:
Originally Posted by beckhamsoccerman View Post
noob question. What is persistent root and what does it do thats better for you?
http://androidforums.com/all-things-root-behold-2/63946-great-article-explains-what-rooting.html

Search is your friend!
__________________
Please take a second to search for your answer, and keep the forums clean of repeat postings. Thanks!
chadmd23 is offline  
Reply With Quote
Old April 16th, 2010, 09:16 PM   #17 (permalink)
Senior Member
 
BH_MAN's Avatar
 
Join Date: Feb 2010
Posts: 1,382
 
Device(s): Behold 2 w/ BH_MAN Galaxy 1.6 / R7 Do Not PM me With Problem's Post in Thread!
Thanks: 156
Thanked 1,673 Times in 433 Posts
Default

Quote:
Originally Posted by beckhamsoccerman View Post
noob question. What is persistent root and what does it do thats better for you?
If you have to ask, you likely Don't need it.
BH_MAN is offline  
Reply With Quote
Reply

Samsung Behold 2
Current Rating:
Rate this Phone:

The Samsung Behold 2 for T-Mobile greatly improves on the first version of the phone by adding Android to the mix, providing for a powerful combination of hardware and sowftware. With Android, Samsung's custom TouchWiz UI, a 3.2-inch AMOLED Tou... Read More


Bookmarks


Go Back   Android Forums > Android Phones > Samsung Behold 2 > Behold 2 - All Things Root User CP
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
z4 root app not working longdaddy Droid X - All Things Root 22 June 13th, 2011 08:25 AM
No Root, because USB not working speedygonzales Desire - All Things Root 3 October 16th, 2010 03:26 PM
Removing Stock App's with Root Explorer Terabethia Incredible - All Things Root 2 September 11th, 2010 11:45 AM
anyone still working on root? Winters37 Backflip - All Things Root 6 August 27th, 2010 12:51 AM
Root 2.1 -> OTA 2.2 -> Lost Root BUT Ninja ICON Still Appears -> HOW TO ROOT? wem Droid - All Things Root 2 August 11th, 2010 10:30 AM



All times are GMT -5. The time now is 03:42 AM.
Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Custom vBulletin Skins by: Relivo