public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* RE: dd under CygWin
@ 2000-08-23 14:20 Heribert Dahms
  0 siblings, 0 replies; 6+ messages in thread
From: Heribert Dahms @ 2000-08-23 14:20 UTC (permalink / raw)
  To: 'cygwin@sourceware.cygnus.com'

Hi DGP85,

if you boot a DOS disk, what about format?
Else, you could just as well boot a Linux rescue/install disk!

Bye, Heribert (heribert_dahms@icon-gmbh.de)

> -----Original Message-----
> From:	DGP85 [SMTP:dgp85.prog.mls@dapsmail.zzn.com]
> Sent:	Wednesday, August 23, 2000 17:51
> To:	cygwin
> Subject:	Re: dd under CygWin
> 
> Il Wed, 23 Aug 2000 15:51:54 +0200, su mls.linux.cygwin con una penna
> d'oca e l'inchiostro hai scritto:
> 
> >95/98: No chance since no raw device support.
> And if I launch from a DOS Boot Disk?
> -- 
> DGP85
> http://daps.cjb.net/
> dgp85@daps.cjb.net
> No HTML or Binaries at this address.
> 
> --
> Want to unsubscribe from this list?
> Send a message to cygwin-unsubscribe@sourceware.cygnus.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: dd under CygWin
  2000-08-23 10:54     ` Larry Hall (RFK Partners, Inc)
@ 2000-08-23 19:05       ` Gregory Walker
  0 siblings, 0 replies; 6+ messages in thread
From: Gregory Walker @ 2000-08-23 19:05 UTC (permalink / raw)
  To: cygwin

At 12:40 PM 8/23/00 -0400, you wrote:
 >> >95/98: No chance since no raw device support.
 >>And if I launch from a DOS Boot Disk?
 >
 >No difference. 9x has no support for what dd does.

For what it is worth, MSDOS has the rawwrite.exe command
which is similar to dd. For example, you can copy a Linux
boot image to a floppy with it. I found it in the
"Crash Recovery Kit for Linux" at < http://crashrecovery.org/ >

Cheers,
Gregory Walker           gwalker@jump.net



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: dd under CygWin
  2000-08-23  8:52   ` DGP85
@ 2000-08-23 10:54     ` Larry Hall (RFK Partners, Inc)
  2000-08-23 19:05       ` Gregory Walker
  0 siblings, 1 reply; 6+ messages in thread
From: Larry Hall (RFK Partners, Inc) @ 2000-08-23 10:54 UTC (permalink / raw)
  To: cygwin@sourceware.cygnus.com, cygwin

At 11:50 AM 8/23/2000, DGP85 wrote:
>Il Wed, 23 Aug 2000 15:51:54 +0200, su mls.linux.cygwin con una penna
>d'oca e l'inchiostro hai scritto:
>
> >95/98: No chance since no raw device support.
>And if I launch from a DOS Boot Disk?



No difference.  9x has no support for what dd does.



Larry Hall                              lhall@rfk.com
RFK Partners, Inc.                      http://www.rfk.com
118 Washington Street                   (508) 893-9779 - RFK Office
Holliston, MA 01746                     (508) 893-9889 - FAX



--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: dd under CygWin
  2000-08-23  6:51 ` Corinna Vinschen
@ 2000-08-23  8:52   ` DGP85
  2000-08-23 10:54     ` Larry Hall (RFK Partners, Inc)
  0 siblings, 1 reply; 6+ messages in thread
From: DGP85 @ 2000-08-23  8:52 UTC (permalink / raw)
  To: cygwin

Il Wed, 23 Aug 2000 15:51:54 +0200, su mls.linux.cygwin con una penna
d'oca e l'inchiostro hai scritto:

>95/98: No chance since no raw device support.
And if I launch from a DOS Boot Disk?
-- 
DGP85
http://daps.cjb.net/
dgp85@daps.cjb.net
No HTML or Binaries at this address.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* Re: dd under CygWin
  2000-08-23  6:20 DGP85
@ 2000-08-23  6:51 ` Corinna Vinschen
  2000-08-23  8:52   ` DGP85
  0 siblings, 1 reply; 6+ messages in thread
From: Corinna Vinschen @ 2000-08-23  6:51 UTC (permalink / raw)
  To: cygwin

DGP85 wrote:
> 
> Hi,
> I have a old hard disk and I need to clean it totally.
> I need to use the linux command
> dd if=/dev/zero of=/dev/hdb
> but I can't start linux.
> How I can use dd in CygWin.

95/98: No chance since no raw device support.

NT/W2K:

Figure out which drive number the drive has (NT Disk Manager).
Let's presume it's 2:

$ mount -f -b //./physicaldrive2 /dev/xyz
$ dd if=/dev/zero of=/dev/xyz

Note that "xyz" is a placeholder. Name the drive as you want,
for example "/dev/hdb" or "/dev/garfield"

If you want to access a single partition as raw device, you only
have to know the drive letter, let's presume G:

$ mount -f -b //./G: /dev/earthquake

Note the "//./" prefix (slash slash dot slash) which is the common
prefix for devices in NT/W2K except for old DOS device names ("COMx",
"CON", "AUX", "PRN").

Hope, that helps,
Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                        mailto:cygwin@sources.redhat.com
Red Hat, Inc.
mailto:vinschen@cygnus.com

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

* dd under CygWin
@ 2000-08-23  6:20 DGP85
  2000-08-23  6:51 ` Corinna Vinschen
  0 siblings, 1 reply; 6+ messages in thread
From: DGP85 @ 2000-08-23  6:20 UTC (permalink / raw)
  To: cygwin

Hi,
I have a old hard disk and I need to clean it totally.
I need to use the linux command
dd if=/dev/zero of=/dev/hdb
but I can't start linux.
How I can use dd in CygWin.
Thanks
-- 
DGP85
http://daps.cjb.net/
dgp85@daps.cjb.net
No HTML or Binaries at this address.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

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

end of thread, other threads:[~2000-08-23 19:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2000-08-23 14:20 dd under CygWin Heribert Dahms
  -- strict thread matches above, loose matches on Subject: below --
2000-08-23  6:20 DGP85
2000-08-23  6:51 ` Corinna Vinschen
2000-08-23  8:52   ` DGP85
2000-08-23 10:54     ` Larry Hall (RFK Partners, Inc)
2000-08-23 19:05       ` Gregory Walker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).