Home >Unlabelled > Installing a Clonezilla Server
Installing a Clonezilla Server
Posted on Wednesday, September 30, 2015 by Mr. Boy
Clonezilla Server is used to clone many computers simultaneously across a network. This is done using a DRBL server and computer workstations that can boot from a network.
1 Set a static IP
Ubuntu by default uses network-manager and automatic (DHCP) configuration for the network card. For a server it better to do manual static (fixed IP) configuration.
First modify
First modify
/etc/network/interfaces
like this:auto loThen remove the package
iface lo inet loopback
auto eth0
iface eth0 inet static
address 192.168.1.235
netmask 255.255.255.0
gateway 192.168.1.1
network-manager
and restart networking:aptitude purge network-manager
/etc/init.d/networking restart
2 Add a second IP address (alias) to the same card
Conezilla is based on the DRBL server (which is a kind of light termal server, whith terminals booting over the network through PXE). The DRBL server itself needs one external network interface (connected to WAN) and at least one internal interface (connected to LAN). However, if we have just one network interface, we can add an alias to it, and use it for the LAN.
Append these lines to
Reference:
Append these lines to
/etc/network/interfaces
:auto eth0:0Then restart networking:
iface eth0:0 inet static
name Ethernet alias LAN card
address 192.168.3.235
netmask 255.255.255.0
broadcast 192.168.3.255
network 192.168.3.0
/etc/init.d/networking restart
Reference:
3 Installation on the server
Here are the steps for installing DRBL/Clonezilla on a Ubuntu Server:
- Add the key of the DRBL repository to apt:
wget -q http://drbl.org/GPG-KEY-DRBL -O- | sudo apt-key add -
- Create the file
/etc/apt/sources.list.d/drbl.list
which contains this line:deb http://drbl.sourceforge.net/drbl-core drbl stable
- Install the package
drbl
:apt-get update
apt-get install drbl - Install the DRBL server:
/opt/drbl/sbin/drblsrv -i
For the installation steps see this example: http://drbl.sourceforge.net/one4all/examples/drblsrv\_desktop\_example.txt - Setup the filesystem for the clients
/opt/drbl/sbin/drblpush -i
- http://www.upubuntu.com/2012/05/how-to-install-clonezilla-server-on.html
- https://help.ubuntu.com/community/Clonezilla\_Server\_Edition
- http://geekyprojects.com/cloning/setup-a-clonezilla-server-on-ubuntu/
- http://drbl.sourceforge.net/one4all/
- http://drbl.nchc.org.tw/one4all/desktop/download/stable/RELEASE-NOTES
Powered by Blogger.