3

I have an Android emulator running, and am trying to figure out the file system. It doesn't seem to be 100% standard Linux layout.

Anyway, when opening a DDMS file browser, I get 3 folders at the "root": data, mnt and system. When running ls / from a shell, I get a much longer and different list. What is going on here?

Baruch
  • 20,590
  • 28
  • 126
  • 201

1 Answers1

0

Android has the 100% linux file system.The adb tool shows the correct file structure, its the DDMS(ADT in particular) which is not showing all the directories due to some reasons(probably security reasons).

Amol Gupta
  • 704
  • 1
  • 8
  • 26
  • there is no `/lib`, `/bin`, `/var` or `/usr`, to name a few differences. So this is not 100% linux – Baruch Aug 05 '11 at 08:16