How to Clean the Other folder on Xiaomi Redmi: The Complete 2026 Guide

The Other folder on Xiaomi Redmi smartphones is one of the most mysterious and annoying features of MIUI firmware, which can take up from 500 MB to 10+ GB of memory, and the system does not give a clear explanation of what is stored inside. Users often face a situation where free space is melting in front of their eyes, and memory analysis shows that this folder is to blame. What is the catch?

In fact, the Other is a hoard of cache applications, temporary files, remnants of deleted programs, system logs, and even MIUI update fragments. Unlike Downloads or DCIM folders, its contents are not designed for manual control. But that doesn't mean that cleaning is impossible. In this article, we will discuss 5 proven ways to reduce the size of the Other folder on Redmi root without rights and the risk of damaging the system, including hidden MIUI functions and third-party tools.

It is important to understand that not all contents of the folder can be deleted without consequences. For example, cache of some system applications (com.miui.home, com.android.systemui) when cleaned can lead to short-term interface lags, but if you follow our recommendations, you can free up 2-5 GB of memory in 10-15 minutes.

What is the โ€œOtherโ€ folder on Xiaomi Redmi and why is it growing?

In MIUI firmware, the Other folder** is a container for files that the system cannot categorize as standard (Images, Videos, Audio, etc.) that fall into:

  • ๐Ÿ—ƒ๏ธ App cache โ€“ temporary data that programs save to speed up work (for example, thumbnails of YouTube videos or cache maps in Google Maps).
  • ๐Ÿ“ System logs are files with information about errors, reboots and operation of the Android kernel, and many of them accumulate after updates. MIUI.

The problem is that MIUI doesn't provide built-in tools to deep-clean this folder, and even the Cleanup feature in the settings only removes the tip of the iceberg, which is surface debris, but the deep cache and system logs remain intact, gradually inflating the folder to critical sizes.

The growth rate of the โ€œOtherโ€ folder** depends on several factors:

  • ๐Ÿ“ฑ Smartphone model: on the Redmi Note 12 or POCO X5 s MIUI 14 litter accumulates more than on old Redmi 9s due to active use of cache for animations.
  • ๐ŸŽฎ Games and heavy apps: Genshin Impact, PUBG Mobile or TikTok can leave behind gigabytes of temporary files.
  • ๐Ÿ”„ Update frequency: if you install beta versions regularly MIUI, The system saves old firmware files "just in caseยป.
๐Ÿ“Š How often do you clear your memory on your Xiaomi?
Once a week.
Once a month
Only when the place ends.
Never clean.

Method 1: Cleaning the application cache through MIUI settings

The safest and most obvious method is to manually clean the cache for each application, which requires no root rights and is suitable even for beginners, but it has a downside: you have to repeat the process for dozens of programs.

How to clear the cache:

  1. Open Settings โ†’ Applications โ†’ Application Management.
  2. Slip on the three dots in the upper right corner and select Sort by size.
  3. Click on an app with a large cache (like Facebook, Telegram, or Google Play Services).
  4. Select Warehouse. โ†’ Clear the cache.

Pay special attention to these applications โ€“ they often accumulate garbage:

  • ๐Ÿ“ฑ Google Play Services โ€“ can take up to 1-2 GB of cache.
  • ๐Ÿ’ฌ Telegram โ€“ Stores media files in cache even after viewing them.
  • ๐ŸŽต Spotify/YouTube Music โ€“ caching songs for offline listening.
  • ๐Ÿ—บ๏ธ Google Maps/Yandex.Maps โ€“ save maps and routes.

Google Play Services|Telegram|Facebook/Instagram|YouTube|Google Chrome|MIUI System Apps (Subject, Security)-->

โš ๏ธ Note: Do not clear data (Clear data) for system applications (com.miui.home, com.android.settings) โ€“ this can reset launcher or Wi-Fi settings.

If you want to automate the process, use the built-in Cleanup function:

  1. Go to Settings โ†’ Cleaning.
  2. Press Deep Clean and wait for analysis.
  3. Select App Cache and Garbage Files, then tap Clean.

This method will remove 500MB-1.5GB of debris, but will not affect deep system files.

Method 2: Delete temporary files via Recovery Mode

If standard cleaning didnโ€™t work, try removing Dalvik-cache and residual update files via Recovery Mode.This method doesnโ€™t require root rights, but resets application optimization (after the reboot, the system will restore the cache, but it will be โ€œcleanโ€).

Instructions:

  1. Turn off your smartphone.
  2. Press the Power button + Volume up until the MI logo appears.
  3. From the Recovery menu, select Wipe & Reset โ†’ Wipe Cache (use volume buttons for navigation, power button for selection).
  4. Confirm the action and wait for the completion.
  5. Reboot the device (Reboot โ†’ System)

What removes this method:

Type of fileSize (approximately)Is it re-established after rebooting?
Dalvik-cache300-800 MBYes (the system reassembles the first time you run applications)
Remains of MIUI updates100-500 MBNo.
Logs of the system (last_kmsg, dmesg)50โ€“200 MBNo.
Temporary Installator Files (APK)50โ€“300 MBNo.

โš ๏ธ Note: Do not choose Wipe Data in Recovery โ€“ this will lead to a complete reset of the smartphone before the factory settings!

After cleaning through Recovery, the first launch of the smartphone can take 5-10 minutes, which is normal, since the system restores the cache of applications, but you will free up to 1-2 GB of memory.

๐Ÿ’ก

If after cleaning through Recovery, the smartphone began to slow down, restart it again - this will help the system optimize the applications again.

Method 3: Using ADB for deep cleaning (no root)

For advanced users who are ready to work with the command line, there is a way to remove garbage through ADB (Android Debug Bridge), which will allow you to clean files that are not available through the standard MIUI interface.

What you need:

  • ๐Ÿ–ฅ๏ธ A computer with installed Xiaomi drivers and ADB.
  • ๐Ÿ“ฑ Included debugging by USB on a smartphone (Settings) โ†’ The phone. โ†’ Version. MIUI (tap 7 times) โ†’ Additionally. โ†’ For developers โ†’ Debugging by USB).
  • ๐Ÿ”Œ USB-cable (preferably original).

Step-by-step:

  1. Connect your smartphone to your PC and confirm the debugging permission.
  2. Open the command line (Win + R โ†’ cmd) and type:
adb shell


pm clear com.miui.cleanmaster #Cache cleaning standard cleaner




rm -rf /data/local/tmp/* # Delete temporary files




rm -rf /cache/* # Cleaning up the cache folder (not to be confused with Dalvik-cache!)

To remove the system logs, do:

adb shell su -c "logcat -c" # Log cleanup (requires root, but sometimes works without it)


adb shell rm -rf /data/log/*

These commands delete:

  • ๐Ÿ—‘๏ธ Temporary files from /data/local/tmp (Remains of installers, update cache).
  • ๐Ÿ“œ Logs of the system that take up to 500 MB.
  • ๐Ÿงน Standard cleaner cache MIUI, Which by itself can weigh 100-300 MB.

โš ๏ธ Attention: Command rm -rf without root, only delete files that the user has access to. /system or /vendor โ€” It's going to crash the system!

If after completing the commands, free space is not added, check the folder size. /data/log through a root file manager (such as Root Explorer), sometimes logs take up gigabytes due to errors in the work. MIUI.

Method 4: Third-party cleaning applications (with caution!)

There are hundreds of apps on Google Play that promise to clear the Other folder in one click, but most of them are either useless or dangerous. We tested the top solutions and selected the ones that actually work on MIUI 13/14.

The best cleaning applications:

AnnexWhat cleansesCons
Files by GoogleCache, duplicates, large filesDoes not delete system logs
SD Maid (requires root)Dalvik-cache, residual files, empty foldersPaid version for full functionality
CCleanerCash, history, temporary filesAggressive advertising, sometimes removing the necessary data
Xiaomi ADB/Fastboot Tools (PC)Deep cleaning through ADBRequires a connection to a computer

How to use SD Maid (the most effective option):

  1. Install the app and provide root access (if any).
  2. Launch CorpseFinder โ€“ this tool will find the residual files of remote applications.
  3. Go to SystemCleaner and select Dalvik-cache and Empty Folders cleanup.
  4. Press Run and wait until it is completed.

Without root SD, Maid will only clean up surface debris, but even that is enough to free up 1-2 GB. With root access, you can delete up to 5 GB of unnecessary files.

Which apps should NOT be used?
Applications like Clean Master, DU Speed Booster or 360 Security not only doesnโ€™t clean the Other folder, but they also create background processes that consume memory, and they often collect user data to serve targeted ads.> Method 5: Factory reset (extreme case) If none of the methods worked and the Other folder** still takes 5+ GB, the last option is hard reset, which is a radical solution, but it's guaranteed to clean up all temporary files, cache and system debris. How to do the reset correctly: Back up important data (Settings) โ†’ The phone. โ†’ Backup or through Mi Cloud. Go to Settings โ†’ Additionally. โ†’ Recovery and discharge โ†’ Reset. Select Erase all data and confirm the action. After rebooting, set your smartphone as new. What will be removed: ๐Ÿงน All app cache and system debris. ๐Ÿ“‚ The Other folder** will be reduced to 100-300 MB (minimum size for work). MIUI). ๐Ÿ”„ All updates installed โ€œover the airโ€ will be reset (you will have to download them again). โš ๏ธ Warning: After a reset, do not restore data from the backup immediately - first check if the Other folder is growing again.Sometimes the trash comes back with the backup!If you don't want to lose data, try a partial reset: Go to Settings โ†’ Apps. Find system applications (Security, Theme, Gallery) and clear the Data for them (no cache!) Reboot your smartphone. How to prevent the Other folder from sprawling in the future? So that the Other folder doesn't take up gigabytes of memory again, follow these guidelines: ๐Ÿ”„ Regular cleaning of the cache: once every 1-2 weeks run Settings โ†’ Cleanup โ†’ Deep cleaning. ๐Ÿšซ Limit background activity: in Settings โ†’ Battery โ†’ Power mode select Charge Savings โ€“ this will reduce the number of temporary files. ๐Ÿ“ฑ Remove unused applications: even remote programs can leave files behind. /data/data/. ๐Ÿ”„ Update. MIUI Carefully: before installing a new firmware, delete the old one through Settings โ†’ The phone. โ†’ Updating the system โ†’ Remove the downloaded package. ๐Ÿ›ก๏ธ Use easy alternatives: instead of Google Chrome, install Brave or Firefox, which cache less. It's also helpful to disable automatic app updates on Google Play: Open Google Play โ†’ Settings โ†’ Auto-update applications. Choose Not to update automatically. Manually update programs once in a while. 1โ€“2 weeks, pre-cleaning the cache. If you install and remove games frequently, use the Cleanup function after deleting the game. MIUI: Go to Settings. โ†’ Apps. Select the game you want to delete. Tap Delete and tick Clear data and cache. FAQ: Frequent questions about the โ€œOtherโ€ folder on Xiaomi Redmi Can the โ€œOtherโ€ folder be completely deleted? No, itโ€™s impossible. The โ€œOtherโ€ folder** contains critical system files, without which the โ€œOtherโ€ folder is not possible. MIUI But you can reduce it to 100 to 500 MB using the methods described in this article. Why does the folder grow back after cleaning? That's normal behavior. MIUI. The system is constantly creating new temporary files (logs, cache, update data) to slow down folder growth, turn off automatic application updates and regularly clean the cache manually? No, most of these apps not only don't clean the Other folder, they consume resources themselves. MIUI or SD Maid (with caution). How do you know which files are in the Other folder? Without root rights, it's difficult, but you can use the MiXplorer file manager (turn on hidden files) or ADB-Command: Adb shell du -sh /data/* | sort -rh It will show the largest folders in the section. /data. Will flashing it to custom firmware (like LineageOS) help? Yes, but it's a radical solution. Custom firmware doesn't have the Other folder as usual, but it requires unlocking the bootloader and can take away some of the features. MIUI (For example, Mi Cloud or Game Turbo).