Tell me more ×
Android Enthusiasts Stack Exchange is a question and answer site for enthusiasts and power users of the Android operating system. It's 100% free, no registration required.

I am updating the OS of my Samsung Galaxy tab p1000 (i.e. 2.2) to 2.3.6 using adb.

I am using the steps below:

  1. Check whether device is connected or not using ADB.

    C:\Users\PC>adb devices 
    List of devices attached S6802084d305f device
    
  2. Push 2.3.6 OS (i.e. update.zip) OS to SD card.

    C:\Users\PC>adb push C:\Android\update.zip /sdcard/update.zip   
    2765 KB/s (2260360 bytes in 0.798s)
    
  3. Go to recovery mode

    C:\Users\PC>adb reboot recovery
    

enter image description here

After selecting Apply sdcard: update.zip, I'm getting the screen below. But it shows it for long time. There is no response from device. We waited for 5 hours. No response.

enter image description here

How can I flash my Samsung Galaxy tab? Let me know if I am missing a step.

share|improve this question
Please don't cross-post your questions on multiple SE sites. – GAThrawn Feb 6 at 11:33
I got suggestion from someone to post the same question on android.stackexchange.com? – Prashanth Feb 6 at 11:39
1  
the question is offtopic for stackoverflow but SO has no migration path to android. Nothing wrong with asking the question again on a more appropriate SE site. You might want to close the SO question though. – Colin Pickard Feb 6 at 11:49

1 Answer

These are the steps to install/update a custom ROM from stock:

  1. Install a custom recovery (Clockworkmod for example).
  2. Copy the ROM zip to the phone sdcard (you can do this via adb).
  3. Reboot in recovery (it will load the custom recovery).
  4. Use the option to install zip from sdcard to install/update the ROM.
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.