mounting remote c: drive in cygwin

1

I'm using cygwin

how do i mount a remote c: drive in cygwin

to mount a remote shred dir one could use

mount //#ip address#/#shared folder# /#new dir# but trying to mount c: drive fails

mount //#ip address#/C$ /#new dir#

modi

Posted 2010-03-04T19:42:38.273

Reputation: 125

Answers

0

Try to escape the dollar sign:

mount //#ip address#/C\$ /#new dir#

or

mount "//#ip address#/C$" /#new dir#

Sunny

Posted 2010-03-04T19:42:38.273

Reputation: 921

0

If you mount the remote drive as a drive letter in Windows, you can then navigate to /cygdrive/<drive letter> within cygwin.

If you need to mount the drive from the command line, you can use "net use". type "net help use" for command line options.

John Douthat

Posted 2010-03-04T19:42:38.273

Reputation: 581

I'm trying to avoid this option since i have another application that map the this drive but with different credential – modi – 2010-03-04T19:49:15.983