AIX系统如何检查一个对象是不是被mount上了?用啥user在哪个路径下用啥命令确认?谢谢。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AIX系统如何检查一个对象是不是被mount上了?用啥user在哪个路径下用啥命令确认?谢谢。相关的知识,希望对你有一定的参考价值。

参考技术A 直接输入mount命令即可。
默认路径。
参考技术B df -g查看所有被挂在的文件系统本回答被提问者采纳

AIX下面挂载Linux文件系统mount: 1831-008

aix下面挂载linux文件系统,失败,如下代码


# mount 172.16.4.176:/Tbackup /Tbackup/dbra

mount: 1831-008 giving up on:

172.16.4.176:/Tbackup

vmount: Operation not permitted.

----------------------------------------------------------------------

# nfso -p -o nfs_use_reserved_ports=1

Setting nfs_use_reserved_ports to 1

Setting nfs_use_reserved_ports to 1 in nextboot file

# mount 172.16.4.176:/Tbackup /Tbackup/dbra


#

ps:

5.2版本下执行:

nfso -o nfs_use_reserved_ports=1

5.2(含)以上执行:

nfso -p -o nfs_use_reserved_ports=1


官方参考: 


Technote (FAQ) 

  

Question 


When nfs mounting from a Linux NFS server, customer gets the following

error:


vmount: operation not permited 

  

 

Answer 


--------------------------------------------------------------------------------


Environment

AIX versions 4.x and 5.x 

Sometimes Linux NFS servers will do port checking and require that the NFS client use a reserved port.


 nfso -o nfs_use_reserved_ports=1

If the mount is going to be permanent, then the change needs to survive across a reboot. The nfs option must be changed permanently. On AIX 4.x and 5.1, the command above should be added to the startup scripts (possibly /etc/rc.nfs). On AIX 5.2 and above, the change can be made permanent by adding the -p flag.


 nfso -p -o nfs_use_reserved_ports=1


本篇文章来源于 Linux公社网站(www.linuxidc.com)  原文链接:https://www.linuxidc.com/Linux/2011-02/31831.htm


以上是关于AIX系统如何检查一个对象是不是被mount上了?用啥user在哪个路径下用啥命令确认?谢谢。的主要内容,如果未能解决你的问题,请参考以下文章

AIX下面挂载Linux文件系统mount: 1831-008

AIX mount nfs 文件系统失败

AIX系统mount文件系统失败

如何解决AIX的文件系统故障

如何在AIX平台上mount ISO文件

怎样在AIX中Mount Redhat Linux上的nfs文件系统?