Torsdag 24 januar 2008 11:45, skrev Regis Gras:
> Michael De Groote wrote:
> > no, nothing wrong... those are libs that are needed to run dosemu in X
> >
> > what is weird is that you still have the same problem... as far as i
> > understood, the nt5x-install script should (among other things) execute
> > "copy -R /z/os/specificosdir  /c/blablablaspecialwininstalldirname"
> >
> > so i don't get where the problem with the filenames that have a 8.3.3
> > filename instead of 8.3 filename aren't copied... (i really should
> > take a look at the concrete scripts to figure this out but i dont have
> > the time today... maybe i can spare some time tomorrow)
>
> Thank you.
>
> Something is strange.
> - If I boot with the CD, it ask me about DOSEMU   [YN]
> With Y, I saw a screen
> -------------  /usr/bin/nt5-install ----------------------
>  * We have fix_disk_geometrie
>  .....................................................
>  * Creating boot ini
> ......................................................
>  * Copying system (Z/os/xx/i386 /c/$winnt .......)
>
> With DOSEMU   [YN]  N
> The copying of file begin immediatly and I  have the problem with some
> file "... can't be copied"
>
> - If I boot with Pxe, I have also the question about DOSEMU.
> But, the answer is Y or the answer is N, the copying of file begin
> immediatly and I  have the problem ...
> It seems that the answer for the question about dosemu is not treated.

Hello RĂ©gis

How did you create the pxe boot image?

Sounds like you have the patched install.pl (it is install.pl that asks the 
DOSEMU question)
but somehow the master script does not get the parameter from unattend.txt to 
run the nt5-install script, or it does not now about nt5x-install at all.

if you go to the console after the unattended linux PXE bootup (alt-F2) and 
type
cat /etc/master
you should get something like this:
------ last part of nt5x-install -aware master ------
else
    echo -e "* Running ntinstall_cmd: $ntinstall_cmd"
    $ntinstall_cmd || die "* $ntinstall_cmd exited non-zero"
fi

# Installation is now complete, /c is mounted, some adjustments (if any) 
follows..

post_ntinstall_cmd=`parse_ini_file /c/netinst/unattend.txt _meta 
post_ntinstall_cmd`
if [ -n "$post_ntinstall_cmd" ] ; then
    echo -e "* Running post_ntinstall_cmd: $post_ntinstall_cmd"
    $post_ntinstall_cmd || die "* $post_ntinstall_cmd exited non-zero"
fi

sync
umount /c

echo "all done!"

reboot

exec bash
------ end of nt5x-install-aware master script ----

if you have the stock CVS or 4.7 master script, its ending like this: 
-----
if [ -z "$active_part" ] ; then
    echo "Partition table:" >&2
    parted /dev/dsk print >&2
    die "No active partition found!"
fi

cp /etc/dosemu/dosemu.conf /tmp
echo \$_hdimage = \"/dev/dsk$active_part\" >> /tmp/dosemu.conf

# DOSEMU always exits non-zero.  FIXME.
dosemu.bin -f /tmp/dosemu.conf

sync
reboot

exec bash
------

notice the lack of umount and post_ntinstall_cmd stuff at the end.

I cant really see why there should be a difference between CD-boot and 
PXE-boot.post_ntinstall_cmd
But, I did not test PXE boot, so it is possible I missed something :-)

Cheers,
Nils Olav 

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
unattended-info mailing list
unattended-info@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to