• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Root Access root files from PC

Believe it or not, but I just threw away an unopened box of 5.25" drives.

Okay, wait. Why would you have had a "box of drives"? I haven't heard of disk drives being packed together in the same box. Are you sure you didn't mean "disks"?

Also, why would you just throw them away? Why didn't you at least try to sell them (like maybe on ebay, where there are many old things like that successfully being sold), or give them away to a friend or even some other individual, or even just run them over to a Deseret Industries store or Goodwill store or something like that?
 
So in fact is there any GUI program to access root files on android form PC???

Not sure...did you read about some of the options mentioned above?

The problem with running a GUI on the PC and having it be able to access root-protected files on your phone/tablet would be that they'd have to have an adb shell running that invoked su to send/receive all of the commands and output.

I'm not aware if any of the above items will do this in a GUI or if there are new tools that will do this.
 
Not sure...did you read about some of the options mentioned above?

The problem with running a GUI on the PC and having it be able to access root-protected files on your phone/tablet would be that they'd have to have an adb shell running that invoked su to send/receive all of the commands and output.

I'm not aware if any of the above items will do this in a GUI or if there are new tools that will do this.

No, not this variant with adb shell, just to install a root application and access system files with it
 
prj,

Well, its the Android SDK's adb.exe utility. Its got the ability to push and pull files from to/from Windows as well as being able to invoke a shell to Linux on your phone.

Here's some example commands to illustrate this:

First, demonstrate sending (pushing) a file and retrieving (pulling) a file:

c:\temp>
c:\temp>
cd c:\android-sdk-windows\tools
c:\android-sdk-windows\tools> adb push c:\temp\testfile.txt /sdcard/download/fromwindows.txt
c:\android-sdk-windows\tools> adb pull /sdcard/download/fromwindows.txt c:\temp\fromphone.txt

Now, doing stuff from the shell:

c:\android-sdk-windows\tools> adb shell [ launch a shell to the phone ]
$ pwd [ display present working directory ]
/
$ cd /sdcard/download [ change directories ]
$ pwd
/sdcard/download
$ su [ get root access ]
#
(notice how our prompt changes to the pound-sign to indicate we've now got root capability)
# ls [ list the files in current directory ]
fromwindows.txt
# mv fromwindows.txt fromwin.dat [ rename a file ]
# cp fromwin.dat savefromwin.dat [ copy a file ]
# ls
fromwin.dat savefromwin.dat
# cat fromwin.dat [ copy a file to the stdout (screen) ]
hi there, I'm a file that you created on Windows and transferred to your phone.
# rm fromwin.dat [ delete a file ]
# ls fromwin.dat
rm failed for fromwin.dat, No such file or directory
# cat savefromwin.dat > fromwin.dat [ copy a file to another file ]
# ls
fromwin.dat savefromwin.dat
# exit [ terminate the shell and return to Windows Command Prompt ]
c:\android-sdk-windows\tools>

And on and on... Note: you can do all of the stuff above from the shell session using something like the Android Terminal Emulator (free in the Market), but you don't get to it by invoking "adb shell" (you only do that from Windows when in the SDK tools directory).

Oh, also, the root directory would be "/" on the phone. You can "cd /" to change to that directory to start navigating.

Hope that helps...cheers!
Seems like you know what's up. Well listen, I'm new to computers commands and all that stuff yanno?
But I do know some about jailbreak and root. Mind helping me with a Minor Issue?
 
Welcome to our AndroidForums, Johnny--sure, I'll try to help if I can.

Do you have an Eris-related question or something related to navigating with an adb shell?
 
Welcome to our AndroidForums, Johnny--sure, I'll try to help if I can.

Do you have an Eris-related question or something related to navigating with an adb shell?
Not really, I fixed my problems. I found another way to get at it/fix it that wasn't any online solutions and would have been needed to be found manually. Thanks for the help.
 
Back
Top Bottom