The easiest way to make a program run automatically at startup in Linux

The easiest way to make a program run automatically at startup in Linux

I collected a lot of them, but all ended in failure. Finally, I found that this method is good and does not affect the usage. It is more important for the system with xampp installed. I hope you agree. Here’s how:

Create a new file in the /etc/init.d directory and set the file permissions to be executable. You can choose any name you want, I named it: xamppv. The content is as follows, especially the first few lines with #, which are indispensable and cannot be changed.

#!/bin/sh
### BEGIN INIT INFO
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
### END INIT INFO
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
sudo /opt/lampp/xampp start

Save the above files in the /etc/init.d directory and execute the following commands. sudo systemctl enable xamppv, sudo systemctl start xamppv can start the program immediately. The following commands can be used, but it doesn't matter if you don't use them. update-rc.d xampp defaults 400.

The settings are complete, restart your computer!

The above is the method and code content introduced in this article about how to make the program run automatically when the computer starts up in Linux. Thank you for your learning and support for 123WORDPRESS.COM.

<<:  Vue3 implements Message component example

>>:  A brief introduction to the usage of decimal type in MySQL

Recommend

js and jquery to achieve tab status bar switching effect

Today we will make a simple case, using js and jq...

Implement group by based on MySQL to get the latest data of each group

Preface: The group by function retrieves the firs...

Detailed steps to install the NERDTree plugin in Vim on Ubuntu

NERDTree is a file system browser for Vim. With t...

How to remove the blue box that appears when the image is used as a hyperlink

I recently used Dreamweaver to make a product pres...

Gearman + MySQL to achieve persistence operation example

This article uses the gearman+mysql method to imp...

Pure CSS3 to achieve pet chicken example code

I have read a lot of knowledge and articles about...

Vue+Element UI realizes the encapsulation of drop-down menu

This article example shares the specific code of ...

Implementation of importing and exporting vue-element-admin projects

vue-element-admin import component encapsulation ...

Practical operation of using any font in a web page with demonstration

I have done some research on "embedding non-...

Detailed explanation of SELINUX working principle

1. Introduction The main value that SELinux bring...

Detailed comparison of Ember.js and Vue.js

Table of contents Overview Why choose a framework...

4 Practical Tips for Web Page Design

Related articles: 9 practical tips for creating we...

Detailed steps for Spring Boot packaging and uploading to Docker repository

Important note: Before studying this article, you...

Notes on matching MySql 8.0 and corresponding driver packages

MySql 8.0 corresponding driver package matching A...