[Q] how to access phone memory via pc?

Search This thread

peter tham

Member
Nov 18, 2011
7
0
Dear all,

Good day.
I would like to ask,can I access phone memory (HTC aria A6380)
on pc?

It was because I accidentally move a script file "sh"
from my /system/bin folder to my sd card.

Now I would like to cut back the file and paste it back to the original folder which in system file...

But,without the "sh" file in /system/bin/ folder,the root explore .apk can't work

So,I would need some expert advise...
 

drumist

Senior Member
Aug 6, 2010
1,725
543
Yes you can. You need to use the 'adb' tool. Download here: http://xdaforums.com/attachment.php?attachmentid=630611&stc=1&d=1308537076 and extract it to a folder, then open a command line to that folder.

Connect your phone, and make sure USB debugging is enabled. Copy the file from your SD card to your computer. If you do not have S-OFF, you need to go to Clockworkmod recovery on your device before this will work.

From the command line, do adb devices to see if the phone is connected properly. Then do adb remount to mount the system partition as writable. Then do adb push C:\path\to\filename /system/bin/filename to copy the file. Then just disconnect and reboot the phone.
 

peter tham

Member
Nov 18, 2011
7
0
Yes you can. You need to use the 'adb' tool. Download here: http://xdaforums.com/attachment.php?attachmentid=630611&stc=1&d=1308537076 and extract it to a folder, then open a command line to that folder.

Connect your phone, and make sure USB debugging is enabled. Copy the file from your SD card to your computer. If you do not have S-OFF, you need to go to Clockworkmod recovery on your device before this will work.

From the command line, do adb devices to see if the phone is connected properly. Then do adb remount to mount the system partition as writable. Then do adb push C:\path\to\filename /system/bin/filename to copy the file. Then just disconnect and reboot the phone.
how to add a command line?
 

Top Liked Posts

  • There are no posts matching your filters.
  • 2
    Yes you can. You need to use the 'adb' tool. Download here: http://xdaforums.com/attachment.php?attachmentid=630611&stc=1&d=1308537076 and extract it to a folder, then open a command line to that folder.

    Connect your phone, and make sure USB debugging is enabled. Copy the file from your SD card to your computer. If you do not have S-OFF, you need to go to Clockworkmod recovery on your device before this will work.

    From the command line, do adb devices to see if the phone is connected properly. Then do adb remount to mount the system partition as writable. Then do adb push C:\path\to\filename /system/bin/filename to copy the file. Then just disconnect and reboot the phone.