Skip to main content
replaced http://serverfault.com/ with https://serverfault.com/
Source Link

Although I did not find out what was going on, despite this insightful answerthis insightful answer over on ServerFault, I did, however, find a work around. Just use NFS3 instead of NSF4. To do so, just add nfsvers=3 to the /etc/fstab/ file like so

/etc/fstab:

192.168.1.102:/home/USER/Documents/raspi/raspi1 /home/raspi1 nfs nfsvers=3,rsize=8192,wsize=8192,rw,auto,nolock

This fixed the UID=4294967294 issue, although it has led to another issue whereby the file is owned by a user other than raspi1 (user pi), see herehere.

Although I did not find out what was going on, despite this insightful answer over on ServerFault, I did, however, find a work around. Just use NFS3 instead of NSF4. To do so, just add nfsvers=3 to the /etc/fstab/ file like so

/etc/fstab:

192.168.1.102:/home/USER/Documents/raspi/raspi1 /home/raspi1 nfs nfsvers=3,rsize=8192,wsize=8192,rw,auto,nolock

This fixed the UID=4294967294 issue, although it has led to another issue whereby the file is owned by a user other than raspi1 (user pi), see here.

Although I did not find out what was going on, despite this insightful answer over on ServerFault, I did, however, find a work around. Just use NFS3 instead of NSF4. To do so, just add nfsvers=3 to the /etc/fstab/ file like so

/etc/fstab:

192.168.1.102:/home/USER/Documents/raspi/raspi1 /home/raspi1 nfs nfsvers=3,rsize=8192,wsize=8192,rw,auto,nolock

This fixed the UID=4294967294 issue, although it has led to another issue whereby the file is owned by a user other than raspi1 (user pi), see here.

Source Link
puk
  • 717
  • 4
  • 14
  • 27

Although I did not find out what was going on, despite this insightful answer over on ServerFault, I did, however, find a work around. Just use NFS3 instead of NSF4. To do so, just add nfsvers=3 to the /etc/fstab/ file like so

/etc/fstab:

192.168.1.102:/home/USER/Documents/raspi/raspi1 /home/raspi1 nfs nfsvers=3,rsize=8192,wsize=8192,rw,auto,nolock

This fixed the UID=4294967294 issue, although it has led to another issue whereby the file is owned by a user other than raspi1 (user pi), see here.