> I rebuilt my file server from bare metal today (fedora core 3). > Everything is running well and samba is working (THANK GOD), but for > some dumb reason, I cannot get write permissions on my home directory > export from the file server > > The /etc/exports file looks like this > > /home 192.168.0.1/255.255.255.0 (synch,no_root_squash,rw) There should not be a space between the address and the open parenthesis. With that space, nfsd defaults read-only. Change it to this: /home 192.168.0.1/255.255.255.0(synch,no_root_squash,rw) Cheers, Thomas