How to backup your hard drive (the type of format doesn't matter) using dd.
Boot to some rescue mode by using the install media (generally "linux rescue") otherwise enter rescue mode manually: http://www.cpqlinux.com/recovery.html
Make sure not to be booted to your hard drive, nor to have any of those partitions mounted.
Now use any combination of dd, ssh or rsh, gzip or bzip2 to backup the drive (I recommend using ssh versus rsh; however, ssh is generally not available during the rescue mode, whereas rsh is available):
You can backup the whole drive (if you have enough space on your destination system) as follows (This method also grabs the MBR):
A restore would go as follows - be sure to restore the MBR, reboot, then restore the other partitions.
rsh user@dest "cat 20030220-backup-mbr.dd" | dd of=/dev/sda
reboot to re-read partition table (come back into rescue mode)
rsh user@dest "cat 20030220-backup-sda1.dd.gz | gunzip" | dd of=/dev/sda1
Depending on which machine is the fastest and how fast your network is, you need to decide when you will do the compression. Your choices are to compress before sending over the network, but if this machine is much slower than the server you are sending to, then it may be better to send the uncompressed data over the network to the destination server and compress as the data arrives. Just keep in mind that the transfer over the network will be a little slower if sending uncompressed data rather than compressed -- also the network speed affects this too -- 10 Mbit vs. 100 Mbit. Use your best judgement.