Jump to content

I want to know how to remount other apps


Guest Micheal.wang

Recommended Posts

Guest Micheal.wang

hello everyone. i am new here.

i want to know how to remount the apps i don't need which are not shown on the command in the page of paul gives.

i have remount plurk. stock. etc. now i want to remount youtube peep. etc .how ? what is the name of all of other apps?

thank you very much!!

Link to comment
Share on other sites

Guest Igniztion

Most of these apps are found in the /system/app directory.

Mount the phone with read-write

adb remount
Open a shell against your phone
adb shell
Go to /system/app
cd system/app
List contents
ls -l
Remove the app you want
rm NameOfApp*
Example to remove Youtube app:
adb remount

adb shell

# cd system/app

# rm YouTube*

Remember that applications might depend on eachother.

I would f.ex assume that the Browser depends on the Youtube app to show youtube clips.

Link to comment
Share on other sites

Guest Micheal.wang
Most of these apps are found in the /system/app directory.

Mount the phone with read-write

adb remount
Open a shell against your phone
adb shell
Go to /system/app
cd system/app
List contents
ls -l
Remove the app you want
rm NameOfApp*
Example to remove Youtube app:
adb remount

adb shell

# cd system/app

# rm YouTube*

Remember that applications might depend on eachother.

I would f.ex assume that the Browser depends on the Youtube app to show youtube clips.

thank you very much!

you are really nice!!

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.