Standard ringtones on Android are not just background sound, but part of the corporate style of the operating system. They are recorded in protected system folders that are not visible through a regular file manager. Many users are faced with the need to find these files: someone wants to save their favorite ringtone before resetting the phone, someone is trying to replace it with a custom one, and some are simply curious about how the Android file system works.

However, access to system ringtones is complicated by security restrictions. Manufacturers of smartphones (Samsung, Xiaomi, Google Pixel etc.) store them in different places, and starting from Android 10 the path to these files has become even less obvious due to the division into /system and /product. In this article, we will look at all the possible locations of standard ringtones, ways to extract them (including without root access), as well as the nuances of working with them on different versions of the OS.

If you have ever tried to find a folder with ringtones via My file or Files by Google and did not find anything except user downloads, this is normal. System sounds are hidden for a reason: changing them without the appropriate rights can lead to failures in the firmware. But this does not mean that it is impossible to access them.

โ•โ•โ•

1. Standard paths to system ringtones on Android

Files of standard alarm tones, calls and notifications are stored in several system folders. Their location depends on the version of Android and the manufacturerโ€™s custom shell. Here are the main options:

  • ๐Ÿ“ /system/media/audio/ringtones โ€” a classic place for ringtones on Android up to version 9.0. Here are files in the format .ogg or .mp3 with names like Ring_Synth_04.ogg.
  • ๐Ÿ“ /system/media/audio/notifications - folder with notification tones. Often contains files Tethys.ogg or Pixel.ogg on stock firmware.
  • ๐Ÿ“ /system/media/audio/alarms โ€”alarm clock sounds are stored here, for example Alarm_Classic.ogg.
  • ๐Ÿ“ /product/media/audio/... โ€”on Android 10+, some of the sounds are moved to the /productsection, which is mounted separately from /system.
  • ๐Ÿ“ /vendor/overlay/... โ€” some manufacturers (for example, Xiaomi) store custom sounds in overlay folders.

It is important to understand that these paths not available without root access or special tools. Even if you connect your phone to your PC and enable USB debugging, standard Windows or macOS Explorer will not show these directories. To view you will need ADB (Android Debug Bridge) or a file manager with root support, for example Root Explorer or FX File Explorer.

On some firmware (for example, MIUI or One UI) paths may vary. For example, Samsung some of the sounds are in:

/system/priv-app/SecSettings/SecSettings.apk/assets/sounds/

But this is the exception rather than the rule.

๐Ÿ“Š What version of Android are you using?
Android 10 or later
Android 9 Pie
Android 8 Oreo
Android 7 Nougat or older

2. How to view system ringtones without root

If you don't have root access but need to copy the default ringtone, there are a few workarounds. They will not give full access to system folders, but will allow you to extract the necessary files.

Method 1: Via ADB (without root)

Connect the phone to the computer, enable Debug by USB in the developer settings and run the command:

adb pull /system/media/audio/ringtones/ C:\Android_Ringtones\

This command will copy all ringtones to a folder C:\Android_Ringtones\ on your PC. If the path does not exist, create it in advance.

Method 2: Through manager applications with extended rights

Some file managers (for example, Mixplorer or Solid Explorer) can request access to system folders via SAF (Storage Access Framework). To do this:

  1. Open the manager and go to the root directory (/).
  2. Find the folder system and try to open it.
  3. If an access request appears, confirm it.

Method 3: Through the backup copying (TWRP)

If a custom recovery is installed on your device TWRP, you can create a backup partition /system and then extract the necessary files from it on your PC. This method requires an unlocked bootloader and installed TWRP.

๐Ÿ’ก

If ADB does not recognize the device, check if it is installed. drivers Google USB Driver or OEM drivers for your smartphone model.

3. Where are ringtones stored on specific firmware

Manufacturers often modify the structure of system folders. This is where to look for standard sounds on popular ones. shells:

Firmware / Brand Path to ringtones Path to notifications Path to alarms
Stock Android (Pixel, Motorola) /system/media/audio/ringtones /system/media/audio/notifications /system/media/audio/alarms
Samsung One UI /system/priv-app/SecSettings/... or /system/media/audio/ui/ /system/media/audio/notifications /system/media/audio/alarms
Xiaomi MIUI /system/media/audio/ringtones or /vendor/overlay/... /system/media/audio/notifications /system/media/audio/alarms
Huawei EMUI /system/media/audio/ringtones or /hw_eu/media/... /system/media/audio/notifications /system/media/audio/alarms
Oppo / Realme (ColorOS) /system/media/audio/ringtones /system/media/audio/notifications /system/media/audio/alarms

On Samsung some of the sounds may be duplicated in the folder /system/csc/ - this is due to regional firmware settings. For example, for European models the path may look like /system/csc/eur/open/....

On devices with dynamic partitions (Android 10+), system sounds can be โ€œsealedโ€ in the image system.img and not be displayed as separate files even through ADB. B. In this case, only extracting the firmware image and unpacking it on the PC will help.

What are dynamic partitions?

Starting with Android 10, Google has introduced Dynamic Partitions technology, which allows you to resize system partitions on the fly. This complicates direct access to files, since they can be stored in compressed or encrypted form inside the image.

4. How to copy a standard ringtone to a memory card. data-i="111">If you need to save the system ringtone (for example, before resetting your phone), follow these instructions:

If you need to save the system ringtone (for example, before resetting your phone), follow these instructions:

Install ADB on your PC|Connect your phone with USB debugging enabled|Run the command adb devices to check the connection|Copy the files with the command adb pull /system/media/audio/ringtones/ /sdcard/Download/MyRingtones/|Check folder Download/MyRingtones on the phone-->

If ADB does not work for some reason, you can use the application Root Browser (requires root) or FX File Explorer with a plugin for root access:

  1. Open your file manager and give it root access.
  2. Navigate to the path /system/media/audio/ringtones.
  3. Select the files you need (for example, Ring_Synth_04.ogg) and copy them.
  4. Paste the files into any available folder, for example /sdcard/Download/.

Please note: system sounds often have a format .oggthat not all players reproduce correctly. To convert them to .mp3, use applications like Audio Converter or online services.

๐Ÿ’ก

Files format .ogg take up less space than .mp3, but may not be played in standard audio players. To use as a ringtone, conversion is not required - Android supports .ogg "out of the box."

5. root?

Technically it is impossible to replace system sounds without root access.since the folders /system and /product are write-protected. However, there are workarounds:

  • ๐Ÿ”„ Add a custom ringtone to a custom folder: Copy your sound file to /sdcard/Ringtones/, /sdcard/Notifications/ or /sdcard/Alarms/. After rebooting, it will appear in the list of available ringtones.
  • ๐Ÿ“ฑ Use applications to replace sounds: Some utilities (for example, Ringo or Zedge) allow you to assign your own melodies over the system ones, but do not change the system files themselves.
  • ๐Ÿ”ง Install custom firmware: Firmwares like LineageOS or Pixel Experience allow you to replace system sounds via Magisk or manually.

On some devices (for example, Xiaomi with an unlocked bootloader) you can temporarily gain root access via Magisk and replace the files in /system, but this is risky: incorrect actions can lead to bootloop (looping loop).

๐Ÿ’ก

If you want to use the system ringtone in another application (for example, in WhatsApp), copy it to the folder /sdcard/Notifications/ and rename to format .mp3. Most instant messengers recognize melodies only in this format.

6. Why system ringtones may disappear after an update

After major Android updates (for example, since Android 11 to Android 12), some users notice that standard ringtones have disappeared from the list of available ones. This happens for several reasons:

  • ๐Ÿ”„ Changing the structure partitions: Starting with Android 10, Google switched to dynamic sections, and the paths to sounds could change (for example, from /system to /product).
  • ๐Ÿ“ฆ Firmware optimization: Manufacturers sometimes remove duplicate or little-used sounds to reduce the size of the system partition.
  • ๐Ÿ”ง Reset settings: After a factory reset, some custom sounds (added by the user) may disappear if they were stored in /data.

If your favorite system ringtone has disappeared after the update, try:

  1. Check the folders /product/media/audio/ and /vendor/overlay/ via ADB.
  2. Download the original firmware for your model and extract sound files from it (they are usually in the archive system.img).
  3. Use applications like Ringtone Makerto create a similar melody from the available sounds.

On devices Samsung after the update One UI Sometimes the alarm sounds disappear. This is due to the fact that the company transfers them to a new location:

/system/priv-app/SecClockPackage/...

To get them back, you can manually copy the files from the old firmware.

๐Ÿ’ก

If all system sounds disappear after the update, this may be a firmware bug. In this case, only rolling back to the previous version or waiting will help. patch from the manufacturer.

7. How to restore deleted system ringtones

If you accidentally deleted a system ringtone (for example, through a file manager with root access), there are several ways to get it back:

Method 1: Restore from a TWRP backup

If you have a backup copy of the partition /systemmade via TWRP:

  1. Boot into recovery (Shutdown โ†’ Hold Power + Volume Up).
  2. Select Restore and specify the backup.
  3. Mark only the section System (do not touch Dataso as not to lose user data).
  4. Confirm the restoration.

Method 2: Extract from the original firmware

Download the official firmware for your model (for example, from the site Xiaomi, Samsung or Google) and extract sound files from it:

  1. Unzip the firmware archive (usually .zip or .tar).
  2. Find the file system.img or system.new.dat.
  3. Use the utility simg2img (for Linux) or Android Image Kitchen (for Windows) to mount the image.
  4. Copy the necessary files from /media/audio/.

Method 3: Download from thematic forums

On resources like XDA Developers or 4PDA users often post archives with standard sounds for popular models. like "Samsung Galaxy S21 standard ringtones download".

What to do if there is no backup and firmware?

If you cannot find the original files, try to reproduce a similar sound using applications like Ringtone Maker or Music Editor. Many Android system melodies are based on simple synthesizer patterns that are easy to recreate.

8. Common errors when working with system ringtones

When trying to copy or replace standard sounds, users often encounter typical problems:

  • ๐Ÿšซ Error "Permission denied" in ADB: Occurs if you do not have rights to read system folders. The solution is to use adb shell with rights. superuser (su) or get root.
  • ๐Ÿ” The /system folder is not visible in the file manager: Most managers hide system directories. Try Mixplorer with the "Show hidden files" option enabled.
  • ๐ŸŽต The copied ringtone does not play. data-i="229">: This means that you have changed a critical system file. The solution is to restore the original firmware via: Check the file format. Android supports .mp3, .ogg, .wav, but some firmware may ignore .m4a or .flac.
  • ๐Ÿ”„ After replacing the sound, the phone does not boot: This means that you have modified a critical system file. The solution is to restore the original firmware via Odin (for Samsung) or Fastboot.

Security warning:

Changing files in /system can lead to soft-brick (the phone turns on, but does not boot) or hard-brick (complete failure of the device) Always make a backup before experiments!

๐Ÿ’ก

If you want to test a new ringtone before replacing it. system, assign it via Settings โ†’ Sounds and vibration โ†’ Phone ringtone. This way you will make sure that the file plays correctly.

โ•โ•โ•

FAQ: Frequently asked questions about system ringtones on Android

Is it possible to transfer system ringtones to another phone?

Yes, but with nuances. Files in the format .ogg or .mp3 can be copied to another device, however:

  • On some firmwares (for example MIUI) system sounds are model specific and may not appear in the list of ringtones on another phone.
  • If the target device has the same version of Android and firmware, the files should work without problems.

It is best to place the copied ringtones in a folder /sdcard/Ringtones/ โ€”this way they are guaranteed to appear in the list of available ones.

Why is the /system/media/audio folder empty, although there are sounds?

This is typical for devices with dynamic. sections (Android 10+) In such cases:

  • Sounds can be stored in /product/media/audio/ or inside a compressed image system.img.
  • On some firmware (for example, ColorOS), system sounds are integrated into APK application files, for example OppoMusic.apk.

To find out exactly where files are located, study the structure of the firmware via Android Image Kitchen or ask on thematic forums (for example, XDA).

How to make the system ringtone louder?

The volume of system sounds is limited at the firmware level, but there are workarounds:

  1. Use Equalizer: Applications like ViPER4Android (requires Magisk) allow you to enhance the sound.
  2. Edit file: Open the ringtone in an audio editor (for example, Audacity) and increase the volume by 20-30%. Save in format .ogg with a bitrate of 128โ€“192 kbps.
  3. Assign a different sound: Some custom ringtones are initially recorded louder than standard ones.

โš ๏ธ Attention: Excessively increasing the volume may cause sound distortion or damage to the speakers!

Is it possible to delete unnecessary system ringtones to free up space?

Technically yes, but it meaningless:

  • Standard ringtones take up no more than 10-20 MB - this is negligible compared to modern memory amounts.
  • Deleting system files can lead to malfunctions in the firmware (for example, the notification sound will disappear).
  • On most devices The folder /system is read-only, so it is impossible to delete files without root.

If you really don't have enough space, it is better to clear the application cache or transfer photos/videos to a memory card.

Where are ringtones added by the user stored?

Custom ringtones, alarms and notification sounds are stored in the following folders:

  • /sdcard/Ringtones/ โ€” for ringtones;
  • /sdcard/Notifications/ โ€” for notification sounds;
  • /sdcard/Alarms/ โ€” for alarm clocks;
  • /sdcard/Download/ โ€”if you downloaded the file manually.

These folders are created automatically the first time you add a sound via Settings โ†’ Sounds. The files must be in the format .mp3, .ogg or .wav, otherwise they will not appear in the list.