How to map a network drive?












32















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.










share|improve this question





























    32















    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.










    share|improve this question



























      32












      32








      32


      18






      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.










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 25 '16 at 6:47









      UrsinusTheStrong

      4141622




      4141622










      asked May 31 '11 at 9:31









      karthick87karthick87

      49.9k54167218




      49.9k54167218






















          4 Answers
          4






          active

          oldest

          votes


















          58














          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.






          share|improve this answer





















          • 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





















          14















          • 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






          share|improve this answer





















          • 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



















          1














          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/





          share|improve this answer

































            -1














            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.






            share|improve this answer


























            • .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











            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            58














            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.






            share|improve this answer





















            • 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


















            58














            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.






            share|improve this answer





















            • 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
















            58












            58








            58







            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.






            share|improve this answer















            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.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Feb 22 '16 at 20:58









            CJ Edgerton

            32




            32










            answered May 31 '11 at 9:40









            fossfreedomfossfreedom

            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
















            • 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















            14















            • 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






            share|improve this answer





















            • 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
















            14















            • 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






            share|improve this answer





















            • 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














            14












            14








            14








            • 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






            share|improve this answer
















            • 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







            share|improve this answer














            share|improve this answer



            share|improve this answer








            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














            • 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











            1














            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/





            share|improve this answer






























              1














              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/





              share|improve this answer




























                1












                1








                1







                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/





                share|improve this answer















                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/






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Mar 16 at 22:26

























                answered Apr 24 '18 at 16:16









                ShqearShqear

                1113




                1113























                    -1














                    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.






                    share|improve this answer


























                    • .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
















                    -1














                    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.






                    share|improve this answer


























                    • .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














                    -1












                    -1








                    -1







                    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.






                    share|improve this answer















                    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.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    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



















                    • .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


















                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局