Sponsored Content
Full Discussion: Creating script in rc.d
Top Forums UNIX for Advanced & Expert Users Creating script in rc.d Post 303042991 by Neo on Wednesday 15th of January 2020 07:23:28 AM
Old 01-15-2020
Quote:
Originally Posted by MadeInGermany
rc.local is for compatibility with BSD Unix, not well supported in Linux Smilie
Many people, use rc.local on Linux. I don't see any benefit in "trashing it" as "not well supported". Also, this file (rc.local) does not require any special "support" since it is not a part of some broader framework. It's simple and works. It's a flat file which is executed at a particular time in the boot sequence.

Also, rc.local is not designed to require a lot of support (to my knowledge), it is simply a place where system admins can put startup scripts they want to start after the other scripts run:

Quote:
The script /etc/rc.local is for use by the system administrator. It is traditionally executed after all the normal system services are started, at the end of the process of switching to a multiuser runlevel. You might use it to start a custom service, for example a server that's installed in /usr/local. Most installations don't need /etc/rc.local, it's provided for the minority of cases where it's needed
On some versions of Linux, the default
Code:
linux #cat rc.local

used to be:

Code:
#!/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

In addition to the above, for completeness, if you search Google "rc.local" with Linux keywords you get around 833,000 results.

Creating script in rc.d-screen-shot-2020-01-15-71513-pmjpg


I did not find any "memos" (quick scan) where people were saying "rc.local" is not "well supported".... What support does it need? It's a flat file designed to be edited run as described. How do you "support" a flat file executed at the end of each multiuser runlevel?

Why does it need "support? Inquiring minds want to know Smilie


OBTW, on my ubuntu distro, it's blank waiting for someone to add what they want to it:

Code:
ubuntu:/etc# ls -l rc*
-rwxr-xr-x 1 root root    0 Sep  5  2018 rc.local

rc0.d:
total 0
lrwxrwxrwx 1 root root 17 Sep  5  2018 K01apache2 -> ../init.d/apache2
lrwxrwxrwx 1 root root 29 Sep  5  2018 K01apache-htcacheclean -> ../init.d/apache-htcacheclean
lrwxrwxrwx 1 root root 18 Sep 26 07:02 K01fail2ban -> ../init.d/fail2ban
lrwxrwxrwx 1 root root 20 Sep  5  2018 K01irqbalance -> ../init.d/irqbalance
lrwxrwxrwx 1 root root 15 Sep  5  2018 K01mdadm -> ../init.d/mdadm
lrwxrwxrwx 1 root root 24 Sep  5  2018 K01mdadm-waitidle -> ../init.d/mdadm-waitidle
lrwxrwxrwx 1 root root 19 Sep  5  2018 K01memcached -> ../init.d/memcached
lrwxrwxrwx 1 root root 15 Sep  5  2018 K01mysql -> ../init.d/mysql
lrwxrwxrwx 1 root root 18 Dec 22 08:26 K01onioncat -> ../init.d/onioncat
lrwxrwxrwx 1 root root 18 Sep  5  2018 K01plymouth -> ../init.d/plymouth
lrwxrwxrwx 1 root root 17 Sep  5  2018 K01postfix -> ../init.d/postfix
lrwxrwxrwx 1 root root 17 Sep  5  2018 K01rsyslog -> ../init.d/rsyslog
lrwxrwxrwx 1 root root 13 Dec 22 08:26 K01tor -> ../init.d/tor
lrwxrwxrwx 1 root root 29 Sep  5  2018 K01unattended-upgrades -> ../init.d/unattended-upgrades
lrwxrwxrwx 1 root root 15 Sep  5  2018 K01uuidd -> ../init.d/uuidd

(truncated)

In fact, all my ubuntu distributions have rc.local available as a "blank" for sys admins who want to use it. It seems "supported to me" since it is there and blank for sys admins to edit and use.

Smilie Smilie
 

10 More Discussions You Might Find Interesting

1. Programming

creating a new C script

All right. Heres the deal, I need to know everysingle command or funtion there is to create a new c file (file.c). Heres the catch: I cannot use text editors!!!:mad: I heard of a "gcc" command is that any good?:confused: Thanks..:cool: (2 Replies)
Discussion started by: AbRa-KaDabRa
2 Replies

2. UNIX for Dummies Questions & Answers

creating a script

I am trying to create a application in OSX through UNIX that will run a script to mount an image from a CD-ROM and run the application which it corresponds to, all with double clicking on a icon in OSX. Any thoughts or ideas? -Mad (3 Replies)
Discussion started by: madknowledge
3 Replies

3. Shell Programming and Scripting

Need help creating a script

I need to automate the following process: I have a list of ip address for printers in a file called iplist.txt, I need to take that list and run the command snmpget -v 1 -c public ip address sysName.0 for each ip address to see if the printer is running snmp, I want to the create a file... (4 Replies)
Discussion started by: inLine6
4 Replies

4. Shell Programming and Scripting

(Urgent):Creating flat file using sql script and sqlplus from UNIX Shell Script

Hi, I need help urgently for following issue. Pls help me to resolve this issue. I am calling sql script file(file1.sql) from UNIX Shell Script(script1.ksh) using sql plus and trying to create flat file that contains all records returned from SQL query in SQL script(file1.sql) I given... (6 Replies)
Discussion started by: praka
6 Replies

5. Shell Programming and Scripting

help needed with creating challenging bash script with creating directories

Hi, Can someone help me with creating a bash shell script. I need to create a script that gets a positive number n as an argument. The script must create n directories in the current directory with names like map_1, map_2 etcetera. Each directory must be contained within its predecessor. So... (7 Replies)
Discussion started by: I-1
7 Replies

6. Programming

need help with creating a sh script

Hi everyone I’m not a programmer and my knowledge of scripting is very poor, now I’m stock in a task at work and would really appreciate it if someone could help me out. Here is the problem: 1. I have a file with 9 million entries that look like this : 611424167 610864581 611881523 609585386... (3 Replies)
Discussion started by: hiker1064
3 Replies

7. UNIX for Dummies Questions & Answers

Creating a script

Alright, well I did some more research since I originally posted this thread, and as much as I'd like to delete it, I can't, so I'll just extend my initial question a little. Right now I have 3 scripts: 1#!/bin/bash # script1 - Write all files modfied x days ago find .. -daystart -mtime 0... (2 Replies)
Discussion started by: Aussiemick
2 Replies

8. Shell Programming and Scripting

Need help in creating file restoration script from a backup script.

Hi all i am struggling in creating a restore of env files while doing applications clone. the first file i created for copying the important configurations file which is running perfect now for reverting the changes i mean when i am restoring these files to its original places i have to do... (7 Replies)
Discussion started by: javeedkaleem
7 Replies

9. Shell Programming and Scripting

Creating IN list in PLSQL script dynamically by using shell script

Hi all, I have a PLSQL script which has a IN list where it takes some ids as input. For example SELECT * FROM EMPLOYEE WHERE EMPLOYEE_ID IN (comma separated list ) I want to run this quest inside a shell script but I would like to prepare the IN list dynamically where the employee ids... (1 Reply)
Discussion started by: LoneRanger
1 Replies

10. Shell Programming and Scripting

Help with creating a script

Hi everyone, I am completely new to this forum and I have some questions regarding a script I am writing. I would be happy if anyone could help me with the small and precise script which should include if, then, else, while until, case and select. The scenario is as follows: 1) A user... (3 Replies)
Discussion started by: codenotfound
3 Replies
All times are GMT -4. The time now is 08:58 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy