Jeremy, see comments below...
Jeremy wrote: > Here it is. Thank you: > > <!-- > > autoinstallscript.conf > vi:set filetype=xml: > > This file contains partition information about the disks on your golden > client. It is stored here in a generic format that is used by your > SystemImager server to create an autoinstall script for cloning this > system. > > You can change the information in this file to affect how your target > machines are installed. See "man autoinstallscript.conf" for details. > > --> > > <config> > > <disk dev="/dev/sda" label_type="" unit_of_measurement="MB"> Here is the problem... the label_type is empty. Replace the line with: <disk dev="/dev/sda" label_type="msdos" unit_of_measurement="MB"> > <!-- > This disk's output was brought to you by the partition tool "parted", > and by the numbers 4 and 5 and the letter Q. > --> > </disk> > > <disk dev="/dev/sdb" label_type="" unit_of_measurement="MB"> Here is the same problem... So, the question is: why si_prepareclient was not able to detect the label type of your disks? Maybe you're using a too old version of parted/sfdisk in your golden client, can you post the output of the following command? # parted --version # parted -s -- /dev/sda print # parted -s -- /dev/sdb print # sfdisk --version # sfdisk -d /dev/sda # sfdisk -d /dev/sdb Cheers, -Andrea ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Sisuite-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/sisuite-users
