NFS client not see one shareautomount nfs: autofs timeout settings for unreliable servers - how to avoid...

Is this password scheme legit?

Term used to describe a person who predicts future outcomes

Are sweatpants frowned upon on flights?

What happens after an Aboleth's body is remade in the Elemental Plane of Water following its death?

How do I portray irrational anger in first person?

Defending Castle from Zombies

Another "Ask One Question" Question

What is the name of this plot that has rows with two connected dots?

Find feasible point in polynomial time in linear programming

Why can't I identify major and minor chords?

Employing a contractor proving difficult

Alternatives to Network Backup

Group riding etiquette

Printing a list as "a, b, c." using Python

In Endgame, wouldn't Stark have remembered Hulk busting out of the stairwell?

Is the internet in Madagascar faster than in UK?

Should I ask for a raise one month before the end of an internship?

How to prevent a hosting company from accessing a VM's encryption keys?

How to say "I only speak one language which is English" in French?

Get contents before a colon

Is there an in-universe explanation given to the senior Imperial Navy Officers as to why Darth Vader serves Emperor Palpatine?

Can a network vulnerability be exploited locally?

Was the six engine Boeing-747 ever seriously considered by Boeing?

Is there a word or phrase that means "use other people's wifi or Internet service without consent"?



NFS client not see one share


automount nfs: autofs timeout settings for unreliable servers - how to avoid hangup?NFS permissions across multiple LXC VM'sWhy do I get “no credentials cache” error when mounting Kerberized NFS share?Temporarily cache and write-buffer a directory (to speed up a build process on an NFS share)How do I automatically export NFS shares on reboot?NFS + Kerberos: access denied by server while mountingarchlinux netboot diskless node/system, systemd on NFS (v4) fails, rpc.idmapdZFS NFS export user mapping






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







0















I have separate partitions on server: boot, home, tmp, usr, var, data. I want to share it through NFS. I have created bind mount for root directory to /srv/nfs.



/ /srv/nfs  none   bind,nofail   0   0


My server exports below



/srv/nfs    192.168.4.0/24(rw,sync,no_wdelay,crossmnt,fsid=0) 192.168.1.0/24(rw,sync,no_wdelay,crossmnt,fsid=0)
/ 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/boot 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/home 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/tmp 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/usr 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/var 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
/data 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)
/ehdd 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)


On client I mount shares like



IP="192.168.1.68"
mount -t nfs -o vers=4 "$IP":/ /desktop


On client I can see all shares except usr. It is empty. I don't know why, because it has the same config as var for example. Maybe some nfs limitation.
I have nfs-utils-2.4.1-2 on ArchLinux.










share|improve this question

































    0















    I have separate partitions on server: boot, home, tmp, usr, var, data. I want to share it through NFS. I have created bind mount for root directory to /srv/nfs.



    / /srv/nfs  none   bind,nofail   0   0


    My server exports below



    /srv/nfs    192.168.4.0/24(rw,sync,no_wdelay,crossmnt,fsid=0) 192.168.1.0/24(rw,sync,no_wdelay,crossmnt,fsid=0)
    / 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /boot 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /home 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /tmp 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /usr 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /var 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
    /data 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)
    /ehdd 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)


    On client I mount shares like



    IP="192.168.1.68"
    mount -t nfs -o vers=4 "$IP":/ /desktop


    On client I can see all shares except usr. It is empty. I don't know why, because it has the same config as var for example. Maybe some nfs limitation.
    I have nfs-utils-2.4.1-2 on ArchLinux.










    share|improve this question





























      0












      0








      0








      I have separate partitions on server: boot, home, tmp, usr, var, data. I want to share it through NFS. I have created bind mount for root directory to /srv/nfs.



      / /srv/nfs  none   bind,nofail   0   0


      My server exports below



      /srv/nfs    192.168.4.0/24(rw,sync,no_wdelay,crossmnt,fsid=0) 192.168.1.0/24(rw,sync,no_wdelay,crossmnt,fsid=0)
      / 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /boot 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /home 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /tmp 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /usr 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /var 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /data 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)
      /ehdd 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)


      On client I mount shares like



      IP="192.168.1.68"
      mount -t nfs -o vers=4 "$IP":/ /desktop


      On client I can see all shares except usr. It is empty. I don't know why, because it has the same config as var for example. Maybe some nfs limitation.
      I have nfs-utils-2.4.1-2 on ArchLinux.










      share|improve this question
















      I have separate partitions on server: boot, home, tmp, usr, var, data. I want to share it through NFS. I have created bind mount for root directory to /srv/nfs.



      / /srv/nfs  none   bind,nofail   0   0


      My server exports below



      /srv/nfs    192.168.4.0/24(rw,sync,no_wdelay,crossmnt,fsid=0) 192.168.1.0/24(rw,sync,no_wdelay,crossmnt,fsid=0)
      / 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /boot 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /home 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /tmp 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /usr 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /var 192.168.4.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99,subtree_check) 192.168.1.0/24(ro,sync,no_wdelay,all_squash,insecure,anonuid=99,anongid=99)
      /data 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)
      /ehdd 192.168.4.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99) 192.168.1.0/24(rw,sync,no_wdelay,no_root_squash,insecure,anonuid=99,anongid=99)


      On client I mount shares like



      IP="192.168.1.68"
      mount -t nfs -o vers=4 "$IP":/ /desktop


      On client I can see all shares except usr. It is empty. I don't know why, because it has the same config as var for example. Maybe some nfs limitation.
      I have nfs-utils-2.4.1-2 on ArchLinux.







      nfs






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 1 hour ago







      Kirill Bugaev

















      asked 1 hour ago









      Kirill BugaevKirill Bugaev

      162 bronze badges




      162 bronze badges

























          0






          active

          oldest

          votes














          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "106"
          };
          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: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          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%2funix.stackexchange.com%2fquestions%2f537992%2fnfs-client-not-see-one-share%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Unix & Linux Stack Exchange!


          • 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%2funix.stackexchange.com%2fquestions%2f537992%2fnfs-client-not-see-one-share%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

          Taj Mahal Inhaltsverzeichnis Aufbau | Geschichte | 350-Jahr-Feier | Heutige Bedeutung | Siehe auch |...

          Baia Sprie Cuprins Etimologie | Istorie | Demografie | Politică și administrație | Arii naturale...

          Ciclooctatetraenă Vezi și | Bibliografie | Meniu de navigare637866text4148569-500570979m