How to map a network drive?
I am unable to map a Windows network drive in Ubuntu. I executed the following command in the terminal:
karthick@karthick:~$ sudo mount -t cifs -o username=raghu //172.29.32.184 /media/Data/
Password:
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
But it returned an error. I hope someone can sort this out.
mount samba file-sharing cifs
add a comment |
I am unable to map a Windows network drive in Ubuntu. I executed the following command in the terminal:
karthick@karthick:~$ sudo mount -t cifs -o username=raghu //172.29.32.184 /media/Data/
Password:
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
But it returned an error. I hope someone can sort this out.
mount samba file-sharing cifs
add a comment |
I am unable to map a Windows network drive in Ubuntu. I executed the following command in the terminal:
karthick@karthick:~$ sudo mount -t cifs -o username=raghu //172.29.32.184 /media/Data/
Password:
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
But it returned an error. I hope someone can sort this out.
mount samba file-sharing cifs
I am unable to map a Windows network drive in Ubuntu. I executed the following command in the terminal:
karthick@karthick:~$ sudo mount -t cifs -o username=raghu //172.29.32.184 /media/Data/
Password:
mount error(2): No such file or directory
Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
But it returned an error. I hope someone can sort this out.
mount samba file-sharing cifs
mount samba file-sharing cifs
edited Jun 25 '16 at 6:47
UrsinusTheStrong
4141622
4141622
asked May 31 '11 at 9:31
karthick87karthick87
49.9k54167218
49.9k54167218
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
I think you need to also pass the windows share name as well as confirm that you've created /media/Data
sudo mkdir /media/Data
Use something like
smbclient -L //172.29.32.184
to list the shares, then append the share name to your mount
sudo mount -t cifs -o username=raghu //172.29.32.184/sharename /media/Data/
Note- If you receive the error:
wrong fs type, bad option, bad superblock on...
make sure you have cifs-utils installed, it may not be installed on your distro by default.
sudo apt-get install cifs-utils
If you need to mount your windows share permanently then there is an excellent HowTo by dmizer UbuntuForums Staff (scroll to the permanent mount section)- I wont reproduce the advice here because its got some excellent debugging hints and tips and other workarounds that you may encounter.
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
The following did the trick:mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.
– AlikElzin-kilaka
Jul 2 '15 at 7:32
add a comment |
- open a Nautilus window
- click Go in the menu, or alternatively press Ctrl+L
- enter smb://remote_host/share_name
- Go to Bookmarks and click add
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
add a comment |
I use @fossfreedom's anwer in one command use this :
echo '<your su pasword>' | sudo -S mkdir /mnt/sharedfolder/ | sudo -S mount -t cifs -w -o username=nabed -o password=nabed //192.168.0.58/sharedfolder /mnt/sharedfolder/
add a comment |
Edit for 2018 and beyond: After 14.04, ubuntu seems to no longer use .gvfs, so the below might not work for you. Sorry for sharing what worked for me when I answered... Additional commentary no longer required.
Another way is to use the file browser to connect to a network location. Then it is mounted under ~/.gvfs
From there, you can mkdir ~/winbox
and then ln -s ~/.gvfs/blahblahblah ~/winbox
.
I recall there being some permanence to this, but I forget the details. :P I was developing php/odbc app for Quickbooks which needs to be run on the Quickbooks computer.
.gvfs
folder is empty for me, even after connecting with the file browser...
– Keith M
Dec 12 '17 at 23:42
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f46183%2fhow-to-map-a-network-drive%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
I think you need to also pass the windows share name as well as confirm that you've created /media/Data
sudo mkdir /media/Data
Use something like
smbclient -L //172.29.32.184
to list the shares, then append the share name to your mount
sudo mount -t cifs -o username=raghu //172.29.32.184/sharename /media/Data/
Note- If you receive the error:
wrong fs type, bad option, bad superblock on...
make sure you have cifs-utils installed, it may not be installed on your distro by default.
sudo apt-get install cifs-utils
If you need to mount your windows share permanently then there is an excellent HowTo by dmizer UbuntuForums Staff (scroll to the permanent mount section)- I wont reproduce the advice here because its got some excellent debugging hints and tips and other workarounds that you may encounter.
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
The following did the trick:mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.
– AlikElzin-kilaka
Jul 2 '15 at 7:32
add a comment |
I think you need to also pass the windows share name as well as confirm that you've created /media/Data
sudo mkdir /media/Data
Use something like
smbclient -L //172.29.32.184
to list the shares, then append the share name to your mount
sudo mount -t cifs -o username=raghu //172.29.32.184/sharename /media/Data/
Note- If you receive the error:
wrong fs type, bad option, bad superblock on...
make sure you have cifs-utils installed, it may not be installed on your distro by default.
sudo apt-get install cifs-utils
If you need to mount your windows share permanently then there is an excellent HowTo by dmizer UbuntuForums Staff (scroll to the permanent mount section)- I wont reproduce the advice here because its got some excellent debugging hints and tips and other workarounds that you may encounter.
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
The following did the trick:mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.
– AlikElzin-kilaka
Jul 2 '15 at 7:32
add a comment |
I think you need to also pass the windows share name as well as confirm that you've created /media/Data
sudo mkdir /media/Data
Use something like
smbclient -L //172.29.32.184
to list the shares, then append the share name to your mount
sudo mount -t cifs -o username=raghu //172.29.32.184/sharename /media/Data/
Note- If you receive the error:
wrong fs type, bad option, bad superblock on...
make sure you have cifs-utils installed, it may not be installed on your distro by default.
sudo apt-get install cifs-utils
If you need to mount your windows share permanently then there is an excellent HowTo by dmizer UbuntuForums Staff (scroll to the permanent mount section)- I wont reproduce the advice here because its got some excellent debugging hints and tips and other workarounds that you may encounter.
I think you need to also pass the windows share name as well as confirm that you've created /media/Data
sudo mkdir /media/Data
Use something like
smbclient -L //172.29.32.184
to list the shares, then append the share name to your mount
sudo mount -t cifs -o username=raghu //172.29.32.184/sharename /media/Data/
Note- If you receive the error:
wrong fs type, bad option, bad superblock on...
make sure you have cifs-utils installed, it may not be installed on your distro by default.
sudo apt-get install cifs-utils
If you need to mount your windows share permanently then there is an excellent HowTo by dmizer UbuntuForums Staff (scroll to the permanent mount section)- I wont reproduce the advice here because its got some excellent debugging hints and tips and other workarounds that you may encounter.
edited Feb 22 '16 at 20:58
CJ Edgerton
32
32
answered May 31 '11 at 9:40
fossfreedom♦fossfreedom
150k37331374
150k37331374
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
The following did the trick:mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.
– AlikElzin-kilaka
Jul 2 '15 at 7:32
add a comment |
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
The following did the trick:mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.
– AlikElzin-kilaka
Jul 2 '15 at 7:32
2
2
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
Spot on. In order to map a share (even using Windows as the client) you have to point directly at a share. You can't mount the entire computer and you can't [directly] mount a subdirectory of the share.
– Oli♦
May 31 '11 at 9:55
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
I have followed your instruction, but i am getting the following error.mount error(11): Resource temporarily unavailable Refer to the mount.cifs(8) manual page (e.g. man mount.cifs)
– karthick87
May 31 '11 at 23:25
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
@karthick87 - thats a new one on me - maybe worth posting that one on that active forum thread. The only google search on this error that I found that vaguely might be related is this one: linuxquestions.org/questions/linux-server-73/…
– fossfreedom♦
Jun 1 '11 at 20:23
1
1
The following did the trick:
mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.– AlikElzin-kilaka
Jul 2 '15 at 7:32
The following did the trick:
mount -t cifs -o 'username=domainuname' '\machinefolder' /mnt/folder
. Worked on Redhat as well.– AlikElzin-kilaka
Jul 2 '15 at 7:32
add a comment |
- open a Nautilus window
- click Go in the menu, or alternatively press Ctrl+L
- enter smb://remote_host/share_name
- Go to Bookmarks and click add
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
add a comment |
- open a Nautilus window
- click Go in the menu, or alternatively press Ctrl+L
- enter smb://remote_host/share_name
- Go to Bookmarks and click add
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
add a comment |
- open a Nautilus window
- click Go in the menu, or alternatively press Ctrl+L
- enter smb://remote_host/share_name
- Go to Bookmarks and click add
- open a Nautilus window
- click Go in the menu, or alternatively press Ctrl+L
- enter smb://remote_host/share_name
- Go to Bookmarks and click add
edited Jun 25 '16 at 5:59
answered Jun 25 '16 at 5:56
housshouss
24125
24125
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
add a comment |
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
8
8
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
@DavidCole-GrammarPolice I'd disagree: as long as this answer is offering a different solution, it does have value and use. (didn't check the meta for an official take on these issues...)
– nutty about natty
Sep 1 '16 at 16:27
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
This way works on Ubuntu 16.04 - the other way has stopped working for me since I upgraded
– eigenjohnson
Mar 6 '17 at 18:15
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
I think this way will work as long as you are using Nautilus. I am not sure if it works when you use another Gnome file manager
– houss
Mar 7 '17 at 22:37
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
Thank you for posting an alternative that's more user-friendly and doesn't require sudo for normal users! I can confirm that the above works for Kubuntu's Dolphin on Ubuntu 17.04 .
– Ray
Oct 4 '17 at 2:26
add a comment |
I use @fossfreedom's anwer in one command use this :
echo '<your su pasword>' | sudo -S mkdir /mnt/sharedfolder/ | sudo -S mount -t cifs -w -o username=nabed -o password=nabed //192.168.0.58/sharedfolder /mnt/sharedfolder/
add a comment |
I use @fossfreedom's anwer in one command use this :
echo '<your su pasword>' | sudo -S mkdir /mnt/sharedfolder/ | sudo -S mount -t cifs -w -o username=nabed -o password=nabed //192.168.0.58/sharedfolder /mnt/sharedfolder/
add a comment |
I use @fossfreedom's anwer in one command use this :
echo '<your su pasword>' | sudo -S mkdir /mnt/sharedfolder/ | sudo -S mount -t cifs -w -o username=nabed -o password=nabed //192.168.0.58/sharedfolder /mnt/sharedfolder/
I use @fossfreedom's anwer in one command use this :
echo '<your su pasword>' | sudo -S mkdir /mnt/sharedfolder/ | sudo -S mount -t cifs -w -o username=nabed -o password=nabed //192.168.0.58/sharedfolder /mnt/sharedfolder/
edited Mar 16 at 22:26
answered Apr 24 '18 at 16:16
ShqearShqear
1113
1113
add a comment |
add a comment |
Edit for 2018 and beyond: After 14.04, ubuntu seems to no longer use .gvfs, so the below might not work for you. Sorry for sharing what worked for me when I answered... Additional commentary no longer required.
Another way is to use the file browser to connect to a network location. Then it is mounted under ~/.gvfs
From there, you can mkdir ~/winbox
and then ln -s ~/.gvfs/blahblahblah ~/winbox
.
I recall there being some permanence to this, but I forget the details. :P I was developing php/odbc app for Quickbooks which needs to be run on the Quickbooks computer.
.gvfs
folder is empty for me, even after connecting with the file browser...
– Keith M
Dec 12 '17 at 23:42
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
add a comment |
Edit for 2018 and beyond: After 14.04, ubuntu seems to no longer use .gvfs, so the below might not work for you. Sorry for sharing what worked for me when I answered... Additional commentary no longer required.
Another way is to use the file browser to connect to a network location. Then it is mounted under ~/.gvfs
From there, you can mkdir ~/winbox
and then ln -s ~/.gvfs/blahblahblah ~/winbox
.
I recall there being some permanence to this, but I forget the details. :P I was developing php/odbc app for Quickbooks which needs to be run on the Quickbooks computer.
.gvfs
folder is empty for me, even after connecting with the file browser...
– Keith M
Dec 12 '17 at 23:42
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
add a comment |
Edit for 2018 and beyond: After 14.04, ubuntu seems to no longer use .gvfs, so the below might not work for you. Sorry for sharing what worked for me when I answered... Additional commentary no longer required.
Another way is to use the file browser to connect to a network location. Then it is mounted under ~/.gvfs
From there, you can mkdir ~/winbox
and then ln -s ~/.gvfs/blahblahblah ~/winbox
.
I recall there being some permanence to this, but I forget the details. :P I was developing php/odbc app for Quickbooks which needs to be run on the Quickbooks computer.
Edit for 2018 and beyond: After 14.04, ubuntu seems to no longer use .gvfs, so the below might not work for you. Sorry for sharing what worked for me when I answered... Additional commentary no longer required.
Another way is to use the file browser to connect to a network location. Then it is mounted under ~/.gvfs
From there, you can mkdir ~/winbox
and then ln -s ~/.gvfs/blahblahblah ~/winbox
.
I recall there being some permanence to this, but I forget the details. :P I was developing php/odbc app for Quickbooks which needs to be run on the Quickbooks computer.
edited Feb 20 '18 at 3:21
answered Jan 15 '14 at 9:53
Chris KChris K
273211
273211
.gvfs
folder is empty for me, even after connecting with the file browser...
– Keith M
Dec 12 '17 at 23:42
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
add a comment |
.gvfs
folder is empty for me, even after connecting with the file browser...
– Keith M
Dec 12 '17 at 23:42
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
.gvfs
folder is empty for me, even after connecting with the file browser...– Keith M
Dec 12 '17 at 23:42
.gvfs
folder is empty for me, even after connecting with the file browser...– Keith M
Dec 12 '17 at 23:42
1
1
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
@KeithM it sounds like your situation is different than Ubuntu/Gnome from 3 years ago. You should start a new question with your setup asking for advice and also link to this question saying you tried the things here.
– Chris K
Dec 13 '17 at 15:34
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f46183%2fhow-to-map-a-network-drive%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