进程“winedevice.exe”延迟 systemd 关闭

进程“winedevice.exe”延迟 systemd 关闭

几乎每次我关闭电脑时,我都必须等待大约 2 分钟:

A stop job is running for user manager for UID 1000

我知道这是由winedevice.exe进程引起的

我发现解决这个问题的唯一方法是运行:

kill -9 $(ps aux |grep -i '\.exe' |awk '{print $2}'|tr '\n' ' ')

但我希望在关闭或重新启动之前自动完成此操作

或者 systemd 会立即终止进程而不是等待 2 分钟

我已尝试以各种方式创建服务来执行此操作,但没有任何效果

我已经减少了时间,/etc/systemd/system.conf但它也不起作用......

有人可以帮忙吗?

答案1

cat $HOME/.config/systemd/user.conf

[Manager]
DefaultTimeoutStopSec=10s

相关内容