Linux AIX间的NFS mount

简介: When linux share folder with windows, we use smb(samba) on linux for win OS to use, use mount on linux to use win OS' folder.When linux share folder with unix, we use nfs between linux and unix.N
When linux share folder with windows, we use smb(samba) on linux for win OS to use, use mount on linux to use win OS' folder.
When linux share folder with unix, we use nfs between linux and unix.

NFS, Net File System.NFS permit a OS to share folder and file on net.Using NFS,user and program can visit files on web side just like local ones.

Record here for check.

1.AIX share folder, linux mount folder

AIX side:(as root)

a. check if there is /etc/exports.if no, create one.

b. start nfs service, cmd: smit -> 。。。->  nfs -> Configure NFS on This System -> Start NFS

c. set export, cmd: smit -> 。。。->  nfs ->Add a Directory to Exports List -> PATHNAME of directory to export;    it will modify /etc/exports, you can also use exportfs to export or modify /etc/exports directly;

d. showmount -e IP / hostname to ensure if exports works well on localhost.

f. add aim IP and host name in /etc/hhosts

Linux part:

a. service portmap start, service nfs start

b. mount IP:/folder folder



2.AIX mount folder,linux share folder

Linux side:

a. vi /etc/exports,  add folder to share and aim IP, such as:

/media 1.2.3.4[rw,sync,insecure,no_root_squash] 5.6.7.8[rw,sync,insecure,no_root_squash]

then 1.2.3.4 and 5.6.7.8 can use this folder

b. service portmap start, service nfs start

c. showmount -e IP/hostname

AIX side:(as root)

a. nfso -p -o nfs_use_reserved_ports=1

b. mount IP:/folder folder 


相关文章
|
28天前
|
Ubuntu Linux Windows
linux 挂载硬盘报错 "mount: unknown filesystem type 'ntfs'"
【10月更文挑战第7天】在Linux系统中挂载硬盘时遇到“mount: unknown filesystem type 'ntfs'”错误,是因为Linux默认可能不支持NTFS文件系统。本文提供了解决方案:安装NTFS-3G软件包以支持NTFS,并检查内核是否已加载NTFS模块。对于Ubuntu/Debian系统,可使用`sudo apt-get install ntfs-3g`命令;对于CentOS/RHEL系统,则需先安装EPEL仓库再安装NTFS-3G。此外,还需确认硬盘设备名正确无误,并创建合适的挂载点目录。
259 2
|
3月前
|
Ubuntu Linux
内核实验(四):Qemu调试Linux内核,实现NFS挂载
本文介绍了在Qemu虚拟机中配置NFS挂载的过程,包括服务端的NFS服务器安装、配置和启动,客户端的DHCP脚本添加和开机脚本修改,以及在Qemu中挂载NFS、测试连通性和解决挂载失败的方法。
141 0
内核实验(四):Qemu调试Linux内核,实现NFS挂载
|
3月前
|
运维 Ubuntu 安全
在Linux中,如何配置NFS共享?
在Linux中,如何配置NFS共享?
|
3月前
|
网络协议 Ubuntu Linux
在Linux中,如何使用NFS和Samba共享文件和目录?
在Linux中,如何使用NFS和Samba共享文件和目录?
|
3月前
|
存储 Linux 网络安全
[linux]搭建nfs
[linux]搭建nfs
|
3月前
|
存储 Linux Shell
【应用服务 App Service】App Service For Linux 中如何挂载一个共享文件夹呢? Mount Azure Storage Account File Share
【应用服务 App Service】App Service For Linux 中如何挂载一个共享文件夹呢? Mount Azure Storage Account File Share
|
3月前
|
存储 Linux 网络安全
【Azure 存储服务】如何把开启NFS 3.0协议的Azure Blob挂载在Linux VM中呢?(NFS: Network File System 网络文件系统)
【Azure 存储服务】如何把开启NFS 3.0协议的Azure Blob挂载在Linux VM中呢?(NFS: Network File System 网络文件系统)
|
3月前
|
Ubuntu Linux 网络安全
在Linux中,如何配置Samba或NFS文件共享?
在Linux中,如何配置Samba或NFS文件共享?
|
3月前
|
Linux
在Linux中,如何挂载远程NFS共享或iSCSI目标?
在Linux中,如何挂载远程NFS共享或iSCSI目标?
|
6月前
|
Linux
Linux安装NFS挂载NFS卸载客户端服务端都有
Linux安装NFS挂载NFS卸载客户端服务端都有
141 0