https://help.ubuntu.com/community/InstallingANewHardDrive
After going thought the walkthrough on partitioning the drive and formatting with ext3 i needed to get all the data from my external drive to my new internal drive. I decided to use rsync. Its installed natively on Ubuntu. So here is and example of the command I used to kick off the rsync with progress showing:
- Code: Select all
rsync -ar --progress --size-only /media/ShawnsMassiveStore/* /media/Khaos1TB/
The entire sync of about 750GB took about 9 hours.
