dpkg - 配置 systemd 导致名称正则表达式错误

dpkg - 配置 systemd 导致名称正则表达式错误

有一天,当我尝试升级我很少更新的 Raspberry Pi Zero W 上的软件包时,systemd由于似乎名称不好而无法正确配置addgroup

Setting up systemd (241-7~deb10u3+rpi1) ...
addgroup: Please enter a username matching the regular expression configured
via the NAME_REGEX configuration variable.  Use the `--force-badname'
option to relax this check or reconfigure NAME_REGEX.
dpkg: error processing package systemd (--configure):
 installed systemd package post-installation script subprocess returned error exit status 1

当然,我尝试通过暂时放松 来解决我认为是它的抱怨NAME_REGEX/etc/adduser.conf但即使使用临时的、高度放松的 正则表达式^.+$,它仍然会失败。这里可能发生了什么?--force-badname向配置中注入一个选项是不是一个坏主意?如果不是,怎么做?如果是,可能是什么问题?

相关内容