To copy /home and users from one aix server to another, do you have to do something else than mount /home on the other server (then copy the content to local /home) and copy /etc/password ?
if you're moving to a brand new system with no users created yet you can simply move the following files to the new box from the old box (please create backup files at the destination before the copy):
Then backup their home directories and restore them at the new box.
Using SSH it can be this easy:
Code:
tar cvf - /home/user1 | ssh newserver " ( cd /home/user1 ; tar xvf - ) "
Also don't forget their cronjobs. These are located in /var/spool/cron/crontabs on AIX.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.