ubuntu18.04启动失败,因为/etc/rc.local文件中没有exit 0

ubuntu18.04启动失败,因为/etc/rc.local文件中没有exit 0

ubuntu18.04启动失败,因为无法进入exit 0/etc/rc.local文件,只停留在启动页面,无法进入系统。

#!/bin/bash
# do something just like echo log to file
exit 0

我确信 /etc/rc.local 文件运行了,但出现了一些错误。我该如何修复这个问题?

答案1

Ubuntu 和 Debian 系统上的 /etc/rc.local 文件用于在系统启动时执行命令。

因此让我们使用您喜欢的文本编辑器创建 /etc/rc.local 文件。

vim /etc/rc.local

复制并粘贴以下内容。

#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.

exit 0

保存并退出

现在使其可执行。

chmod +x /etc/rc.local

就这样。您现在可以使用此文件在系统启动时执行命令。

只需将命令粘贴到 exit 0 行上方即可

相关内容