重建的用户不能登录的问题!!

重建的用户不能登录的问题!!

把原来的用户/home/jj 删除了,然后重建了个同名的用户,登录时候出现问题:
“The files that contain your preference settings are currently in
  use.

  You might be logged in to a session from another computer, and the
  other login session is using your preference setting files.

  You can continue to use the current session, but this might cause
  temporary problems wiht the preference settings in the other
  session.

  Do you want to continue?  LOG OUT | CONTINUE”
我当时是这么删除的:
1.userdel jj
2.rm -rf /home/jj
3.useradd jj
4.passwd jj
是不时跟我删除用户的时候没有加-r参数有关?难道没有删除干净么?
请指教!谢了先!
logout 后 在做
logout完了就是登录界面了。
原因找到了,应该设置用户的uid跟老用户的一样
useradd -u 500 jj
现在删除用户的时候最好用 userdel -r 用户名