Tips

How to Increase Volume on Android Mobile Phones

Android tipsIs your Android mobile phone not giving out maximum volume during the music playback? Or did you ever wanted to listen to the FM radio without your head phones?

Here is the quickest way of doing it and you need to have to make sure that you have the root access on your mobile phone.

ADB Shell Access

Gaining shell access on your android mobile phone using Android Adb can be useful and handy in many situations. There are many ways in which you can gain access to command prompt – telnet, terminal, windows command prompt and recover mode.

Here is one quick way to use the Windows CMD –

  1. Connect your mobile phone through USB on to your Windows computer and make sure you have loaded all the drivers of the mobile phone perfectly.
  2. You need to download the SDK and unzip to your computer.
  3. Open the command prompt in your computer (Press WinKey + R and then type CMD for users in Windows 7).
  4. Navigate to the SDK tools folder through the command prompt, generally its ………SDK\android-sdk-windows-1.5_r3\tools.
  5. Type ADB devices to see the phone connection and if no devices appear, means that you haven’t installed drivers perfectly and you need to do that.
  6. Once it’s done you would be connected to your phone through PC and can execute adb commands.

Increase Volume

Once you gain access to ADB then you need to follow the below steps to ensure you have increased the volume –

  1. Connect your phone to the computer using the USB.
  2. Open an adb shell session from your PC.
  3. Copy & Paste the below code line by line.
  4. Restart your phone.

su
mount -o rw,remount /dev/block/mtdblock3 /system
mkdir /sdcard/AudioBackUp
cd /system/etc/
busybox cp “AudioFilter.csv” /sdcard/AudioBackUp
busybox cp “AudioPara_TMUS.csv” /sdcard/AudioBackUp
busybox cp “AudioPara4.csv” /sdcard/AudioBackUp
busybox cp “AudioPreProcess.csv” /sdcard/AudioBackUp#mkdir /sdcard/tmp
cd /sdcard/tmp
wget http://98.131.134.176/system/etc/v7/AudioFilter.csv
wget http://98.131.134.176/system/etc/v7/AudioPara4.csv
wget http://98.131.134.176/system/etc/v7/AudioPreProcess.csv

busybox cp *.csv /system/etc

45 Comments

45 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Comment moderation is enabled. Your comment may take some time to appear.

To Top