Android手机目录结构

/data/system/目录下

_manifest

batterystats.bin
cache
called_pre_boots.dat
custom-packages.xml
customized_icons
device_policies.xml
dropbox
enable_theme
entropy.dat
gesture.key手势密码(删除即可破解)
holidaydata
holidayversion
inputmethod
locksettings.db
locksettings.db-shm
locksettings.db-wal
netpolicy.xml
netstats
notification_policy.xml
packages.list
packages.xml
password.key数字密码(删除即可破解)
preinstall_history
registered_services
ringtones
shared_prefs
sync
theme
throttle
uiderrors.txt
usagestats
users

/data/tombstones目录里面放的是异常程序挂掉时的一些状态,供开发人员找问题用的,是那些FC的进程core dump(tombstone是墓碑的意思)


\system\bin\am
\system\bin\app_process 系统进程
\system\bin\dalvikvm Dalvik虚拟机宿主
\system\bin\dbus-daemon 系统BUS总线监控
\system\bin\debuggerd 调试器
\system\bin\debug_tool 调试工具
\system\bin\dexopt DEX选项
\system\bin\dhcpcd DHCP服务器
\system\bin\dumpstate 状态抓取器
\system\bin\dumpsys 系统抓取器
\system\bin\dvz
\system\bin\fillup
\system\bin\flash_image 闪存映像
\system\bin\hciattach
\system\bin\hcid HCID内核
\system\bin\hostapd
\system\bin\hostapd_cli
\system\bin\htclogkernel
\system\bin\input
\system\bin\installd
\system\bin\itr
\system\bin\linker
\system\bin\logcat Logcat日志打印
\system\bin\logwrapper
\system\bin\mediaserver
\system\bin\monkey
\system\bin\mountd 存储挂载器
\system\bin\netcfg 网络设置
\system\bin\ping Ping程序
\system\bin\playmp3 MP3播放器
\system\bin\pm 包管理器
\system\bin\qemud QEMU虚拟机
\system\bin\radiooptions 无线选项
\system\bin\rild RIL组件
\system\bin\sdptool
\system\bin\sdutil
\system\bin\service 
\system\bin\servicemanager 服务管理器
\system\bin\sh
\system\bin\ssltest SSL测试
\system\bin\surfaceflinger 触摸感应驱动
\system\bin\svc 服务
\system\bin\system_server
\system\bin\telnetd Telnet组件
\system\bin\toolbox
\system\bin\wlan_loader
\system\bin\wpa_cli
\system\bin\wpa_supplicant
subsystem
device
power
type
status
health
present
technology
capacity
voltage_now
temp
charge_full_design
charge_counter

\system\bin\这个目录下的文件都是系统的本地程序,从bin文件夹名称可以看出是binary二进制的程序,里面主要是Linux系统自带的组件,下面做下简单的分析介绍:

\system\bin\akmd


/sys/class/power_supply/battery

uevent


/etc/hosts 在 Android 下,/etc 是 link 到 /system/etc 的/etc/hosts  

/system/etc目录

从文件夹名称来看保存的都是系统的配置文件,比如APN接入点设置等核心配置。

/system/etc/apns-conf.xml APN接入点配置文件
/system/etc/AudioFilter.csv 音频过滤器配置文件
/system/etc/AudioPara4.csv
/system/etc/bookmarks.xml 书签数据库
/system/etc/dbus.conf 总线监视配置文件
/system/etc/dhcpcd
/system/etc/event-log-tags
/system/etc/favorites.xml 收藏夹
/system/etc/firmware 固件信息
/system/etc/gps.conf GPS设置文件
/system/etc/hcid.conf  内核HCID配置文件
/system/etc/hosts 网络DNS缓存(Android修改system只读权限:remount
/system/etc/init.goldfish.sh
/system/etc/location 定位相关
/system/etc/mountd.conf 存储挂载配置文件
/system/etc/NOTICE.html 提示网页
/system/etc/permissions.xml 权限许可
/system/etc/pvplayer.conf 
/system/etc/security 
/system/etc/wifi WLAN相关组件
/system/etc/dhcpcd/dhcpcd-hooks
/system/etc/dhcpcd/dhcpcd-run-hooks
/system/etc/dhcpcd/dhcpcd.conf
/system/etc/dhcpcd/dhcpcd-hooks/01-test
/system/etc/dhcpcd/dhcpcd-hooks/20-dns.conf
/system/etc/dhcpcd/dhcpcd-hooks/95-configured
/system/etc/firmware/brf6300.bin
/system/etc/location/gps
/system/etc/location/gps/location 定位相关
/system/etc/location/gps/nmea GPS数据解析
/system/etc/location/gps/properties
/system/etc/security/cacerts.bks
/system/etc/security/otacerts.zip OTA下载验证
/system/etc/wifi/Fw1251r1c.bin
/system/etc/wifi/tiwlan.ini
/system/etc/wifi/wpa_supplicant.conf WPA验证组件


你可能感兴趣的:(android,目录结构)