Utuzuu: Oi Mates,
I got me some new 1TB SSD, because my hatred for EA had bloated to the point that it was beginning to fill up all my space. So now I wonder, does Galaxy have a feature that will move my entire library with all saves and such from one drive to another?
After five minutes of looking for the feature I thought I might as well just try my luck and ask you guys and maybe enjoy some of your trolling. I love you, c'mere you little buggers, y'all gettin internet hugs!
edit: sorry for the typo in the title, forum won't let me correct that.
I agree with clarry, and in this case I'd say cloning is not the best option. Cloning has always been more pain in the ass when there's such a difference in partition/disk sizes every time I upgrade or just taking a backup. I used Norton Ghost before I moved to Linux.
Just recently I had a 1.5GB Green disk containing all my (installed) games that was getting tired and I also needed to take a backup. I replaced it with a 3TB disk with these steps:
1. Plug in the new disk, either via sata-2-usb cable or directly on a SATA port.
2. Boot up Linux (either dualbooting or live disk).
3. Ready/format the new disk (in these days Linux auto-mounts any new disks/partitions it detects. Might need to unplug/plug it in again if it's external)
4. Use
df -h to find the disk and where it's mounted. Ex:
/dev/sdb1 mounted on
/media/newdisk 5. Lastly, use
rsync, this planets best and most powerfull utility for copying/syncing/backuping locally and remotely.
Basic command:
# rsync options source destination
In this example: rsync -av /dev/sdb1/ /media/newdisk/
As long as we’re not talking about a boot/sys disk/partition and only data as-is, you really don't need to do anything else.
PS: See... no trolls here. That means you probably did something right :P
PS2: When it comes to hard cloning I'd say
dd is the best byte-2-byte utility (but it's also slower than rsync). Norton Ghost was such a lackluster when it came to flexibility, it almost made me cried when I discovered Linux and dd. :D