On Fri, 8 Dec 2000, Kevin Lawton wrote:
> [EMAIL PROTECTED] wrote:
> >
> > With the last stack fixes, Windows NT 4.0 boot floppy works until it
> > prompst about floppy 2. How do I change my virtuel floppy disk images?
>
> If you're using a file, just copy floppy #2 to the file. Write
> over the old file. If you're using a real floppy device, just
> stick in a new floppy.
>
> I usually point the floppy directive to a generic file, like
> '1.44a', and copy images to that file on demand.
I usually do almost the same, except I have a generic symlink, like
disk_a, and I point this to the file I want. A simple script could
probably be made to do this, sort of like:
#!/bin/sh
# warning, untested
rm $HOME/.bochs/disk_a
ln -s $1 $HOME/.bochs/disk_a
Ketil