• das ist natürlich viel mehr Arbeit aber es lohnt sich…

          ich mache das immer so, dass ich zuerst den Benutzerordner ohne den Library-Ordner kopiere und dann
          im Programme-Ordner des bestehenden Systems die Liste durchgehe und die Programme neu installiere und dann die Einstellungen, ich ich brauche aus dem Library-Ordner (Application Support und Preferences) von Hand kopiere. Dann vergleiche ich noch /Library vom alten und neuen System und kopiere auch das, was ich noch brauche
          ----------
          Gruss

          Stefan
              • bitteschön…

                README (wichtig)
                in die beiden properties in Admin Credentials müssen anstelle von user und pass die Admin-Userdaten eingeben, dann funktioniert auch das Kopieren aus der lokalen Library.

                Der Rechner muss vom Ziel-System (neues System) gebootet sein!
                Das script muss als Programm abgespeichert werde. Ort ist allerdings egal.
                Ziehe das das SciptProgramm-Icon in ein offenes Finder-Fenster direkt links vom Suchfeld.
                Beim ersten Start wird das Quell-Laufwerk (altes System) abgefragt. Die Einstellung ist permanent.
                Wenn du die Einstellung ändern willst muss du das script neu kompilieren und abspeichern.

                Alles, was kopiert wird, überschreibt eventuell vorhandene Dateien auf dem neuen System.
                Es gibt keine Abfrage!


                Show Plain Text
                1. (************ Admin Credentials ****************)
                2.  
                3. property _username : "user"
                4. property _password : "pass"
                5.  
                6. (****************************************)
                7.  
                8. property sourceVolume : missing value
                9.  
                10. on reopen
                11.   getSource()
                12. end reopen
                13.  
                14. on run
                15.   if sourceVolume is missing value then getSource()
                16.   activate application "SystemUIServer"
                17.   tell application "Finder"
                18.     activate
                19.     set sel to selection
                20.   end tell
                21.   repeat with i in sel
                22.     set source to POSIX path of (i as alias)
                23.     if source begins with sourceVolume then
                24.       set destination to text ((count sourceVolume) + 1) thru -1 of source
                25.       do shell script "cp -pR " & quoted form of source & space & quoted form of destination user name _username password _password with administrator privileges
                26.     end if
                27.   end repeat
                28. end run
                29.  
                30. on getSource()
                31.   tell application "System Events"
                32.     set startupDisk to name of startup disk
                33.     set volumeNames to name of disks whose name is not startupDisk and format is not NFS format
                34.   end tell
                35.   set sourceDisk to choose from list volumeNames with prompt "Quell-Volume auswählen"
                36.   if sourceDisk is false then return
                37.   set sourceVolume to "/Volumes/" & item 1 of sourceDisk
                38. end getSource
                ----------
                Gruss

                Stefan
    • Die Meinung des geschätzten John Gruber dazu:


      "Arguments that there is something mysteriously dangerous or deficient about the default upgrade procedure — and that you should do a clean install instead, followed by tedious hours manually migrating software and data and preferences from your old installation — are voodoo. Apple’s installer engineers spend a ton of time making the default upgrade procedure as convenient as possible.

      If you’re not a typical user; like, say, if you’ve been running pre-release developer seeds of Leopard, or if you’ve diddled with your 10.4 system software in unholy ways and really would like a factory-fresh start with 10.5, then I recommend the Archive and Install option. (That’s what I do, when upgrading from previous developer seeds.)"


      http://daringfireball.net/2007/10/murphys_law
    • großer Unterschied

      Also, ich kann nur sagen hier auf meinem älteren iMac von 2008 hat es einen gewaltigen Unterschied gemacht. Hatte zuerst einfach darüber installiert, lief, aber langsam. Hab mir dann die Mühe mit dem Clean Install gemacht und auch nur installiert, was ich noch brauche. Die Maschine läuft wieder recht flott. Der Clean Install hat es wirklich gebracht und der Aufwand hat sich gelohnt.
      Achtung: Unmittelbar nach der Installation ist es immer langsam, braucht Zeit bis Spotlight indexiert ist, etc. und keine Hintergrundaktivitäten mehr bremsen.