Leforestier Marc wrote: > > Probing devices to guess BIOS drives. This may take a long time. > end_request: I/O error, dev fd0, sector 0 > Use of uninitialized value in concatenation (.) or string at > /usr/lib/systemconfig/Boot/Grub.pm line 160. > Use of uninitialized value in concatenation (s///) at > /usr/lib/systemconfig/Boot/Grub.pm line 164. > Use of uninitialized value in concatenation (.) or string at > /usr/lib/systemconfig/Boot/Grub.pm line 235. > Use of uninitialized value in concatenation (.) or string at > /usr/lib/systemconfig/Boot/Grub.pm line 237. > Probing devices to guess BIOS drives. This may take a long time. > end_request: I/O error, dev fd0, sector 0 >
Looking at the systemconfigurator code it seems that you've a cciss|ida|rd disk, right? And it seems that grub has problem detecting this disk, in particular detecting the BIOS device name from the name in /dev syntax. I dont' know if it's a systemconfigurator problem or a grub issue, but you can try to fix with a post-install script: -------------------------------- #!/bin/sh grub-install --recheck /dev/<your_disk_device_here> -------------------------------- If it doesn't work, you can try with lilo... Regards, -Andrea 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 [email protected] https://lists.sourceforge.net/lists/listinfo/sisuite-users
