Mounting and accessing Western Digital's MyCloud NAS











up vote
3
down vote

favorite












I have bought a Western Digital Mycloud disk. I did succeed to mount it under Lubuntu 13.10 by means of the following command:



sudo mount -o soft,intr,rsize=8192,wsize=8192 
<IP address>:/nfs /home/myusername/nfs/


Afterwards I do see the various shares in the directory nfs.



Unfortunately however I do not get access to the files. This is because the Western Digital device needs a username and password.



I am a Linux rookie so would there be someone willing to tell me how to specify these in the mount command?



Thanks in advance!










share|improve this question




























    up vote
    3
    down vote

    favorite












    I have bought a Western Digital Mycloud disk. I did succeed to mount it under Lubuntu 13.10 by means of the following command:



    sudo mount -o soft,intr,rsize=8192,wsize=8192 
    <IP address>:/nfs /home/myusername/nfs/


    Afterwards I do see the various shares in the directory nfs.



    Unfortunately however I do not get access to the files. This is because the Western Digital device needs a username and password.



    I am a Linux rookie so would there be someone willing to tell me how to specify these in the mount command?



    Thanks in advance!










    share|improve this question


























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      I have bought a Western Digital Mycloud disk. I did succeed to mount it under Lubuntu 13.10 by means of the following command:



      sudo mount -o soft,intr,rsize=8192,wsize=8192 
      <IP address>:/nfs /home/myusername/nfs/


      Afterwards I do see the various shares in the directory nfs.



      Unfortunately however I do not get access to the files. This is because the Western Digital device needs a username and password.



      I am a Linux rookie so would there be someone willing to tell me how to specify these in the mount command?



      Thanks in advance!










      share|improve this question















      I have bought a Western Digital Mycloud disk. I did succeed to mount it under Lubuntu 13.10 by means of the following command:



      sudo mount -o soft,intr,rsize=8192,wsize=8192 
      <IP address>:/nfs /home/myusername/nfs/


      Afterwards I do see the various shares in the directory nfs.



      Unfortunately however I do not get access to the files. This is because the Western Digital device needs a username and password.



      I am a Linux rookie so would there be someone willing to tell me how to specify these in the mount command?



      Thanks in advance!







      mount lubuntu nfs






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Jun 10 '16 at 13:03









      Rinzwind

      202k27388521




      202k27388521










      asked Feb 13 '14 at 16:44









      Hans

      66114




      66114






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          AFP is Apple File Protocol which, along with Samba, is natively supported by the WD NAS server. You can also use smbfs or cifs on your Linux box and mount the shares permanently (see here) or you can use NFS. NFS, particularly udp, offers better performance but poorer security. I use NFS because file ownership and permissions are an important issue to me and they are not fully supported in smbfs/cifs.



          I have just posted a how-to to set up NFS between a Linux client running 14.04 and a WD Own Cloud NAS server - see here.






          share|improve this answer





















          • You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
            – JanC
            May 11 '16 at 11:40










          • Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
            – JanC
            May 11 '16 at 11:43










          • You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
            – Scooby-2
            Jun 17 '16 at 19:31










          • I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
            – Scooby-2
            Jun 17 '16 at 19:35










          • My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
            – Scooby-2
            Jun 17 '16 at 19:44











          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',
          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%2f420455%2fmounting-and-accessing-western-digitals-mycloud-nas%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          AFP is Apple File Protocol which, along with Samba, is natively supported by the WD NAS server. You can also use smbfs or cifs on your Linux box and mount the shares permanently (see here) or you can use NFS. NFS, particularly udp, offers better performance but poorer security. I use NFS because file ownership and permissions are an important issue to me and they are not fully supported in smbfs/cifs.



          I have just posted a how-to to set up NFS between a Linux client running 14.04 and a WD Own Cloud NAS server - see here.






          share|improve this answer





















          • You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
            – JanC
            May 11 '16 at 11:40










          • Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
            – JanC
            May 11 '16 at 11:43










          • You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
            – Scooby-2
            Jun 17 '16 at 19:31










          • I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
            – Scooby-2
            Jun 17 '16 at 19:35










          • My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
            – Scooby-2
            Jun 17 '16 at 19:44















          up vote
          0
          down vote













          AFP is Apple File Protocol which, along with Samba, is natively supported by the WD NAS server. You can also use smbfs or cifs on your Linux box and mount the shares permanently (see here) or you can use NFS. NFS, particularly udp, offers better performance but poorer security. I use NFS because file ownership and permissions are an important issue to me and they are not fully supported in smbfs/cifs.



          I have just posted a how-to to set up NFS between a Linux client running 14.04 and a WD Own Cloud NAS server - see here.






          share|improve this answer





















          • You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
            – JanC
            May 11 '16 at 11:40










          • Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
            – JanC
            May 11 '16 at 11:43










          • You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
            – Scooby-2
            Jun 17 '16 at 19:31










          • I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
            – Scooby-2
            Jun 17 '16 at 19:35










          • My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
            – Scooby-2
            Jun 17 '16 at 19:44













          up vote
          0
          down vote










          up vote
          0
          down vote









          AFP is Apple File Protocol which, along with Samba, is natively supported by the WD NAS server. You can also use smbfs or cifs on your Linux box and mount the shares permanently (see here) or you can use NFS. NFS, particularly udp, offers better performance but poorer security. I use NFS because file ownership and permissions are an important issue to me and they are not fully supported in smbfs/cifs.



          I have just posted a how-to to set up NFS between a Linux client running 14.04 and a WD Own Cloud NAS server - see here.






          share|improve this answer












          AFP is Apple File Protocol which, along with Samba, is natively supported by the WD NAS server. You can also use smbfs or cifs on your Linux box and mount the shares permanently (see here) or you can use NFS. NFS, particularly udp, offers better performance but poorer security. I use NFS because file ownership and permissions are an important issue to me and they are not fully supported in smbfs/cifs.



          I have just posted a how-to to set up NFS between a Linux client running 14.04 and a WD Own Cloud NAS server - see here.







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Aug 5 '14 at 18:24









          Scooby-2

          4031514




          4031514












          • You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
            – JanC
            May 11 '16 at 11:40










          • Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
            – JanC
            May 11 '16 at 11:43










          • You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
            – Scooby-2
            Jun 17 '16 at 19:31










          • I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
            – Scooby-2
            Jun 17 '16 at 19:35










          • My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
            – Scooby-2
            Jun 17 '16 at 19:44


















          • You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
            – JanC
            May 11 '16 at 11:40










          • Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
            – JanC
            May 11 '16 at 11:43










          • You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
            – Scooby-2
            Jun 17 '16 at 19:31










          • I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
            – Scooby-2
            Jun 17 '16 at 19:35










          • My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
            – Scooby-2
            Jun 17 '16 at 19:44
















          You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
          – JanC
          May 11 '16 at 11:40




          You should not use NFS with UDP. Not because it would be less secure, but because it's not unlikely that you will lose data on fast modern networks.
          – JanC
          May 11 '16 at 11:40












          Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
          – JanC
          May 11 '16 at 11:43




          Also, you should post answers here on the site, not (only) elsewhere with a link to a site that might disappear in the future.
          – JanC
          May 11 '16 at 11:43












          You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
          – Scooby-2
          Jun 17 '16 at 19:31




          You will not "lose data" using NFS with UDP. IBM states “NFS normally uses the UDP protocol (at R610 and above it can also use TCP)." The reference to R610 is the version of AIX, IBM's implementation of UNIX. UDP is used in HACMP environments (High Availability Clustered Multi Processing), Note the first two words. If data would likely be lost, it would not be suited to a high availability environment. TCP will be faster on a busy commercial network, but a system where a WD MyCloud is going to be will almost certainly be on a relatively quiet home network where UDP will outperform TCP.
          – Scooby-2
          Jun 17 '16 at 19:31












          I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
          – Scooby-2
          Jun 17 '16 at 19:35




          I do not agree on your statement regarding links to other sites where, as in this case, the link is to Ubuntu Forums. I don't think it is likely to disappear in the future, it would make more work and also cause unnecessary duplication.
          – Scooby-2
          Jun 17 '16 at 19:35












          My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
          – Scooby-2
          Jun 17 '16 at 19:44




          My references for quotes from IBM are: www-304.ibm.com/support/docview.wss?uid=nas8N1016376 and ibm.com/developerworks/aix/library/au-aix7networkoptimize2
          – Scooby-2
          Jun 17 '16 at 19:44


















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f420455%2fmounting-and-accessing-western-digitals-mycloud-nas%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

          Quarter-circle Tiles

          build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

          Mont Emei