This is the mail archive of the cygwin@sources.redhat.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: mount --- invalid argument


On Thu, Oct 05, 2000 at 03:25:29PM -0500, Thomas Hutto wrote:
>thomasahutto@THOMASAH ~
>$ mount
>Device              Directory           Type         Flags
>f:\cygwin\bin       /usr/bin            user         binmode
>f:\cygwin\lib       /usr/lib            user         binmode
>f:\cygwin           /                   user         binmode
>c:                  /c                  user         textmode
>d:                  /d                  user         textmode
>e:                  /e                  user         textmode
>f:                  /f                  user         textmode
>g:                  /g                  user         textmode
>
>thomasahutto@THOMASAH ~
>$ mount f:\proj /proj
>mount: /proj: Invalid argument
>
>can't think why f:\proj exists.

The error message is misleading.  Bash interprets single backslashes as
a quoting character.  So, what you're really typing is:

mount f:proj /proj

To rectify, either:

mount f:\\proj /proj

or

mount f:/proj /proj

cgf

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]