Originally posted by: ThatSeattleGuy
Sorry, some creative edits went awry. Here's a better version of the question:
I'm administering a client's VERY old AIX 4.3.3 system. I'm trying to NFS mount a directory (/transfer) on the AIX system from a modern (RHEL 5.5) Linux client. I'm able to make the mount happen fine, and I've deliberately (for testing) made everything as loose as possible:
-
more /etc/exports
/transfer -rw=*,access=*,root=*
-
exportfs -va
exportfs: 1831-187 re-exported /transfer
-
showmount -e
export list for aix:
/transfer *
But while the Linux client can mount this fine, and read it, it only sees it as read-only, no matter what I do:
root@linux ~# cat /etc/fstab
aix:/transfer /mnt/aixxfer nfs defaults,noacl 0 0
root@linux ~# mount /mnt/aixxfer
root@linux ~# mount
aix:/transfer on /mnt/aixxfer type nfs (rw,noacl,addr=192.168.1.2)
root@linux ~# ls -la /mnt/aixxfer/
total 460
drwxrwsrwx 10 root sys 512 Sep 23 14:29 .
drwxr-xr-x 3 root root 4096 Sep 23 14:36 ..
drwxr-sr-x 11 root root 512 Nov 3 2009 bci
drwxrwx--- 2 root root 512 Jun 25 2009 lost+found
root@linux ~# touch /mnt/aixxfer/xyzzy touch: cannot touch `/mnt/aixxfer/xyzzy': Read-only file system I've banged on this for a few hours trying MANY different options on both sides, and using any number of different userids on the linux side (root, a common user with the same UID, an anonymous user). No joy.
What am I doing wrong and/or how can I trace what's going wrong here?
Many thanks.
TSG
#AIX-Forum