Is that possible I can save Clonezilla image on a rewritable CD/DVD directly when using Clonezilla live ? |
Yes, with UDF format, you can mount rewritable CD/DVD as Clonezilla home.
- Prepare a UDF format CD/DVD, if it's a new CD/DVD, you can format it in Clonezilla live command prompt by (Take CD/DVD device name /dev/sr0 as an example):
Run command "sudo su -" to become root, then
dvd+rw-format -force=full /dev/sr0
(Replace /dev/sr0 with your CD-ROM device name).
- Edit /etc/default/udftools, add your CD-ROM device name:
DEVICES="/dev/sr0"
- Run command "dpkg-reconfigure udftools", it will show:
/dev/pktcdvd/0=/dev/sr0
- mkudffs --lvid="dvd-clonezilla" --udfrev=0x0150 /dev/pktcdvd/0
- mount -t udf -o rw,noatime /dev/pktcdvd/0 /home/partimag/
Now the clonezilla image home is ready, you can continue to run "ocs-sr -x" to save the image.
|
|