Difference between revisions of "Android Devices"

From Blue-IT.org Wiki

m (WikiSysOp moved page Backup Android to Android Devices without leaving a redirect)
Line 17: Line 17:
 
* For mission critical tasks use different methods and tools in parallel. If one fails on recovery, you have a backup.
 
* For mission critical tasks use different methods and tools in parallel. If one fails on recovery, you have a backup.
 
* Use encryption for your backup data. Use a secure place to store the encryption pass phrases!
 
* Use encryption for your backup data. Use a secure place to store the encryption pass phrases!
 +
 +
= Backup =
  
 
== Holo Backup ==
 
== Holo Backup ==
Line 32: Line 34:
 
* http://clockworkmod.com/carbon
 
* http://clockworkmod.com/carbon
  
== Root an android device ==
+
= Root an android device =
  
 
The procedure to root an android device boils down to a few basic tasks. They can be performed using various tools and operating systems but remain always the same:
 
The procedure to root an android device boils down to a few basic tasks. They can be performed using various tools and operating systems but remain always the same:
Line 50: Line 52:
  
 
Sources: Depending on your phone, please use google
 
Sources: Depending on your phone, please use google
 
  
 
== Backup with cyanogenmod recovery image ==
 
== Backup with cyanogenmod recovery image ==
Line 102: Line 103:
 
YOU ARE DONE
 
YOU ARE DONE
  
== Apply a custom rom (cyanogenmod, slimkat, ...) ==
+
 
 +
 
 +
 
 +
= Apply a custom rom (cyanogenmod, slimkat, ...) =
  
 
There are various and very good informations on the wiki of cyanogenmod (here for the samsung galaxy S3) or other mods (Slimkat).  
 
There are various and very good informations on the wiki of cyanogenmod (here for the samsung galaxy S3) or other mods (Slimkat).  
Line 156: Line 160:
  
  
== Cyanogenmod Updaten und Daten dabei Daten erhalten ==  
+
= Cyanogenmod Updaten und Daten dabei Daten erhalten ==
  
 
Source: http://stadt-bremerhaven.de/cyanogenmod-11-0-m10-veroeffentlicht/
 
Source: http://stadt-bremerhaven.de/cyanogenmod-11-0-m10-veroeffentlicht/

Revision as of 08:10, 20 October 2014

Preface

PLEASE BE AWARE YOU KNOW WHAT YOU ARE DOING WHEN YOU PERFORM TASKS MENTIONED IN THE FOLLOWING SECTIONS!


I AM NOT AND WILL NOT BE RESPONSIBLE FOR ERRORS, NON FUNCTIONAL DEVICES, TROUBLE AND HEADAGES.

AGAIN: BE SURE YOU KNOW WHAT YOU ARE DOING!


GENERAL TIP's:

  • Don't hury up! Take time.
  • Read in the internet, whatch videos and be prepared.
  • Be carefull. Write down your tasks. Make a plan and do step by step.
  • Always make a backup before you proceded. Be patient ;-)
  • For mission critical tasks use different methods and tools in parallel. If one fails on recovery, you have a backup.
  • Use encryption for your backup data. Use a secure place to store the encryption pass phrases!

Backup

Holo Backup

One of the most simpe ways is to use each android phones build in funktionality in conjunction with the android developer kit (adk). The prgram is called

Please refer to the various HowTo's in the web.

Hint: Simple ADB Backup is using the standard Android Backup functionality which does not perform any error checking! See: http://android.stackexchange.com/questions/23357/is-there-a-way-to-look-inside-and-modify-an-adb-backup-created-file

Helium Backup or carbon

Root an android device

The procedure to root an android device boils down to a few basic tasks. They can be performed using various tools and operating systems but remain always the same:

  1. connect your running phone to your pc so you can copy files to it
  2. enable debug mode
  3. enable PTP usb mode (not MTP)
  4. get and download a 'super user script (usually packed in a zip file) and put it on the phone
  5. boot your android device in download mode (e.g. SII: pressing HOME + VOLUME_DOWN + POWER)
  6. connect your phone to the pc
  7. use a flash program like e.g. heimdall (commandline) to flash device with a recovery image
  8. imediately after that (!!!) boot the android device with the recovery image (e.g. SIII: pressing HOME + VOLUME_UP + POWER)
  9. load the previously copied super user script (usually a zip file) within the recovery menu
  10. reboot the android device into graphical mode
  11. start the newly installed super user app
  12. enjoy your rooted phone

Sources: Depending on your phone, please use google

Backup with cyanogenmod recovery image

This procedure will backup your rom to an external SD-card in your device using a recovery image. Therefore you have to flash and reboot the device with this image! The SD-card must have an appropriate size!

Install heimdall

sudo apt get install heimdall-flash heimdall-flash-frontend

Download the needed files

  1. Download a clockwork mod recovery image for your phone ("cmw"-file)
  2. check the md5sum of the downloaded file !

Test the connection

  1. boot the device in the download mode (e.g. SII: pressing HOME + VOLUME_DOWN + POWER)
  2. connect your device to the pc
  3. download the PIT file for your device
heimdall download-pit --output standard.pit

Download the cyanogenmod for your device

  1. Connect the android device (Debugging mode)
sudo su
heimdall flash --RECOVERY recovery-clockwork-X.X.X.X-DEVICE.img --no-reboot

If the flash was successfull:

  1. disconnect the device and proceed with the next step

Reboot into the recovery image

  1. boot the device in the download mode (e.g. SII: press HOME + VOLUME_DOWN + POWER)
  2. follow the backup and restore instructions

Backup your backup

An SD-Card is not a very good choice for storing backups.

  • Put the SD-Card out of the phone to your pc and save the file with e.g. rsync (makes md5sums!)
  • also backup the cyanogen mod recovery image you used for the bakup
  • make a CHANGELOG file

YOU ARE DONE



Apply a custom rom (cyanogenmod, slimkat, ...)

There are various and very good informations on the wiki of cyanogenmod (here for the samsung galaxy S3) or other mods (Slimkat).

Please read (!) and use the avaiable acual instructions of your preferred custom ROM provider:

Get an actual copy of google apps (gapps!) before flashing!

Please inform yourself in the internet on how to backup your device in case of a problem BEFORE you proceed!

Cyanogenmod ROM's and recovery images you will get here:

Screencast an android device

1. Install an appropriate android adb in ubuntu or download it manually

sudo apt-get install android-tools-adb


If you installed it manually alter your path, so adb will be found

vim ~/.bashrc # also for ROOT!!!

[...]
#AndroidDev PATH
export PATH=${PATH}:"/wherever/android-sdk/tools:/wherever/android-sdk/platform-tools"
source ~/.bashrc # for the current shell until re-login

2. Start Java Webstart as root and alter the security settings - change to LOW!

sudo javaws

3. Get Android Screencast:

wget http://goo.gl/LMbQb -O androidscreencast.jnlp

4. Connect your device via usb

5. Start it

sudo adb start-server
sudo adb device # check the output
sudo javaws androidscreencast.jnlp

Enjoy!


Cyanogenmod Updaten und Daten dabei Daten erhalten =

Source: http://stadt-bremerhaven.de/cyanogenmod-11-0-m10-veroeffentlicht/

[...]

Ok … Das Ganze dauert bei mir ca. 15 Minuten, also nur unwesentlich länger als normal.

1. Udate über den Cyanogenmod-Updater downloaden, aber noch nicht installieren 2. Gerät ausschalten 3. In die Recovery booten [Laut + Leise + Power > Recovery mode] 4. Ein Nandroid-Backup erstellen (zuvor schauen, dass genügend freier Speicher auf der „Virtuellen Sdcard“ vorhanden ist) … [Backup and Restore > Backup to /sdcard] 5. Wipe Data / Factory Reset 6. Reboot durchführen 7. Alle Steps des Einrichtungs-Assistenten überspringen (Standortdienste können ausgeschaltet werden) 8. Über den CM-Updater jetzt das Update anstoßen 9. Alle Update Schritte durchlaufen lassen und dann noch einmal neu starten (Das Update sollten jetzt ohne Probleme und Fehler durchlaufen) 10. Gerät wieder ausschalten 11. Wieder in die Recovery booten 12. Backup and Restore 13. Advanced Restore from /sdcard 14. Das zuvor erstellte Backup auswählen 15. Restore Data auswählen 16. Start Restore 17. Zurück und Reboot durchführen

Fertig … Das war’s … Alles ist wieder so, wie gewohnt … mit M10 !!

Kannst ja mal Rückmeldung geben, ob alles geklappt hat !!

[...]