Perfect Solution for No rc.local File in Linux

Perfect Solution for No rc.local File in Linux

Newer Linux distributions no longer have the rc.local file. Because it has been turned into a service.

Solution:

1. Set up rc-local.service

sudo vim /etc/systemd/system/rc-local.service
[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

2. Activate rc-local.service

sudo systemctl enable rc-local.service

3. Add startup service

Manually create or copy an existing /etc/rc.local and grant execution permissions

#!/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.

# The following is the command to be started at startup /home/selfcs/anaconda3/bin/python /home/selfcs/t.py > /home/selfcs/auto.log 

exit 0
#Give the script execution permission sudo chmod +x /etc/rc.local

Summarize

The above is the perfect solution to the problem of no rc.local file in Linux introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

You may also be interested in:
  • Detailed explanation of the difference between /etc/rc.local and /etc/init.d/rc.local in Ubuntu system
  • Solve the problem that /etc/rc.local does not execute when starting centos7

<<:  MySQL full-text fuzzy search MATCH AGAINST method example

>>:  React implements the principle analysis of the three stages of loading, loading, completion, loading failure

Recommend

5 super useful open source Docker tools highly recommended

Introduction The Docker community has created man...

Java programming to write a JavaScript super practical table plug-in

Table of contents Effects Documentation first ste...

How to solve the problem of FileZilla_Server:425 Can't open data connection

When installing FileZilla Server on the server, t...

How to allow remote access to open ports in Linux

1. Modify the firewall configuration file # vi /e...

Nginx http health check configuration process analysis

Passive Check With passive health checks, NGINX a...

Detailed explanation of MySQL string concatenation function GROUP_CONCAT

In the previous article, I wrote a cross-table up...

How to add a column to a large MySQL table

The question is referenced from: https://www.zhih...

How to install and deploy ftp image server in linux

Refer to the tutorial on setting up FTP server in...

How to replace all tags in html text

(?i) means do not match case. Replace all uppercas...

CSS Pick-up Arrows, Catalogs, Icons Implementation Code

1. CSS Miscellaneous Icons There are three ways t...

Two practical ways to enable proxy in React

Two ways to enable proxy React does not have enca...

How to encapsulate axios request with vue

In fact, it is very simple to encapsulate axios i...

Web Design Tutorial (1): Steps and Overall Layout

<br /> Note: All texts, except those indicat...

Vue folding display multi-line text component implementation code

Folding display multi-line text component Fold an...