what is rc service (or rc.service)?
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
running $sudo systemctl status rc
in my Ubuntu v18.04 I notices there is such a service:
◠rc.service
Loaded: masked (/dev/null; bad)
Active: inactive (dead)
can anyone tell me what it does?
services
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
2
down vote
favorite
running $sudo systemctl status rc
in my Ubuntu v18.04 I notices there is such a service:
◠rc.service
Loaded: masked (/dev/null; bad)
Active: inactive (dead)
can anyone tell me what it does?
services
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
running $sudo systemctl status rc
in my Ubuntu v18.04 I notices there is such a service:
◠rc.service
Loaded: masked (/dev/null; bad)
Active: inactive (dead)
can anyone tell me what it does?
services
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
running $sudo systemctl status rc
in my Ubuntu v18.04 I notices there is such a service:
◠rc.service
Loaded: masked (/dev/null; bad)
Active: inactive (dead)
can anyone tell me what it does?
services
services
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 12 mins ago
erTugRul
1929
1929
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 53 mins ago
Daniel
111
111
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Daniel is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |Â
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
Debian’s systemd adds a number of links to prevent obsolete initscripts from being run:
# Those services are useless under systemd. Mask them so they can't
# be run manually by accident.
/dev/null /lib/systemd/system/sendsigs.service
/dev/null /lib/systemd/system/halt.service
/dev/null /lib/systemd/system/reboot.service
/dev/null /lib/systemd/system/rc.service
/dev/null /lib/systemd/system/rcS.service
(In systemd, linking a unit to /dev/null
tells systemd that it is “maskedâ€Â.)
So rc.service
’s sole purpose is to ensure that running
systemctl start rc
won’t run an /etc/init.d/rc
script left over from some other init system (file-rc
, openrc
and sysv-rc
all provide this file).
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
Debian’s systemd adds a number of links to prevent obsolete initscripts from being run:
# Those services are useless under systemd. Mask them so they can't
# be run manually by accident.
/dev/null /lib/systemd/system/sendsigs.service
/dev/null /lib/systemd/system/halt.service
/dev/null /lib/systemd/system/reboot.service
/dev/null /lib/systemd/system/rc.service
/dev/null /lib/systemd/system/rcS.service
(In systemd, linking a unit to /dev/null
tells systemd that it is “maskedâ€Â.)
So rc.service
’s sole purpose is to ensure that running
systemctl start rc
won’t run an /etc/init.d/rc
script left over from some other init system (file-rc
, openrc
and sysv-rc
all provide this file).
add a comment |Â
up vote
2
down vote
Debian’s systemd adds a number of links to prevent obsolete initscripts from being run:
# Those services are useless under systemd. Mask them so they can't
# be run manually by accident.
/dev/null /lib/systemd/system/sendsigs.service
/dev/null /lib/systemd/system/halt.service
/dev/null /lib/systemd/system/reboot.service
/dev/null /lib/systemd/system/rc.service
/dev/null /lib/systemd/system/rcS.service
(In systemd, linking a unit to /dev/null
tells systemd that it is “maskedâ€Â.)
So rc.service
’s sole purpose is to ensure that running
systemctl start rc
won’t run an /etc/init.d/rc
script left over from some other init system (file-rc
, openrc
and sysv-rc
all provide this file).
add a comment |Â
up vote
2
down vote
up vote
2
down vote
Debian’s systemd adds a number of links to prevent obsolete initscripts from being run:
# Those services are useless under systemd. Mask them so they can't
# be run manually by accident.
/dev/null /lib/systemd/system/sendsigs.service
/dev/null /lib/systemd/system/halt.service
/dev/null /lib/systemd/system/reboot.service
/dev/null /lib/systemd/system/rc.service
/dev/null /lib/systemd/system/rcS.service
(In systemd, linking a unit to /dev/null
tells systemd that it is “maskedâ€Â.)
So rc.service
’s sole purpose is to ensure that running
systemctl start rc
won’t run an /etc/init.d/rc
script left over from some other init system (file-rc
, openrc
and sysv-rc
all provide this file).
Debian’s systemd adds a number of links to prevent obsolete initscripts from being run:
# Those services are useless under systemd. Mask them so they can't
# be run manually by accident.
/dev/null /lib/systemd/system/sendsigs.service
/dev/null /lib/systemd/system/halt.service
/dev/null /lib/systemd/system/reboot.service
/dev/null /lib/systemd/system/rc.service
/dev/null /lib/systemd/system/rcS.service
(In systemd, linking a unit to /dev/null
tells systemd that it is “maskedâ€Â.)
So rc.service
’s sole purpose is to ensure that running
systemctl start rc
won’t run an /etc/init.d/rc
script left over from some other init system (file-rc
, openrc
and sysv-rc
all provide this file).
answered 25 mins ago
Stephen Kitt
154k23340409
154k23340409
add a comment |Â
add a comment |Â
Daniel is a new contributor. Be nice, and check out our Code of Conduct.
Daniel is a new contributor. Be nice, and check out our Code of Conduct.
Daniel is a new contributor. Be nice, and check out our Code of Conduct.
Daniel is a new contributor. Be nice, and check out our Code of Conduct.
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%2f479854%2fwhat-is-rc-service-or-rc-service%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