phone; i9100 maguro galaxy nexus. From CM, I got a message stating a new update was available: the CM11. I accepted. The update failed to install. Now on reboot the phone enters CWM Recovery mode. BUT IT WILL NOT CONNECT TO MY PC TO ENABLE ME TO TRANSFER ANY ZIP FILES to my phone, and so I cannot install any older CM10 versions. HOW TO CONNECT THE PHONE TO PC IN CWM RECOVERY MODE?
Asked
Active
Viewed 830 times
1 Answers
0
You could give adb a try, and use adb push </source/on/PC/file.zip> <target/on/Nexus/file.zip>
to transfer the files.
I you don't have ADB installed on your machine yet, and don't want to install the full SDK, take a look at Is there a minimal installation of ADB? Also, for more information on ADB, there's always our adb tag-wiki as a good starting point.
adb devices
. You can explore it viaadb shell
at the command line. For details on that, please see our adb tag-wiki and command-line tag-wiki – a complete excurse on command-line usage and ADB would be a bit out of scope here, but those wikis hold some first-aid and links to further information. – Izzy Jun 03 '14 at 12:22Step 1: follow the adb configuration guide per the tag-wiki above.
Step 2: mount the data... $ adb shell ~ # mount /data ~ # exit
Step 3: push the file to the right place!
adb push cm-10.2.0-maguro.zip /sdcard/0/
Step 4: on phone in recovery page, install zip from sdcard in the /0 directory
– rob grune Jun 03 '14 at 14:10