답변:
/cache
파티션은 주로 Google Play 스토어에서 다운로드 한 파일을 저장하기위한 것입니다 /cache/downloads
. 또한 /cache/recovery
호출 된 복구 로그도 보유 할 수 last_log
있습니다 (이것은 1 recovery
진 또는 CWM 또는 2 진의 이진 파일 에서 오류 및 / 또는 진단을 보유하며, 이진 파일의 디버그 및 개발을 지원하기 위해 파일에 기록됩니다 recovery
).
SDC를 마운트 해제하지 않고 잘못 제거하는 등 파일 시스템 손상의 결과로 lost+found
복구 된 파일 (있는 경우 ) 을 보유하는 다른 디렉토리도 있습니다.
따라서 실제로 데이터를 지우면 데이터가 손실되지 않습니다 .
실제로 Android 부팅시 스크립트는 /cache/downloads
Google Play 스토어에서 새로운 다운로드 / 업데이트를 수행 할 수있는 방법을 제공합니다.
Android 장치에서 사용되는 파일 시스템에 대한 자세한 개요를 제공하기 위해 더 중요한 것들을 선택하는 간단한 표가 있습니다.
+---------------+------------------+------------------------------------------+
| Mount Point | File System Type | What to find here |
+---------------+------------------+------------------------------------------+
| /proc | proc | metadata about the system such as file |
| | | system statistics |
| /data/data[1] | YAFFS2 | almost all app data |
| /data[2] | EXT3/EXT4/YAFFS2 | data from apps (except those stored on |
| | | /data/data) plus system |
| /cache | YAFFS2/EXT3 | Cache file system used by some apps and |
| | | by the system |
| /mnt/asec | tmpfs | unencrypted .apk file (the encrypted |
| | | counterpart is stored in |
| | | /mnt/sdcard/.android_secure; decrypted |
| | | variant is needed for running systems to |
| | | access/execute |
| /app-cache | tmpfs | temporary file system used e.g. by the |
| | | stock-browser on some HTC devices |
| /mnt/sdcard | vfat | FAT32 file system on the SD-card |
| /mnt/emmc | vfat | FAT32 file system on the embedded |
| | | (internal) eMMC |
+---------------+------------------+------------------------------------------+
[1] 구형 시스템에서는 전체 /data
가 단일 파티션 / 파일 시스템 일뿐입니다. [2] 최신 장치에서는 /data
추가로 분리 할 수 있습니다.
모든 파일 시스템에서 이러한 파일 시스템을 모두 찾을 수는 없지만 일부 파일을 찾으면이 목록을 참고하십시오.