IT|作業系統|Linux|Ubuntu rc.local systemd 開機自動執行應用程式
作業系統版本 Ubuntu 18.04 使用 systemd 設置開機啓動: systemd 默認讀取 /etc/systemd/system 下的配置文件 該目錄下的文件會鏈接 /lib/systemd/system/ 下的文件。 一般系統安裝完 /lib/systemd/system/ 下會有 rc-local.service 文件,即需要的配置文件。 ln -fs /lib/systemd/system/rc-local.service /etc/systemd/system/rc-local.service cd /etc/systemd/system/ cat rc-local.service rc-local.service内容 # SPDX-License-Identifier: LGPL-2.1+ # # This fileispart ofsystemd. # # systemd isfree software; you can redistribute it and/ormodify it # under the terms ofthe GNU Lesser General PublicLicense aspublishedby # the Free Software Foundation; either version 2.1ofthe License, or # (at your option) any later version. # This unitgets pulled automatically into multi-user.target by # systemd-rc-local-generator if/etc/rc.localisexecutable. [Unit] Description=/etc/rc.localCompatibility Documentation=man:systemd-rc-local-generator(8) ConditionFileIsExecutable=/etc/rc.local After=network.target [Service] T