Skip to content

Commit 4b1d4f2

Browse files
committed
update bootup
1 parent 1fdd057 commit 4b1d4f2

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_posts/2023-07-18-troubleshooting-lxc-bootup.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ From here it looked like an issue with some service waiting for `network-online.
3232
systemctl show -p WantedBy network-online.target
3333
```
3434

35-
The issue seemed like `/etc/systemd/system/systemd-networkd-wait-online.service` was hung and did not return. This resulted in basically waiting 2 minutes until the timeout. Instead I made the service more specific. I used `ip link` to get the name of my ethernet adapter. Then I could check it specifically.
35+
The issue seemed like `/etc/systemd/system/systemd-networkd-wait-online.service` was hung and did not return. This resulted in basically waiting 2 minutes until the timeout. Instead I made the service more specific. I used `ip link` to get the name of my ethernet adapter. Then I could check it specifically using `-i eth0`.
36+
37+
```bash
38+
sudo nano /etc/systemd/system/network-online.target.wants/systemd-networkd-wait-online.service
39+
```
3640

3741
```conf
3842
[Unit]

0 commit comments

Comments
 (0)