在Linux虚拟机中创建新用户的步骤如下:
以root用户身份登录虚拟机。
打开终端窗口,运行以下命令来创建新用户:
useradd username
其中,username是你要创建的新用户名。
passwd username
输入两次新密码即可。
usermod -d /home/username username
其中,/home/username是你要设置的新用户主目录路径,username是你要设置的新用户名。
usermod -s /bin/bash username
其中,/bin/bash是你要设置的新用户Shell路径,username是你要设置的新用户名。
su - username
输入新用户的密码,如果成功登录,则表示新用户已经创建成功。
usermod -aG sudo username
其中,username是你要添加sudo权限的新用户名。
创建新用户完成后,可以通过以下命令来删除用户:
userdel username
其中,username是你要删除的用户名。注意,删除用户将同时删除其主目录及其下的所有文件,请谨慎操作。