rc.local配置开机自启
时间: 2023-11-22 16:05:03 浏览: 78
rc.local自启动学习.doc
在 Ubuntu 系统中,你可以使用 `rc.local` 文件来配置开机自启动。
首先,打开终端,并以管理员权限运行以下命令来编辑 `rc.local` 文件:
```
sudo nano /etc/rc.local
```
在打开的文件中,你可以添加需要在系统启动时运行的命令或脚本。例如,假设你想要在启动时执行一个脚本文件 `/path/to/my_script.sh`,则可以将以下内容添加到 `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.
/path/to/my_script.sh
exit 0
```
请确保在 `exit 0` 之前添加了你的命令或脚本,并保存文件。
接下来,为 `rc.local` 文件设置可执行权限。在终端中运行以下命令:
```
sudo chmod +x /etc/rc.local
```
现在,你的命令或脚本将在系统启动时自动执行。
请注意,`rc.local` 文件在最新的 Ubuntu 版本中可能已经被弃用。如果你使用的是较新的 Ubuntu 版本,可以考虑使用其他方法,如 systemd 服务或 Upstart 来配置开机自启动。
阅读全文