How to remove the โ€œOtherโ€ on Xiaomi: 5 working ways

The โ€œOtherโ€ section in Xiaomi, Redmi or POCO is a real black hole for free space, it can take anywhere from 5 to 30 GB, but the system does not show which files are stored there. Users often face a situation where memory is running out, and in the โ€œOtherโ€ section there are tens of gigabytes of unknown data. Why is this happening?

The fact is that MIUI defines โ€œOtherโ€ as app cache, temporary files, remnants of deleted programs, system logs, Dalvik/ART data, and even update fragments. Unlike visible folders (photos, videos, music), these files do not have a clear structure and are often duplicated. For example, after updating MIUI, old versions of app stores can remain in memory like garbage, and the messenger cache (for example, Telegram or WhatsApp) grows to giant sizes. In this article, we will discuss how to safely clean โ€œOtherโ€ on Xiaomi without breaking the system and losing important data.

What is the Other in Xiaomiโ€™s Memory and Why Does It Take So Much Space?

In MIUI (and its Redmi/POCO versions), the Others section is a collection category for files that donโ€™t fall into the standard folders (Images, Videos, Audio, etc.).

  • ๐Ÿ—‘๏ธ Application cache โ€“ temporary files that create programs to speed up work (for example, YouTube cache, TikTok or games).
  • ๐Ÿ“ฆ Remnants of remote applications are not completely erased data from apps that you have long uninstalled.
  • ๐Ÿ”„ Update files - packages OTA-update MIUI, which remain after installation.
  • ๐Ÿ“œ System logs โ€“ error logs, crash reports, and diagnostic information (e.g. files) /data/log).
  • ๐Ÿค– Dalvik/ART-cache โ€“ optimized data to speed up application launch (located in /data/dalvik-cache).

The main problem is that MIUI doesn't provide tools to analyze this partition in detail, like in Samsung or Google Pixel, you can see which apps occupy the most cache space, and here it is only the total volume, and in fact, some files in the "Proch" are locked to the user and not deleted by standard means.

In our experience, the most garbage accumulates in users who:

  • ๐Ÿ“ฑ Frequently install/delete apps (especially games).
  • ๐Ÿ“น Actively use messengers and social networks (Telegram, VK, Instagram).
  • ๐Ÿ”„ Updated regularly MIUI through OTA.
  • ๐ŸŽฎ They use emulators (PPSSPP, Dolphin) or modified appas.
๐Ÿ“Š How often do you clear your memory on Xiaomi?
Once a week.
Once a month
Only when the place ends.
Never clean.

Method 1: Clear cache of all applications (without root)

The easiest and safest method is mass cache cleaning. It doesn't require superuser rights and is suitable for all models, including the Xiaomi 13, Redmi Note 12 and POCO X5. Cache are temporary files that apps create to speed up work. Deleting them won't hurt data, but can slow down the first start of app's after cleaning.

Instructions:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Click on the three dots in the top right corner and select "Sort by size."
  3. In the list, find applications with a large cache (usually Telegram, Google Play Services, MIUI System, games).
  4. Put it on the app โ†’ Warehouse โ†’ Clean the cache.

To speed up the process, you can use mass cleaning:

  1. Go to Settings โ†’ Memory โ†’ Cleanup.
  2. Click Deep Clean โ†’ select โ€œCashโ€.
  3. Confirm the action (the system will show how much space will be vacated).

โ˜‘๏ธ Preparation for cache cleaning

Done: 0 / 4

โš ๏ธ Warning: Don't confuse Clear cache and Clear data! The second action will delete all settings and application files (e.g. WhatsApp chats or saves in games).

๐Ÿ’ก

Cleaning the cache is the safest way to release 1-5 GB in the Other section. Repeat the procedure every 1-2 weeks to maintain performance.

Method 2: Remove Remnants of Remote Applications

When you uninstall an app through Settings or Google Play, MIUI doesnโ€™t always delete all the files associated with it.

  • ๐Ÿ“ Folders in /Android/data and /Android/obb (particularly).
  • ๐Ÿ”ง Settings and cache in /data/data (requires root to be completely cleaned).
  • ๐Ÿ“‚ Temporary files in /sdcard/.thumbnails (picture-size).

To remove these residues:

  1. Install a file manager with support for hidden folders (such as Solid Explorer or FX File Explorer).
  2. Go to /storage/emulated/0/Android and delete the data and obb folders for unnecessary applications.
  3. Check the /sdcard/.thumbnails folder โ€“ it can be completely cleaned (this is the thumbnail cache).

For advanced users:

adb shell pm list packages -u

This command will show you a list of apps with the -u flag (remote but with data leftovers) and use:

adb shell pm clear --user 0 com.example.app

(Replace com.example.app with the app ID from the list).

How to find the application ID?
Open Google Play, go to the app page โ†’ copy the text after โ€œid=โ€ in the address bar (for example, for Telegram it is com.telegram).

โš ๏ธ Attention: Removal of folders in /Android/obb This can cause game crashes if they use additional files (such as Genshin Impact or Call of Duty Mobile.

Method 3: Cleanup Dalvik/ART-cache and temporary files MIUI

System system MIUI use Dalvik/ART-cache to speed up application launches. These files are stored in /data/dalvik-cache and can borrow from 500 MB to 2 Cleaning this cache will not damage the system, but after the restart, the smartphone will work slower first. 5โ€“10 minutes (until the cache recovers).

How to clean:

  1. Install SD Maid (root required) or use ADB.
  2. In SD Maid, go to SystemCleaner โ†’ Dalvik Cache โ†’ press Run.
  3. After cleaning, be sure to restart the device.

Without root, you can use ADB:

adb shell


su




rm -rf /data/dalvik-cache/*




reboot

It is also useful to clear temporary MIUI files:

  • ๐Ÿ“‚ /data/local/tmp โ€” time-file.
  • ๐Ÿ“‚ /cache โ€” recovery and update cache.

To do this, do the following in ADB:

adb shell


su




rm -rf /data/local/tmp/*




rm -rf /cache/*




reboot

๐Ÿ’ก

If the smartphone takes longer to load after cleaning the Dalvik cache (more than 5 minutes), donโ€™t panic โ€“ thatโ€™s okay. wait for the full load, even if the screen is black.

Method 4: Delete logs and debugging files

MIUI actively maintains system logs that help diagnose crashes, but take up a lot of space.

  • ๐Ÿ“œ /data/log โ€” basic.
  • ๐Ÿ“œ /data/anr โ€” app-hang reports (ANR).
  • ๐Ÿ“œ /data/tombstones โ€” dams.

To remove them:

  1. Connect your smartphone to your PC and use ADB:
adb shell


su




rm -rf /data/log/*




rm -rf /data/anr/*




rm -rf /data/tombstones/*




reboot

If you donโ€™t have root, you can try clearing logs through Restore mode:

  1. Turn off the phone.
  2. Press Power + Volume up to enter Recovery.
  3. Choose Advanced โ†’ Wipe Dalvik/ART Cache.
  4. Reset the device.

โš ๏ธ Attention: Deleting logs can make it harder to diagnose problems if you go to Xiaomi's service center.If you plan warranty repairs, it's best to leave them intact.

Method 5: Reset to factory settings (last resort)

If all previous methods failed, and the Others section is still 10+GB, it's a radical method that will delete all data, including apps, photos and settings. Use it only if:

  • ๐Ÿ”„ The smartphone is slowing down a lot.
  • ๐Ÿ“‰ Free space is critically small (less than 1 GB).
  • ๐Ÿ”ง Other methods have failed to produce results.

Instructions:

  1. Make a backup copy of important data (photos, contacts, messages).
  2. Go to Settings โ†’ About the phone โ†’ Reset settings.
  3. Choose to erase all data and confirm.
  4. After resetting, set up the phone as new.

To minimize waste after discharge:

  • ๐Ÿšซ Do not restore data from backup MIUI โ€” It may contain old temporary files.
  • ๐Ÿ“ฅ Install only the necessary applications.
  • ๐Ÿ”„ Clean the cache regularly (once a week).

๐Ÿ’ก

Factory reset is the only way to completely clean up Other if it takes up more than 15-20% of total memory.

Table: What can and can not be removed in the โ€œOtherโ€

Type of fileCan I remove it?How to clean upRisks.
Application cacheโœ… Yes.Through Settings โ†’ Applications or Memory โ†’ CleanupSlowing down the first launch of appas
Remnants of Remote Applications (/Android/data)โœ… Yes.Through a file manager or ADBGaming failures if you delete current files
Dalvik/ART-cashโœ… Yes (with reboot)ADB or SD Maid (root)Long loading after cleaning
Logs of the system (/data/log)โœ… Yes.ADB or RecoveryDifficulty diagnosing failures
Update files (/cache)โœ… Yes.ADB or manually through RecoveryReloading updates

How to Prevent the Spread of โ€œOtherโ€ in the Future

To the โ€œOtherโ€ section does not take up gigabytes of memory, follow these recommendations:

  • ๐Ÿ“ต Limit the background activity of applications: go to Settings โ†’ Battery โ†’ Manage power consumption and disable autostart for unnecessary appreciators.
  • ๐Ÿ”„ Clean the cache regularly: use the built-in Memory utility โ†’ Cleaning once a week.
  • ๐Ÿšซ Avoid Play Market cleaners: Most of them are useless or even harmful (e.g. Clean Master).
  • ๐Ÿ“ฅ Delete. APK After installation: installer files remain in the folder /Download take up space.
  • ๐Ÿ”ง Turn off automatic download of media in instant messengers: in Telegram and WhatsApp, configure download only over Wi-Fi or manually.

For users with root rights, it is useful to establish:

  • ๐Ÿ› ๏ธ SD Maid โ€“ for automatic garbage cleaning.
  • ๐Ÿ“Š DiskUsage โ€“ to visualize the occupied place.
  • ๐Ÿ” Root Explorer โ€“ for manual removal of system files.

If you don't want to get root, use ADB for periodic cleanup, for example, this script deletes the main temporary files:

adb shell


su




rm -rf /data/local/tmp/*




rm -rf /cache/*




rm -rf /data/log/*




reboot

FAQ: Frequent questions about the โ€œOtherโ€ section on Xiaomi

๐Ÿ” Why does the โ€œotherโ€ reappear after a week?
This is normal MIUI behavior. System and applications are constantly creating new temporary files (cache, logs, thumbnails).To slow the growth of Other, turn off auto-update apps in Google Play and limit the background activity of messengers.
๐Ÿ“ฑ Can I remove the โ€œotherโ€ without rooting?
Yes, but not completely. Without root, you can clear the app cache, residues in /Android/data, and some logs through ADB. Root rights are needed to clean up completely (e.g., Dalvik cache or /data/data).
โš ๏ธ Is it dangerous to delete files in โ€œotherยป?
It is dangerous to delete only system files in /system or critical data in /data/data for running applications. Cache, logs and remnants of remote applications can be cleaned without risk. Always back up before mass cleaning.
๐Ÿ”„ How to Recover Data If I Accidentally Deleted Important Files from Otherยป?
If you deleted files through a file manager, try recovery programs (DiskDigger, Recuva on PC). For system files, recovery is unlikely - you will have to reinstall the application or reset settings.
๐Ÿ“‰ Why the new Xiaomi already has a โ€œotherโ€ size of 2-3 GB?
This is normal: The Others initially include pre-installed applications (MIUI System, Google Services), their cache and first-set files, and this partition can grow by another 1-2 GB after the MIUI update.