Your problem is that you have a 2TB HDD, but you're using a MBR partition table. Your 1TB source disk was MBR and was using extended partitioning. Disks larger than 2TB require a GPT partition table, and don't require extended partitioning. Cloning is not the best choice in this case.
You can check the partition tables by using sudo fdisk -l
.
Note: There are some partitioning problems on your original 1TB HDD that you don't necessarily want to clone to the new 2TB HDD.
Backup any new data on the 2TB, lay down a fresh GPT partition table (this WILL wipe the drive) using gparted
. Then copy over partitions using gparted
, clonezilla
, or some other application. (Not recommended plan).
Or, better yet, just do a fresh Ubuntu install to the 2TB (with the fresh GPT partition table from above). Don't manually allocate partitions, accept the Ubuntu installer's default partition scheme, unless you wish to create additional ext4 partitions, or NTFS partitions to share data with a Windows installation. Then copy over any data from the 1TB to the new 2TB HDD. (Best plan).
Note: If you wish to create a dual-boot configuration with Windows, install Windows FIRST, and then Ubuntu second.