Enable /etc/rc.local with systemd on Ubuntu 20.04
This article describes how to enable /etc/rc.local (startup) with systemd on Ubuntu 20.04 (focal fossa) linux distribution.

Certain Linux distributions that use SystemD such as Ubuntu 20.04 may not allow you to run /etc/rc.local when the system is booting. In this tutorial we will go through how to enable /etc/rc.local with systemd during system boot on Ubuntu 20.04.

Procedure to setup /etc/rc.local with systemd on Ubuntu 20.04

Check the current status of rc-local service

sudo systemctl status rc-local

Enable rc.local service

Enable /etc/rc.local to run on system boot using the command

sudo systemctl enable rc-local

As you may have already read, it is not possible to enable rc.local at startup using SystemD on Ubuntu 20.04. Therefore we have to do this another way.

Manually create a systemd service

We will need to manually create a SystemD service which will start at system boot.

sudo vi /etc/systemd/system/rc-local.service

Now enter the following text, save and close the file.

[Unit]
 Description=/etc/rc.local Compatibility
 ConditionPathExists=/etc/rc.local

[Service]
 Type=forking
 ExecStart=/etc/rc.local start
 TimeoutSec=0
 StandardOutput=tty
 RemainAfterExit=yes
 SysVStartPriority=99

[Install]
 WantedBy=multi-user.target

Create and Edit rc.local file

Now we will need to edit the /etc/rc.local file. Issue the following command and press Enter

sudo vi /etc/rc.local

Paste in the following, this ensures that the script is bash executable, all bash scripts shoul have this at the top

#!/bin/bash

save and close the file.

We will now need to append permissions to make the newly created file executable. Issue the following command and press Enter

sudo chmod +x /etc/rc.local

Enable the service on boot (enable rc.local with systemd on Ubuntu 20.04)

After that, enable the service on system boot

sudo systemctl enable rc-local

Now let’s reboot the system and check if the rc-local SystemD service is working.

When your system has booted up again, issue the following command

sudo systemctl status rc-local

Enabling /etc/rc.local with systemd is completed on Ubuntu 20.04 startup.

Also to refer similar articles on Ubuntu and wordpress visit the following page

Similar Posts

  • All
  • ftp
  • sftp
  • ssh
  • ubuntu
  • fail2ban
  • raspberrypi
  • apache2
  • letsencrypt
  • nextcloud
  • ssl

Mobeen Syed on September 9, 2021

Network Wide Block Advertistment, Pornography and Adult Content with AdGuard Home Installed on Raspberry Pi or Ubuntu Server
Wordpress Logo

Mobeen Syed on October 3, 2022

How to install and configure WordPress on Ubuntu 22.04 LTS (your own private server) using Apache2, MariaDB (MySQL) and PHP8.1 setup.
LetsEncrypt Logo - Letsencrypt is used for SSL secure access for Nextcloud

Mobeen Syed on December 8, 2020

Enable and Configure SSL Secure access (https) for NextCloud or any domain you own using LetsEncrypt Free SSL Certificates which are renewable

Leave a Reply

Your email address will not be published. Required fields are marked *