Difference between revisions of "Creating a new base environment"

From Supercomputación y Cálculo Científico UIS
m
Line 1: Line 1:
 +
__NOTOC__
  
 +
<div class="thumbnail img-thumbnail">http://wiki.sc3.uis.edu.co/images/a/a8/Logo_sc33.png</div>
 +
<p><div class="btn btn-primary"><i class="fa  fa-long-arrow-left"></i>[[Kadeploy]]</div></p>
 +
<div class="column clearfix">
 +
    <div class="col-md-14">
 +
        <div class="well well-midnight">
 +
            <h4>Administración</h4>
 +
            <p class="bs">In this section we describe all the administration tasks for the job scheduler OAR</p>
 +
        </div>
 +
    </div>
 +
</div>
  
Back to [[Kadeploy]]
+
Back to  
  
 
'''Procedure for creating a new base image for kadeploy  
 
'''Procedure for creating a new base image for kadeploy  

Revision as of 19:35, 9 April 2015


Logo_sc33.png

Administración

In this section we describe all the administration tasks for the job scheduler OAR

Back to

Procedure for creating a new base image for kadeploy

1. Boot the machine with a live cd. If you are in a remote machine you'll probably new ILO access or something similar.

2. Install the new system selecting the existing swap and /dev/sda4 partitions. You can start from scratch deleting all partitions and recreating them but it's higly discouraged.

NOTE: In an standard kadeploy setup /dev/sda4 is the deployment partition and /dev/sda2 is the base system partition

3. Create the update-host-name script in the adequate directory, for a debian based system is in /etc/dhcp/dhclient-exit-hooks.d/

File: /etc/dhcp/dhclient-exit-hooks.d/update-host-name.sh
#!/bin/sh
# update-host-name, update hostname with host-name and domain-name
#####################################################################
# Last modification: 2006-04-11
# Maintainer: Xavier Delaruelle <xavier.delaruelle@loria.fr>
#

if [ -n "$new_host_name" ]; then
  if [ -n "$new_domain_name" ]; then
    hostname="${new_host_name}.${new_domain_name}"
  else
    hostname="${new_host_name}"
  fi

  echo "$hostname" > /etc/hostname 2>/dev/null
  hostname "$hostname"
fi

4. Make sure that an SSH server is running.

5. Follow the procedure detailed in Deploy Procedure in Kadeploy 3 and OAR for saving an image file.