What does “Still Running” mean (Linux)?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
$ last -x reboot
reboot system boot 4.4.0-46-generic Mon Nov 14 12:15 still running
What does the "still running
" mean at the end of the log entry?
- Did the server reboot?
- Is it going try later?
- Is it still rebooting, or is something else still running and it's waiting?
I've looked everywhere, but I can't find any reference to this.
linux logging reboot
add a comment |
$ last -x reboot
reboot system boot 4.4.0-46-generic Mon Nov 14 12:15 still running
What does the "still running
" mean at the end of the log entry?
- Did the server reboot?
- Is it going try later?
- Is it still rebooting, or is something else still running and it's waiting?
I've looked everywhere, but I can't find any reference to this.
linux logging reboot
add a comment |
$ last -x reboot
reboot system boot 4.4.0-46-generic Mon Nov 14 12:15 still running
What does the "still running
" mean at the end of the log entry?
- Did the server reboot?
- Is it going try later?
- Is it still rebooting, or is something else still running and it's waiting?
I've looked everywhere, but I can't find any reference to this.
linux logging reboot
$ last -x reboot
reboot system boot 4.4.0-46-generic Mon Nov 14 12:15 still running
What does the "still running
" mean at the end of the log entry?
- Did the server reboot?
- Is it going try later?
- Is it still rebooting, or is something else still running and it's waiting?
I've looked everywhere, but I can't find any reference to this.
linux logging reboot
linux logging reboot
edited Nov 16 '16 at 16:14
3498DB
15.9k114862
15.9k114862
asked Nov 16 '16 at 15:22
user2966456user2966456
212
212
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
From the man page
The pseudo user reboot logs in each time the system is rebooted. Thus last reboot will show a log of all the reboots since the log file was created.
The reboot user hasn't logged out since you've rebooted, this is normal.
add a comment |
It means that the OS has not been rebooted since Mon Nov 14.
last
searches the file /var/log/wtmp
to show who logged in and out. The user reboot
logs run level changes (like reboot of the machine) which is shown by last -x
. I found this from man reboot
.
What OS are you running? On my Lubuntu 14.04 it does not show "still running" for reboot. This looks specific to OS implementation.
It does show "still logged in" for each of the terminal sessions my user account vagrant has open, which is what I expect to see.
vagrant@cordelia:~$ cat /etc/issue
Ubuntu 14.04.5 LTS n l
vagrant@cordelia:~$ last -x reboot | grep -i still
vagrant@cordelia:~$ last -x reboot
reboot system boot 3.13.0-77-generi Tue Sep 13 11:47 - 08:26 (63+21:39)
reboot system boot 3.13.0-77-generi Mon Sep 12 12:21 - 16:23 (04:02)
wtmp begins Fri Sep 9 11:23:08 2016
vagrant@cordelia:~$
vagrant@cordelia:~$ last | grep -i still | head
vagrant pts/4 :0 Wed Nov 16 08:22 still logged in
vagrant pts/18 :0 Wed Nov 2 10:25 still logged in
vagrant pts/17 :0 Wed Oct 19 10:23 still logged in
vagrant pts/16 :0 Fri Sep 16 09:36 still logged in
vagrant pts/15 :0 Fri Sep 16 09:30 still logged in
vagrant pts/13 :0 Fri Sep 16 09:22 still logged in
vagrant pts/12 :0 Wed Sep 14 14:52 still logged in
vagrant pts/10 :0 Wed Sep 14 14:35 still logged in
vagrant pts/9 :0 Wed Sep 14 14:34 still logged in
vagrant pts/5 :0 Tue Sep 13 15:28 still logged in
vagrant@cordelia:~$
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fsuperuser.com%2fquestions%2f1146476%2fwhat-does-still-running-mean-linux%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
From the man page
The pseudo user reboot logs in each time the system is rebooted. Thus last reboot will show a log of all the reboots since the log file was created.
The reboot user hasn't logged out since you've rebooted, this is normal.
add a comment |
From the man page
The pseudo user reboot logs in each time the system is rebooted. Thus last reboot will show a log of all the reboots since the log file was created.
The reboot user hasn't logged out since you've rebooted, this is normal.
add a comment |
From the man page
The pseudo user reboot logs in each time the system is rebooted. Thus last reboot will show a log of all the reboots since the log file was created.
The reboot user hasn't logged out since you've rebooted, this is normal.
From the man page
The pseudo user reboot logs in each time the system is rebooted. Thus last reboot will show a log of all the reboots since the log file was created.
The reboot user hasn't logged out since you've rebooted, this is normal.
answered Nov 16 '16 at 16:27
GremlinGremlin
1841115
1841115
add a comment |
add a comment |
It means that the OS has not been rebooted since Mon Nov 14.
last
searches the file /var/log/wtmp
to show who logged in and out. The user reboot
logs run level changes (like reboot of the machine) which is shown by last -x
. I found this from man reboot
.
What OS are you running? On my Lubuntu 14.04 it does not show "still running" for reboot. This looks specific to OS implementation.
It does show "still logged in" for each of the terminal sessions my user account vagrant has open, which is what I expect to see.
vagrant@cordelia:~$ cat /etc/issue
Ubuntu 14.04.5 LTS n l
vagrant@cordelia:~$ last -x reboot | grep -i still
vagrant@cordelia:~$ last -x reboot
reboot system boot 3.13.0-77-generi Tue Sep 13 11:47 - 08:26 (63+21:39)
reboot system boot 3.13.0-77-generi Mon Sep 12 12:21 - 16:23 (04:02)
wtmp begins Fri Sep 9 11:23:08 2016
vagrant@cordelia:~$
vagrant@cordelia:~$ last | grep -i still | head
vagrant pts/4 :0 Wed Nov 16 08:22 still logged in
vagrant pts/18 :0 Wed Nov 2 10:25 still logged in
vagrant pts/17 :0 Wed Oct 19 10:23 still logged in
vagrant pts/16 :0 Fri Sep 16 09:36 still logged in
vagrant pts/15 :0 Fri Sep 16 09:30 still logged in
vagrant pts/13 :0 Fri Sep 16 09:22 still logged in
vagrant pts/12 :0 Wed Sep 14 14:52 still logged in
vagrant pts/10 :0 Wed Sep 14 14:35 still logged in
vagrant pts/9 :0 Wed Sep 14 14:34 still logged in
vagrant pts/5 :0 Tue Sep 13 15:28 still logged in
vagrant@cordelia:~$
add a comment |
It means that the OS has not been rebooted since Mon Nov 14.
last
searches the file /var/log/wtmp
to show who logged in and out. The user reboot
logs run level changes (like reboot of the machine) which is shown by last -x
. I found this from man reboot
.
What OS are you running? On my Lubuntu 14.04 it does not show "still running" for reboot. This looks specific to OS implementation.
It does show "still logged in" for each of the terminal sessions my user account vagrant has open, which is what I expect to see.
vagrant@cordelia:~$ cat /etc/issue
Ubuntu 14.04.5 LTS n l
vagrant@cordelia:~$ last -x reboot | grep -i still
vagrant@cordelia:~$ last -x reboot
reboot system boot 3.13.0-77-generi Tue Sep 13 11:47 - 08:26 (63+21:39)
reboot system boot 3.13.0-77-generi Mon Sep 12 12:21 - 16:23 (04:02)
wtmp begins Fri Sep 9 11:23:08 2016
vagrant@cordelia:~$
vagrant@cordelia:~$ last | grep -i still | head
vagrant pts/4 :0 Wed Nov 16 08:22 still logged in
vagrant pts/18 :0 Wed Nov 2 10:25 still logged in
vagrant pts/17 :0 Wed Oct 19 10:23 still logged in
vagrant pts/16 :0 Fri Sep 16 09:36 still logged in
vagrant pts/15 :0 Fri Sep 16 09:30 still logged in
vagrant pts/13 :0 Fri Sep 16 09:22 still logged in
vagrant pts/12 :0 Wed Sep 14 14:52 still logged in
vagrant pts/10 :0 Wed Sep 14 14:35 still logged in
vagrant pts/9 :0 Wed Sep 14 14:34 still logged in
vagrant pts/5 :0 Tue Sep 13 15:28 still logged in
vagrant@cordelia:~$
add a comment |
It means that the OS has not been rebooted since Mon Nov 14.
last
searches the file /var/log/wtmp
to show who logged in and out. The user reboot
logs run level changes (like reboot of the machine) which is shown by last -x
. I found this from man reboot
.
What OS are you running? On my Lubuntu 14.04 it does not show "still running" for reboot. This looks specific to OS implementation.
It does show "still logged in" for each of the terminal sessions my user account vagrant has open, which is what I expect to see.
vagrant@cordelia:~$ cat /etc/issue
Ubuntu 14.04.5 LTS n l
vagrant@cordelia:~$ last -x reboot | grep -i still
vagrant@cordelia:~$ last -x reboot
reboot system boot 3.13.0-77-generi Tue Sep 13 11:47 - 08:26 (63+21:39)
reboot system boot 3.13.0-77-generi Mon Sep 12 12:21 - 16:23 (04:02)
wtmp begins Fri Sep 9 11:23:08 2016
vagrant@cordelia:~$
vagrant@cordelia:~$ last | grep -i still | head
vagrant pts/4 :0 Wed Nov 16 08:22 still logged in
vagrant pts/18 :0 Wed Nov 2 10:25 still logged in
vagrant pts/17 :0 Wed Oct 19 10:23 still logged in
vagrant pts/16 :0 Fri Sep 16 09:36 still logged in
vagrant pts/15 :0 Fri Sep 16 09:30 still logged in
vagrant pts/13 :0 Fri Sep 16 09:22 still logged in
vagrant pts/12 :0 Wed Sep 14 14:52 still logged in
vagrant pts/10 :0 Wed Sep 14 14:35 still logged in
vagrant pts/9 :0 Wed Sep 14 14:34 still logged in
vagrant pts/5 :0 Tue Sep 13 15:28 still logged in
vagrant@cordelia:~$
It means that the OS has not been rebooted since Mon Nov 14.
last
searches the file /var/log/wtmp
to show who logged in and out. The user reboot
logs run level changes (like reboot of the machine) which is shown by last -x
. I found this from man reboot
.
What OS are you running? On my Lubuntu 14.04 it does not show "still running" for reboot. This looks specific to OS implementation.
It does show "still logged in" for each of the terminal sessions my user account vagrant has open, which is what I expect to see.
vagrant@cordelia:~$ cat /etc/issue
Ubuntu 14.04.5 LTS n l
vagrant@cordelia:~$ last -x reboot | grep -i still
vagrant@cordelia:~$ last -x reboot
reboot system boot 3.13.0-77-generi Tue Sep 13 11:47 - 08:26 (63+21:39)
reboot system boot 3.13.0-77-generi Mon Sep 12 12:21 - 16:23 (04:02)
wtmp begins Fri Sep 9 11:23:08 2016
vagrant@cordelia:~$
vagrant@cordelia:~$ last | grep -i still | head
vagrant pts/4 :0 Wed Nov 16 08:22 still logged in
vagrant pts/18 :0 Wed Nov 2 10:25 still logged in
vagrant pts/17 :0 Wed Oct 19 10:23 still logged in
vagrant pts/16 :0 Fri Sep 16 09:36 still logged in
vagrant pts/15 :0 Fri Sep 16 09:30 still logged in
vagrant pts/13 :0 Fri Sep 16 09:22 still logged in
vagrant pts/12 :0 Wed Sep 14 14:52 still logged in
vagrant pts/10 :0 Wed Sep 14 14:35 still logged in
vagrant pts/9 :0 Wed Sep 14 14:34 still logged in
vagrant pts/5 :0 Tue Sep 13 15:28 still logged in
vagrant@cordelia:~$
answered Nov 16 '16 at 16:31
StandardEyreStandardEyre
3231312
3231312
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1146476%2fwhat-does-still-running-mean-linux%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