You will need to match uids across your unix systems if you want full read/write priviledges on nfs mounted disks. The sooner you do this, the better, since you will not have lots of files around with the wrong uid.
Now you need to change ownership on all your files that were created with the old uid.
% cd /Users [directory above home] % sudo chown -R {your user name}:{your group name} {your user name} eg: % sudo chown -R salathe:admin salathe
% cd / % ls -lR | grep [old_uid]to find anything w/the old uid (might work better as root). Then chown as above (-R is only needed to chown recursively down a directory tree).