Hello XDA members! i need some help from the experts.
I recently played with my phone and modify the system/apps, I was trying to delete bloatwares and useless applications, and I deleted DefaultContainerService.apk. Since my phone needs a "refreshment", I factory reset it. So Yeah... I have no root explorer or any file explorer to move the default container service to the system/apps again, all I have is the Default System Apps: Camera, gallery, phone, Messaging, play Store, Browser, etc.
I CAN'T INSTALL ANY APPS, AND I'M STUCK LIKE THIS FOR 4 DAYS NOW. PLEASE GET ME IMMEDIATE HELP!
{SOLVED!!!}
You had to ask your question in "forum.xda-developers.com/forumdisplay.php?f=1236" Q&A, Help and Troubleshooting,
But i will help you.
You MUST have ROOT permission and BUSYBOX to remount your /system/ partition.
Step 1: Go to "Settings > Developer Settings" and Enable "USB Debugging".
Step 2: Download Android SDK and Install "Android Platform Tools" on your PC.
Step 3: Connect your device with USB to your PC.
Step 4: Copy your "DefaultContainerService.apk" into somewhere in your PC.
Step 5: Open ADB Shell using:
Code:
adb shell
Step 6: Run these commands:
Code:
su
busybox mount -o remount,rw /system
chmod 777 /system/app/
NOTE: After running the "su" command, you should unlock your phone and if you see Superuser prompt, allow access to it. and if you are using the CM10.1, you should set the root access to "Apps and ADB" in the "Developer Settings" or the same for Koushikdutta's Superuser app.
Step 7: Push the DefaultContainerService.apk to your /system/app/ using:
Code:
adb push DefaultContainerService.apk /system/app/
Step 8: Restart your phone.
Step 9: Finished! But if it didn't work, you can push a file manager to /system/app/ with this tutorial and copy the file with it, or you can push a terminal emulator.
Please after this, post your threads at the right section.
DataUnit said:
You had to ask your question in "forum.xda-developers.com/forumdisplay.php?f=1236" Q&A, Help and Troubleshooting,
But i will help you.
You MUST have ROOT permission and BUSYBOX to remount your /system/ partition.
Step 1: Go to "Settings > Developer Settings" and Enable "USB Debugging".
Step 2: Download Android SDK and Install "Android Platform Tools" on your PC.
Step 3: Connect your device with USB to your PC.
Step 4: Copy your "DefaultContainerService.apk" into somewhere in your PC.
Step 5: Open ADB Shell using:
Code:
adb shell
Step 6: Run these commands:
Code:
su
busybox mount -o remount,rw /system
chmod 777 /system/app/
NOTE: After running the "su" command, you should unlock your phone and if you see Superuser prompt, allow access to it. and if you are using the CM10.1, you should set the root access to "Apps and ADB" in the "Developer Settings" or the same for Koushikdutta's Superuser app.
Step 7: Push the DefaultContainerService.apk to your /system/app/ using:
Code:
adb push DefaultContainerService.apk /system/app/
Step 8: Restart your phone.
Step 9: Finished! But if it didn't work, you can push a file manager to /system/app/ with this tutorial and copy the file with it, or you can push a terminal emulator.
Please after this, post your threads at the right section.
Click to expand...
Click to collapse
Hey, I've tried it, but when I command to copy the file, it doesn't show any connected devices, is it because of the driver?
Pegasus195 said:
Hey, I've tried it, but when I command to copy the file, it doesn't show any connected devices, is it because of the driver?
Click to expand...
Click to collapse
If when you go to use ADB it doesn't show any connected devices (First make sure your device is plugged in to your computer, and USB debugging is enabled in developer options) make sure you have installed the proper USB drivers for your device. ADB will not see the device if the devices USB drivers are not installed.
Sent from my Nexus 10 using xda premium
shimp208 said:
If when you go to use ADB it doesn't show any connected devices (First make sure your device is plugged in to your computer, and USB debugging is enabled in developer options) make sure you have installed the proper USB drivers for your device. ADB will not see the device if the devices USB drivers are not installed.
Sent from my Nexus 10 using xda premium
Click to expand...
Click to collapse
before I typed in "adb shell", i tried "adb devices", and it appears, but after I write adb shell, it disappears.
Pegasus195 said:
Hey, I've tried it, but when I command to copy the file, it doesn't show any connected devices, is it because of the driver?
Click to expand...
Click to collapse
I don't know! it should worked, i have same problems but i always use this way to copy files to my /system partition.
If you are on windows and you have the original Google's ADB Driver installed, go to "Device Manager" and see if you have any devices under "Unknown devices" section.
* If there was any devices, you should select it and right click on it.
* Select "Update Driver".
* In the opened window, choose "Let me choose my driver".
* Select show all devices.
* Select "Google" in left section and "Android Adb interface" in right section.
* Update the driver using this method.
* Now, it should works.
Pegasus195 said:
before I typed in "adb shell", i tried "adb devices", and it appears, but after I write adb shell, it disappears.
Click to expand...
Click to collapse
When you type adb shell are you given a shell prompt? Either a new command line beginning with "$" or "#"? Once you type adb shell if you get a shell prompt that's normal and the adb devices command will no longer work until you exit the shell. Also, if you are given a shell prompt when you type adb shell your device is connected.
Sent from my SCH-I535 using xda premium
I've finally Restored My Phone! Thank You Guys for helping me! I've thanked all of you, you have saved my phone!
Hi everyone...
I need some help.... I m on suvi v6 Jupiter rom n I accidently deleted my defaultcontainerservice. Apk from root directory to solve installation problem of some Apk... But after deleting this Apk I m unable to install any of the Apk.....
So how can I get back defaultcontainerservice.apk if someone have it for mmx a110 can u Plz upload defaultcontainerservice.apk for me I m in serious need of some software to be installed.... Thanks for the help in advance......
Sent from my Micromax A110 using xda premium
ONE LOVE said:
Hi everyone...
I need some help.... I m on suvi v6 Jupiter rom n I accidently deleted my defaultcontainerservice. Apk from root directory to solve installation problem of some Apk... But after deleting this Apk I m unable to install any of the Apk.....
So how can I get back defaultcontainerservice.apk if someone have it for mmx a110 can u Plz upload defaultcontainerservice.apk for me I m in serious need of some software to be installed.... Thanks for the help in advance......
Sent from my Micromax A110 using xda premium
Click to expand...
Click to collapse
Here's the APK: http://d-h.st/PXm
Thanks bro.......
Sent from my Micromax A110 using xda premium
DataUnit said:
You had to ask your question in "forum.xda-developers.com/forumdisplay.php?f=1236" Q&A, Help and Troubleshooting,
But i will help you.
You MUST have ROOT permission and BUSYBOX to remount your /system/ partition.
Step 1: Go to "Settings > Developer Settings" and Enable "USB Debugging".
Step 2: Download Android SDK and Install "Android Platform Tools" on your PC.
Step 3: Connect your device with USB to your PC.
Step 4: Copy your "DefaultContainerService.apk" into somewhere in your PC.
Step 5: Open ADB Shell using:
Code:
adb shell
Step 6: Run these commands:
Code:
su
busybox mount -o remount,rw /system
chmod 777 /system/app/
NOTE: After running the "su" command, you should unlock your phone and if you see Superuser prompt, allow access to it. and if you are using the CM10.1, you should set the root access to "Apps and ADB" in the "Developer Settings" or the same for Koushikdutta's Superuser app.
Step 7: Push the DefaultContainerService.apk to your /system/app/ using:
Code:
adb push DefaultContainerService.apk /system/app/
Step 8: Restart your phone.
Step 9: Finished! But if it didn't work, you can push a file manager to /system/app/ with this tutorial and copy the file with it, or you can push a terminal emulator.
Please after this, post your threads at the right section.
Click to expand...
Click to collapse
I have same problem here. How to install busybox because I cannot install anything T_T
WORKS ONLY with ROOTED Devices.
If your device is not rooted, email me (address on the bottom of the message).
Download ES File Explorer (.APK) from Google and out it somewhere reachable on your PC.
Download Defaultcontainerservice(.APK) and put it on your SD Card.
Plug your device to your PC using the USB DEBUGGING MODE.
Download Android Commander from Google, run it, and from there, you should see your device files.
From left panel, go to your ES File Explorer (.APK) and install it to /system/app to the right.
Once installed, unplug your phone, ES File Explorer should be installed on your device; then, run it.
Click on the blue device icon from top left, swipe down and go check ON on Root Explorer (by clicking the ON button) and then click on Root Explorer (The name itself).
From there go to SD card and copy your Defaultcontainerservice(.APK) and then go to DEVICE /system/app/ and copy it there.
Restart your phone and you should be just fine.
If you encounter any issues, email me at [email protected].
Hope this helped. Bye.
I am Brazilian and I'm having the same problem
I deleted DefaultContainerService.apk and now I'm having trouble downloading anything and other problems , please help me...
Related
Hi,
I was trying to get cyongen browser into my [Build]Android 2.2 Build FRG33 [ mccm v1.5a andriod built. To get that I copied the browser.apk from the cyongen to my this builts browser.apk in the system/app folder. I was able to over-write the file, but now browser icon disappered.
Following I have tried:
- Install the cyanogen browser using astro --> it installs but when i launch i get process com.android.browser error.
- I copied the original file before over-writing but when I try to install it using astro it gives me error.
Can some help me with this issue. I do not want to reinstall everything. Thank you
tinkoo81 said:
Hi,
I was trying to get cyongen browser into my [Build]Android 2.2 Build FRG33 [ mccm v1.5a andriod built. To get that I copied the browser.apk from the cyongen to my this builts browser.apk in the system/app folder. I was able to over-write the file, but now browser icon disappered.
Following I have tried:
- Install the cyanogen browser using astro --> it installs but when i launch i get process com.android.browser error.
- I copied the original file before over-writing but when I try to install it using astro it gives me error.
Can some help me with this issue. I do not want to reinstall everything. Thank you
Click to expand...
Click to collapse
this isnt really development related and should be posted in the android general section.
Do you have ABD setup? Or droid explorer?
If you have ADB setup, drop the browser.apk into your working tools folder then shift+right click on the tools folder, select open command prompt here and type the following (assuming your on windblows)
adb shell mount -o remount rw /system
adb push exactname.apk /system/app
adb shell reboot
Sorry for posting it to wrong section. I do not have ADB. I tried droid explorer but it did not work for my HD2.
what do you mean by it didnt work for you? Did it give an error?
I have windows 7 and I cannot install it. There seems to be some issue with droid explorer.
alright, I dont use droid explorer myself so not real sure..but all it does is gives you an interface for adb. Are you on windows 32 or 64 bit?
I am on Windows 64 bit. I got the old version working but When i connect my HD2 (in android), it does not recognize any devices. Thanks for helping.
Assuming your on windows 32 bit
go to this location
C:\Program Files\Droid Explorer\SDK
you should have a tools folder in the SDK folder?
If so, drop your apk into it and go back to the SDK directory. Then hold ****, and right click on the tools folder, open command prompt window here When it opens type in
adb devices
If that lists a number your good to go
type in
adb shell mount -o remount rw /system
adb push exactname.apk /system/app
adb shell reboot
EDIT : you posted as I was lol, Droid Explorer installs the same so the above commands should work.
This guide attempts to solve the following problems encountered while either updating CM7(afaik) without wiping data/system or while restoring the system settings using TB:
1. The menu and search buttons' keypresses are detected but the respective actions aren't executed.
2. The lockscreen doesn't get activated.
3. The power menu has only reboot and power off as options. The rest of the options like Airplane Mode and Profiles.
NOTE:
This guide is based on Ubuntu. The procedure in other OSes is the same. You just need to add an entry called device_provisioned" to /data/data/com.android.providers/databases/settings.db with a value 1. The problem was due to this entry being missing. Use a SQLite Database manager to add it. I'm just sharing what I had to do in order to solve the problem.
PREREQUISITES:
1. ADB
2. SQLITE3
FIX:
1. Install sqlite3 if it is not present already on your computer.
2. Copy /data/data/com.android.providers.settings/databases/settings.db from your device to a folder on your computer using ADB.
[Newbie friendly steps]
a. Navigate to where your sdk is installed in Terminal.
b. Then execute this command:
Code:
./adb pull /data/data/com.android.providers.settings/databases/settings.db ~/
3. In the terminal, navigate to the folder where you have copied the file and paste the following code.
Code:
sqlite3 settings.db "INSERT INTO secure (name,value) VALUES ('device_provisioned','1');"
[Newbie friendly steps]
Type this in terminal.
Code:
cd ~
sqlite3 settings.db "INSERT INTO secure (name,value) VALUES ('device_provisioned','1');"
4. Then put the modified settings.db back in its folder.
[Newbie friendly steps]
a. Navigate to where the SDK is installed in the Terminal on your computer.
b. Type this in the terminal
Code:
./adb remount
./adb push ~/settings.db /data/data/com.android.providers.settings/databases/settings.db
./adb reboot
5. Thank me and H:S from the CM forums. This guide is based on his post. ENJOY!
This method is surely better than doing a full wipe, reinstalling all the applications from the market and reconfiguring all the settings.
vlt96 said:
You just need to put provision.apk from the rom's zip, set permissions to rw-r--r-- and reboot...
Click to expand...
Click to collapse
Hope this helps
Reserved
--Reserved--
will this work on htc hero (gsm)?
rajathvsm said:
This guide attempts to solve the following problems encountered while either updating CM7(afaik) without wiping data/system or while restoring the system settings using TB:
1. The menu and search buttons' keypresses are detected but the respective actions aren't executed.
2. The lockscreen doesn't get activated.
3. The power menu has only reboot and power off as options. The rest of the options like Airplane Mode and Profiles.
NOTE:
This guide is based on Ubuntu. The procedure in other OSes is the same. You just need to add an entry called device_provisioned" to /data/data/com.android.providers/databases/settings.db with a value 1. The problem was due to this entry being missing. Use a SQLite Database manager to add it. I'm just sharing what I had to do in order to solve the problem.
PREREQUISITES:
1. ADB
2. SQLITE3
FIX:
1. Install sqlite3 if it is not present already on your computer.
2. Copy /data/data/com.android.providers.settings/databases/settings.db from your device to a folder on your computer using ADB.
[Newbie friendly steps]
a. Navigate to where your sdk is installed in Terminal.
b. Then execute this command:
Code:
./adb pull /data/data/com.android.providers.settings/databases/settings.db ~/
3. In the terminal, navigate to the folder where you have copied the file and paste the following code.
Code:
sqlite3 settings.db "INSERT INTO secure (name,value) VALUES ('device_provisioned','1');"
[Newbie friendly steps]
Type this in terminal.
Code:
cd ~
sqlite3 settings.db "INSERT INTO secure (name,value) VALUES ('device_provisioned','1');"
4. Then put the modified settings.db back in its folder.
[Newbie friendly steps]
a. Navigate to where the SDK is installed in the Terminal on your computer.
b. Type this in the terminal
Code:
./adb remount
./adb push ~/settings.db /data/data/com.android.providers.settings/databases/settings.db
./adb reboot
5. Thank me and H:S from the CM forums. This guide is based on his post. ENJOY!
This method is surely better than doing a full wipe, reinstalling all the applications from the market and reconfiguring all the settings.
I'm sure there might be easier ways of doing this but this method is what I got by googling and by my own experiments. I'm a n00b myself, so any help is appreciated. If you know a better, simpler way, let me know and I'll update this guide or link to your thread/post, with due credits of course.
Hope this helps
Click to expand...
Click to collapse
This has been my issue after restoring via Titanium backup, haven't been able to get this to work either though.
sorry just needed one more post
I really wish this worked for me, but, alas, it doesn't and it drives me nuts.
I did as described on my local system and I double checked the change of contents of settings.db, making sure the respective entry has actually been changed. However, this had no effect Still no lockscreen, no home button and both calendar and clock stop after some time, just as other users described this, too.
I have now spent hours googling for a solution, but other than this posting I have found nothing.
Galaxy S3 with ReVolt 4.1.2 ROM
You just need to put provision.apk from the rom's zip, set permissions to rw-r--r-- and reboot... You complicated tooo much
Sent from my LG-P500
vlt96 said:
You just need to put provision.apk from the rom's zip, set permissions to rw-r--r-- and reboot... You complicated tooo much
Sent from my LG-P500
Click to expand...
Click to collapse
You might wipe system and re-install as well
A few people would like to know why they are doing whatever that is that they are told to do.
Thank you for the guide, but I'm having trouble with step 3. When I try to pull the file from my incredible I get a ton of text in the terminal but no file shows up on my computer in the specified location. Any idea what I could be doing wrong?
How hard is for you to backup data and avoid all of that with a clean flash?
Sent from my LG-P500 using xda app-developers app
Work flawlessly. Thnx
Don't know how to do this- please help!
Hi all,
I may be giving a whole new dimension to being a noob.... well I just have no idea about this command code stuff- I never used terminal until today and I damn sure hope I will not need to anymore in the future I have to say.
so basically I fail at following the "for noobs" instructions. Well I managed to download an install this ADB thing for Mac and was able to confirm in terminal that ADB works. I also have downloaded the SQLite3 on my Mac- not sure though this thing works on Macs.
Well, when following the procedure I get stuck at 2.a. "Navigate to where your sdk is installed in Terminal." what is an SDK and how do i navigate to it in Terminal?
I suppose I will get stuck at the other steps starting with "Navigate to.." as well.
It would be just great if someone could give me a step by step guide litterally saying what I need to do where to get rid of this darn bug that keeps me from using my phone (a sony ericsson arc).
Thanks for your help!
Cheers,
Bert
For more recent versions of CM, there is another key, user_setup_complete, that must also be set
okey so i read slade87´s thread on how to get mutitouch on peria mini the link below
http://forum.xda-developers.com/showthread.php?t=1064558
and the truth is i dont understand how to do it so if anyone that knows how to do it then pleas tell me as most detailed as possible
thank you and forgive my ignorence
I would like to help you. Which point you don´t understand?
You must have a ROM which included the kernel "M76XX-TSNCJOLYM-53404015"
For example "X10 Mini Froyo [ROM] MiniCM6-1.0.0-RC2, Froyo Cyanogen 6.1.3" (you can find it in google).
How to get root: (i know it´s not so easy but this is the easiest i found)
1. Download: exploid_x10mini.zip - download and extract the archive...
You will need ADB from Android SDK and USB drivers for X10 mini (part of Sony Ericsson PC Companion).
Enable USB debugging on the phone in Settings>Applications>Development and connect the phone to PC via USB. Reboot your system.
Add the Power Control widget to your active widgets on the phone, so you can quickly turn off and on the wi-fi function.
From the command line (on windows it's cmd.exe):
cd c:\exploid_x10mini (or another folder where you've extracted the files from exploid_x10mini.zip)
adb push Superuser.apk /sdcard/Superuser.apk
adb push su /sdcard/su
adb push exploid /sqlite_stmt_journals/exploid
adb push busybox /sqlite_stmt_journals/busybox
adb shell
cd sqlite_stmt_journals
chmod 755 exploid
chmod 755 busybox
Immediately after the next command, you will need to disable and enable the wi-fi using the power widget on the phone:
./exploid
then run:
rootshell
enter password rootnow
prompt will change to # - now we have root
./busybox cp /sdcard/Superuser.apk /system/app/
./busybox cp /sdcard/su /system/bin/
./busybox cp busybox /system/bin/
chmod 4755 /system/bin/su
rm /system/bin/rootshell
exit - out of rootshell
exit - out of adb shell
Now you can follow the instructions.
To open a shell you need "Android Terminal Emulator". You can find it in Android Market.
Please keep in mind that i just searched for this instruction to help you. I´m not responsible if you brick your phone. Good luck!
nice i didnt knew the possible...
Thanks puRR_cAt for your help however I already rooted my phone and I thought that I didn't need a rom to get multi touch if there's a way to do it without a rom tell me
Sent from my E10i using XDA App
Multitouch is for Mini PRO only!! Not Mini!!
---
- ---
- Sent from my iPod touch using Tapatalk
for x10 mini u get "fake" dual touch....u can get the needed information here
http://forum.xda-developers.com/showthread.php?t=1064558
actually, in very "simple", lucid language, do this step by step:
i am NOT responsible if i brick ur device, use this post guidance at your own risk. or better yet, follow the instructions in the actual post
1. check ur baseband to be "M76XX-TSNCJOLYM-53404015"
2. check the firmware
3. download the "cy8ctma300_ser.zip" attached, to ur computer and extract the "cy8ctma300_ser.ko" file from there, copy it to your memory card. (better u go for the "updated version" link in the post).
4.get root explorer from the market
5.copy the downloaded file which you copied to the memory card to /system/lib/modules" (tap mount r/w before doing this)
6. now go to /etc (tap mount r/w) and scroll down to "hw_config.sh"
7. long press and choose "open in text editor" and add the 2 lines mentioned.
8. press "save and exit"
9. go to /system and scroll to "build.prop" -> tap and hold -> open in text editor and add the two lines in the post.
10. save and exit root explorer
11. reboot and ur good to go
if i helped you, press the "THANKS" button
achyut said:
for x10 mini u get "fake" dual touch....u can get the needed information here
http://forum.xda-developers.com/showthread.php?t=1064558
actually, in very "simple", lucid language, do this step by step:
i am NOT responsible if i brick ur device, use this post guidance at your own risk. or better yet, follow the instructions in the actual post
1. check ur baseband to be "M76XX-TSNCJOLYM-53404015"
2. check the firmware
3. download the "cy8ctma300_ser.zip" attached, to ur computer and extract the "cy8ctma300_ser.ko" file from there, copy it to your memory card. (better u go for the "updated version" link in the post).
4.get root explorer from the market
5.copy the downloaded file which you copied to the memory card to /system/lib/modules" (tap mount r/w before doing this)
6. now go to /etc (tap mount r/w) and scroll down to "hw_config.sh"
7. long press and choose "open in text editor" and add the 2 lines mentioned.
8. press "save and exit"
9. go to /system and scroll to "build.prop" -> tap and hold -> open in text editor and add the two lines in the post.
10. save and exit root explorer
11. reboot and ur good to go
if i helped you, press the "THANKS" button
Click to expand...
Click to collapse
is dat fake dualtouch work for u??? does it work on games??
danigladson said:
is dat fake dualtouch work for u??? does it work on games??
Click to expand...
Click to collapse
It works perfectly
hi
Worked root 2.3.5 65.1.21.XT910.PSHAsiaRetail.en.03 and 65.1.21.XT910.MERetail.en.03
[Instruction]
Install USB Drivers
Extract Motofail_windows.zip Package
Enable debugging on device. Settings -> Application -> Development -> Tick USB Debugging
Connect device to PC
Test if device is recognised in command prompt using ADB Devices (Optional)
Run the Run.bat
Enjoy
Download
http://vulnfactory.org/public/motofail_windows.zip
Original link
http://vulnfactory.org/blog/2012/02/...ty-experiment/
Dan Rosenberg
It's works, on my RAZR XT910 Asia, SEAOP.
I am using GNU/Linux and this how I re-ROOT my RAZR back.
Note: Only for advanced and know what todo users. Actually this is for anyone who knows how to use adb or fastboot, either in GNU/Linux, OSX or Windows.
1) I already installed the adb and fastboot in $PATH.
2) Extract the motofail exploit
3) cd /to/motofail
4) $ adb push motofail /data/local/.
5) $ adb shell 'chmod 755 /data/local/motofail'
6) $ adb shell '/data/local/motofail exploit'
7) $ adb reboot
8) $ adb remount
9) $ adb push su /system/xbin/.
9a) $ adb shell 'chmod 4755 /system/xbin/su'
10) $ adb shell '/data/local/motofail clean; reboot'
11) Install Superuser from Market.
If you already rooted your RAZR, but had been removed by OTA, you can skip step 9) to re-ROOT your RAZR. .
Note and suggestion: DO NOT push Superuser.apk to /system/app . It is wise to INSTALL from Market or do $ adb install -r Superuser.apk. Better to remove /system/app/Superuser.apk before reinstall the Superuser.apk from Market or adb : $ adb shell 'rm /system/app/Superuser.apk'
You can remove the motofail later;
$ adb shell 'rm /data/local/motofail'
You can read run.bat to see the commands involved.
Thank you...
almstag said:
hi
Worked root 2.3.5 65.1.21.XT910.PSHAsiaRetail.en.03 and 65.1.21.XT910.MERetail.en.03
[Instruction]
Install USB Drivers
Extract Doomlords Package
Enable debugging on device. Settings -> Application -> Development -> Tick USB Debugging
Connect device to PC
Test if device is recognised in command prompt using ADB Devices (Optional)
Run the Runme.bat
Enjoy
Download
http://vulnfactory.org/public/motofail_windows.zip
Click to expand...
Click to collapse
So do I extract Doomlords' package [from other threads] or do I extract the ATTACHED package? Namely, Motofail_windows.zip.
Edit: Turns out that the "Doomlord's Package" in the instructions was for the attached pacakge. I've successfully rooted my XT910 that's on 65.1.21.XT910.PSHAsiaRetail.en.03
I'm sorry
Thank you
Worked on 65.1.21.xt910.optus.en.au
Thankyou!
I want the Fastboot file for the Asian model of Razr XT910. Can any1 link me?
manish.sanil said:
I want the Fastboot file for the Asian model of Razr XT910. Can any1 link me?
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1362956
Just look for your device's ROM at this thread.
hugothebas said:
http://forum.xda-developers.com/showthread.php?t=1362956
Just look for your device's ROM at this thread.
Click to expand...
Click to collapse
Is it just me or is it just that 65.1.21.XT910.PSHAsiaRetail.en.03 isn't on that thread?
Sim Kai Long said:
Is it just me or is it just that 65.1.21.XT910.PSHAsiaRetail.en.03 isn't on that thread?
Click to expand...
Click to collapse
No, there's no fastboot file for 65.1.21.XT910.PSHAsiaRetail.en.03. But you can go there by OTA Update via Moto Recovery
Do I just need to extract the motofail and run .bat file on my razr which is on new ota?
Sent from my XT910 using xda premium
Sedariya11 said:
Do I just need to extract the motofail and run .bat file on my razr which is on new ota?
Sent from my XT910 using xda premium
Click to expand...
Click to collapse
Extract motofail_windows.zip to a folder anywhere on your computer, on your desktop perhaps?
Make sure the phone is enabled for USB Debugging [Read the instructions for this]
Run "Run.bat" through your PC and the other processes will be automated.
Thank u so much bro.. I have been trying to root it after update but coludnt but ur process is tooo easy..thanks again. U r awesome..
Sent from my XT910 using xda premium
elias.parasini said:
No, there's no fastboot file for 65.1.21.XT910.PSHAsiaRetail.en.03. But you can go there by OTA Update via Moto Recovery
Click to expand...
Click to collapse
Hey thanks for your prompt reply..
I am getting this error when i do OTA
had to get the asia rom through the method above but i can't update any OTA!
i have downloaded the asia ota and put it on my sd.
i boot into recovery and update from zip/sd card.
all goes well until half way and i get an error.
something along the lines of "assert failed: apply_patch_check("MTD:boot:8388608:c3d17a6e41533c 813209ed51dfef327df8e1f76")
E:error in /tmp/sideload/package.zip
(status7 )
Installation Aborted
So i must have damaged some system files right?? Now how do i get the Fastboot files or is there any alternative as to how to go about it?
Worked for me like a charm, thx bro (651.167.19.XT910.Retail.en.EU).
Edit:
Titanium Backup said that 4755 isn't optimal for su and changed it to 6755
failed to root on my 65.1.21.XT910.PSHAsiaRetail.en.03
by manually executing the commands, i get stuck at step 9, with the error
"failed to copy 'su' to '/system/xbin/su': Read-only file system"
ptewee said:
failed to root on my 65.1.21.XT910.PSHAsiaRetail.en.03
by manually executing the commands, i get stuck at step 9, with the error
"failed to copy 'su' to '/system/xbin/su': Read-only file system"
Click to expand...
Click to collapse
Oh I see that you're using manual. Give the auto one a try?
i tried the auto first, everything completed successfully but i still end up unrooted...
then i tried manually step by step and there was the error at step 9...
It seem the /system didn't remounted to rw(read/write) mode. Did the exploit success?
Do the motofail clean step, reboot and start again from step 1 again.
Good luck.
Sent from my XT910 using XDA App
'motofail exploit' completed without error
will try flashing it again today, thanks
Hi there, i have a Lenovo A1000 tablet and make changes to build.prop and now i am stuck on the boot logo...
i mange to get a adb shell and i try to push my build.prop backup but the shell returns that is just a read only file system... so i need remount it as writyeable but dont know anything about the system partition (/dev patch or whatever), i enter the command "mount | grep system" but i dont undestand the output...
please help!
Lenovo dont provide a way to restore the tablet xD
Best Regards!
You have to be rooted. If you are, be sure to be su in the terminal. Also, remember next time to set the right permissions for build.prop. It should be 644 (rw-r-r), or else you'll get another bootloop.
LordManhattan said:
You have to be rooted. If you are, be sure to be su in the terminal. Also, remember next time to set the right permissions for build.prop. It should be 644 (rw-r-r), or else you'll get another bootloop.
Click to expand...
Click to collapse
i am pretty sure that the permitions are in 644, but anyway how do i check it? just in case
wolframio74 said:
i am pretty sure that the permitions are in 644, but anyway how do i check it? just in case
Click to expand...
Click to collapse
reflash rom through odin
ummarrkhan said:
reflash rom through odin
Click to expand...
Click to collapse
is a lenovo xD, anyway...
for the record, here are the steps that use to restore my backup of build.prop with the stock recovery and a logo stuck at the boot:
*INSTALL PDANET FOR WIN FROM HERE: http://pdanet.co/a/ IN THE PC.
and put your backup of "build.prop" in the same folder with ADB.
Disconect any cable from the tablet.
1.- Power off the tablet with the reset button on the sd car slot.
2.- Power it on factory mode with holding "vol down and power", a screen with a Blue bar appears on the tablet.
3.- Connect the tablet to the PC, open two (yes 2 Windows) CMD and go to your ADB folder with the your backup of Build.prop, then enter the follow commands in one CMD Window...
CMD Window 1:
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p1 /system
CMD Window 2:
adb push build.prop /system/build.prop
then back to CMD Window 1 and put:
chmod 644 /system/build.prop
reboot
if i didnt forget anything the tablet will boot normally!
wolframio74 said:
is a lenovo xD, anyway...
for the record, here are the steps that use to restore my backup of build.prop with the stock recovery and a logo stuck at the boot:
*INSTALL PDANET FOR WIN FROM HERE: http://pdanet.co/a/ IN THE PC.
and put your backup of "build.prop" in the same folder with ADB.
Disconect any cable from the tablet.
1.- Power off the tablet with the reset button on the sd car slot.
2.- Power it on factory mode with holding "vol down and power", a screen with a Blue bar appears on the tablet.
3.- Connect the tablet to the PC, open two (yes 2 Windows) CMD and go to your ADB folder with the your backup of Build.prop, then enter the follow commands in one CMD Window...
CMD Window 1:
adb shell
su
mount -o rw,remount /dev/block/mmcblk0p1 /system
CMD Window 2:
adb push build.prop /system/build.prop
then back to CMD Window 1 and put:
chmod 644 /system/build.prop
reboot
if i didnt forget anything the tablet will boot normally!
Click to expand...
Click to collapse
this will be better