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 Editing Scripts 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 Add permissions to the file Set automatic startup 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! You may also be interested in:
|
<<: MySQL 8.0.16 compressed package installation and configuration method graphic tutorial
>>: Vue batch update dom implementation steps
Click here to return to the 123WORDPRESS.COM HTML ...
Version update, the password field in the origina...
[LeetCode] 197.Rising Temperature Given a Weather...
The project test environment database data is los...
Table of contents one. environment two. Precautio...
In the later stage of exploiting SQL injection vu...
Table of contents 1. Preparation 2. Define the gl...
The content attribute is generally used in the ::...
Table of contents Preface Development Environment...
Preface As a DBA, you will often encounter some M...
Recently, when I turned on my computer, I saw tha...
The installation and configuration methods of MyS...
CSS Selectors Setting style on the html tag can s...
Use scenarios: The project's pages need to lo...
First, install openssh-server in docker. After th...