I am not an AIX expert, but NFS is a standard - I guess IBM even licenced it from SUN.
The NFS version is "negotiated" once, at mount time. The client simply asks the server via rpcinfo what versions are available and picks the highest version that it supports itself.
A test command:
The client stores the version in the mount values, and sticks to it. You can view the mount values, at least some of them with the mount or mount -v (verbose) command.
In this case I suspect a problem or odd behavior on the NFS server.
Last edited by MadeInGermany; 04-25-2020 at 04:15 AM..
I am new in Ubuntu and i use Ubuntu 7.10, and have problem to mount automatic when i reboot computer,
Here is my /etc/fstab
192.168.0.91:/home/DATA/it /home/USER/usertest/Documents/Z nfs defaults 0 0
I try many option in that line, but the result is same, I cannot automatic mounting the... (5 Replies)
Hi,
Unix based,
My harddrive won't boot and I'm looking for a reliable tool
that can mount a hdd on Windows XP and show me the files
stored on a NFS system.
I tried the tool: Ext2IFS but this didn't work.
I found a lot of tools on google to mount nfs share thru a network
but that's... (1 Reply)
this is probably a bit dumb ...but i read somewhere that one of the nfs versions can be mounted on a windows 2003 server ..if yes ..does anyone know how this can be achieved (1 Reply)
Hi, How can i mount an NFS share on a solaris machine a filesystem ?
I have enabled nfs on a windows server and the shares has given read/write access to it to all the users. I would like to mount it on around 10 different solaris boxes with different versions of solaris.
Thanks in advance. (2 Replies)
Hello,
I have a few Ubuntu 9.10 laptops I'm trying to learn NFS sharing with. I am just experimenting on this right now, so no harsh words about the security of what I'm playing with, please ;)
Below are the configs
/etc/exports on host
/home/woodnt/Homeschool... (2 Replies)
The UPS connected to the Disk Array portion of my Windows 2003 NAS burned up over the weekend. Reconnected it to a new UPS and re-booted the NAS box. Since then I have not been able to get my HPUX 10.2 box to mount the shared drives on the NAS. At boot, the NFS client & server subsystems do a... (0 Replies)
I am trying to set a share between windows and an AIX server. I was able to do this to a windows 2008 server. I am now trying to get this to worked on a windows 7 enterprise pc. below is what i get. I have turned off the firewall wall in windows the user is an admin in the pc. same account works... (6 Replies)
Hi All,
Is there a command or script which will push a file from Windows server to Linux box? using the mount command. I want the details or document of the whole process please.
I want this script to run every 30 minutes to push the file from windows to unix
Thanks (16 Replies)
I need a help of good people with effective bash script to mount nfs shared,
By the way I did the searches, since i haven't found that someone wrote a script like this in the past, I'm sure it will serve more people.
The scenario as follow:
An NFS Client with Daily CRON , running bash script... (4 Replies)
I have a Solaris 10 server, I'm trying to mount a share from a Windows nfs server. If I add this entry (tst-walnut:/test_sap_nfs - /majid nfs - yes rw,soft) to my /etc/vfstab, then I can mount, but when I create a file by root:root, the file owner changes to... (1 Reply)
Discussion started by: Hiroshi
1 Replies
LEARN ABOUT XFREE86
nfsmount.conf
NFSMOUNT.CONF(5) File Formats Manual NFSMOUNT.CONF(5)NAME
nfsmount.conf - Configuration file for NFS mounts
SYNOPSIS
Configuration file for NFS mounts that allows options to be set globally, per server or per mount point.
DESCRIPTION
The configuration file is made up of multiple sections followed by variables associated with that section. A section is defined by a
string enclosed by [ and ] branches. Variables are assignment statements that assign values to particular variables using the = operator,
as in Proto=Tcp. Sections are broken up into three basic categories: Global options, Server options and Mount Point options.
[ NFSMount_Global_Options ] - This statically named section defines all of the global mount options that can be applied to every NFS mount.
[ Server "Server_Name" ] - This section defines all the mount options that should be used on mounts to a particular NFS server. The
"Server_Name" strings needs to be surrounded by '"' and be an exact match of the server name used in the mount command.
[ MountPoint "Mount_Point" ] - This section defines all the mount options that should be used on a particular mount point. The
"Mount_Point" string needs to be surrounded by '"' and be an exact match of the mount point used in the mount command.
EXAMPLES
These are some example lines of how sections and variables are defined in the configuration file.
[ NFSMount_Global_Options ]
Proto=Tcp
The TCP protocol will be used on every NFS mount.
[ Server "nfsserver.foo.com" ]
rsize=32k
wsize=32k
A 33k (32768 bytes) block size will be used as the read and write size on all mounts to the 'nfsserver.foo.com' server.
[ MountPoint "/export/home" ]
Background=True
All mounts to the '/export/home' export will be performed in the background (i.e. done asynchronously).
FILES
/etc/nfsmount.conf
Default NFS mount configuration file
SEE ALSO nfs(5), mount(8),
9 Mar 2008 NFSMOUNT.CONF(5)