List of nfs mounted filesystems in AIX The Next CEO of Stack OverflowWhy is file ownership inconsistent between two systems mounting the same NFS share?NFS mount to a subdirectory of already mounted directoryNFS partition mounted as read onlyNFS mounting wrong File SystemIs it possible to create a NFS Share from a CIFS mounted directory?Can't export NFS already-mounted folderCheck from Client if NFS is running on ServerAIX nfs mount-point disappears (not seen even from parent dir) until umount/mountMounting nested ZFS filesystems exported via NFSAllow www-data to read files from NFS share

How do I transpose the 1st and -1th levels of an arbitrarily nested array?

What does "Its cash flow is deeply negative" mean?

What benefits would be gained by using human laborers instead of drones in deep sea mining?

Is micro rebar a better way to reinforce concrete than rebar?

Sending manuscript to multiple publishers

sp_blitzCache results Memory grants

Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis

How to count occurrences of text in a file?

To not tell, not take, and not want

Why has the US not been more assertive in confronting Russia in recent years?

Why does standard notation not preserve intervals (visually)

If the heap is initialized for security, then why is the stack uninitialized?

Is "for causing autism in X" grammatical?

Return the Closest Prime Number

Can we say or write : "No, it'sn't"?

How did people program for Consoles with multiple CPUs?

Would this house-rule that treats advantage as a +1 to the roll instead (and disadvantage as -1) and allows them to stack be balanced?

How do I avoid eval and parse?

Why do we use the plural of movies in this phrase "We went to the movies last night."?

Novel about a guy who is possessed by the divine essence and the world ends?

How do I reset passwords on multiple websites easily?

How do I go from 300 unfinished/half written blog posts, to published posts?

How to safely derail a train during transit?

Why don't programming languages automatically manage the synchronous/asynchronous problem?



List of nfs mounted filesystems in AIX



The Next CEO of Stack OverflowWhy is file ownership inconsistent between two systems mounting the same NFS share?NFS mount to a subdirectory of already mounted directoryNFS partition mounted as read onlyNFS mounting wrong File SystemIs it possible to create a NFS Share from a CIFS mounted directory?Can't export NFS already-mounted folderCheck from Client if NFS is running on ServerAIX nfs mount-point disappears (not seen even from parent dir) until umount/mountMounting nested ZFS filesystems exported via NFSAllow www-data to read files from NFS share










1















I wanted to get the list of nfs mounted filesystems from some file present in the AIX machine. Is it present in some file? Currently, the only way that I know, is using mount system call and then parsing the output accordingly.










share|improve this question


























    1















    I wanted to get the list of nfs mounted filesystems from some file present in the AIX machine. Is it present in some file? Currently, the only way that I know, is using mount system call and then parsing the output accordingly.










    share|improve this question
























      1












      1








      1


      0






      I wanted to get the list of nfs mounted filesystems from some file present in the AIX machine. Is it present in some file? Currently, the only way that I know, is using mount system call and then parsing the output accordingly.










      share|improve this question














      I wanted to get the list of nfs mounted filesystems from some file present in the AIX machine. Is it present in some file? Currently, the only way that I know, is using mount system call and then parsing the output accordingly.







      nfs aix






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      Ankit ShubhamAnkit Shubham

      1162




      1162




















          3 Answers
          3






          active

          oldest

          votes


















          2














          In AIX to get the NFS mounted filesystems you can use command like:



          df -T remote


          or command mount



          mount|grep -i nfs





          share|improve this answer






























            1














            As an alternative to -T remote, as Romeo mentioned, you can tell df to look for certain filesystem types (vfstype):



             df -T nfs; df -T nfs3; df -T nfs4; 


            ... where I picked out the unique, supported NFS types from /etc/vfs with something like awk '$1 ~ /nfs/' /etc/vfs. Note that nfs3 is the same vfs_number as nfsv3, so pick one or the other.






            share|improve this answer






























              0














              df -Th | grep nfs should do the job (-T to show the type / -h human readable).



              Also under any Unix, there's a /etc/mtab which contains the currently mounted FS.
              It's the pending of /etc/fstab with the difference that's dynamic so include also the manually mounted FS.






              share|improve this answer




















              • 1





                There is no /etc/mtab or /etc/fstab file

                – Ankit Shubham
                yesterday











              • df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                – Jeff Schaller
                yesterday











              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%2f509168%2flist-of-nfs-mounted-filesystems-in-aix%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown

























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              2














              In AIX to get the NFS mounted filesystems you can use command like:



              df -T remote


              or command mount



              mount|grep -i nfs





              share|improve this answer



























                2














                In AIX to get the NFS mounted filesystems you can use command like:



                df -T remote


                or command mount



                mount|grep -i nfs





                share|improve this answer

























                  2












                  2








                  2







                  In AIX to get the NFS mounted filesystems you can use command like:



                  df -T remote


                  or command mount



                  mount|grep -i nfs





                  share|improve this answer













                  In AIX to get the NFS mounted filesystems you can use command like:



                  df -T remote


                  or command mount



                  mount|grep -i nfs






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered yesterday









                  Romeo NinovRomeo Ninov

                  6,90432129




                  6,90432129























                      1














                      As an alternative to -T remote, as Romeo mentioned, you can tell df to look for certain filesystem types (vfstype):



                       df -T nfs; df -T nfs3; df -T nfs4; 


                      ... where I picked out the unique, supported NFS types from /etc/vfs with something like awk '$1 ~ /nfs/' /etc/vfs. Note that nfs3 is the same vfs_number as nfsv3, so pick one or the other.






                      share|improve this answer



























                        1














                        As an alternative to -T remote, as Romeo mentioned, you can tell df to look for certain filesystem types (vfstype):



                         df -T nfs; df -T nfs3; df -T nfs4; 


                        ... where I picked out the unique, supported NFS types from /etc/vfs with something like awk '$1 ~ /nfs/' /etc/vfs. Note that nfs3 is the same vfs_number as nfsv3, so pick one or the other.






                        share|improve this answer

























                          1












                          1








                          1







                          As an alternative to -T remote, as Romeo mentioned, you can tell df to look for certain filesystem types (vfstype):



                           df -T nfs; df -T nfs3; df -T nfs4; 


                          ... where I picked out the unique, supported NFS types from /etc/vfs with something like awk '$1 ~ /nfs/' /etc/vfs. Note that nfs3 is the same vfs_number as nfsv3, so pick one or the other.






                          share|improve this answer













                          As an alternative to -T remote, as Romeo mentioned, you can tell df to look for certain filesystem types (vfstype):



                           df -T nfs; df -T nfs3; df -T nfs4; 


                          ... where I picked out the unique, supported NFS types from /etc/vfs with something like awk '$1 ~ /nfs/' /etc/vfs. Note that nfs3 is the same vfs_number as nfsv3, so pick one or the other.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered yesterday









                          Jeff SchallerJeff Schaller

                          44.3k1162143




                          44.3k1162143





















                              0














                              df -Th | grep nfs should do the job (-T to show the type / -h human readable).



                              Also under any Unix, there's a /etc/mtab which contains the currently mounted FS.
                              It's the pending of /etc/fstab with the difference that's dynamic so include also the manually mounted FS.






                              share|improve this answer




















                              • 1





                                There is no /etc/mtab or /etc/fstab file

                                – Ankit Shubham
                                yesterday











                              • df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                                – Jeff Schaller
                                yesterday















                              0














                              df -Th | grep nfs should do the job (-T to show the type / -h human readable).



                              Also under any Unix, there's a /etc/mtab which contains the currently mounted FS.
                              It's the pending of /etc/fstab with the difference that's dynamic so include also the manually mounted FS.






                              share|improve this answer




















                              • 1





                                There is no /etc/mtab or /etc/fstab file

                                – Ankit Shubham
                                yesterday











                              • df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                                – Jeff Schaller
                                yesterday













                              0












                              0








                              0







                              df -Th | grep nfs should do the job (-T to show the type / -h human readable).



                              Also under any Unix, there's a /etc/mtab which contains the currently mounted FS.
                              It's the pending of /etc/fstab with the difference that's dynamic so include also the manually mounted FS.






                              share|improve this answer















                              df -Th | grep nfs should do the job (-T to show the type / -h human readable).



                              Also under any Unix, there's a /etc/mtab which contains the currently mounted FS.
                              It's the pending of /etc/fstab with the difference that's dynamic so include also the manually mounted FS.







                              share|improve this answer














                              share|improve this answer



                              share|improve this answer








                              edited yesterday









                              Kusalananda

                              138k17258428




                              138k17258428










                              answered yesterday









                              admstgadmstg

                              754




                              754







                              • 1





                                There is no /etc/mtab or /etc/fstab file

                                – Ankit Shubham
                                yesterday











                              • df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                                – Jeff Schaller
                                yesterday












                              • 1





                                There is no /etc/mtab or /etc/fstab file

                                – Ankit Shubham
                                yesterday











                              • df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                                – Jeff Schaller
                                yesterday







                              1




                              1





                              There is no /etc/mtab or /etc/fstab file

                              – Ankit Shubham
                              yesterday





                              There is no /etc/mtab or /etc/fstab file

                              – Ankit Shubham
                              yesterday













                              df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                              – Jeff Schaller
                              yesterday





                              df -Th is an error on AIX: "df: not a filterable VFS type"; also note that grepping for nfs could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.

                              – Jeff Schaller
                              yesterday

















                              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%2f509168%2flist-of-nfs-mounted-filesystems-in-aix%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

                              រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

                              QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

                              PDF-ში გადმოწერა სანავიგაციო მენიუproject page