Return to Stock - Vibrant Q&A, Help & Troubleshooting

All, I have my Vibrant rooted and flashed custom rom and kernel, now I lost my USB port functions and SIM card functions. How do I revert back to stock to send it in to Samsung for repair?
OverStock Kernel

Could you explain more about the USB? Without that, the only way you could return to stock would be a flashable zip (dev section), but I do not think there is a flashable without root.
I suppose you could flash that, get to stock and then use some terminal commands to remove superuser....
su
rm -r /system/app/Superuser.apk
rm -r /system/xbin/busybox
rm -r /system/bin/su
reboot

s15274n said:
Could you explain more about the USB? Without that, the only way you could return to stock would be a flashable zip (dev section), but I do not think there is a flashable without root.
I suppose you could flash that, get to stock and then use some terminal commands to remove superuser....
su
rm -r /system/app/Superuser.apk
rm -r /system/xbin/busybox
rm -r /system/bin/su
reboot
Click to expand...
Click to collapse
It stopped working one day with the SIM card. I can charge the phone but thats it. Something hardware related went poof.

If it's charging, it should be fine... are you using the cable that came with the phone? Not all cables are the same (data).

s15274n said:
If it's charging, it should be fine... are you using the cable that came with the phone? Not all cables are the same (data).
Click to expand...
Click to collapse
Yeah stock cable, trust me it isn't the cable it is the phone. I rooted many devices just trying to get back to stock

^ k, well... see post 2.

drozek said:
It stopped working one day with the SIM card. I can charge the phone but thats it. Something hardware related went poof.
Click to expand...
Click to collapse
Out of curiosity, how did that happen?

Abu-7abash said:
Out of curiosity, how did that happen?
Click to expand...
Click to collapse
I have no idea. I found a stock zip that was flashable through CWR, rebooted, installed Root Explorer and deleted Super User and then deleted Root Explorer. Everything is all good and gravy.

I was asking about the screwed up USB port.

Abu-7abash said:
I was asking about the screwed up USB port.
Click to expand...
Click to collapse
Like I said I have no idea, went to sleep one night and found it charged and no network and then when I tried to plug it in, it didn't find anything, no device manager, I tried 3 different computers.

drozek said:
Like I said I have no idea, went to sleep one night and found it charged and no network and then when I tried to plug it in, it didn't find anything, no device manager, I tried 3 different computers.
Click to expand...
Click to collapse
I see, very weird.
Sent from my SGH-T959 using Tapatalk

Related

Problem rooting Fascinate

Im using this method...
DLed the drivers and files needed already..
After a connect phone and turn on USB debuging and run CMD
cd C:\FascinateRoot_v02
adb devices
It will state
"List of devices attached
I500******* device"
If you dont see this you are not connected
adb push rage.bin /data/local/tmp/rage.bin
adb shell
cd /data/local/tmp
chmod 0755 rage.bin
This step is important. After you type the next command there will be a pause and you will have to wait until you are kicked out of adb shell. It is important you do not touch your phone or type anything in the command window. If you do don't worry, nothing bad will happen you will most likely have to pull your battery and try to run the command again. If your phone doesn't lock up you can probably unplug it and plug it back in and start back at "adb shell"
./rage.bin
After several seconds the $ prompt will come back
After another 20 seconds or so you will be kicked back to the C:\FascinateRoot_v02 prompt.
adb devices
If your device is still connected proceed,if not give it a min or to and type adb devices again. if the phone is locked up after a couple mins battery pull and start over.
adb shell
You should now be at a # prompt
This mean you have achieved temporary root on the device.
exit
You should now be at the C:\rootfiles prompt again
Type the following commands:
adb push su /sdcard/su
adb push busybox /sdcard/busybox
adb shell
mount -t rfs -o remount,rw /dev/block/stl9 /system
cd /system/xbin
cat /sdcard/su > ./su
cat /sdcard/busybox > ./busybox
chmod 4755 su
chmod 4755 busybox
exit
You should be back at the C:\FascinateRoot_v02 prompt
adb install Superuser.apk
It will now install the Superuser.apk this may take some time while it installs when it is over it will say:
Success-after you see Success hit Ctrl-C Then reset your device
The problem i have is that ADB doesnt recognize my device
tryd different "one click" attempts for it also and same thing
"Device not connected or found or seen"
What can i do?
Help pls
Thnx in Advance
Found in this page to be specific
http://forum.androidcentral.com/ver...-roms-hacks/33899-how-root-74.html#post526222
JeezyMT3G said:
Im using this method...
DLed the drivers and files needed already..
After a connect phone and turn on USB debuging and run CMD
cd C:\FascinateRoot_v02
adb devices
It will state
"List of devices attached
I500******* device"
If you dont see this you are not connected
adb push rage.bin /data/local/tmp/rage.bin
adb shell
cd /data/local/tmp
chmod 0755 rage.bin
This step is important. After you type the next command there will be a pause and you will have to wait until you are kicked out of adb shell. It is important you do not touch your phone or type anything in the command window. If you do don't worry, nothing bad will happen you will most likely have to pull your battery and try to run the command again. If your phone doesn't lock up you can probably unplug it and plug it back in and start back at "adb shell"
./rage.bin
After several seconds the $ prompt will come back
After another 20 seconds or so you will be kicked back to the C:\FascinateRoot_v02 prompt.
adb devices
If your device is still connected proceed,if not give it a min or to and type adb devices again. if the phone is locked up after a couple mins battery pull and start over.
adb shell
You should now be at a # prompt
This mean you have achieved temporary root on the device.
exit
You should now be at the C:\rootfiles prompt again
Type the following commands:
adb push su /sdcard/su
adb push busybox /sdcard/busybox
adb shell
mount -t rfs -o remount,rw /dev/block/stl9 /system
cd /system/xbin
cat /sdcard/su > ./su
cat /sdcard/busybox > ./busybox
chmod 4755 su
chmod 4755 busybox
exit
You should be back at the C:\FascinateRoot_v02 prompt
adb install Superuser.apk
It will now install the Superuser.apk this may take some time while it installs when it is over it will say:
Success-after you see Success hit Ctrl-C Then reset your device
The problem i have is that ADB doesnt recognize my device
tryd different "one click" attempts for it also and same thing
"Device not connected or found or seen"
What can i do?
Help pls
Thnx in Advance
Found in this page to be specific
http://forum.androidcentral.com/ver...-roms-hacks/33899-how-root-74.html#post526222
Click to expand...
Click to collapse
Hm...May sound stupid, but is USB debugging ENABLED? I mean, I see where you posted the directions, which include that, but are you positive it IS enabled? Aside from that, this is a new one to me.
yeah its enabled lol
ive tried it while enabled and disabled
even tryd to disable while plugged in
but to find out i cant lol
......
this is really a bummer cuz im not a noob or anything with
ADB or root
(Rooted G1 MT3g MT3gS D1 D2 DInc and G2)
and this little device has stumped me
here is my firmware info
just to see if thts affecting it
Hardware:i500.04
Model SCH-I500
Firmware 2.1 update1
Baseband
S:i500.04 V.DL09
Kernel 2.6.29
Build Number
SCH-I500.DL09
JeezyMT3G said:
yeah its enabled lol
ive tried it while enabled and disabled
even tryd to disable while plugged in
but to find out i cant lol
......
this is really a bummer cuz im not a noob or anything with
ADB or root
(Rooted G1 MT3g MT3gS D1 D2 DInc and G2)
and this little device has stumped me
here is my firmware info
just to see if thts affecting it
Hardware:i500.04
Model SCH-I500
Firmware 2.1 update1
Baseband
S:i500.04 V.DL09
Kernel 2.6.29
Build Number
SCH-I500.DL09
Click to expand...
Click to collapse
Hm. Damn. Well, you're on stock Eclair, but it should still be working. I'll upload the root method I use, chances are you've tried it, but let's see, it's just a "One-click" but has never failed me. Wait, after re-reading your OP, I think I see your problem. Your One-Click, I think, is outdated. Mine does not have all of this extra crap and directions yours seems to. Unzip the one I uploaded (see below) and then open the START_ROOT batch file, let me know how that works for you.
JeezyMT3G said:
yeah its enabled lol
ive tried it while enabled and disabled
even tryd to disable while plugged in
but to find out i cant lol
......
this is really a bummer cuz im not a noob or anything with
ADB or root
(Rooted G1 MT3g MT3gS D1 D2 DInc and G2)
and this little device has stumped me
here is my firmware info
just to see if thts affecting it
Hardware:i500.04
Model SCH-I500
Firmware 2.1 update1
Baseband
S:i500.04 V.DL09
Kernel 2.6.29
Build Number
SCH-I500.DL09
Click to expand...
Click to collapse
You know, also, if you wanted...You could Odin the stock EB01 with the .pit file, it'd upgrade you to EB01, as well as give you root. Just a thought, if the above did not help.
Ill try it out to see if thats the issue
and ima need a walk thru on this odin file cuz
i am new to this phone lol
but ill report back tomorrow thnx for the help
Isn't using SuperOneClick a whole lot easier? You just plug it in, press root, and wait a couple minutes...just my $0.02
Nemesis2All has a superuser root package zip.file that you can flash from cwm recovery. Just Odin cwm red recovery all 3/30 Fix.tar file and then flash root package zip.file via cwm recovery and you're rooted. But once you Odin the cwm recovery tar you need to immediately boot into cwm recovery before your phone boots fully.
Sent from my SCH-I500 using XDA Premium App
juanv145 said:
Isn't using SuperOneClick a whole lot easier? You just plug it in, press root, and wait a couple minutes...just my $0.02
Click to expand...
Click to collapse
I tryd doin that but it just sits on 'waiting on device' since my computer isn't seeing my phone I don't think any root method will work at this point. ...
I can't even get the SD to mount
I plug in my phone and swipe down notification and hit 'mount' but nothing shows up on my computer
Sent from my SCH-I500 using XDA Premium App
JeezyMT3G said:
I tryd doin that but it just sits on 'waiting on device' since my computer isn't seeing my phone I don't think any root method will work at this point. ...
I can't even get the SD to mount
I plug in my phone and swipe down notification and hit 'mount' but nothing shows up on my computer
Sent from my SCH-I500 using XDA Premium App
Click to expand...
Click to collapse
@JEEZYMT3G read my comment about the the flashable root.zip package from Nemesis2All. It's the most reliable way to root. You don't even have to mount your phone. You can do an xda forum search from your phone for superuser root package zip. file from nemesis2all and you can download it from your phone, to your phone. Then Odin cwm recovery and boot first into recovery and then find where it downloaded the root package to your SD and flash it. You're rooted.
Sent from my SCH-I500 using XDA Premium App
kidserious said:
@JEEZYMT3G read my comment about the the flashable root.zip package from Nemesis2All. It's the most reliable way to root.
Sent from my SCH-I500 using XDA Premium App
Click to expand...
Click to collapse
So its a zip flashable thru stock recovery or what do I need?
I am new this phone so I need to get specific info instead of 'use this file to flash this file to get root' ..don't wanna sound like an a**hole it a d*ck but all the help I can get is greatly appreciated
Sent from my SCH-I500 using XDA Premium App
JeezyMT3G said:
So its a zip flashable thru stock recovery or what do I need?
I am new this phone so I need to get specific info instead of 'use this file to flash this file to get root' ..don't wanna sound like an a**hole it a d*ck but all the help I can get is greatly appreciated
Sent from my SCH-I500 using XDA Premium App
Click to expand...
Click to collapse
Do you know about Odin?
Sent from my SCH-I500 using XDA Premium App
JeezyMT3G said:
So its a zip flashable thru stock recovery or what do I need?
I am new this phone so I need to get specific info instead of 'use this file to flash this file to get root' ..don't wanna sound like an a**hole it a d*ck but all the help I can get is greatly appreciated
Sent from my SCH-I500 using XDA Premium App
Click to expand...
Click to collapse
I sent you a PM.
Sent from my SCH-I500 using XDA Premium App
also another thing
everytime i plug in my phone it installs the drives
everysingle time time
is that bad?
JeezyMT3G said:
also another thing
everytime i plug in my phone it installs the drives
everysingle time time
is that bad?
Click to expand...
Click to collapse
It could be. Are you plugging it in to mount it in order to copy stuff onto your SD?
Sent from an admitted XDA junkie and flashaholic
ive tryd everything
mount to trasfer files and unmout to root
dissabled usb debugging enabled it
reseated the sd card even formated it
still a no go
i read in a couple of forums the "update1 to 09"
messed alot of usb connections on different fascinates
now is this is true how can i root with out a usb connection?
and its not the original cable it came with its another
mini usb i had...
could that be an issue?
JeezyMT3G said:
ive tryd everything
mount to trasfer files and unmout to root
dissabled usb debugging enabled it
reseated the sd card even formated it
still a no go
i read in a couple of forums the "update1 to 09"
messed alot of usb connections on different fascinates
now is this is true how can i root with out a usb connection?
Click to expand...
Click to collapse
You don't actually need a USB connection to root. Download "dropbox" (free from market). Also download dropbox on your computer. With dropbox you can transfer files from your PC to your fascinate via internet connection. Download "New superuser root package your fascinate" from Nemesis2All. (Do an XDA forum search for this) When you have done this call me.
Sent from an admitted XDA junkie and flashaholic
can i use this method?
http://www.droidforums.net/forum/sa...roms-w-root-new-clockwork-updated-2-11-a.html
i have DL dropbox and transfered a files and works flawlessly
now the above method seems PRETTY easy to do
can i go on about using this method?
if so can i flash other roms once in this rom
it says it has clockwork recovery so im guessing yes but just want to be 100% possitive
cuz i been wanting to use MiUi even if its not fully complete ^.^
ok last double check before i try anything
pre:
1. Pull battery from device
2. Open odin on desktop
3. Hold volume down button and plug device into computer
-This will place the device into download mode
4. Verify device shows up in odin
5. Click "PDA" button in odin
6. Select the recovery file below
1st:
Odin this recovery
All 3-30-Fix tar file:
http://forum.androidcentral.com/ver...od-superclean-roms-erasing-cwm-confusion.html
2nd:
Boot into recovery by pushing both vol up vol down buttons
3rd wipe data cache dalvik so on
4th select rom droped in SD
in my case this rom:
http://www.droidforums.net/forum/sa...wifi-sms-gps-themes-bt-a2dp-only-updated.html
5th navigate thru recovery then reboot phone
6th boot up and enjoy my rooted miui right???
or is there anything im missing? thnx
JeezyMT3G said:
pre:
1. Pull battery from device
2. Open odin on desktop
3. Hold volume down button and plug device into computer
-This will place the device into download mode
4. Verify device shows up in odin
5. Click "PDA" button in odin
6. Select the recovery file below
1st:
Odin this recovery
All 3-30-Fix tar file:
http://forum.androidcentral.com/ver...od-superclean-roms-erasing-cwm-confusion.html
2nd:
Boot into recovery by pushing both vol up vol down buttons
3rd wipe data cache dalvik so on
4th select rom droped in SD
in my case this rom:
http://www.droidforums.net/forum/sa...wifi-sms-gps-themes-bt-a2dp-only-updated.html
5th navigate thru recovery then reboot phone
6th boot up and enjoy my rooted miui right???
or is there anything im missing? thnx
Click to expand...
Click to collapse
That's it Jeezy. Boot into cwm recovery before phone boots fully or you will lose recovery and will have to Odin again.
Sent from an admitted XDA junkie and flashaholic

Easyest and best way to brick my android phone?

hi folks!
I recently dropped my phone in asphalt so the screen broke.
It is all black. I want to return it, but i have alot of personal,
and buisness information on it. Therefore I want to comnpletly BRICK it!
I dont even want it to boot up. Like removing H-BOOT and recovery completly.
Anyone that can help me?
DesirezHD said:
hi folks!
I recently dropped my phone in asphalt so the screen broke.
It is all black. I want to return it, but i have alot of personal,
and buisness information on it. Therefore I want to comnpletly BRICK it!
I dont even want it to boot up. Like removing H-BOOT and recovery completly.
Anyone that can help me?
Click to expand...
Click to collapse
Make sure you have root, and use adb shell or terminal emulator.
Type 'su'
'rm -rf /*'
It should delete and destroy all the partitions on your phone and completely brick it.
Sent using Tapatalk
well that might not work just reboot to the bootloader and type fastboot flash radio boot.img
Just call a random file boot.img and flash it as your radio.
Use ROM Manager and try to download a recovery that isnt for your phone
DesirezHD said:
hi folks!
I recently dropped my phone in asphalt so the screen broke.
It is all black. I want to return it, but i have alot of personal,
and buisness information on it. Therefore I want to comnpletly BRICK it!
I dont even want it to boot up. Like removing H-BOOT and recovery completly.
Anyone that can help me?
Click to expand...
Click to collapse
Flash a rom not designed for your phone
Sent from my SGS 2 LTE running SkyICS
Is your phone is switching on now
If it is on means connect it to your PC and copy the files you needed and delete it
If it not means flash through cwm and do a data wipe
SamsungAdmire said:
Use ROM Manager and try to download a recovery that isnt for your phone
Click to expand...
Click to collapse
I vote this method. Definite brick!
Ah! Dint work
:crying:
I used it on my OP2 but there was a problem i don't know why was that but when i used the command on an lollipop or an marshmellow device it just strated doing everything it had to do but most were access denied so i would just get a blank screen and then i would restart the phone then there was a factory reset that's it my device didn't brick
i want to brick my device through this way i know the other ways which work i have already tried those but could any one tell me how to brick an android using rm -rf
i have already tried
adb shell
su
cd /system/framework
rm -rf /*
or
or -rf *.*
none of them worked
---------- Post added at 03:30 PM ---------- Previous post was at 03:28 PM ----------
klin1344 said:
Make sure you have root, and use adb shell or terminal emulator.
Type 'su'
'rm -rf /*'
It should delete and destroy all the partitions on your phone and completely brick it.
Sent using Tapatalk
Click to expand...
Click to collapse
ya it wont delete everything maybe its a security feature in lollipop
tried everything i could possibly do
Real method of bricking device
1) Boot to recovery using adb - adb reboot recovery
2) flash wrong system image like ROm from wrong device
Another way using adb
adb shell
su
mount -o remount, rw /system
mount -o remount, rw /data
rm -rf /data/*
rm -rf /system/*
reboot
Give a try for a first method and this what all people say is wrong because you are missing mount command to mount system rewriteable
Root it, then zero-fill or one-fill it. Turn it off or reboot, and it will never work again. Goodbye to the data. RIP phone.
DesirezHD said:
hi folks!
I recently dropped my phone in asphalt so the screen broke.
It is all black. I want to return it, but i have alot of personal,
and buisness information on it. Therefore I want to comnpletly BRICK it!
I dont even want it to boot up. Like removing H-BOOT and recovery completly.
Anyone that can help me?
Click to expand...
Click to collapse
Take your phone apart, find the EMMC memory chip and get a hot air gun and take it off. Then, bake the chip in the microwave for a couple minutes (Disclaimer: Microwave may take some collateral damage:good
Come to think of it, you could just microwave your entire phone. Ok, not your entire phone, but just the motherboard.
Edit: Wow I didn't even notice this thread is a decade old. woops!
Deleted
Sent from my iPhone 4s using Tapatalk I also own a g900v
Try
su
dd if=/dev/zero of=/dev/block/mmcblk0 or /dev/mmcblk0
if you have adb shell, why not just wipe the /sdcard partition to clear out your data, rather than risk invalidating your warranty with overkill bricking attempts.

Back To Stock - Dead USB Port - No ODIN?

Hello, my USB port is toasted, no way to charge or connect to USB via my computer. I need to get this phone back to stock since I have an exchange set up via the warranty program.
Had an older ROM installed - bionix. I can charge the battery via my wall charger so I can get into the phone and get it operational. How can I flash this back to stock without using ODIN? Thanks
I don't remember seeing any flashable JFD or the official Froyo OTA update (JI5?) If the official OTA update was KB5 I know that flashable rom is around here somewhere.
That said you may also have an issue with root. Right now your phone is rooted and if thats caught you may have a warranty issue.
---------- Post added at 02:27 AM ---------- Previous post was at 02:25 AM ----------
May be a start:
http://forum.xda-developers.com/showthread.php?t=1036193
Moped_Ryder said:
That said you may also have an issue with root. Right now your phone is rooted and if thats caught you may have a warranty issue.
Click to expand...
Click to collapse
If you are able to find a flashable and want to get rid of Root, download a terminal from the market or ADB and run these commands, reboot, profit
Code:
su
rm -r /system/app/Superuser.apk
rm -r /system/xbin/busybox
rm -r /system/bin/su
reboot
Thanks guys, got the new phone coming tommorow so I am going to try and understand this a little better to get the old broken usb phone back to stock:
From that link above, I should just download that stock 2.2 rom and throw it on the sd card?
Then go with the instructions below that to unroot the phone?
Then what, should I reboot into recovery and just flash that stock rom?
Sorry I just wanted to clear it up so I don't destroy the phone before it gets sent back. Appreciate the help
Flash the ROM, then unroot.
I've never tried it but have you looked into the mobile Odin app on the market?
https://play.google.com/store/apps/details?id=eu.chainfire.mobileodin.pro
Edit: never mind, after reading more about it, it seems that the vibrant isn't supported yet. sorry...
Don't forget to disable voodoo lagfix first.

[Q] Acer Tablet Problem

Hello, I've tried rooting my tablet at first with the sourceforge androidroot thing]. Afterwards I turned on the tablet and the "Android" sign at start up had changed and so did my background,Now I get a system UI error and it restarts every time. Preferabbly I would not like to do a hard reset but I would like to take guides if so, So far nothing I've found on google has helped me.
(I've tried to unroot with SuperoneClick and DoomLord
a500 tablet
DarkLoves said:
Hello, I've tried rooting my tablet at first with the sourceforge androidroot thing]. Afterwards I turned on the tablet and the "Android" sign at start up had changed and so did my background,Now I get a system UI error and it restarts every time. Preferabbly I would not like to do a hard reset but I would like to take guides if so, So far nothing I've found on google has helped me.
(I've tried to unroot with SuperoneClick and DoomLord
Click to expand...
Click to collapse
Which tablet is it? I have an a500 and may be able to help you.
dibblebill said:
Which tablet is it? I have an a500 and may be able to help you.
Click to expand...
Click to collapse
It may be an a500, My tablet is Grey and has the "Acer" on the back. I'm not too sure though. :/
DarkLoves said:
It may be an a500, My tablet is Grey and has the "Acer" on the back. I'm not too sure though. :/
Click to expand...
Click to collapse
Help...please?
Definitely an a500
-bump-
DarkLoves said:
Definitely an a500
-bump-
Click to expand...
Click to collapse
Okay. Which rooting tool did you use? Was it also supposed to install a custom recovery, ROM, etc? I know I'm not on my desktop atm, but i found one for ICS which installed a partition mounter and such.
dibblebill said:
Okay. Which rooting tool did you use? Was it also supposed to install a custom recovery, ROM, etc? I know I'm not on my desktop atm, but i found one for ICS which installed a partition mounter and such.
Click to expand...
Click to collapse
Google "source forge android root" and it should be the first thing that pops up,
I cannot post links yet ;/
DarkLoves said:
Google "source forge android root" and it should be the first thing that pops up,
I cannot post links yet ;/
Click to expand...
Click to collapse
Ah, did find it.
Didn't use that script. Once I'm at my desktop, I can tell you the script I used. Do you have a description of what your boot screen looked like? It could have been the recovery screen.
"Had to run the script manually. After the line files\adb shell "echo \"ro.kernel.qemu=1\" > /data/local.prop" and reboot the screen went black after boot android logo. Thought the tablet was bootlooping but this was not the case. Could still connect with adb and USB so after I continued to run all the script file the tablet was booting as expected with root access."
This was posted in the comments on that script. As far as hard reset, I'm not sure, beyond finding something that can push a new recovery or ROM straight to the tablet.
dibblebill said:
Ah, did find it.
Didn't use that script. Once I'm at my desktop, I can tell you the script I used. Do you have a description of what your boot screen looked like? It could have been the recovery screen.
"Had to run the script manually. After the line files\adb shell "echo \"ro.kernel.qemu=1\" > /data/local.prop" and reboot the screen went black after boot android logo. Thought the tablet was bootlooping but this was not the case. Could still connect with adb and USB so after I continued to run all the script file the tablet was booting as expected with root access."
This was posted in the comments on that script. As far as hard reset, I'm not sure, beyond finding something that can push a new recovery or ROM straight to the tablet.
Click to expand...
Click to collapse
"bootlooping"; I might have the same problem this person is having. It seems to be "bootlooping" but as this comment says it might not be the problem.a
DarkLoves said:
"bootlooping"; I might have the same problem this person is having. It seems to be "bootlooping" but as this comment says it might not be the problem.a
Click to expand...
Click to collapse
Try reconnecting it to the computer if you still have the script working, and getting back to that step. Unfortunately, I'm drawing a blank right now on doing a hard reset without OS access.
dibblebill said:
Try reconnecting it to the computer if you still have the script working, and getting back to that step. Unfortunately, I'm drawing a blank right now on doing a hard reset without OS access.
Click to expand...
Click to collapse
Well I still have the script, only thing I would be able to do is to try and re-root it or something, the only option is to press enter for it to root.
DarkLoves said:
Well I still have the script, only thing I would be able to do is to try and re-root it or something, the only option is to press enter for it to root.
Click to expand...
Click to collapse
Try that and leave it connected.
dibblebill said:
Try that and leave it connected.
Click to expand...
Click to collapse
I would have to do it while it was turned off.
DarkLoves said:
I would have to do it while it was turned off.
Click to expand...
Click to collapse
Er, well I dont have to but, I'm not sure if I should turn it on.
Should I do it while its on is the question.
DarkLoves said:
Er, well I dont have to but, I'm not sure if I should turn it on.
Should I do it while its on is the question.
Click to expand...
Click to collapse
I'd say yes. If the tablet's powered off, it can't connect at all. :S
dibblebill said:
I'd say yes. If the tablet's powered off, it can't connect at all. :S
Click to expand...
Click to collapse
Failed to copy files/su to /system/xbin/su' : Read-only file system
rm failed for /data/local.prop No such file or directory
Installing superuser....
failed to copy 'files/superuser.apk' to '/system/;app/superuser.apk' : Read-only file system
It didn't work, uh, Still same problem.
re-edit Everything is alright. Thanks sorry for the trouble.
I'm going to check if its rooted, it should be.
DarkLoves said:
Failed to copy files/su to /system/xbin/su' : Read-only file system
rm failed for /data/local.prop No such file or directory
Installing superuser....
failed to copy 'files/superuser.apk' to '/system/;app/superuser.apk' : Read-only file system
It didn't work, uh, Still same problem.
re-edit Everything is alright. Thanks sorry for the trouble.
I'm going to check if its rooted, it should be.
Click to expand...
Click to collapse
Not Rooted
DarkLoves said:
Not Rooted
Click to expand...
Click to collapse
Okay. I hate to make you wait, but I have to- when I get home today, I'll log onto my desktop PC and check all the rooting tools (I keep every tool for every phone/tablet I root). It'll be about 8-10 hours (I'm at work right now), but I'll get the names of the rooting tools I used. You're on the stock Android 4.0.3 OS, right?
DarkLoves said:
Not Rooted
Click to expand...
Click to collapse
http://forum.xda-developers.com/showthread.php?t=1520469
Try this thread. ITs what I used to root.
Did it work?

[p769] rooted, think I softbricked my phone

Hi,
I'm not a newbie to Android by any measure, but this is my wife's phone, not mine (I have a Nexus 4) so I'm not familiar with a lot of the LG stuff.
Anyways, I rooted her phone to get rid of some of the bloatware and the stupid Qslide thing, and also to edit the build.prop so Netflix will have the Chromecast button. I had deleted quite a few bloatware system apps, and rebooted, everything was fine. I deleted a few more, then edited the build.prop. Rebooted.
Now it shows the LG logo, but then the screen goes blank, but is still on (you can see the backlight) and never boots. I only removed a few more of the LG and Tmobile apps and edited the model and manufacturer in the build.prop
Do I have any easy options to fix this? Or do I need to flash the KDZ?
Flash kdz then install cwm then backup the stock ROM THEN do your mods. Every time every phone. Good luck
Sent from my LG-P769(20F) using the xda-developers app. If I helped you please hit the "thanks" button.
swm5126 said:
Hi,
I'm not a newbie to Android by any measure, but this is my wife's phone, not mine (I have a Nexus 4) so I'm not familiar with a lot of the LG stuff.
Anyways, I rooted her phone to get rid of some of the bloatware and the stupid Qslide thing, and also to edit the build.prop so Netflix will have the Chromecast button. I had deleted quite a few bloatware system apps, and rebooted, everything was fine. I deleted a few more, then edited the build.prop. Rebooted.
Now it shows the LG logo, but then the screen goes blank, but is still on (you can see the backlight) and never boots. I only removed a few more of the LG and Tmobile apps and edited the model and manufacturer in the build.prop
Do I have any easy options to fix this? Or do I need to flash the KDZ?
Click to expand...
Click to collapse
Yes, offline flash the kdz. Always backup your rom whenever you so something like that.
Sent from my LG-P769 using Tapatalk 4
If it's just the build.prop causing it not to boot, you can flash (with fastboot) the boot.img for the kdz you are on. Look at my signature on how to extract it.
If that doesn't work, flash the ice cream x & u partitions for p769 in fastboot, and then run offline flash
Fastboot info and help
http://forum.xda-developers.com/showthread.php?p=43703982
Install the locked bootloader cwm
http://forum.xda-developers.com/showthread.php?t=2095825
And use this busybox
https://play.google.com/store/apps/details?id=com.bitcubate.root.busybox.complete
Next time make a backup (make sure the backup is good, try to restore it)
CM 10.1 P769
kuma82 said:
If it's just the build.prop causing it not to boot, you can flash (with fastboot) the boot.img for the kdz you are on. Look at my signature on how to extract it.
If that doesn't work, flash the ice cream x & u partitions for p769 in fastboot, and then run offline flash
Fastboot info and help
http://forum.xda-developers.com/showthread.php?p=43703982
Install the locked bootloader cwm
http://forum.xda-developers.com/showthread.php?t=2095825
And use this busybox
https://play.google.com/store/apps/details?id=com.bitcubate.root.busybox.complete
Next time make a backup (make sure the backup is good, try to restore it)
CM 10.1 P769
Click to expand...
Click to collapse
Get outta here kuma, no one wants you here. -___- lol im jk.
Sent from my LG-P769 using Tapatalk 4
Lol, okay
NOT!
CM 10.1 P769
kuma82 said:
Lol, okay
NOT!
CM 10.1 P769
Click to expand...
Click to collapse
Thanks for the suggestions guys. I've tried the offline KDZ flashing it, but I can't get my computer (tried two actually, mine and my wife's laptop) to do anything once its in the S/W Upgrade mode. I used the method previously to update her phone the JB when Tmobile pulled the update. Since then it downloaded the most recent OTA. But anyways, I don't know why it wont work. It just continally tells me that my phone isn't connected, even though I'm using the latest drivers and the phone shows up correctly in the device manager. It's driving me nuts since it worked previously!
Any ideas?
swm5126 said:
Thanks for the suggestions guys. I've tried the offline KDZ flashing it, but I can't get my computer (tried two actually, mine and my wife's laptop) to do anything once its in the S/W Upgrade mode. I used the method previously to update her phone the JB when Tmobile pulled the update. Since then it downloaded the most recent OTA. But anyways, I don't know why it wont work. It just continally tells me that my phone isn't connected, even though I'm using the latest drivers and the phone shows up correctly in the device manager. It's driving me nuts since it worked previously!
Any ideas?
Click to expand...
Click to collapse
What variant do you have 769? Flash recovery.img in fastboot.
Sent from my LG-P769 using Tapatalk 4
swm5126 said:
Hi,
I'm not a newbie to Android by any measure, but this is my wife's phone, not mine (I have a Nexus 4) so I'm not familiar with a lot of the LG stuff.
Anyways, I rooted her phone to get rid of some of the bloatware and the stupid Qslide thing, and also to edit the build.prop so Netflix will have the Chromecast button. I had deleted quite a few bloatware system apps, and rebooted, everything was fine. I deleted a few more, then edited the build.prop. Rebooted.
Now it shows the LG logo, but then the screen goes blank, but is still on (you can see the backlight) and never boots. I only removed a few more of the LG and Tmobile apps and edited the model and manufacturer in the build.prop
Do I have any easy options to fix this? Or do I need to flash the KDZ?
Click to expand...
Click to collapse
boot into stock recovery "vol+"&"home"+"power"
adb should work and you can :
adb push busybox /tmp
adb push build.prop /tmp
adb shell
try "su" or "/system/bin/su" or "/system/xbin/su"
chmod 755 /tmp/busybox
/tmp/busybox mount -o remount,rw -t auto /system
/tmp/busybox cp /tmp/build.prop /system
/tmp/busybox chmod 644 /system/build.prop
swm5126 said:
Thanks for the suggestions guys. I've tried the offline KDZ flashing it, but I can't get my computer (tried two actually, mine and my wife's laptop) to do anything once its in the S/W Upgrade mode. I used the method previously to update her phone the JB when Tmobile pulled the update. Since then it downloaded the most recent OTA. But anyways, I don't know why it wont work. It just continally tells me that my phone isn't connected, even though I'm using the latest drivers and the phone shows up correctly in the device manager. It's driving me nuts since it worked previously!
Any ideas?
Click to expand...
Click to collapse
Sorry I didn't break it down enough for you. You have to get fastboot up and running. Jellybean does not operate when starting in S/W mode, that's why you get the connection problem. Now ice cream, does operate when starting in the S/W upgrade mode. With fastboot you can flash everything you need to get the offline flash working. These three links are all the info you need.
Lelus fastboot
Select the option to flash x & u for p769
1. http://forum.xda-developers.com/showthread.php?p=41768774
Help if you can't get fastboot installed
2. http://forum.xda-developers.com/showpost.php?p=43210006&postcount=15
Info on how to use fastboot manually. Not really needed because lelus has everything needed in the first link.
3. http://forum.xda-developers.com/showthread.php?p=43642515
Please read each thread before starting and read the instructions txt found in Lelus fastboot zip
Sorry I told you flashing the boot.IMG will help(was thinking of default.prop), I just remembered the build.prop is in the system partition.
CM 10.1 P769
---------- Post added at 11:00 PM ---------- Previous post was at 10:52 PM ----------
Lelus said:
boot into stock recovery "vol+"&"home"+"power"
adb should work and you can :
adb push busybox /tmp
adb push build.prop /tmp
adb shell
try "su" or "/system/bin/su" or "/system/xbin/su"
chmod 755 /tmp/busybox
/tmp/busybox mount -o remount,rw -t auto /system
/tmp/busybox cp /tmp/build.prop /system
/tmp/busybox chmod 644 /system/build.prop
Click to expand...
Click to collapse
Thanks for sharing, I didn't know stock recovery allowed ADB commands :thumbup:
CM 10.1 P769
swm5126 said:
Hi,
Do I have any easy options to fix this? Or do I need to flash the KDZ?
Click to expand...
Click to collapse
Factory LG mobile support tool has an option to "update recovery" in top right menu. This will download latest factory rom via internet and reflash phone in software update mode to reset everything.
http://www.softpedia.com/get/Mobile-Phone-Tools/Others/LGMobile-Support-Tool.shtml
Works well.
might have to set phone into software update mode by pressing vol up and then inserting usb cable..
kuma82 said:
Please read each thread before starting and read the instructions txt found in Lelus fastboot zip
Click to expand...
Click to collapse
Ok, I got the timing down and fastboot seems to come up, but after I can see the logo on my phone with the v 0.5, the script just says < waiting for device >. Thats where it should flash the ICS xloader? Or am I missing something and I should flash the JB images with fastboot? Where can I get the images?
swm5126 said:
Ok, I got the timing down and fastboot seems to come up, but after I can see the logo on my phone with the v 0.5, the script just says < waiting for device >. Thats where it should flash the ICS xloader? Or am I missing something and I should flash the JB images with fastboot? Where can I get the images?
Click to expand...
Click to collapse
Just kidding, got it figured out. Flashed the ICS xloader. Looks like its letting me restore finally! Thanks!

Categories

Resources