Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

benten1012

macrumors newbie
Original poster
Oct 14, 2010
1
0
Hi folks, can anyone tell me the best way to move an NFS home account to a local user account of a macbook pro? I'm hoping for a seamless transition retaining all of the shortname, password, permissions, etc.

Can I copy the NFS users with: $ sudo cp -pr /Volumes/nfsusers/userexample /Users/

And then create a local account on the macbook with the same username/pw?

Thanks!
 
assuming that the NFS mount has "root" permission on the share

your command should work or I would usually run the following to copy the directory tree

$ sudo su -
# (cd /Volumes/nfsusers; tar cf - . ) | ( cd /Users; tar xpf - )

i'll create the users locally beforehand ... but should not matter.

have fun
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.