Where are network manager logs? (16.04)
I have new Ubuntu and I want to debug some errors in network settings.
I cannot find log for NetworkManager.
/var/log/syslog
and /var/log/daemon.log
- what people recommend on this stack exchange in other questions - are both empty.
Python script from this page - https://wiki.ubuntu.com/DebuggingNetworkManager - doesn't exist anymore.
sudo service network-manager status
displays a few lines of the log, but not all.
network-manager log
add a comment |
I have new Ubuntu and I want to debug some errors in network settings.
I cannot find log for NetworkManager.
/var/log/syslog
and /var/log/daemon.log
- what people recommend on this stack exchange in other questions - are both empty.
Python script from this page - https://wiki.ubuntu.com/DebuggingNetworkManager - doesn't exist anymore.
sudo service network-manager status
displays a few lines of the log, but not all.
network-manager log
add a comment |
I have new Ubuntu and I want to debug some errors in network settings.
I cannot find log for NetworkManager.
/var/log/syslog
and /var/log/daemon.log
- what people recommend on this stack exchange in other questions - are both empty.
Python script from this page - https://wiki.ubuntu.com/DebuggingNetworkManager - doesn't exist anymore.
sudo service network-manager status
displays a few lines of the log, but not all.
network-manager log
I have new Ubuntu and I want to debug some errors in network settings.
I cannot find log for NetworkManager.
/var/log/syslog
and /var/log/daemon.log
- what people recommend on this stack exchange in other questions - are both empty.
Python script from this page - https://wiki.ubuntu.com/DebuggingNetworkManager - doesn't exist anymore.
sudo service network-manager status
displays a few lines of the log, but not all.
network-manager log
network-manager log
edited Feb 20 '17 at 15:16
Karel Bílek
asked Feb 20 '17 at 15:09
Karel BílekKarel Bílek
85431223
85431223
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
journalctl -u NetworkManager
That does the trick
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
add a comment |
You can also try this one. You'll see some Network Manager state changes with this one.
sudo journalctl -fu NetworkManager
e.g.,
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] keyfile: add connection in-memory (xxx,"tun0")
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): Activation: starting connection 'tun0' (xxx)
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f885383%2fwhere-are-network-manager-logs-16-04%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
journalctl -u NetworkManager
That does the trick
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
add a comment |
journalctl -u NetworkManager
That does the trick
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
add a comment |
journalctl -u NetworkManager
That does the trick
journalctl -u NetworkManager
That does the trick
answered Feb 20 '17 at 15:18
Karel BílekKarel Bílek
85431223
85431223
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
add a comment |
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
This is Systemd only, I suppose.
– Kamiccolo
Jun 1 '18 at 10:43
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
Yes. Since the question is on askubuntu, it talks about systemd, because all ubuntu installations are with systemd (except for ancient ones).
– Karel Bílek
Jun 1 '18 at 14:29
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
What are You saying exactly? That Ubuntu 14.04 is not Ubuntu? Or users of those "ancient" versions, as You say, are not accepted in this StackExchange network site? You did ask the question without specifying Your Ubuntu version, so...
– Kamiccolo
Jun 1 '18 at 15:06
1
1
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
I specifically said the version in the title.
– Karel Bílek
Jun 4 '18 at 21:13
add a comment |
You can also try this one. You'll see some Network Manager state changes with this one.
sudo journalctl -fu NetworkManager
e.g.,
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] keyfile: add connection in-memory (xxx,"tun0")
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): Activation: starting connection 'tun0' (xxx)
add a comment |
You can also try this one. You'll see some Network Manager state changes with this one.
sudo journalctl -fu NetworkManager
e.g.,
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] keyfile: add connection in-memory (xxx,"tun0")
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): Activation: starting connection 'tun0' (xxx)
add a comment |
You can also try this one. You'll see some Network Manager state changes with this one.
sudo journalctl -fu NetworkManager
e.g.,
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] keyfile: add connection in-memory (xxx,"tun0")
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): Activation: starting connection 'tun0' (xxx)
You can also try this one. You'll see some Network Manager state changes with this one.
sudo journalctl -fu NetworkManager
e.g.,
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] keyfile: add connection in-memory (xxx,"tun0")
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Mar 15 09:06:37 macbookair NetworkManager[1098]: <info> [xxx] device (tun0): Activation: starting connection 'tun0' (xxx)
edited Mar 15 at 3:26
anonymous2
3,36241849
3,36241849
answered Mar 15 at 1:20
dejavuguidesdejavuguides
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f885383%2fwhere-are-network-manager-logs-16-04%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