If you're using a flavor of *nix that has an rc.local file, and then you start using Debian GNU/Linux, you might be wondering where your rc.local file is. Quite simply, it's not there. Here's how to add it.
Create a new file named /etc/init.d/local like this:
#!/bin/sh
# put startup stuff here
Make the file executable:
chmod 755 /etc/init.d/local
Add it to startup:
update-rc.d local defaults 80
You should be seeing something like this:
Adding system startup for /etc/init.d/local ...
/etc/rc0.d/K80local -> ../init.d/local
/etc/rc1.d/K80local -> ../init.d/local
/etc/rc6.d/K80local -> ../init.d/local
/etc/rc2.d/S80local -> ../init.d/local
/etc/rc3.d/S80local -> ../init.d/local
/etc/rc4.d/S80local -> ../init.d/local
/etc/rc5.d/S80local -> ../init.d/local
Page Updates |
---|
Apache Bench load testing |
Console::Blackjack |
RetroPie Arcade |
Factorio on systemd |
Generate new Factorio map |
Recent Articles |
---|
Install xfce4 on Debian |
Console Blackjack in Perl |
Selenium::WebDriver::Error::UnknownError |
Game of Life in C++ using the SDL2 |
PigPen (dots and boxes) in C++ using the SDL2 |
Copyright © 2005 - 2021
All Rights Reserved