Writing a shell script in Ubuntu to start automatically at boot (recommended)

Writing a shell script in Ubuntu to start automatically at boot (recommended)

The purpose of writing scripts is to avoid having to manually start various services (also for laziness haha)

1. Enter the terminal and enter

Create a script file with the suffix .sh

touch test.sh

Editing Scripts

vim test.sh

test.sh script content

2. Write the test.sh script

 #!/bin/bash

### BEGIN INIT INFO
# Provides: test
# Required-Start: $remote_fs $syslog
# Required-Stop: $remote_fs $syslog
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: start test
# Description: start test
### END INIT INFO

#Write the script content here cd /home/Desktop/
./test.sh
exit 0

Start with #!/bin/bash and write the script content in the middle and end with exit0

3. Move the test.sh file to the /etc/init.d directory

Move files

sudo mv test.sh /etc/init.d/

Add permissions to the file

chmod +750 test.sh

Set automatic startup

sudo update-rc.d test.sh defaults

4. Such a startup automation script is completed

Summarize

The above is what I introduced to you about writing shell scripts in Ubuntu to automatically start the computer at boot. I hope it will be helpful to you. If you have any questions, please leave me a message and I 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:
  • How to add and delete startup items in Ubuntu
  • How to set up a startup script on Ubuntu 14.04
  • Ubuntu boot auto-start service settings

<<:  MySQL 8.0.16 compressed package installation and configuration method graphic tutorial

>>:  Vue batch update dom implementation steps

Recommend

Markup Language - Title

Click here to return to the 123WORDPRESS.COM HTML ...

Tutorial on how to modify the root password in MySQL 5.7

Version update, the password field in the origina...

SQL implementation of LeetCode (197. Rising temperature)

[LeetCode] 197.Rising Temperature Given a Weather...

How to restore docker container data

The project test environment database data is los...

Detailed examples of Zabbix remote command execution

Table of contents one. environment two. Precautio...

Vue uses vue-quill-editor rich text editor and uploads pictures to the server

Table of contents 1. Preparation 2. Define the gl...

Specific use of CSS content attribute

The content attribute is generally used in the ::...

The whole process of upgrading Angular single project to multiple projects

Table of contents Preface Development Environment...

CSS3 to achieve timeline effects

Recently, when I turned on my computer, I saw tha...

MySQL 8.0.11 installation and configuration method graphic tutorial

The installation and configuration methods of MyS...

Example code of setting label style using CSS selector

CSS Selectors Setting style on the html tag can s...

Nginx content cache and common parameter configuration details

Use scenarios: The project's pages need to lo...

Enable sshd operation in docker

First, install openssh-server in docker. After th...