Verify cron daemon is enabled in Slackware 14.2
Clash Royale CLAN TAG#URR8PPP
How will I know if cron
daemon is running in my Slackware installation? I tried the code below and it returns me nothing. It means cron
is not in /etc/rc.d
folder.
ls /etc/rc*.d | grep crond
cron daemon slackware start-stop-daemon slackbuilds
|
show 1 more comment
How will I know if cron
daemon is running in my Slackware installation? I tried the code below and it returns me nothing. It means cron
is not in /etc/rc.d
folder.
ls /etc/rc*.d | grep crond
cron daemon slackware start-stop-daemon slackbuilds
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
1
Can you tryps -ef | grep cron
and see if it returns anything?
– Haxiel
Feb 28 at 7:24
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
1
@Eliyah Theps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.
– Haxiel
Mar 1 at 3:33
|
show 1 more comment
How will I know if cron
daemon is running in my Slackware installation? I tried the code below and it returns me nothing. It means cron
is not in /etc/rc.d
folder.
ls /etc/rc*.d | grep crond
cron daemon slackware start-stop-daemon slackbuilds
How will I know if cron
daemon is running in my Slackware installation? I tried the code below and it returns me nothing. It means cron
is not in /etc/rc.d
folder.
ls /etc/rc*.d | grep crond
cron daemon slackware start-stop-daemon slackbuilds
cron daemon slackware start-stop-daemon slackbuilds
asked Feb 28 at 2:41
EliyahEliyah
11315
11315
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
1
Can you tryps -ef | grep cron
and see if it returns anything?
– Haxiel
Feb 28 at 7:24
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
1
@Eliyah Theps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.
– Haxiel
Mar 1 at 3:33
|
show 1 more comment
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
1
Can you tryps -ef | grep cron
and see if it returns anything?
– Haxiel
Feb 28 at 7:24
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
1
@Eliyah Theps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.
– Haxiel
Mar 1 at 3:33
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
1
1
Can you try
ps -ef | grep cron
and see if it returns anything?– Haxiel
Feb 28 at 7:24
Can you try
ps -ef | grep cron
and see if it returns anything?– Haxiel
Feb 28 at 7:24
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
1
1
@Eliyah The
ps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.– Haxiel
Mar 1 at 3:33
@Eliyah The
ps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.– Haxiel
Mar 1 at 3:33
|
show 1 more comment
1 Answer
1
active
oldest
votes
On Slackware some daemons/services do not have separate script in /etc/rc.d/
directory and are run directly from /etc/rc.d/rc.M
script (or rc.S
when you start not in multiuser but single mode). Try:
grep /etc/rc.d/ -r -e "cron"
So it's running by default on Slackware, unless you comment it out manually in rc.M
.
Also on Slackware only rc.d
is used. You can ignore all rc[0-6].d
directories. This directories are provided only to ease your pain if you install some non-Slackware packages that crash without them.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503474%2fverify-cron-daemon-is-enabled-in-slackware-14-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
On Slackware some daemons/services do not have separate script in /etc/rc.d/
directory and are run directly from /etc/rc.d/rc.M
script (or rc.S
when you start not in multiuser but single mode). Try:
grep /etc/rc.d/ -r -e "cron"
So it's running by default on Slackware, unless you comment it out manually in rc.M
.
Also on Slackware only rc.d
is used. You can ignore all rc[0-6].d
directories. This directories are provided only to ease your pain if you install some non-Slackware packages that crash without them.
add a comment |
On Slackware some daemons/services do not have separate script in /etc/rc.d/
directory and are run directly from /etc/rc.d/rc.M
script (or rc.S
when you start not in multiuser but single mode). Try:
grep /etc/rc.d/ -r -e "cron"
So it's running by default on Slackware, unless you comment it out manually in rc.M
.
Also on Slackware only rc.d
is used. You can ignore all rc[0-6].d
directories. This directories are provided only to ease your pain if you install some non-Slackware packages that crash without them.
add a comment |
On Slackware some daemons/services do not have separate script in /etc/rc.d/
directory and are run directly from /etc/rc.d/rc.M
script (or rc.S
when you start not in multiuser but single mode). Try:
grep /etc/rc.d/ -r -e "cron"
So it's running by default on Slackware, unless you comment it out manually in rc.M
.
Also on Slackware only rc.d
is used. You can ignore all rc[0-6].d
directories. This directories are provided only to ease your pain if you install some non-Slackware packages that crash without them.
On Slackware some daemons/services do not have separate script in /etc/rc.d/
directory and are run directly from /etc/rc.d/rc.M
script (or rc.S
when you start not in multiuser but single mode). Try:
grep /etc/rc.d/ -r -e "cron"
So it's running by default on Slackware, unless you comment it out manually in rc.M
.
Also on Slackware only rc.d
is used. You can ignore all rc[0-6].d
directories. This directories are provided only to ease your pain if you install some non-Slackware packages that crash without them.
answered Feb 28 at 13:05
rsmrsm
254212
254212
add a comment |
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f503474%2fverify-cron-daemon-is-enabled-in-slackware-14-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Enabled or running?
– Jeff Schaller♦
Feb 28 at 3:01
@JeffSchaller-> Identify if it is running. If it is not, atleast enable.
– Eliyah
Feb 28 at 3:09
1
Can you try
ps -ef | grep cron
and see if it returns anything?– Haxiel
Feb 28 at 7:24
Which cron? Williamson? Dillon? Vixie? Guenter? Godouet? Jackson? Mašláňová?
– JdeBP
Feb 28 at 8:35
1
@Eliyah The
ps
command shows running processes, and that first line is your cron daemon. So yes, the cron daemon is currently running on your system.– Haxiel
Mar 1 at 3:33