创建脚本以在启动时运行更新

创建脚本以在启动时运行更新

我正在尝试创建一个脚本,在启动 Ubuntu 时它会打开一个运行的终端sudo apt update && sudo apt upgrade -y。我设法制作了上述脚本,如何在启动/重启时打开终端并让它运行脚本?提前感谢你的帮助!

答案1

如果您在“启动时”执行此操作,则您已经以 身份运行UID 0,因此使用sudo是不正确的,应该将其删除。

此外,“在启动时”是错误的运行环境apt(记录为It is intended as an end user interface and enables some options better suited for interactive usage by default。请改用apt-get。因此:

apt-get -q=2 -y update && apt-get -q=2 -y upgrade

更接近您想要的。阅读man apt-gethttps://manpages.ubuntu.com/manpages/bionic/en/man8/apt-get.8.html

相关内容