0

How does storage space in our phone is partitioned? How can we access our storage space?

Firelord
  • 25,084
  • 20
  • 124
  • 286

1 Answers1

0

Most Android phones have eMMC (flash memory), partitioned in GUID partition table (GPT) just like a PC's hard disk. There are usually less or more 50 partitions on a latest Android phone. OS uses /system while user uses /data mainly. Internal SD card is /data/media. Other partitions are smaller.

For more details, visit this link.

If you have a rooted phone, you can use Linux tools (parted, gdisk etc.) to manipulate Android 's partition table. But that's really risky.

To fully access storage space, you need root permissions.

RELATED: How disk space is used on Android device?

Irfan Latif
  • 20,353
  • 3
  • 70
  • 213