Here is the setup:-
Desktop - fred4 - ip address 192.168.0.4 with 2 x USB expansion hard drives:-
500Gbdrive - /dev/sdb mounted automatically at /media/500Gbdrive
2Tbdrive - /dev/sdc mounted automatically at /media/2Tbdrive
fred4 - /etc/hosts file:-
127.0.0.1 fred4 localhost.localdomain localhost4 localhost4.localdomain4
::1 fred4 localhost.localdomain localhost6 localhost6.localdomain6
::0 fred4 fred4.workgroup fred4.workgroup6 workgroup6
192.168.0.1 router router.workgroup
192.168.0.2 HPD9D3DE
192.168.0.3 fred3 fred3.workgroup
192.168.0.4 fred4 fred4.workgroup
fred4 - /etc/exports
/home/bob fred3(rw,insecure,sync,no_wdelay,no_subtree_check, insecure_locks,nohide,no_root_squash)
/media/2Tbdrive fred3 (rw,insecure,sync,no_wdelay,no_subtree_check,insec ure_locks,nohide,no_root_squash)
/media/500Gbdrive fred3 (rw,insecure,sync,no_wdelay,no_subtree_check,insec ure_locks,nohide,no_root_squash)
laptop - fred3 - ip address 192.168.0.3
fred3 - /etc/hosts:-
127.0.0.1 fred3 localhost.localdomain localhost4 localhost4.localdomain4
::1 fred3 localhost.localdomain localhost6 localhost6.localdomain6
::0 fred3 fred3.workgroup fred3.workgroup6 workgroup6
192.168.0.1 router router.workgroup
192.168.0.2 HPD9D3DE
192.168.0.3 fred3 fred3.workgroup
192.168.0.4 fred4 fred4.workgroup
fred3 - /etc/exports :-
/home/bob fred4 (rw,insecure,sync,no_wdelay,no_subtree_check,insec ure_locks,nohide,no_root_squash)
I can mount fred4:/home/bob using command :- "sudo mount -t nfs4 fred4:/home/bob /mnt/fred4" and it works fine.
relevant part of the result of the "mount" command :-
fred4:/home/bob on /mnt/fred4 type nfs4 (rw,relatime,vers=4,rsize=262144,wsize=262144,naml en=255,hard,proto=tcp,port=0,timeo=600,retrans=2,s ec=sys,clientaddr=192.168.0.3,minorversion=0,local _lock=none,addr=192.168.0.4)
If I try to mount the USB drives using commands "sudo mount -t nfs4 fred4:/media/500Gbdrive /mnt/500Gbdrive"
or "sudo mount -t nfs4 fred4:/media/2Tbdrive /mnt/2Tbdrive" it just times out
With F14 I was able to mount the usb hard drives as above without problems.
Any ideas would be gratefully received
Bob