未找到 Bash 组命令

未找到 Bash 组命令

我是 Ubuntu 新手,遇到了一个问题。每当我启动新的终端实例时,都会收到此错误:

bash: groups: command not found

命令的输出- bash -i -x < /dev/null

答案1

由于某种原因,groups程序已从您的系统中删除,如 的输出所示ls /usr/bin/groups。恢复它的最佳方法是重新安装相应的软件包。

要查找包:

$ dpkg-query -S /usr/bin/groups
coreutils: /usr/bin/groups

要恢复损坏的包:

sudo apt install --reinstall coreutils

相关内容