A start job is running for wait for network to be configured. Ubuntu server 17.10 Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is the difference between “systemctl mask” and “systemctl disable”?Start job is running for wait for network to be configured. Ubuntu server 18.04Can't SSH to Raspberry Pi via wired connection with static IPHow do I decrease the timeout on ifup?Ubuntu 14.04 Server Install Unable to Connect to Network via EthernetHow to disable ethernet check during bootListing network hardware - why does Ubuntu sometimes hide eth0 until it is connected?Random Loss of Internet connection over wifi in ubuntu 16.04LTSunstable networkUbuntu server can't update/install. systemd Failed to start Wait for Network to be ConfiguredHow I made my new ubuntu server 17.10 installation only use WiFiStart job is running for wait for network to be configured. Ubuntu server 18.04Ubuntu 18.04.1 does not boot without ethernet cable
Is there a "higher Segal conjecture"?
Stars Make Stars
The logistics of corpse disposal
How to deal with a team lead who never gives me credit?
Do I really need recursive chmod to restrict access to a folder?
What does the "x" in "x86" represent?
Why is "Captain Marvel" translated as male in Portugal?
How to motivate offshore teams and trust them to deliver?
Is it ethical to give a final exam after the proffesor has quit before teaching the remaing chapters of the course?
What's the purpose of writing one's academic bio in 3rd person?
How to find all the available tools in macOS terminal?
Disable hyphenation for an entire paragraph
Why is "Consequences inflicted." not a sentence?
How much radiation do nuclear physics experiments expose researchers to nowadays?
How to recreate this effect in Photoshop?
Why aren't air breathing engines used as small first stages
Doubts about chords
How to draw this diagram using TikZ package?
How do I keep my slimes from escaping their pens?
Did Xerox really develop the first LAN?
How does a Death Domain cleric's Touch of Death feature work with Touch-range spells delivered by familiars?
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
Should I discuss the type of campaign with my players?
"Seemed to had" is it correct?
A start job is running for wait for network to be configured. Ubuntu server 17.10
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)What is the difference between “systemctl mask” and “systemctl disable”?Start job is running for wait for network to be configured. Ubuntu server 18.04Can't SSH to Raspberry Pi via wired connection with static IPHow do I decrease the timeout on ifup?Ubuntu 14.04 Server Install Unable to Connect to Network via EthernetHow to disable ethernet check during bootListing network hardware - why does Ubuntu sometimes hide eth0 until it is connected?Random Loss of Internet connection over wifi in ubuntu 16.04LTSunstable networkUbuntu server can't update/install. systemd Failed to start Wait for Network to be ConfiguredHow I made my new ubuntu server 17.10 installation only use WiFiStart job is running for wait for network to be configured. Ubuntu server 18.04Ubuntu 18.04.1 does not boot without ethernet cable
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
i just installed ubuntu server on my laptop and everything works fine except for the fact that at boot if the laptop is not connected to ethernet or in range of my wi-fi i get this message "A start job is running for wait for network to be configured" that stays for about 2 minutes. I looked up online for solutions and i tried to:
- Disable network manager
- Edit timeout settings in /etc/systemd/system.conf
- Disable systemd.networkd-wait-online.service
None of these solutions worked for me. Any possible fixes?
networking 17.10
add a comment |
i just installed ubuntu server on my laptop and everything works fine except for the fact that at boot if the laptop is not connected to ethernet or in range of my wi-fi i get this message "A start job is running for wait for network to be configured" that stays for about 2 minutes. I looked up online for solutions and i tried to:
- Disable network manager
- Edit timeout settings in /etc/systemd/system.conf
- Disable systemd.networkd-wait-online.service
None of these solutions worked for me. Any possible fixes?
networking 17.10
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23
add a comment |
i just installed ubuntu server on my laptop and everything works fine except for the fact that at boot if the laptop is not connected to ethernet or in range of my wi-fi i get this message "A start job is running for wait for network to be configured" that stays for about 2 minutes. I looked up online for solutions and i tried to:
- Disable network manager
- Edit timeout settings in /etc/systemd/system.conf
- Disable systemd.networkd-wait-online.service
None of these solutions worked for me. Any possible fixes?
networking 17.10
i just installed ubuntu server on my laptop and everything works fine except for the fact that at boot if the laptop is not connected to ethernet or in range of my wi-fi i get this message "A start job is running for wait for network to be configured" that stays for about 2 minutes. I looked up online for solutions and i tried to:
- Disable network manager
- Edit timeout settings in /etc/systemd/system.conf
- Disable systemd.networkd-wait-online.service
None of these solutions worked for me. Any possible fixes?
networking 17.10
networking 17.10
asked Nov 2 '17 at 17:37
vlad27vlad27
101113
101113
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23
add a comment |
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23
add a comment |
4 Answers
4
active
oldest
votes
Use
systemctl disable systemd-networkd-wait-online.service
to disable the wait-online service to prevent the system from waiting on a network connection, and use
systemctl mask systemd-networkd-wait-online.service
to prevent the service from starting if requested by another service (the service is symlinked to /dev/null
).
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation ofsystemctl mask
. Long story short: masking a service redirects it to/dev/null
, preventing it from being re-enabled in the case that it is required by another service.
– timelmer
Apr 18 '18 at 22:43
add a comment |
Don't mask or disable the systemd service.
Edit /etc/netplan/01-netcfg.yaml
and add optional: true
to any devices that may not always be available.
sudo netplan apply
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
add a comment |
This means systemd-networkd-wait-online.service
is hanging. There's a few known bugs with it. Check what services want network-online.target
with:
systemctl show -p WantedBy network-online.target
You can disable those services if you want. Otherwise, you may have to mask the service as Mr.Ecco indicated.
add a comment |
Use commands:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
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%2f972215%2fa-start-job-is-running-for-wait-for-network-to-be-configured-ubuntu-server-17-1%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
Use
systemctl disable systemd-networkd-wait-online.service
to disable the wait-online service to prevent the system from waiting on a network connection, and use
systemctl mask systemd-networkd-wait-online.service
to prevent the service from starting if requested by another service (the service is symlinked to /dev/null
).
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation ofsystemctl mask
. Long story short: masking a service redirects it to/dev/null
, preventing it from being re-enabled in the case that it is required by another service.
– timelmer
Apr 18 '18 at 22:43
add a comment |
Use
systemctl disable systemd-networkd-wait-online.service
to disable the wait-online service to prevent the system from waiting on a network connection, and use
systemctl mask systemd-networkd-wait-online.service
to prevent the service from starting if requested by another service (the service is symlinked to /dev/null
).
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation ofsystemctl mask
. Long story short: masking a service redirects it to/dev/null
, preventing it from being re-enabled in the case that it is required by another service.
– timelmer
Apr 18 '18 at 22:43
add a comment |
Use
systemctl disable systemd-networkd-wait-online.service
to disable the wait-online service to prevent the system from waiting on a network connection, and use
systemctl mask systemd-networkd-wait-online.service
to prevent the service from starting if requested by another service (the service is symlinked to /dev/null
).
Use
systemctl disable systemd-networkd-wait-online.service
to disable the wait-online service to prevent the system from waiting on a network connection, and use
systemctl mask systemd-networkd-wait-online.service
to prevent the service from starting if requested by another service (the service is symlinked to /dev/null
).
edited Apr 19 '18 at 2:50
fosslinux
2,39521837
2,39521837
answered Nov 23 '17 at 12:33
Mr.EccoMr.Ecco
28122
28122
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation ofsystemctl mask
. Long story short: masking a service redirects it to/dev/null
, preventing it from being re-enabled in the case that it is required by another service.
– timelmer
Apr 18 '18 at 22:43
add a comment |
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation ofsystemctl mask
. Long story short: masking a service redirects it to/dev/null
, preventing it from being re-enabled in the case that it is required by another service.
– timelmer
Apr 18 '18 at 22:43
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
What means masking in this context?.
– Jaime Hablutzel
Mar 27 '18 at 3:37
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
It worked. :) Can you please describe what we have done here? I am just curious.
– SD.
Apr 14 '18 at 5:22
2
2
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation of
systemctl mask
. Long story short: masking a service redirects it to /dev/null
, preventing it from being re-enabled in the case that it is required by another service.– timelmer
Apr 18 '18 at 22:43
@SD @jaime-hablutzel See askubuntu.com/a/816378/445084 for an explanation of
systemctl mask
. Long story short: masking a service redirects it to /dev/null
, preventing it from being re-enabled in the case that it is required by another service.– timelmer
Apr 18 '18 at 22:43
add a comment |
Don't mask or disable the systemd service.
Edit /etc/netplan/01-netcfg.yaml
and add optional: true
to any devices that may not always be available.
sudo netplan apply
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
add a comment |
Don't mask or disable the systemd service.
Edit /etc/netplan/01-netcfg.yaml
and add optional: true
to any devices that may not always be available.
sudo netplan apply
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
add a comment |
Don't mask or disable the systemd service.
Edit /etc/netplan/01-netcfg.yaml
and add optional: true
to any devices that may not always be available.
sudo netplan apply
Don't mask or disable the systemd service.
Edit /etc/netplan/01-netcfg.yaml
and add optional: true
to any devices that may not always be available.
sudo netplan apply
edited Feb 20 at 22:19
Kristopher Ives
2,96211525
2,96211525
answered Jan 17 at 5:35
user914826user914826
10112
10112
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
add a comment |
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
In my case it only worked after setting all interfaces to optional: true
– duli
Mar 4 at 14:11
add a comment |
This means systemd-networkd-wait-online.service
is hanging. There's a few known bugs with it. Check what services want network-online.target
with:
systemctl show -p WantedBy network-online.target
You can disable those services if you want. Otherwise, you may have to mask the service as Mr.Ecco indicated.
add a comment |
This means systemd-networkd-wait-online.service
is hanging. There's a few known bugs with it. Check what services want network-online.target
with:
systemctl show -p WantedBy network-online.target
You can disable those services if you want. Otherwise, you may have to mask the service as Mr.Ecco indicated.
add a comment |
This means systemd-networkd-wait-online.service
is hanging. There's a few known bugs with it. Check what services want network-online.target
with:
systemctl show -p WantedBy network-online.target
You can disable those services if you want. Otherwise, you may have to mask the service as Mr.Ecco indicated.
This means systemd-networkd-wait-online.service
is hanging. There's a few known bugs with it. Check what services want network-online.target
with:
systemctl show -p WantedBy network-online.target
You can disable those services if you want. Otherwise, you may have to mask the service as Mr.Ecco indicated.
edited Sep 19 '18 at 9:44
Afriza N. Arief
1237
1237
answered Mar 5 '18 at 18:01
Duncan X SimpsonDuncan X Simpson
408416
408416
add a comment |
add a comment |
Use commands:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
add a comment |
Use commands:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
add a comment |
Use commands:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service
Use commands:
$ sudo systemctl stop systemd-networkd-wait-online.service
$ sudo systemctl disable systemd-networkd-wait-online.service
edited Sep 19 '18 at 11:31
Melebius
5,09352041
5,09352041
answered Sep 19 '18 at 10:46
Jeewan PrakashJeewan Prakash
13
13
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
add a comment |
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
7
7
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
Could you explain why this is better than the top answer?
– Melebius
Sep 19 '18 at 11:31
3
3
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
Welcome to Ask Ubuntu! When you answer, please refrain from posting commands without context. We'd like to see why a given command fixes a problem. Also, as a side note, unless you manually enabled systemd-networkd-wait-online.service, those two commands are not sufficient.
– Duncan X Simpson
Sep 19 '18 at 14:31
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%2f972215%2fa-start-job-is-running-for-wait-for-network-to-be-configured-ubuntu-server-17-1%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
Those are the fixes. After each change, did you reload NM/systemd? They only read their config files at start.
– user535733
Nov 2 '17 at 17:55
Yes i used systemctl daemon-reload, still the same result
– vlad27
Nov 2 '17 at 18:23