[ROM] Passion_Google_WWE_2.16.1700.1_FRG33_MFG_Shipment_ ROM

Search This thread

efrant

Retired Senior Moderator & Developers Relations
Feb 12, 2009
11,469
10,985
Montreal
Samsung Galaxy S20
i already do from previous root....do i need to REinstall them?

If they are still there, probably not. You may want to check the permissions though.

Just to be sure, I would execute these commands from a root shell (i.e., at the # prompt) assuming the file are already there:

# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
# chmod 4755 /system/bin/busybox
# chmod 4755 /system/bin/su
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
# exit
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
C:\android-sdk-windows\tools>adb shell
# ./busybox cp busybox /system/bin
./busybox cp busybox /system/bin
./busybox: not found
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
cd /data/local/tmp
# chmod 4755 /system/bin/busybox
chmod 4755 /system/bin/busybox
Unable to chmod /system/bin/busybox: No such file or directory
#


busybox is no longer there...

BTW permissions DENIED, i checked.
 

efrant

Retired Senior Moderator & Developers Relations
Feb 12, 2009
11,469
10,985
Montreal
Samsung Galaxy S20
C:\android-sdk-windows\tools>adb shell
# ./busybox cp busybox /system/bin
./busybox cp busybox /system/bin
./busybox: not found
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
cd /data/local/tmp
# chmod 4755 /system/bin/busybox
chmod 4755 /system/bin/busybox
Unable to chmod /system/bin/busybox: No such file or directory
#


busybox is no longer there...

BTW permissions DENIED, i checked.
You need to mount the partition as rw BEFORE you try copying busybox over...
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
okay so then it would be like this..? because i just recently started up on rooting again, its been awhile! so i'am RUSTY...

# mount,rw -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
 

efrant

Retired Senior Moderator & Developers Relations
Feb 12, 2009
11,469
10,985
Montreal
Samsung Galaxy S20
If they are still there, probably not. You may want to check the permissions though.

Just to be sure, I would execute these commands from a root shell (i.e., at the # prompt) assuming the file are already there:

# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
# chmod 4755 /system/bin/busybox
# chmod 4755 /system/bin/su
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
# exit

okay so then it would be like this..? because i just recently started up on rooting again, its been awhile! so i'am RUSTY...

# mount,rw -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
Look at my post...
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
still confused..


C:\android-sdk-windows\tools>adb shell
# mount -o rw,remount /dev/block/stl9 /system
mount -o rw,remount /dev/block/stl9 /system
# exit
exit

C:\android-sdk-windows\tools>adb push <path to su>/su /system/bin/su
The system cannot find the file specified.

C:\android-sdk-windows\tools>


i tried using this post to help...http://xdaforums.com/showpost.php?p=8079243&postcount=51 but to No avail i wonder if iam still missing files....i see busybox and SU and superuser.apk in the tools folder of my SDK just dont have a clue.
 

efrant

Retired Senior Moderator & Developers Relations
Feb 12, 2009
11,469
10,985
Montreal
Samsung Galaxy S20
still confused..


C:\android-sdk-windows\tools>adb shell
# mount -o rw,remount /dev/block/stl9 /system
mount -o rw,remount /dev/block/stl9 /system
# exit
exit

C:\android-sdk-windows\tools>adb push <path to su>/su /system/bin/su
The system cannot find the file specified.

C:\android-sdk-windows\tools>


i tried using this post to help...http://xdaforums.com/showpost.php?p=8079243&postcount=51 but to No avail i wonder if iam still missing files....i see busybox and SU and superuser.apk in the tools folder of my SDK just dont have a clue.
You don't have a clue and are confused, because you are not reading what I post. The command you issued in NOT correct. Compare what you typed with what I had typed.

Secondly, why are you looking in the Samsung Fascinate forums? If you would look at the Nexus One forums (I am assuming you have an N1), you would see many threads with proper instructions.

Thirdly, do this from a command prompt in the /android-sdk-windows/tools directory, where all three files should be (and not in zip files):

adb push Superuser.apk /data/local/tmp/Superuser.apk
adb push su /data/local/tmp/su
adb push busybox /data/local/tmp/busybox

Then, from a ROOT shell:

# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
# ./busybox cp busybox /system/bin
# chmod 4755 /system/bin/busybox
# busybox cp Superuser.apk /system/app
# busybox cp su /system/bin
# chmod 4755 /system/bin/su
# mount -o remount,ro -t yaffs2 /dev/block/mtdblock3 /system
# exit
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
C:\android-sdk-windows\tools>adb push Superuser.apk /data/local/tmp/Superuser.ap
k
24 KB/s (27688 bytes in 1.108s)

C:\android-sdk-windows\tools>adb push su /data/local/tmp/su
198 KB/s (26248 bytes in 0.129s)

C:\android-sdk-windows\tools>adb push busybox /data/local/tmp/busybox
672 KB/s (1926944 bytes in 2.798s)

C:\android-sdk-windows\tools>adb shell
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
cd /data/local/tmp
# ./busybox cp busybox /system/bin
./busybox cp busybox /system/bin
./busybox: permission denied

#


alright so i tried it with busybox ALREADY installed in my phone FAILED, now i tried it again but uninstalled the previous busybox from the LAST root and still got the same message above..?
 

efrant

Retired Senior Moderator & Developers Relations
Feb 12, 2009
11,469
10,985
Montreal
Samsung Galaxy S20
C:\android-sdk-windows\tools>adb push Superuser.apk /data/local/tmp/Superuser.ap
k
24 KB/s (27688 bytes in 1.108s)

C:\android-sdk-windows\tools>adb push su /data/local/tmp/su
198 KB/s (26248 bytes in 0.129s)

C:\android-sdk-windows\tools>adb push busybox /data/local/tmp/busybox
672 KB/s (1926944 bytes in 2.798s)

C:\android-sdk-windows\tools>adb shell
# mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
# cd /data/local/tmp
cd /data/local/tmp
# ./busybox cp busybox /system/bin
./busybox cp busybox /system/bin
./busybox: permission denied

#


alright so i tried it with busybox ALREADY installed in my phone FAILED, now i tried it again but uninstalled the previous busybox from the LAST root and still got the same message above..?
Well, I am all out of suggestions. Not sure why it's not working for you. Maybe someone more knowledgeable than I could chime in and help out.
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
thanks a bunch! =) definitely appreciated guess for now ill take a BREAK! my head is seeing everything in black and white lol.


OH HEY! btw do you know if there might be another 1 click root apk upcoming? or from now on itll be manual rooting processes?



OH i fixed the busybox problem i went into the market and installed the latest busybox and it asked me for root permissions! =) so i just iam ROOTED for good! to test this ill reboot and see if i still have it. THANKS!
 
Last edited:

Rusty!

Senior Member
Jan 10, 2010
8,011
1,785
Portsmouth
Dunno if it will help, but instead of trying to use the not-yet-installed busybox to copy itself to system/bin, try this:

Code:
cd /system/bin
cat /data/local/tmp/busybox > busybox
chmod 4755 busybox
 

l0uisz

Senior Member
Jan 25, 2009
126
5
Queens,Corona
www.twitter.com
Dunno if it will help, but instead of trying to use the not-yet-installed busybox to copy itself to system/bin, try this:

Code:
cd /system/bin
cat /data/local/tmp/busybox > busybox
chmod 4755 busybox

i dont know if you read my previous UPDATED post i got it to work i reinstalled busybox via the market and su permissions popped up for me! so im all set thanks for the extra info!
 

CodeRed071

Member
Feb 25, 2009
25
0
F:\ADB>adb push rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage

I get an error

There is no disk in the drive. Please insert a disk into the drive
\DevicHarddisk1\DR8
 

Top Liked Posts

  • There are no posts matching your filters.
  • 1
    My friend's new nexus one is already FRG33 as it arrived, there is no way to use 1-click root.
    I've tried to use new exploit from C skills and it did show "#". So I think it should do the trick.
    I doesn't flash anything yet, therefore, this is for your reference.

    C skills: h ttp://c-skills.blogspot.com/2010/08/please-hold-line.html

    1. Get the exploit (executable file)
    exploit: h ttp://stealth.openwall.net/xSports/RageAgainstTheCage.tgz

    2. Extract the .tgz file to get the "rageagainstthecage-arm5.bin"
    I put the file in d:\RageAgainstTheCage

    3. Put exploit file to your N1
    adb push d:\RageAgainstTheCage\rageagainstthecage-arm5.bin /data/local/tmp/rageagainstthecage
    adb shell chmod 700 /data/local/tmp/rageagainstthecage

    4. Enter adb shell
    adb shell

    5. Execute exploit (It will automatically close adb shell)
    $cd /data/local/tmp
    $./rageagainstthecage

    6. Restart adb
    adb kill-server
    adb start-server

    7. Enter adb shell again
    # (Yes, my lord.)

    I've found it may not success every time, if it doesn't, please go through steps 4~7 again.
    If it still doesn't work, we need to wait a new way to root. Good luck.