I connected to my live device using the adb and the following commands:

C:\>adb -s HT829GZ52000 shell
$ ls
ls
sqlite_stmt_journals
cache
sdcard
etc
system
sys
sbin
proc
logo.rle
init.trout.rc
init.rc
init.goldfish.rc
init
default.prop
data
root
dev
$ cd data
cd data
$ ls
ls
opendir failed, Permission denied

I was surprised to see that I have access denied. How come I can't browse around the directories using the commandline like this?

How do I get root access on my phone?

link|improve this question

74% accept rate
Simple... make sure your phone screen is on. Click "Allow" when it asks if you want Unknown to have access to root. Done. – user457909 Sep 25 '10 at 2:21
decided to create a simple avd to have access to the database. Does anyone have any links to guides, without "custom" flare and graphics for developers? Just how to get plain vanilla android on a purchased device. – BGS Jan 6 '11 at 19:20
feedback

7 Answers

up vote 19 down vote accepted

There are two things to remember if you want to browse everything on your device.

  1. You need to have a phone with root access in order to browse the data folder on an Android phone. That means either you have a developer device (ADP1 or an ION from Google I/O) or you've found a way to 'root' your phone some other way.
  2. You need to be running ADB in root mode, do this by executing: adb root
link|improve this answer
8  
And "adb root" requires a custom build of adb, otherwise "adbd cannot run as root in production builds" – bortzmeyer Jan 31 '11 at 13:55
3  
custom build of adb? where can I get it from? – Gopinath May 2 '11 at 11:09
any answer to @Gopinath question? – Ewoks Mar 30 at 9:17
feedback

Starting from API level 8 (Android 2.2) you can put android:debuggable="true" in your AndroidManifest.xml and then you can use the shell's run-as command to run a command or executable as a specific user/application or just switch to the uid of your application so you can access its data directory.

List directory content of yourapp:

run-as com.yourapp ls -l /data/data/com.yourapp

Switch to UID of com.yourapp and run all further commands using that uid (until you call exit):

run-as com.yourapp
cd /data/data/com.yourapp
ls -l
exit
link|improve this answer
This works as you explained where you run-as com.mypackage. The problem I ran into is sqlite3 /data/data/com.mypackage/databases/mydb says "sqlite3: permission denied". Can sqlite3 only be run by root? – styfle Nov 27 '11 at 6:28
1  
@styfle That's mean that either you don't have the permission to run sqlite3 executable (or access folder where it is located), or there is no sqlite3 at all on your phone (see for example: stackoverflow.com/a/3645800/648313) – Idolon Dec 1 '11 at 15:18
1  
@styfle Check stackoverflow.com/a/8433520/648313 for the possible solution of sqlite3 issue you have. – Idolon Dec 8 '11 at 16:29
feedback

if you know the application package you can cd directly to that folder..

eg cd data/data/com.yourapp

this will drop you into a directory that is read/writable so you can change files as needed. Since the folder is the same on the emulator, you can use that to get the folder path.

link|improve this answer
1  
I can cd to the folder directly, but I still get the "opendir failed, permission denied" error. – Tyler Collier Nov 23 '10 at 22:46
it doesn't work, still permission denied – Rafael T Jul 12 '11 at 16:24
feedback

production builds can't enter /data/app

drwxrwx--- system   cache             1970-01-01 08:00 cache
drwxrwxr-x root     system            1970-01-01 08:00 mnt 
drwxrwx--x system   system            1970-01-01 08:15 data

might need change to right owner to operate it.

link|improve this answer
feedback

I had a similar problem when trying to operate on a rooted Samsung Galaxy S. Issuing a command from the computer shell

> adb root

fails with a message "cannot run as root in production builds". Here is a simple method that allows to become root.

Instead of the previous, issue the following two commands one after the other

> adb shell
$ su

After the first command, if the prompt has changed from '>' to '$' as shown above, it means that you have entered the adb shell environment. If subsequently the prompt has changed to '#' after issuing the second command, that means that you are now root. Now, as root, you can do anything you want with your device.

To switch back to 'safe' shell, issue

# exit

You will see that the prompt '$' reappears which means you are in the adb shell as a user and not as root.

link|improve this answer
I get an error that 'adb root' doesn't work in production builds. – Igor G. Apr 20 at 16:58
feedback

You need to root your phone first, best way to do this is Google for "[your phone] root", you'll find plenty of resources. When that's done you can to into the adb shell as you would usually do and then su, after that you'll have superuser privileges!

link|improve this answer
feedback

I had a lot of trouble with this also. I still don't fully understand the permission and root run, but this worked for me (one of the previous answers partly) to copy database file from /data/data/[package name]/databases/my_db.db . Running shell root, or su in shell for some reason didn't work, nor did copying the db file (I could navigate to the directory though), nor did sqlite3.

So, this worked! In DOS command prompt:

C:\Program Files\Android\android-sdk\platform-tools>adb shell
1|shell@android:/ $ run-as de.vogella.android.locationapi.maps
run-as de.vogella.android.locationapi.maps
1|shell@android:/data/data/de.vogella.android.locationapi.maps $ cd /data
cd /data
shell@android:/data $ cd data
cd data
shell@android:/data/data $ cd de.vogella.android.locationapi.maps
cd de.vogella.android.locationapi.maps
shell@android:/data/data/de.vogella.android.locationapi.maps $ cd databases
cd databases
shell@android:/data/data/de.vogella.android.locationapi.maps/databases $ ls
ls
bus_timetable_lines.db
bus_timetable_lines.db-journal
shell@android:/data/data/de.vogella.android.locationapi.maps/databases $ cat bus
_timetable_lines.db > /sdcard/db_copy.db
 bus_timetable_lines.db > /sdcard/db_copy.db                                   <
shell@android:/data/data/de.vogella.android.locationapi.maps/databases $exit   ^
exit
shell@android:/ $ exit
exit

C:\Program Files\Android\android-sdk\platform-tools>

Now go to SDCARD directory and get your file db_copy.db . Even that was hidden, but I managed to email it. Back in Windows, I was able to open db file with SQLite Database Browser. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.