accessing the mapped network drives using mingw shell Announcing the arrival of Valued...
How could we fake a moon landing now?
Why does the remaining Rebel fleet at the end of Rogue One seem dramatically larger than the one in A New Hope?
Amount of permutations on an NxNxN Rubik's Cube
Should I use a zero-interest credit card for a large one-time purchase?
What does it mean that physics no longer uses mechanical models to describe phenomena?
Most bit efficient text communication method?
When a candle burns, why does the top of wick glow if bottom of flame is hottest?
How to react to hostile behavior from a senior developer?
Converted a Scalar function to a TVF function for parallel execution-Still running in Serial mode
Has negative voting ever been officially implemented in elections, or seriously proposed, or even studied?
Do wooden building fires get hotter than 600°C?
How does the math work when buying airline miles?
Why weren't discrete x86 CPUs ever used in game hardware?
Significance of Cersei's obsession with elephants?
How to compare two different files line by line in unix?
Time to Settle Down!
Crossing US/Canada Border for less than 24 hours
Why is Nikon 1.4g better when Nikon 1.8g is sharper?
How do living politicians protect their readily obtainable signatures from misuse?
How do I use the new nonlinear finite element in Mathematica 12 for this equation?
Do any jurisdictions seriously consider reclassifying social media websites as publishers?
Can anything be seen from the center of the Boötes void? How dark would it be?
Why is it faster to reheat something than it is to cook it?
What initially awakened the Balrog?
accessing the mapped network drives using mingw shell
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Why is it bad to map network drives in Windows?Mapped Network Drives not available in Citrix application depending on local machineMapped network drives on a Windows domainDetermine the mapped network path from cmd windowHow to access windows administrative share from mingw shell?Encrypting mapped network drives in Windowschange to mapped network drive at command lineRestore and backup, mapped network drives without logging offMapped network drives aren't showing in Windows ExplorerWindows Connect to Mapped Network Drive Letter without File explorer
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
How to access the mapped network drives from the mingw shell? When I try
cd y:
or cd /y
or y:
All I get is No such file or directory
or sh.exe y:: command not found
.
I am able to access the same mapped Y: drive using cmd
. I would like to know how to do the same using mingw shell.
windows shell network-drive mingw
add a comment |
How to access the mapped network drives from the mingw shell? When I try
cd y:
or cd /y
or y:
All I get is No such file or directory
or sh.exe y:: command not found
.
I am able to access the same mapped Y: drive using cmd
. I would like to know how to do the same using mingw shell.
windows shell network-drive mingw
add a comment |
How to access the mapped network drives from the mingw shell? When I try
cd y:
or cd /y
or y:
All I get is No such file or directory
or sh.exe y:: command not found
.
I am able to access the same mapped Y: drive using cmd
. I would like to know how to do the same using mingw shell.
windows shell network-drive mingw
How to access the mapped network drives from the mingw shell? When I try
cd y:
or cd /y
or y:
All I get is No such file or directory
or sh.exe y:: command not found
.
I am able to access the same mapped Y: drive using cmd
. I would like to know how to do the same using mingw shell.
windows shell network-drive mingw
windows shell network-drive mingw
asked Feb 28 '12 at 14:05
yasouseryasouser
238311
238311
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Try cd /y/
to solve your problem
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw tocd
into it, then it works.
– yasouser
Mar 26 '12 at 15:00
add a comment |
I find I have to use the mount command first. If I have a USB stick on drive E: then in the mingw shell:
mount e: /e
Only then can I run cd /e/
. You can run mount
without parameters to list all the currently known file systems. umount /e
will remove the link between E: and /e/.
I have a "mapped network drive" as "S:" but when I run$ mount S: /s
in MingW64 (git back) I getmount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
add a comment |
Try this format in MINGW64 shell (Bash for windows)
$ cd //IP_Address_of_remote_drive/Path/To/The/Folder/
New contributor
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f394937%2faccessing-the-mapped-network-drives-using-mingw-shell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try cd /y/
to solve your problem
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw tocd
into it, then it works.
– yasouser
Mar 26 '12 at 15:00
add a comment |
Try cd /y/
to solve your problem
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw tocd
into it, then it works.
– yasouser
Mar 26 '12 at 15:00
add a comment |
Try cd /y/
to solve your problem
Try cd /y/
to solve your problem
edited Mar 27 '12 at 10:09
Raystafarian
19.6k105189
19.6k105189
answered Mar 26 '12 at 13:02
ViniciusVinicius
961
961
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw tocd
into it, then it works.
– yasouser
Mar 26 '12 at 15:00
add a comment |
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw tocd
into it, then it works.
– yasouser
Mar 26 '12 at 15:00
3
3
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
Care to explain why it works this way?
– Ivo Flipse♦
Mar 26 '12 at 13:22
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw to
cd
into it, then it works.– yasouser
Mar 26 '12 at 15:00
I'm able to access the drive from mingw shell if the drive is actually connected. That is, if I double click and open the drive in Windows Explorer and then use Mingw to
cd
into it, then it works.– yasouser
Mar 26 '12 at 15:00
add a comment |
I find I have to use the mount command first. If I have a USB stick on drive E: then in the mingw shell:
mount e: /e
Only then can I run cd /e/
. You can run mount
without parameters to list all the currently known file systems. umount /e
will remove the link between E: and /e/.
I have a "mapped network drive" as "S:" but when I run$ mount S: /s
in MingW64 (git back) I getmount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
add a comment |
I find I have to use the mount command first. If I have a USB stick on drive E: then in the mingw shell:
mount e: /e
Only then can I run cd /e/
. You can run mount
without parameters to list all the currently known file systems. umount /e
will remove the link between E: and /e/.
I have a "mapped network drive" as "S:" but when I run$ mount S: /s
in MingW64 (git back) I getmount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
add a comment |
I find I have to use the mount command first. If I have a USB stick on drive E: then in the mingw shell:
mount e: /e
Only then can I run cd /e/
. You can run mount
without parameters to list all the currently known file systems. umount /e
will remove the link between E: and /e/.
I find I have to use the mount command first. If I have a USB stick on drive E: then in the mingw shell:
mount e: /e
Only then can I run cd /e/
. You can run mount
without parameters to list all the currently known file systems. umount /e
will remove the link between E: and /e/.
answered Sep 21 '17 at 8:15
perldevperldev
311
311
I have a "mapped network drive" as "S:" but when I run$ mount S: /s
in MingW64 (git back) I getmount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
add a comment |
I have a "mapped network drive" as "S:" but when I run$ mount S: /s
in MingW64 (git back) I getmount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
I have a "mapped network drive" as "S:" but when I run
$ mount S: /s
in MingW64 (git back) I get mount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
I have a "mapped network drive" as "S:" but when I run
$ mount S: /s
in MingW64 (git back) I get mount: warning - /s does not exist.
– iX3
Nov 6 '17 at 0:55
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
It seems that my problem was that I was running git bash in elevated mode (set "Run as administrator"), and evidently the admin user didn't have an authenticated session with the file server or something like that.
– iX3
Nov 6 '17 at 1:03
add a comment |
Try this format in MINGW64 shell (Bash for windows)
$ cd //IP_Address_of_remote_drive/Path/To/The/Folder/
New contributor
add a comment |
Try this format in MINGW64 shell (Bash for windows)
$ cd //IP_Address_of_remote_drive/Path/To/The/Folder/
New contributor
add a comment |
Try this format in MINGW64 shell (Bash for windows)
$ cd //IP_Address_of_remote_drive/Path/To/The/Folder/
New contributor
Try this format in MINGW64 shell (Bash for windows)
$ cd //IP_Address_of_remote_drive/Path/To/The/Folder/
New contributor
New contributor
answered 10 hours ago
PrashantPrashant
1
1
New contributor
New contributor
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f394937%2faccessing-the-mapped-network-drives-using-mingw-shell%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown