you can be in gui just fine.
open a console and type the scomands.
you get a console by clicking that icon looking like a screen that has a shell glued to the front:
Code:
sudo mount -t vfat /dev/hda1 /mnt/hda1
sudo mount -t vfat /dev/hdb1 /mnt/hdb1
this is if you have fat32 filesystem on the drives.
if you have NTFS you must read some on captive NTFS and use that for the disk you are writing to.
a safer option (that will wipe the new disk) is to format it to fat32, but that makes it hard to get linux writing files larger than 2Gb and NECESARY that NO file is larger than 4Gb-1B (one byte less than 4G), that is limit of the filesystem.
now to copy iu would use
Code:
cp -a /mnt/hda1/* /mnt/hdb1/
the -a makes it an ARCHIVE copy, that is, permisions, filestructure, directories... are as close a "clone" as can be made short of dd.