public inbox for linux-msdos@vger.kernel.org
 help / color / mirror / Atom feed
* dosemu - can't see USB drive
@ 2009-09-24 14:05 Frank Jansen
  2009-09-24 14:57 ` Javier Tarifa
  2009-09-24 15:07 ` Bart Oldeman
  0 siblings, 2 replies; 6+ messages in thread
From: Frank Jansen @ 2009-09-24 14:05 UTC (permalink / raw)
  To: linux-msdos

I'm in the process of trying to create a USB DOS Bootable drive per the
instructions from ASElabs

Everything runs fine, including fix /proc/sys/vm/mmap_min_addr to get
dosemu to work. I get into dosemu and boot.log shows:

device: /etc/dosemu/drives/c type 4 h: -1 s: -1 t: -1 drive C:
device: /etc/dosemu/drives/d type 4 h: -1 s: -1 t: -1 drive D:
device: /dev/sdb1 type 3 partition# 1 h: -1 s: -1 t: -1 drive E:
CONF: cdrom MSCD0001 on /dev/cdrom
CONF: config variable c_system unset

and in the dosemu window:

C: HD1, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 392 MB
D: HD2, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 392 MB
E: HD3, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 476 MB
UMB's unavailable!

However, F: is invalid...

Any thoughts or hints on how to see /dev/sdb1?  I have verified that
there is rwx access exists for all.

Thanks,

Frank


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: dosemu - can't see USB drive
  2009-09-24 14:05 dosemu - can't see USB drive Frank Jansen
@ 2009-09-24 14:57 ` Javier Tarifa
  2009-09-24 15:08   ` Frank Jansen
  2009-09-24 15:07 ` Bart Oldeman
  1 sibling, 1 reply; 6+ messages in thread
From: Javier Tarifa @ 2009-09-24 14:57 UTC (permalink / raw)
  To: fjansen; +Cc: linux-msdos


> Any thoughts or hints on how to see /dev/sdb1?  I have verified that
> there is rwx access exists for all.
>   

I would just mount /dev/sdb1 in linux (say in /mnt/usb/) and do "lredir 
f: linux\fs\mnt/usb"  in dosemu

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: dosemu - can't see USB drive
  2009-09-24 14:05 dosemu - can't see USB drive Frank Jansen
  2009-09-24 14:57 ` Javier Tarifa
@ 2009-09-24 15:07 ` Bart Oldeman
  2009-09-24 15:14   ` Frank Jansen
  1 sibling, 1 reply; 6+ messages in thread
From: Bart Oldeman @ 2009-09-24 15:07 UTC (permalink / raw)
  To: fjansen; +Cc: linux-msdos

On Thu, Sep 24, 2009 at 10:05 AM, Frank Jansen <fjansen@egenera.com> wrote:
> device: /dev/sdb1 type 3 partition# 1 h: -1 s: -1 t: -1 drive E:
> E: HD3, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 476 MB

If this E: corresponds to your USB you should be able to see it after doing
lredir del e:
in DOSEMU at the DOS prompt, because the CDROM default redirection put
in autoexec.bat overrides it.

Why were you looking at F: though?

Bart
--
To unsubscribe from this list: send the line "unsubscribe linux-msdos" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: dosemu - can't see USB drive
  2009-09-24 14:57 ` Javier Tarifa
@ 2009-09-24 15:08   ` Frank Jansen
  0 siblings, 0 replies; 6+ messages in thread
From: Frank Jansen @ 2009-09-24 15:08 UTC (permalink / raw)
  To: Javier Tarifa; +Cc: linux-msdos

Javier,

thank you for your suggestion.  I can now see the USB drive, but cannot
transfer the DOS system to it, as it is mounted, which prevents reading
of the bootsector.

I'm taking a look through the dosemu code to see, if I can figure out
what may be going wrong.

Frank
On Thu, 2009-09-24 at 16:57 +0200, Javier Tarifa wrote:
> > Any thoughts or hints on how to see /dev/sdb1?  I have verified that
> > there is rwx access exists for all.
> >   
> 
> I would just mount /dev/sdb1 in linux (say in /mnt/usb/) and do "lredir 
> f: linux\fs\mnt/usb"  in dosemu


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: dosemu - can't see USB drive
  2009-09-24 15:07 ` Bart Oldeman
@ 2009-09-24 15:14   ` Frank Jansen
  2009-09-24 15:19     ` Frank Jansen
  0 siblings, 1 reply; 6+ messages in thread
From: Frank Jansen @ 2009-09-24 15:14 UTC (permalink / raw)
  To: Bart Oldeman; +Cc: linux-msdos

Bart,

thank you for your suggestion, as I now have proper access to the USB
drive.  There are still more hurdles as KERNEL.SYS is not found during
sys e:, but this is real progress.

The reason for looking at F: was that I saw the CD at E: and the ASElabs
intrsutrctions had F: listed.

Thanks again.

Groeten,

Frank

On Thu, 2009-09-24 at 11:07 -0400, Bart Oldeman wrote:
> On Thu, Sep 24, 2009 at 10:05 AM, Frank Jansen <fjansen@egenera.com> wrote:
> > device: /dev/sdb1 type 3 partition# 1 h: -1 s: -1 t: -1 drive E:
> > E: HD3, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 476 MB
> 
> If this E: corresponds to your USB you should be able to see it after doing
> lredir del e:
> in DOSEMU at the DOS prompt, because the CDROM default redirection put
> in autoexec.bat overrides it.
> 
> Why were you looking at F: though?
> 
> Bart


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: dosemu - can't see USB drive
  2009-09-24 15:14   ` Frank Jansen
@ 2009-09-24 15:19     ` Frank Jansen
  0 siblings, 0 replies; 6+ messages in thread
From: Frank Jansen @ 2009-09-24 15:19 UTC (permalink / raw)
  To: Bart Oldeman; +Cc: linux-msdos

FYI - overcame my last hurdle by performing sys e: from Z:

Thank you all!

Great tool
On Thu, 2009-09-24 at 11:14 -0400, Frank Jansen wrote:
> Bart,
> 
> thank you for your suggestion, as I now have proper access to the USB
> drive.  There are still more hurdles as KERNEL.SYS is not found during
> sys e:, but this is real progress.
> 
> The reason for looking at F: was that I saw the CD at E: and the ASElabs
> intrsutrctions had F: listed.
> 
> Thanks again.
> 
> Groeten,
> 
> Frank
> 
> On Thu, 2009-09-24 at 11:07 -0400, Bart Oldeman wrote:
> > On Thu, Sep 24, 2009 at 10:05 AM, Frank Jansen <fjansen@egenera.com> wrote:
> > > device: /dev/sdb1 type 3 partition# 1 h: -1 s: -1 t: -1 drive E:
> > > E: HD3, Pri[ 1], CHS=   0-1-1, start=   0 MB, size= 476 MB
> > 
> > If this E: corresponds to your USB you should be able to see it after doing
> > lredir del e:
> > in DOSEMU at the DOS prompt, because the CDROM default redirection put
> > in autoexec.bat overrides it.
> > 
> > Why were you looking at F: though?
> > 
> > Bart
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-msdos" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-09-24 15:19 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-24 14:05 dosemu - can't see USB drive Frank Jansen
2009-09-24 14:57 ` Javier Tarifa
2009-09-24 15:08   ` Frank Jansen
2009-09-24 15:07 ` Bart Oldeman
2009-09-24 15:14   ` Frank Jansen
2009-09-24 15:19     ` Frank Jansen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox