<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.breedveld.net/index.php?action=history&amp;feed=atom&amp;title=CloneZilla</id>
	<title>CloneZilla - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.breedveld.net/index.php?action=history&amp;feed=atom&amp;title=CloneZilla"/>
	<link rel="alternate" type="text/html" href="http://wiki.breedveld.net/index.php?title=CloneZilla&amp;action=history"/>
	<updated>2026-04-17T00:36:57Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>http://wiki.breedveld.net/index.php?title=CloneZilla&amp;diff=16&amp;oldid=prev</id>
		<title>Roland: Protected &quot;CloneZilla&quot; [edit=sysop:move=sysop] [cascading]</title>
		<link rel="alternate" type="text/html" href="http://wiki.breedveld.net/index.php?title=CloneZilla&amp;diff=16&amp;oldid=prev"/>
		<updated>2009-02-24T15:29:42Z</updated>

		<summary type="html">&lt;p&gt;Protected &amp;quot;&lt;a href=&quot;/index.php/CloneZilla&quot; title=&quot;CloneZilla&quot;&gt;CloneZilla&lt;/a&gt;&amp;quot; [edit=sysop:move=sysop] [cascading]&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;Clonezilla Live CD via PXE&lt;br /&gt;
&lt;br /&gt;
A simple documentation to quickly setup up Clonezilla on a PXE server.&lt;br /&gt;
&lt;br /&gt;
What is Clonezilla&lt;br /&gt;
&lt;br /&gt;
Clonezilla is a partition or disk clone software similar to Ghost. It saves and restores only used blocks in hard drive.&lt;br /&gt;
&lt;br /&gt;
Features of Clonezilla&lt;br /&gt;
&lt;br /&gt;
    * Free (GPL) Software.&lt;br /&gt;
    * Filesystem supported: ext2, ext3, reiserfs, xfs, jfs of GNU/Linux, and FAT, NTFS of M$ Windows. Therefore you can clone GNU/Linux or M$ windows. For other file system, Clonezilla uses dd to dump the whole partition.&lt;br /&gt;
    * LVM2 under GNU/Linux is supported.&lt;br /&gt;
    * Based on Partimage, ntfsclone and dd to clone partition. However, clonezilla, containing some other programs, can save and restore not only partitions, but also a whole disk.&lt;br /&gt;
    * If file system is supported (ext2, ext3, reiserfs, xfs, jfs, fat, ntfs), only used blocks in harddisk are saved and restored. This increase the clone efficiency. For unsupported file system, sector-to-sector copy is done by dd in Clonezilla. &lt;br /&gt;
&lt;br /&gt;
Requirements:&lt;br /&gt;
&lt;br /&gt;
    * A working DHCP, PXE, TFTP, and NFS server&lt;br /&gt;
    * Clonezilla LiveCD &lt;br /&gt;
&lt;br /&gt;
References:&lt;br /&gt;
&lt;br /&gt;
    *&lt;br /&gt;
&lt;br /&gt;
      Clonezilla: http://www.clonezilla.org/&lt;br /&gt;
    *&lt;br /&gt;
&lt;br /&gt;
      Clonezilla LiveCD Download: http://www.clonezilla.org/download/sourceforge/ &lt;br /&gt;
&lt;br /&gt;
NFS Server Config:&lt;br /&gt;
&lt;br /&gt;
Setup directories&lt;br /&gt;
&lt;br /&gt;
mkdir -p /mnt/isoimage &lt;br /&gt;
mkdir -p /exports/clonezilla&lt;br /&gt;
&lt;br /&gt;
Download the clonezilla-live-$LATESTVERSION.iso to /tmp&lt;br /&gt;
&lt;br /&gt;
Mount the iso image and copy contents to the export directory.&lt;br /&gt;
&lt;br /&gt;
mount -o loop /tmp/clonezilla-live-$LATESTVERSION.iso /mnt/isoimage  &lt;br /&gt;
cp -a /mnt/isoimage/. /exports/clonezilla&lt;br /&gt;
umount /mnt/isoimage &lt;br /&gt;
&lt;br /&gt;
Restart NFS&lt;br /&gt;
&lt;br /&gt;
add /exports/clonezilla *(ro,sync) /etc/exports&lt;br /&gt;
service nfs restart&lt;br /&gt;
exportfs -ra &lt;br /&gt;
&lt;br /&gt;
Tftp Server Config:&lt;br /&gt;
&lt;br /&gt;
Setup directories&lt;br /&gt;
&lt;br /&gt;
mkdir -p /tmp/clonezilla&lt;br /&gt;
mkdir /mnt/isoimage&lt;br /&gt;
mkdir  /tftpboot/images/clonezilla/&lt;br /&gt;
&lt;br /&gt;
Mount the Clonezilla iso image and copy the boot files to the clonzilla tftp server directory.&lt;br /&gt;
&lt;br /&gt;
mount -o loop clonezilla-live-$LATESTVERSION.iso /mnt/isoimage &lt;br /&gt;
cp /mnt/isoimage/casper/initrd1.img   /tftpboot/images/clonezilla/initrd.gz&lt;br /&gt;
cp /mnt/isoimage/casper/vmlinuz1   /tftpboot/images/clonezilla/vmlinuz&lt;br /&gt;
&lt;br /&gt;
umount  /mnt/isoimage &lt;br /&gt;
&lt;br /&gt;
PXE menu entry&lt;br /&gt;
&lt;br /&gt;
MENU DEFAULT&lt;br /&gt;
MENU LABEL Clonezilla live&lt;br /&gt;
&lt;br /&gt;
label clonezilla&lt;br /&gt;
kernel images/clonezilla/vmlinuz&lt;br /&gt;
# Older Clonezilla&lt;br /&gt;
# append initrd=images/clonezilla/initrd.gz boot=casper netboot nfsroot=$NFSSERVER:$NFSEXPORT&lt;br /&gt;
# Clonezilla 1.1.0-8&lt;br /&gt;
append initrd=images/clonezilla/initrd.gz boot=live union=aufs netboot=nfs nfsroot=$NFSSERVER:$NFSEXPORT&lt;/div&gt;</summary>
		<author><name>Roland</name></author>
	</entry>
</feed>