liwl
deepin
2022-02-18 17:37 ctrl+alt+delete长按7秒
Reply Like 0 View the author
ctrl+alt+delete长按7秒
ctrl+alt+delete长按7秒
有没有设置呢,现在每天都这样,手动太费劲
我也想知道 不过我的是10秒
查看一下日志
查看一下日志
上传了日志 Stopped D-Bus User Message Bus
从这里开始卡的
上次升级系统20.4后才变这样的
不知道怎么定位是哪个包哇,您知道吗?
Popular Events
More
已解决:
/etc/systemd/system.conf
/etc/systemd/user.conf
DefaultTimeoutStartSec=10s
DefaultTimeoutStopSec=10s
之前只改了system.conf,发现user.conf了也是同样的参数,一起改了就生效了。。。
最终解决:
参考方案
You need to both disable the autostarter AND mask the user bus service, or it will get started anyway. First, make sure your autostart override directory exists with this command:
mkdir -v ~/.config/autostartThen you can run this command to disable the autostarter:
cat /etc/xdg/autostart/at-spi-dbus-bus.desktop <(echo "X-GNOME-Autostart-enabled=false") > ~/.config/autostart/at-spi-dbus-bus.desktopFinally also mask the user bus service:
systemctl --user mask at-spi-dbus-bus.service