How to add service to run at boot on slackware linux?
Clash Royale CLAN TAG#URR8PPP
up vote
0
down vote
favorite
I am trying a Slackware 14.2. I can start sshd by /etc/rc.d/rc.inet1 sshd start
but my question is how to add service to run at boot on slackware linux? Basically how to permanently add services to system on Slackware Linux and also check that service status. So far I am able to achieve the following using this link,
$ sudo nano /etc/rc.d/rc.M
and adding these lines
# Start the sshd server
if [ -x /etc/rc.d/rc.sshd ]; then
. /etc/rc.d/rc.sshd
fi
and it did work and ssh server started automatically after boot as I was able to ssh to that system but how to check that service status within the system other than ps aux | grep ssh
or netstat -lntp | grep ssh
or using tools like lsof
? What I meant is some thing usual way like sudo service sshd status
or sudo systemctl status sshd
.
services slackware autostart
add a comment |Â
up vote
0
down vote
favorite
I am trying a Slackware 14.2. I can start sshd by /etc/rc.d/rc.inet1 sshd start
but my question is how to add service to run at boot on slackware linux? Basically how to permanently add services to system on Slackware Linux and also check that service status. So far I am able to achieve the following using this link,
$ sudo nano /etc/rc.d/rc.M
and adding these lines
# Start the sshd server
if [ -x /etc/rc.d/rc.sshd ]; then
. /etc/rc.d/rc.sshd
fi
and it did work and ssh server started automatically after boot as I was able to ssh to that system but how to check that service status within the system other than ps aux | grep ssh
or netstat -lntp | grep ssh
or using tools like lsof
? What I meant is some thing usual way like sudo service sshd status
or sudo systemctl status sshd
.
services slackware autostart
add a comment |Â
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying a Slackware 14.2. I can start sshd by /etc/rc.d/rc.inet1 sshd start
but my question is how to add service to run at boot on slackware linux? Basically how to permanently add services to system on Slackware Linux and also check that service status. So far I am able to achieve the following using this link,
$ sudo nano /etc/rc.d/rc.M
and adding these lines
# Start the sshd server
if [ -x /etc/rc.d/rc.sshd ]; then
. /etc/rc.d/rc.sshd
fi
and it did work and ssh server started automatically after boot as I was able to ssh to that system but how to check that service status within the system other than ps aux | grep ssh
or netstat -lntp | grep ssh
or using tools like lsof
? What I meant is some thing usual way like sudo service sshd status
or sudo systemctl status sshd
.
services slackware autostart
I am trying a Slackware 14.2. I can start sshd by /etc/rc.d/rc.inet1 sshd start
but my question is how to add service to run at boot on slackware linux? Basically how to permanently add services to system on Slackware Linux and also check that service status. So far I am able to achieve the following using this link,
$ sudo nano /etc/rc.d/rc.M
and adding these lines
# Start the sshd server
if [ -x /etc/rc.d/rc.sshd ]; then
. /etc/rc.d/rc.sshd
fi
and it did work and ssh server started automatically after boot as I was able to ssh to that system but how to check that service status within the system other than ps aux | grep ssh
or netstat -lntp | grep ssh
or using tools like lsof
? What I meant is some thing usual way like sudo service sshd status
or sudo systemctl status sshd
.
services slackware autostart
edited May 29 at 21:50
asked May 29 at 20:31
Pavel Sayekat
98111
98111
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
1
down vote
Any services or daemons that use the network should be started from
[/etc/rc.d/rc.inet2
]. Most of the rc scripts in charge of starting daemons like inetd, sshd, bind, nfs, etc get called fromrc.inet2
. - Source http://www.slackware.com/config/network.php
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
Any services or daemons that use the network should be started from
[/etc/rc.d/rc.inet2
]. Most of the rc scripts in charge of starting daemons like inetd, sshd, bind, nfs, etc get called fromrc.inet2
. - Source http://www.slackware.com/config/network.php
add a comment |Â
up vote
1
down vote
Any services or daemons that use the network should be started from
[/etc/rc.d/rc.inet2
]. Most of the rc scripts in charge of starting daemons like inetd, sshd, bind, nfs, etc get called fromrc.inet2
. - Source http://www.slackware.com/config/network.php
add a comment |Â
up vote
1
down vote
up vote
1
down vote
Any services or daemons that use the network should be started from
[/etc/rc.d/rc.inet2
]. Most of the rc scripts in charge of starting daemons like inetd, sshd, bind, nfs, etc get called fromrc.inet2
. - Source http://www.slackware.com/config/network.php
Any services or daemons that use the network should be started from
[/etc/rc.d/rc.inet2
]. Most of the rc scripts in charge of starting daemons like inetd, sshd, bind, nfs, etc get called fromrc.inet2
. - Source http://www.slackware.com/config/network.php
answered May 29 at 20:53
Emmanuel Rosa
2,1801410
2,1801410
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f446789%2fhow-to-add-service-to-run-at-boot-on-slackware-linux%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password