欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu增加用户并且添加到root组

程序员文章站 2022-07-14 21:27:11
...
useradd username -m
设置密码
passwd username 
Enter new UNIX password: 123456
Retype new UNIX password: 123456
改变组
usermod -g root username
确定是否在root组
id username
uid=1001(username) gid=0(root) groups=0(root)``


相关标签: Linux linux