如何恢复已删除的 rc.local 文件?

如何恢复已删除的 rc.local 文件?

我最近在脚本中插入了一些字符串,以便在启动时通过 加载/etc/rc.local。其中之一是:xbacklight -set 50。这导致 Ubuntu 拒绝通过登录屏幕,因此我被迫删除这两个文件 - 脚本和rc.local

问题是,我该如何恢复rc.local文件以便能够重新开始该脚本?

我正在运行内核为 3.7.8 的 Ubuntu 12.10。

答案1

解决方案是通过以下方式创建一个新的rc.local

gksudo gedit /etc/rc.local

粘贴代码:

#!/bin/sh -e
#
#
# 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

使其可执行:

sudo chmod +x /etc/rc.local

相关内容