Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,11 +123,10 @@ The software update page shows "packagekit cannot refresh cache whilst offline"

Create a placeholder file and network interface.

1. Create `/etc/NetworkManager/conf.d/10-globally-managed-devices.conf` with the contents:
1. Create an empty file on `/etc/NetworkManager/conf.d/10-globally-managed-devices.conf`:

```ini
[keyfile]
unmanaged-devices=none
sudo touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get the "restart NM", but a merely empty file won't do much?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I was looking at https://askubuntu.com/a/1075112, and in my testing, it appears to be working.

```

2. If you run on Ubuntu with arm64 (e.g.: on a Raspberry Pi), install extra Linux kernel modules for networking:
Expand All @@ -142,7 +141,11 @@ Create a placeholder file and network interface.
nmcli con add type dummy con-name fake ifname fake0 ip4 1.2.3.4/24 gw4 1.2.3.1
```

4. Reboot
4. Restart NetworkManager:

```
sudo systemctl restart NetworkManager
```

##### Explanation
{:.no_toc}
Expand Down