Image

ज्ञानधार → डेबियन के हाल के संस्करणों में rc.local फ़ाइल जोड़ना

[वर्चुअल सर्वर]
प्रकाशन तिथि: 08.09.2022

ऑपरेटिंग सिस्टम के ऑटोस्टार्ट में त्वरित रूप से एक स्क्रिप्ट या कमांड जोड़ने के लिए, डेबियन के पुराने संस्करणों में /etc/rc.local फ़ाइल का उपयोग किया गया था, नवीनतम संस्करणों में यह फ़ाइल अब काम नहीं करती है; कभी-कभी आपको ऑपरेटिंग सिस्टम के स्टार्टअप में तुरंत कुछ कमांड जोड़ने की आवश्यकता होती है। इस कार्यक्षमता को सक्रिय करने के लिए, निम्नलिखित कार्य करें:

1. चलिए एक फाइल बनाते हैं службы:

#vi /etc/systemd/system/rc-local.service

[Unit]

Description=/etc/rc.local ConditionPathExists=/etc/rc.local

[Service]

Type=idle ExecStart=/etc/rc.local start TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes

[Install]

WantedBy=multi-user.target

2. चलिए फ़ाइल स्वयं बनाते हैं /etc/rc.local

vi /etc/rc.local

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

exit 0

3. आइए निष्पादन अधिकार निर्दिष्ट करें:

chmod +x /etc/rc.local

4. आइए सेवा को ऑटोस्टार्ट में जोड़ें:

systemctl enable rc-local

5. आइए सेवा शुरू करें:

systemctl start rc-local

6. आइए स्थिति की जाँच करें:

systemctl status rc-local

अब आप लाइन से पहले /etc/rc.local फ़ाइल में आवश्यक कमांड या स्क्रिप्ट जोड़ सकते हैं exit 0.





No Comments Yet