Sicherung vom Galaxy Nexus mit allen Daten und Apps Sicherung vom Galaxy Nexus mit allen Daten und Apps - Seite 2
Seite 2 von 2 ErsteErste ... 2
Ergebnis 21 bis 28 von 28
  1. 20.06.2012, 10:43
    #21
    Zitat Zitat von shells Beitrag anzeigen
    Tut sie mit Sicherheit.
    Seit der 4.0.4 sichert mir adb backup auch die sdcard. Das hat unter 4.0.2 bei mir nicht geklappt. Allerdings mach ich das unter Unix, kann sein, dass sich das unter Windows etwas anders verhält, nehm ich aber eher nicht an.

    Sicherheitshalber zieh ich immer trotzdem n Backup der sdcard mittels adp pull, wird aber auch ohne funktionieren.

    Grüße

    Unter Unix? Wie? Bin auf nem Mac grad unterwegs und würde auch gerne eine Sicherung vornehmen, ist der Weg der gleiche wie in der Anleitung?
    0
     

  2. 20.06.2012, 19:55
    #22
    Zitat Zitat von Maxey Beitrag anzeigen
    Unter Unix? Wie? Bin auf nem Mac grad unterwegs und würde auch gerne eine Sicherung vornehmen, ist der Weg der gleiche wie in der Anleitung?
    Ich hab mir n bash-Script geschrieben. Läuft unter Ubuntu und ist sicherlich nicht der schönste Programmierstil, eher quick and dirty - aber es funktioniert, Schönheit war nicht mein Ziel.
    Müsstest halt die Pfade anpassen.
    Und das Android-SDK installieren. Aber frag nicht, wie das unter MacOS funktioniert. MacOS... sagen wir diplomatisch... nutze ich nicht.

    Im Grunde geht's aber nur um das
    [FONT=Courier New]adb backup -f galaxy-nexus-backup.bak -apk -shared -all[/FONT]
    wenn du das auf der Konsole ausführst, müsste das Backup auf dem Nexus eigentlich starten und die entsprechende Datei (nach -f) angelegt werden. "-apk" nimmt die Apps mit, "-shared" die sdcard und "-all" die Einstellugen (WLANs, Klingelprofile, etc, pp.)


    [FONT=Courier New]
    #!/bin/bash

    # defining variables
    # get today like 03032012
    date=$(date +"%d%m%Y")
    # path to the adb binary
    PathToADB="/home/scripts/android-sdk-linux/platform-tools"
    # where the backups go to
    BackupDestination="/home/backups/Galaxy Nexus"

    # new folder for the new backup
    mkdir "$BackupDestination/galaxy-nexus-backup-$date"

    echo "*** Starting Galaxy Nexus backup"
    echo "*** Running ADB backup..."
    echo " please confirm backup on device!"
    # backup the phone (what can be set like needed), here: including all apk, theoretically the sdcard (didn't work for me with Android <4.0.4), and all settings
    $PathToADB/adb backup -f "$BackupDestination/galaxy-nexus-backup-$date/$date.bak" -apk -shared -all
    echo "*** Zipping the backup-file"
    # zipping doesn't do much, as adb compresses the file automatically, but files *could* be split or such.
    tar cvzf "$BackupDestination/galaxy-nexus-backup-$date/$date.bak.tar.gz" "$BackupDestination/galaxy-nexus-backup-$date/$date.bak" --remove-files > /dev/null
    echo "*** ADB Backup done"
    sleep 1
    echo "*** waiting some seconds for the Nexus to become ready for sdcard-backup. Hold on."
    # new folder for the additional sdcard backup
    # if we don't need an additional sdcard-backup, we can comment that out
    # comment out from here_____
    mkdir "$BackupDestination/galaxy-nexus-backup-$date/sdcard-$date"
    sleep 30
    echo "*** Backing up the sdcard"
    # using adb pull to download everything on the sdcard - but we could define sepcific folders to backup rather than just pulling it all
    # would be something like simple if-then-else. no need for me
    $PathToADB/adb pull /sdcard/ "$BackupDestination/galaxy-nexus-backup-$date/sdcard-$date"

    echo "*** Zipping the sdcard content"
    # gunzipping all the stuff to keep space and inode consumption low
    tar cvzf "$BackupDestination/galaxy-nexus-backup-$date/sdcard-backup-$date.tar.gz" -C "$BackupDestination/galaxy-nexus-backup-$date/sdcard-$date" . --remove-files > /dev/null
    # until ______here
    # done
    echo "*** backup done ***"
    exit 0[/FONT]
    edit: Restore mach ich über die Konsole relativ einfach...
    [FONT=Courier New]adb restore /path/to/backup.file[/FONT]
    that's it.

    Grüße
    1
     

  3. 28.06.2012, 11:07
    #23
    uh...ok dann hmm... schau ich mal oder guck einfach das ich nen Windows pc finde der mir das mal macht mich würde Jelly bean unglaublich interessieren
    0
     

  4. 28.06.2012, 11:26
    #24
    Solange du nen Intel-basierten Mac hast, gibt's das Android SDK auch für MacOS:
    https://developer.android.com/sdk/index.html

    Also warum nicht direkt auf dem Mac machen? Habs nie gemacht, aber gelesen, dass das auf Windows durchaus problematischer ist, weil da die Treiberraffelei umständlich ist. Bei Unix-artigen "gehts halt einfach"

    Grüße
    0
     

  5. 28.06.2012, 11:44
    #25
    Ja gut na dann...

    also geb ich in das Terminal

    "adb backup -/users/xyz/desktop/sicherung galaxy-nexus-backup.bak -apk -shared -all "

    ein und dann sollte das eine komplette Sicherung nach "/users/xyz/desktop/sicherung" ausführen?

    edit : ich hab das sdk runtergeladen und hab jetzt nen Ordner voller weiterer Ordner. Wie installiere ich das denn?
    0
     

  6. 28.06.2012, 11:59
    #26
    0
     

  7. 28.06.2012, 13:44
    #27
    Hi, danke! Habe das sdk installiert und auch die platform tools. Wenn ich aber./adb devices eingebe wird nichts angezeigt? Muss ich das Gerät über nen USB 3 port anschließen?
    0
     

  8. 28.06.2012, 13:47
    #28
    Nein, USB2.0 ist völlig ok.

    Du musst aber auf dem Nexus unter "Einstellungen" - "{ } Entwickleroptionen" das "USB Debugging" aktivieren.

    Grüße
    0
     

Seite 2 von 2 ErsteErste ... 2

Ähnliche Themen

  1. Antworten: 41
    Letzter Beitrag: 15.02.2012, 15:54
  2. Antworten: 9
    Letzter Beitrag: 05.11.2010, 17:05
  3. Programm zur sicherung von allen dateien
    Von geheim5000 im Forum HTC Touch Pro 2
    Antworten: 7
    Letzter Beitrag: 25.10.2009, 12:50
  4. Sicherung der Daten vom X1
    Von John im Forum SE Xperia X1
    Antworten: 1
    Letzter Beitrag: 13.09.2009, 11:47

Besucher haben diese Seite mit folgenden Suchbegriffen gefunden:

galaxy nexus daten sichern

samsung galaxy nexus backup

galaxy nexus backup

galaxy nexus sichern

samsung galaxy nexus backup erstellen

samsung galaxy nexus daten sichern

samsung galaxy nexus datensicherung

datensicherung galaxy nexus

galaxy nexus backup auf pc

galaxy nexus datensicherung

backup galaxy nexus

galaxy nexus komplett backup

Samsung Nexus Daten sichernsamsung galaxy nexus sichernnexus daten sicherngalaxy nexus sicherungsamsung nexus backupdatensicherung samsung nexusdatensicherung samsung galaxy nexusgalaxy nexus apps sicherngalaxy nexus nandroid backupbackup samsung nexussamsung nexus datensicherunggalaxy nexus backup erstellennexus datensicherung

Stichworte