"Will Ross" <[EMAIL PROTECTED]> writes:

> I have RedHat 3.3.2 installed. I have downloaded XFre86 3.3.6 from UMin into my
> C:/windows/temp dir. (18 files ) . I have a /dosc partition on my F: drive,
> where the rest of the linux os is loaded. My program has dosemu.conf and
> /dosc.user on it. I want to transfer the loaded files from C:\ to F: /dosc with
> dosemu. But when I try to load dosemu, I get the following:
> 
> ERROR : gettype : no disc129
> genl protection of 0X90414 :f
> ERROR : SIGSEGV protected insn....exiting
> The downloaded files are in C:/windows/temp. Can you give me any help??  Will
> Ross

1) We would at least need your dosemu.conf to debug this.
2) dosemu is not the right tool for this job.
   Linux has a perfectly good command line, you don't need to go into
   the inferior dos command line to do this...
3) The right way to do this is to just mount your fat filesystems
   under linux and run a cp command.
Put something like:
/dev/hda1        /C      msdos   defaults     0 0
into the file.
/etc/fstab

Where /dev/hda1 is substituted with the correct 
partitions/drives of your C drive.

Then mkdir  /C to creat the C directory then:

mount /C 
And
cp /C/windows/temp/* /dosc
or whatever is appropriate.

Eric

Reply via email to