Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可以在启动时运行的脚本来启动所有这些?如果是这样,我应该把它放在哪里?
如果没有,有没有办法通过管理控制台来做到这一点?
如果你从包中安装这些,这只是工作。将放置一个 init 脚本/etc/init.d,它们将在启动时启动。
/etc/init.d
例如安装 apache:
sudo apt-get install apache2
将导致/etc/init.d/apache2安装文件并设置适当的链接以确保在系统启动和关闭时调用脚本。
/etc/init.d/apache2
您可以使用以下命令编辑 crontab:
crontab -e
cron 守护程序在引导时自动启动,并将根据您指定的时间运行这些命令。