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
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
add a comment |
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
add a comment |
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
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
nfs aix
asked yesterday
Ankit ShubhamAnkit Shubham
1162
1162
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
In AIX to get the NFS mounted filesystems you can use command like:
df -T remote
or command mount
mount|grep -i nfs
add a comment |
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.
add a comment |
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.
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 fornfs
could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.
– Jeff Schaller♦
yesterday
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%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
In AIX to get the NFS mounted filesystems you can use command like:
df -T remote
or command mount
mount|grep -i nfs
add a comment |
In AIX to get the NFS mounted filesystems you can use command like:
df -T remote
or command mount
mount|grep -i nfs
add a comment |
In AIX to get the NFS mounted filesystems you can use command like:
df -T remote
or command mount
mount|grep -i nfs
In AIX to get the NFS mounted filesystems you can use command like:
df -T remote
or command mount
mount|grep -i nfs
answered yesterday
Romeo NinovRomeo Ninov
6,90432129
6,90432129
add a comment |
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
answered yesterday
Jeff Schaller♦Jeff Schaller
44.3k1162143
44.3k1162143
add a comment |
add a comment |
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.
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 fornfs
could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.
– Jeff Schaller♦
yesterday
add a comment |
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.
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 fornfs
could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.
– Jeff Schaller♦
yesterday
add a comment |
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.
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.
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 fornfs
could result in a false-positive on filesystems that happened to have "nfs" in their name somewhere.
– Jeff Schaller♦
yesterday
add a comment |
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 fornfs
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f509168%2flist-of-nfs-mounted-filesystems-in-aix%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown