You bought a new Xiaomi, Redmi or POCO smartphone, but you canβt find where to look at the free space on the internal drive in the settings? Or you want to check how much RAM (RAM) is occupied by background applications? This problem is familiar to many users β the manufacturer regularly changes the location of the menu in the MIUI firmware, and in some models memory data is generally hidden behind several layers of settings.
In this article, we will not only show you the standard Settings β About the phone, but we will look at all possible ways to check memory, from basic to hidden. You will learn how to distinguish internal memory from RAM, why Xiaomi often shows less space than it indicates on the box, and what to do if the system displays data incorrectly, and also where to find information about memory in developer mode and how to check it through ADB.
Standard way: where in the settings Xiaomi to look memory
On most Xiaomi, Redmi and POCO smartphones with MIUI 12-14 firmware, memory information is available through the main settings menu.
- Open the Settings app (cog icon).
- Scroll down and select the About Phone section.
- Click on the Device Characteristics bar (or General Information in older versions).
- Here you'll see the blocks: π± Device model (e.g. Redmi Note 12 Pro)+). πΎ Internal memory (e.g. 256 GB). π RAM (for example, 8 GB).
But here's the catch: MIUI shows total storage, not free space, so to see how much is available for your files, you need to go to another section:
- Return to the main settings menu.
- Select Storage (or Memory in some localizations).
- The system will display a diagram with the distribution of memory by categories: Applications, Photos and Videos, Files, etc.
| Xiaomi model | Acclamated memory | Available to the user | Reason for the difference |
|---|---|---|---|
| Redmi Note 12 Pro | 256GB | 238-242 GB | Firmware + formatting |
| Xiaomi 13 Ultra | 512GB | 476β480 GB | Service sections + cache |
| POCO X5 Pro | 128GB | 114-116 GB | Reserve for updates |
On some models (such as the Redmi 10C), the difference can be as high as 15-20 GB due to the reduced firmware for budget devices. If you are critical of every gigabyte, check the actual reviews of the owners of a particular model before buying.
Where in Xiaomi to see RAM (RAM)?
The RAM (RAM) on Xiaomi is not as obvious as the internal memory. There are three ways:
1. Through About the Phone
As with internal memory, go to Settings β About Phone β Device Specifications. RAM line will show the total amount of RAM (for example, 6 GB or 12 GB).
2. via "Security" (for MIUI 13-14)
This method shows the current RAM load:
- Open the Settings. β Security.
- Click on the Optimization (or Acceleration) icon.
- At the top of the screen, a graph of RAM usage will appear indicating free and occupied memory.
3. Through Developer Modes
If you want detailed statistics (such as how much memory each application takes up), turn on the developer mode:
- Go to Settings. β The phone.
- Click 7 times on the MIUI version until you become a developer!
- Return to the main Settings menu and select Additional β For Developers.
- Scroll down to the Debugging block and find Memory: π Average loading RAM. π List of processes with indication of consumed memory.
Enable the developer mode|Check total volume RAM on the telephone"|View the current download in "Security" β Optimization"|Read the detailed statistics in "For developers"-->
Hidden Memory Partitions: What is the Other and How to Clean It
In the Warehouse section, you might notice a mysterious item called The Other, which is 10 to 30 GB and not cleaned by standard means. What is it?
- ποΈ Cash of system applications. MIUI Actively caches data to speed up work (e.g. Mi Video, Mi Music).
- π Logs and dumps: The system stores error reports that can weigh up to 5 to 10 GB.
- π Remnants of deleted applications. Some files remain even after uninstallation.
- π± Hidden folders MIUI. For example, /MIUI/backup or /MIUI/extra.
How to clean the Other:
- Use the built-in cleaner (Settings β Storage β Clean).
- Remove the cache of system applications through Settings β Annexes β Application management β [Select an application] β Warehouse β Clear the cache.
- For deep cleaning, use ADB: adb shell pm clear --user 0 Com.miui.application Replace the com.miui.application with a real package (e.g. com.miui.video).
What happens if you delete all files from The Other?
Memory Display Problems: Why Xiaomi Shows Wrong Data
Sometimes Xiaomi smartphones start to lie about the space, like 0GB or negative values.
- π File system failure, often after incorrect extraction SD-map or interrupted update. β οΈ Note: If the problem has not gone away after the reboot, do not format the memory via PC - this can lead to data loss. β Warehouse β Verification and recovery.
- π± Firmware error in some versions. MIUI 12.5 was a memory display bug on devices with UFS 3.1 (e.g. Xiaomi) 11T Pro. The solution is to upgrade to MIUI 13+.
- π οΈ Damaged. SD-If you're using a memory card, take it out and check for space without it.
If nothing works, try resetting through Settings β About Phone β Reset β Resetting all settings. Donβt confuse it with a full reset (wipe) β it will delete all data!
π‘
Before resetting, be sure to back up via Settings β About Phone β Backup.This will save your contacts, SMS and app settings, but not photos or videos (they need to be copied manually).
How to Check Memory on Xiaomi with ADB (For Advanced Users)
If standard methods donβt give the full picture, you can use Android Debug Bridge (ADB), which is suitable for diagnosing hidden partitions or when the phone displays data incorrectly.
You'll need:
- π₯οΈ Computer with installed ADB-driver.
- π± Developer mode enabled and debugging by USB smartphone.
- π Cable USB Type-C (preferably original).
Instructions:
- Connect the phone to the PC and confirm the debugging permission.
- Open the command line (cmd) and type: adb shell df -h This command will show all memory sections indicating the free and occupied space.
- To see detailed information about RAM, do: adb shell dumpsys meminfo
Example of output for the Redmi Note 11 Pro+:
/dev/block/mmcblk0p53 115G 23G 92G 20% /data
/dev/block/mmcblk0p54 16G 2G 14G 12% /cacheYou can see here that out of 115 GB of user partition, 23 GB is occupied, and 92 GB is free.
π‘
If the adb shell df -h command returns the Permission denied error, try getting root rights first through adb root (not working on all models).