Systemctl status always shows full log, even with --lines
1So, I'm trying to get the status of a unit, but only the first 3 lines like this:
systemctl --user status resilio-sync --lines=3
I've tried various variations of this with -n 3 etc..., nothing works.
And the strange part: it always shows the full log (13 lines), instead of 10 lines which should be the default according to the documentation for systemctl.
Trying systemctl status
confirms this: it just outputs all 45 lines to the terminal, when it actually should be 10.
Am I missing something here? As far as I know I didn't change anything.
As a workaround I'm currently using
systemctl --user status resilio-sync | sed -ne '1,3p'
but I'd rather like to fix the underlying problem and use the native command.
System is Kali Linux (re4son-kernel, sticky fingers) on a Raspberry Pi (easy to blame on this strange setup, but since this is core linux functionality I don't think it should matter)
[]
debian kali-linux raspberry-pi systemctl
add a comment |
1So, I'm trying to get the status of a unit, but only the first 3 lines like this:
systemctl --user status resilio-sync --lines=3
I've tried various variations of this with -n 3 etc..., nothing works.
And the strange part: it always shows the full log (13 lines), instead of 10 lines which should be the default according to the documentation for systemctl.
Trying systemctl status
confirms this: it just outputs all 45 lines to the terminal, when it actually should be 10.
Am I missing something here? As far as I know I didn't change anything.
As a workaround I'm currently using
systemctl --user status resilio-sync | sed -ne '1,3p'
but I'd rather like to fix the underlying problem and use the native command.
System is Kali Linux (re4son-kernel, sticky fingers) on a Raspberry Pi (easy to blame on this strange setup, but since this is core linux functionality I don't think it should matter)
[]
debian kali-linux raspberry-pi systemctl
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25
add a comment |
1So, I'm trying to get the status of a unit, but only the first 3 lines like this:
systemctl --user status resilio-sync --lines=3
I've tried various variations of this with -n 3 etc..., nothing works.
And the strange part: it always shows the full log (13 lines), instead of 10 lines which should be the default according to the documentation for systemctl.
Trying systemctl status
confirms this: it just outputs all 45 lines to the terminal, when it actually should be 10.
Am I missing something here? As far as I know I didn't change anything.
As a workaround I'm currently using
systemctl --user status resilio-sync | sed -ne '1,3p'
but I'd rather like to fix the underlying problem and use the native command.
System is Kali Linux (re4son-kernel, sticky fingers) on a Raspberry Pi (easy to blame on this strange setup, but since this is core linux functionality I don't think it should matter)
[]
debian kali-linux raspberry-pi systemctl
1So, I'm trying to get the status of a unit, but only the first 3 lines like this:
systemctl --user status resilio-sync --lines=3
I've tried various variations of this with -n 3 etc..., nothing works.
And the strange part: it always shows the full log (13 lines), instead of 10 lines which should be the default according to the documentation for systemctl.
Trying systemctl status
confirms this: it just outputs all 45 lines to the terminal, when it actually should be 10.
Am I missing something here? As far as I know I didn't change anything.
As a workaround I'm currently using
systemctl --user status resilio-sync | sed -ne '1,3p'
but I'd rather like to fix the underlying problem and use the native command.
System is Kali Linux (re4son-kernel, sticky fingers) on a Raspberry Pi (easy to blame on this strange setup, but since this is core linux functionality I don't think it should matter)
[]
debian kali-linux raspberry-pi systemctl
debian kali-linux raspberry-pi systemctl
edited Jan 17 at 11:24
Bauglir42
asked Jan 17 at 10:41
Bauglir42Bauglir42
234
234
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25
add a comment |
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
1
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25
add a comment |
2 Answers
2
active
oldest
votes
The command systemctl status
display the status of the service and the corresponding lines from journalctl
, the --lines=3
will limit the displayed number of lines from the journal to 3. e,g:
systemctl --user status resilio-sync --lines=0
will display only the status of esilio-sync
service without the journalctl
log.
-n, --lines=
When used with status, controls the number of journal lines to show, counting from the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to 10.
To limit the output of the systemctl status
command you can use options:
systemctl check resilio-sync
systemctl is-active resilio-sync
systemctl is-enabled resilio-sync
or by groupping the options:
systemctl is-active is-enabled resilio-sync
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to usehead
orsed
– Bauglir42
Jan 17 at 11:45
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
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%2f495017%2fsystemctl-status-always-shows-full-log-even-with-lines%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
The command systemctl status
display the status of the service and the corresponding lines from journalctl
, the --lines=3
will limit the displayed number of lines from the journal to 3. e,g:
systemctl --user status resilio-sync --lines=0
will display only the status of esilio-sync
service without the journalctl
log.
-n, --lines=
When used with status, controls the number of journal lines to show, counting from the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to 10.
To limit the output of the systemctl status
command you can use options:
systemctl check resilio-sync
systemctl is-active resilio-sync
systemctl is-enabled resilio-sync
or by groupping the options:
systemctl is-active is-enabled resilio-sync
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to usehead
orsed
– Bauglir42
Jan 17 at 11:45
add a comment |
The command systemctl status
display the status of the service and the corresponding lines from journalctl
, the --lines=3
will limit the displayed number of lines from the journal to 3. e,g:
systemctl --user status resilio-sync --lines=0
will display only the status of esilio-sync
service without the journalctl
log.
-n, --lines=
When used with status, controls the number of journal lines to show, counting from the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to 10.
To limit the output of the systemctl status
command you can use options:
systemctl check resilio-sync
systemctl is-active resilio-sync
systemctl is-enabled resilio-sync
or by groupping the options:
systemctl is-active is-enabled resilio-sync
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to usehead
orsed
– Bauglir42
Jan 17 at 11:45
add a comment |
The command systemctl status
display the status of the service and the corresponding lines from journalctl
, the --lines=3
will limit the displayed number of lines from the journal to 3. e,g:
systemctl --user status resilio-sync --lines=0
will display only the status of esilio-sync
service without the journalctl
log.
-n, --lines=
When used with status, controls the number of journal lines to show, counting from the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to 10.
To limit the output of the systemctl status
command you can use options:
systemctl check resilio-sync
systemctl is-active resilio-sync
systemctl is-enabled resilio-sync
or by groupping the options:
systemctl is-active is-enabled resilio-sync
The command systemctl status
display the status of the service and the corresponding lines from journalctl
, the --lines=3
will limit the displayed number of lines from the journal to 3. e,g:
systemctl --user status resilio-sync --lines=0
will display only the status of esilio-sync
service without the journalctl
log.
-n, --lines=
When used with status, controls the number of journal lines to show, counting from the most recent ones. Takes a positive integer argument, or 0 to disable journal output. Defaults to 10.
To limit the output of the systemctl status
command you can use options:
systemctl check resilio-sync
systemctl is-active resilio-sync
systemctl is-enabled resilio-sync
or by groupping the options:
systemctl is-active is-enabled resilio-sync
edited Jan 18 at 11:37
answered Jan 17 at 11:31
GAD3RGAD3R
26.6k1756110
26.6k1756110
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to usehead
orsed
– Bauglir42
Jan 17 at 11:45
add a comment |
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to usehead
orsed
– Bauglir42
Jan 17 at 11:45
1
1
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to use
head
or sed
– Bauglir42
Jan 17 at 11:45
ohhh the --lines argument only affects the journal part. I misunderstood the doc in that regard. Allright, that explains it, seems like I have to use
head
or sed
– Bauglir42
Jan 17 at 11:45
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
edited Jan 17 at 11:36
GAD3R
26.6k1756110
26.6k1756110
answered Jan 17 at 10:55
whistl034whistl034
212
212
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%2f495017%2fsystemctl-status-always-shows-full-log-even-with-lines%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
Welcome , Please add the output of the first command.
– GAD3R
Jan 17 at 11:17
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
Jan 17 at 11:25