michael
michael

Reputation: 110670

How to list the content of my android device

I have an android G1 device as my developer phone. I have unlocked it and i can load image files to the phone using 'fastboot' command.

But when I open a 'adb shell' and try to list out the content of the directory /data/data using ls command, i get 'opendir failed, Permission denied'

$ adb shell
$ cd /data/data
$ ls
opendir failed, Permission denied
$ exit
$ adb remount
remount failed: Operation not permitted

Can u please tell me how can i fix that?

Thank you.

Upvotes: 1

Views: 2443

Answers (1)

EboMike
EboMike

Reputation: 77762

Enter su to become superuser.

Upvotes: 2

Related Questions