OSX Filter: Moving a user account to a different machine...
July 13, 2005 12:05 PM
Subscribe
OSX Filter: Moving a user account to a different machine...
(Apple & AskMeFi search fails to come up with an exact answer.
This is very helpful but not specific to my issue.)
I am assisting a local nonprofit with their Mac network. I need to swap two user accounts between machines (Mac1 gets User2's files, Mac2 gets User1's files). Not having done this before, I don't want to lose data or waste time. Should retain all preferences, desktop pix etc. Both machines are older iMacs running 10.3.9.
Is this as simple as:
1) zip all User1 files on Mac1
2) create new account on Mac2 named "User1"
3) move files to Mac2 & unzip everything into the clean "User1" account, overwriting the default folders
4) Disk Utility / repair privileges on Mac2
...lather, rinse, repeat for User2?
posted by omnidrew to computers & internet (11 comments total)
To do this and be certain of the results, you will want to enable the root account on the second Mac, log out from User1 and log in as root, copy the folders over to /Users/User1, and then use chown to address permissions:
chown -R username:username /Users/username...where username = User1's account name.
This will recursively change ownership on the specified folder and its contents to the correct uid and gid on the second Mac.
posted by Rothko at 12:17 PM on July 13, 2005