c:\cwRsync\rsync.exe -rtv --progress --no-whole-file src/ dest/
Plain and simple ... who could have thought?! I never tested this on a Linux machine but I assume it works the same way there.
cheers
fighting with 0 and 1 or things that happen in the daily life of a nerd like me...
c:\cwRsync\rsync.exe -rtv --progress --no-whole-file src/ dest/
devenv /ResetSettings
me@linux:~>mount /dev/sdb1 /mnt
and create a folder where you want to store the image fileme@linux:~>mkdir /mnt/Backup
and now copy the whole disk with ddme@linux:~>dd if=/dev/sda1 bs=1M | gzip -c > /mnt/Backup/sda1.gz
me@linux:~>cat /mnt/Backup/sda1.gz | gzip -d | dd of=/dev/sda bs=1M
Finally just out of precaution I also saved the MBR of the hard disk to a fileme@linux:~>dd if=/dev/sda of=/mnt/Backup/mbr.img bs=512 count=1
In case of emergency I would copy it back withme@linux:~>dd if=/mnt/Backup/mbr.img of=/dev/sda bs=512 count=1
netsh advfirewall set allprofiles firewallpolicy blockinbound,allowoutbound
netsh advfirewall set allprofiles firewallpolicy blockinbound,blockoutbound
tar cfvz [file].tgz [path] [file]
and for extracting:tar xfvz [file].tgz
cheers
"C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" internalcommands sethduuid "d:\Virtualdisks\winxp-clone.vdi"
I gave the full path to be sure that everything behaves as expected. And after generating a new virtual system in VirtualBox with the same settings as the original one, I could assign the cloned vdi-file to it.me@linux:~> ls -hal /dev/disk/by-label/
insgesamt 0
drwxr-xr-x 2 root root 80 1. Sep 14:38 .
drwxr-xr-x 6 root root 120 1. Sep 16:21 ..
lrwxrwxrwx 1 root root 10 1. Sep 14:38 EXTERNAL -> ../../sdb1
me@linux:~>
/dev/disk/by-label/EXTERNAL /home/me/usb ntfs-3g noauto,uid=1000,gid=users,umask=022,locale=de_DE.UTF-8 0 0
disk:x:6:me
me@linux:~> sudo chmod 4755 $(which ntfs-3g)
me@linux:~> sudo chmod 4755 $(which ntfs-3g.probe)