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
New contributor
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
New contributor
Welcome , Please add the output of the first command.
– GAD3R
2 hours ago
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago
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
New contributor
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
New contributor
New contributor
edited 2 hours ago
Bauglir42
New contributor
asked 3 hours ago
Bauglir42Bauglir42
133
133
New contributor
New contributor
Welcome , Please add the output of the first command.
– GAD3R
2 hours ago
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago
add a comment |
Welcome , Please add the output of the first command.
– GAD3R
2 hours ago
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago
Welcome , Please add the output of the first command.
– GAD3R
2 hours ago
Welcome , Please add the output of the first command.
– GAD3R
2 hours ago
1
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago
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.
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
2 hours ago
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
New contributor
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
});
}
});
Bauglir42 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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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.
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
2 hours ago
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.
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
2 hours ago
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.
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.
edited 2 hours ago
answered 2 hours ago
GAD3RGAD3R
25.9k1751107
25.9k1751107
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
2 hours ago
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
2 hours ago
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
2 hours ago
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
2 hours ago
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
New contributor
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
New contributor
add a comment |
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
New contributor
This is what the head command was designed for.
systemctl --user status resilio-sync | head -n 3
New contributor
edited 2 hours ago
GAD3R
25.9k1751107
25.9k1751107
New contributor
answered 3 hours ago
whistl034whistl034
112
112
New contributor
New contributor
add a comment |
add a comment |
Bauglir42 is a new contributor. Be nice, and check out our Code of Conduct.
Bauglir42 is a new contributor. Be nice, and check out our Code of Conduct.
Bauglir42 is a new contributor. Be nice, and check out our Code of Conduct.
Bauglir42 is a new contributor. Be nice, and check out our Code of Conduct.
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
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
2 hours ago
1
added it as a picture as I don't have the other machine connected to the internet atm.
– Bauglir42
2 hours ago