Difference between revisions of "Modifying the Init Image"
m (fixed grammar errors on last line) |
(No difference)
|
Revision as of 23:03, 11 February 2013
Contents
Modifying the Boot Image
If you wish to modify the way that the pxe/tftp works files in the /tftpboot directory can be edited.
Using scripts
Modifying the boot image is easy to do. FOG comes with a script that enables you to easily modify the init image.
The script mounts the image and decompress it so you can view its files to modify them, however it tries to open nautilus to show you the files. Bear in mind that if you have no GUI (or your connected via ssh) you will have to browse the files manually in
/tmp/tmpMnt/
To run the script execute the file in here
/opt/fog/utils/Boot Image Editor/FOGMountBootImage.sh
That will execute the script, when your done modifying the Init image hit Enter and the file will be re compress and set ready to use.
By Hand
Or, to do it by hand:
cd /tftpboot/fog/images gunzip init.gz mkdir initmountdir mount -o loop init initmountdir
After you're done making changes, you have to clean up and unmount the init image:
cd /tftpboot/fog/images umount initmountdir/ rmdir initmountdir gzip init
Examples
Adding sfdisk to the /sbin directory
This will add the sfdisk program into the boot environment:
cd /tftpboot/fog/images gunzip init.gz mkdir initmountdir mount -o loop init initmountdirinit is now ready for modification. Make your changes:
cp /sbin/sfdisk /tftpboot/fog/images/initmountdir/sbinModifications Complete. Unmount and re-gzip it:
umount initmountdir rmdir initmountdir gzip initNow you can use the sfdisk program from the PXE environment.
Remove Authentication from Quick Image
This example will show how to automatically authenticate users when they select Quick Image. If you are happy to allow anybody to deploy an image to a hardrive this is for you.
cd /tftpboot/fog/images gunzip init.gz mkdir initmountdir mount -o loop init initmountdir cd /tftpboot/fog/images/initmountdir/bin/
Edit fog.quickimage
Comment out the followig lines by putting a # in front
#echo " Enter a valid FOG username and password."; #echo ""; #echo -n " Username: "; #read username; #echo "" #echo -n " Password: "; #stty -echo #read password; #stty echo; #echo ""; #echo ""
Replace with:
username="a valid username" password="a valid password";Save the modification
cd ../.. umount initmountdir/ rmdir initmountdir gzip init
You are done and now users can image without the need for a username and a password.