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 #!/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! You may also be interested in:
|
<<: MySQL full-text fuzzy search MATCH AGAINST method example
In a project, you often need to use environment v...
Table of contents Preface 1. MySQL enables SSL co...
When developing a backend management project, it ...
Table of contents Preface: 1. Create index method...
question Nginx takes $remote_addr as the real IP ...
Table of contents Explanation of v-text on if for...
Download image Selecting a MySQL Image docker sea...
KVM stands for Kernel-based Virtual Machine, whic...
Table of contents 1. Preparation before installat...
question Running gdb in docker, hitting a breakpo...
OOM stands for "Out Of Memory", which m...
Table of contents About Triggers Use of triggers ...
The effect is as follows:Reference Program: <!...
There are two ways to export csv in win10. The fi...
You may have set a MySQL password just now, but f...