Sunfish and Raspbian GNU/Linux 12 (bookworm)
Alan Williams (2601) 88 posts |
I have just spent the last four or so hours getting this to work, so this may just save somebody else some time. Eventually I discovered that the syntax of the /etc/exports file has changed. / 192.168.9.*(rw,no_root_squash,async,no_subtree_check) With Bookworm nothing can mount with this, from a linux machine you will get the following error, Sunfish will just time out: They seem to have changed to the CIDR /netmask notation and you have to change the export line like this: / 192.168.9.0/24(rw,no_root_squash,async,no_subtree_check) I also found people saying to check your /etc/nfs.conf and make sure udp=y I also did this: chmod +rx / may or may not have been necessary, I think I had to do this on the last pi where I tried to export / |
David J. Ruck (33) 1635 posts |
I’ve always used the second format, and it works with SunFish. |
Steve Pampling (1551) 8170 posts |
I was curious, so I threw a query for each one at Google. |