首页 > 其他 > 详细

Ubuntu user switch

时间:2014-09-20 23:32:30      阅读:396      评论:0      收藏:0      [点我收藏+]

To list all users you can use:

cut -d: -f1 /etc/passwd

To add a new user you can use:

sudo adduser new_username


To remove/delete a user, first you can use:

sudo userdel username

Then you may want to delete the home directory for the deleted user account :

sudo rm -r /home/username

(Please use with caution the above command!)

To modify the username of a user:

usermod -l new_username old_username

To change the password for a user:

sudo passwd username

To change the shell for a user:

sudo chsh username

To change the details for a user (for example real name):

sudo chfn username


$ whoami user1 $ su - user2 Password: $ whoami user2 $ exit logout

Ubuntu user switch

原文:http://www.cnblogs.com/yangzhang/p/3983935.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!