Tory M Blue wrote: > 2007-1-8 7:10:25 [Boot::Grub :: Line 118] bootloader = /sbin/grub-install > Probing devices to guess BIOS drives. This may take a long time. > Could not find device for /dev/hda8 > Could not find device for /dev/hda1 > Could not find device for /dev/hda1 > /dev/hda1: Not found or not a block device.
Maybe your /dev/ was not correctly populated... which devstyle did you use in your autoinstallscript.conf? you should have one entry of the followings: <boel devstyle="udev"/> <boel devstyle="devfs"/> <boel devstyle="static"/> Could you also post the output of "cat /proc/mounts" on your golden client? And, moreover, I see that systemconfigurator uses the command e2label to get the lables of the devices... I think we should use blkid instead, because we want to support labels also for other filesystems, not only for ext[23]. So you could try also to apply the following patch to the systemconfigurator inside your image. Thanks for reporting the detailed output, -Andrea Index: lib/Boot/Label.pm =================================================================== --- lib/Boot/Label.pm (revision 664) +++ lib/Boot/Label.pm (working copy) @@ -34,7 +34,11 @@ sub dev2label { my $device = shift; if(-b $device) { - return saferun("e2label $device"); + $_ = saferun("blkid -s LABEL $device"); + if (defined($_)) { + $_ =~ s/^.*LABEL="(.*)".*$/$1/; + } + return $_; } return ""; } ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier. Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ sisuite-users mailing list sisuite-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/sisuite-users