我已经在 VirtualBox 中安装了 Ubuntu,需要将我的用户添加到 vboxuser 组。我知道我需要在外部窗口中输入命令 sudo usermod -aG vboxusers,但我不知道应该在 Ubuntu 中还是在 Windows 中。
在 Windows 中,我收到错误“sudo”不是有效命令;在 Ubuntu 中,我收到错误“组 vboxuser 不存在”。
答案1
在 Linux 上要添加组,您必须使用这些命令:要创建组:
sudo addgroup groupname
在组中添加用户:
sudo adduser user groupname
在 Windows 上与在 Linux 上使用的 bash shell 有很大不同。以下是添加组的通用命令:
net localgroup "groupname" /add
在组中添加用户
net localgroup "groupname " "User" /add
从组中删除用户
net localgroup "groupname " "User" /delete
或者使用以下命令界面:
lusrmgr.msc
该术语User
也应该被您想要添加的登录名所替换。