拨出组丢失

拨出组丢失

我有 debian8(Jessie),我正在尝试将用户添加到 dialout 组。唉,这个团体并不存在。我不想将用户添加到 root 或 sudo 组。

我应该怎么办?

~$ groups
user1 user2 cdrom floppy sudo audio dip video plugdev netdev lpadmin scanner bluetooth

如何创建拨出组?

$sudo usermod -a -G dialout user1

执行没有错误,但我看不到我是拨出组的成员,也看不到任何拨出组存在

答案1

在 Debian 中,默认组由base-passwd;设置该dialout小组应始终在场。如果不是,您可以使用update-passwd以下方法恢复预期配置:

sudo update-passwd

(这将恢复系统和用户组,但不会修改任何其他内容)。

您只需将您的用户添加到组中即可:

sudo adduser $(whoami) dialout

答案2

您可以尝试“groupadd”命令。

user@system:~$ groupadd
Usage: groupadd [options] GROUP

Options:
  -f, --force                  exit successfully if the group already exists,
                                and cancel -g if the GID is already used
  -g, --gid GID                 use GID for the new group
  -h, --help                    display this help message and exit
  -K, --key KEY=VALUE           override /etc/login.defs defaults
  -o, --non-unique              allow to create groups with duplicate
                                (non-unique) GID
  -p, --password PASSWORD       use this encrypted password for the new group
  -r, --system                  create a system account

另外,很多时候大多数窗口管理器都安装了图形用户管理器。例如,在 Knoppix 设置下,我将其放在菜单 -> 首选项 -> 用户和组下

相关内容