这是 Ubuntu 22.04
的新特性,现在是 apt-get
安装过程的一个步骤,是由 needrestart
命令触发,默认情况是交互性质的,也就是会中断在这里需要手动要处理提示。
解决的方法是
修改 /etc/needrestart/needrestart.conf
文件,将 #$nrconf{restart} = 'i';
这行去掉注释,按照需要改成以下两种方式之一:
#如果需要自动重启不提示的话,修改成a
$nrconf{restart} = 'a';
#只是列出需要重启的服务,修改成l
$nrconf{restart} = 'l';
另外一种简单的方式是直接运行这个命令即可:
sudo NEEDRESTART_MODE=a apt-get dist-upgrade --yes
标签:apt,libraries,22.04,needrestart,Ubuntu,using,restart From: https://www.cnblogs.com/angelia-wang/p/17399844.html参考资料:
https://stackoverflow.com/questions/73397110/how-to-stop-ubuntu-pop-up-daemons-using-outdated-libraries-when-using-apt-to-i
https://askubuntu.com/questions/1367139/apt-get-upgrade-auto-restart-services