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
  • ubuntu
  • deluge
  • raspberrypi
  • torrent

Mobeen Syed on October 3, 2022

Installation and Setup of Fail2ban Brute force protection on Nextcloud, SSH, FTP etc on Ubuntu or other debian based distributions.

Mobeen Syed on October 3, 2022

Install Plex Media Server on Ubuntu 22.04 or Raspberry Pi with Apache2 reverse proxy to replace the plex URL with a SSL secure https domain access.

Leave a Reply

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