Network Manager not working when installing ubuntu-desktop on a Ubuntu 18.04 Server installation
I have installed a Ubuntu 18.04 Server to be able to install on a RAID, followed by a ubuntu-desktop
install. The problem is that the Network Manager does not work now, it does not allow me to see or modify any of the network configuration. The network connection is displayed with the name "Wired Unmanaged". Maybe the server distro uses another system to configure the network that is not supported by NetworkManager? How can I move to a standard Desktop configuration of the network?
networking server network-manager desktop-environments 18.04
add a comment |
I have installed a Ubuntu 18.04 Server to be able to install on a RAID, followed by a ubuntu-desktop
install. The problem is that the Network Manager does not work now, it does not allow me to see or modify any of the network configuration. The network connection is displayed with the name "Wired Unmanaged". Maybe the server distro uses another system to configure the network that is not supported by NetworkManager? How can I move to a standard Desktop configuration of the network?
networking server network-manager desktop-environments 18.04
add a comment |
I have installed a Ubuntu 18.04 Server to be able to install on a RAID, followed by a ubuntu-desktop
install. The problem is that the Network Manager does not work now, it does not allow me to see or modify any of the network configuration. The network connection is displayed with the name "Wired Unmanaged". Maybe the server distro uses another system to configure the network that is not supported by NetworkManager? How can I move to a standard Desktop configuration of the network?
networking server network-manager desktop-environments 18.04
I have installed a Ubuntu 18.04 Server to be able to install on a RAID, followed by a ubuntu-desktop
install. The problem is that the Network Manager does not work now, it does not allow me to see or modify any of the network configuration. The network connection is displayed with the name "Wired Unmanaged". Maybe the server distro uses another system to configure the network that is not supported by NetworkManager? How can I move to a standard Desktop configuration of the network?
networking server network-manager desktop-environments 18.04
networking server network-manager desktop-environments 18.04
edited May 4 '18 at 12:26
Óscar
asked May 4 '18 at 12:20
ÓscarÓscar
3153614
3153614
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Are you aware that Ubuntu 18.04 introduced Netplan?
If you want to use network manager my understanding is you need to edit the netplan configuration file in /etc/netplan
.
Specifically to enable network manager your /etc/netplan
would look like this:
network:
version: 2
renderer: NetworkManager
You then need to run
netplan generate
netplan apply
After that, network manager should work as you expect.
2
I would also probably rename the file to/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.
– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
add a comment |
The other answer fixed my problem. I'm running VmWare workstation pro 14.1.2
This is what I did to fix "wired unmanaged" in Ubuntu Server 18.04
sudo nano /etc/netplan/50-cloud-init.yaml
add under network
network:
version: 2
renderer: NetworkManager
then perform:
sudo netplan generate
sudo netplan apply
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%2f1031956%2fnetwork-manager-not-working-when-installing-ubuntu-desktop-on-a-ubuntu-18-04-ser%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
Are you aware that Ubuntu 18.04 introduced Netplan?
If you want to use network manager my understanding is you need to edit the netplan configuration file in /etc/netplan
.
Specifically to enable network manager your /etc/netplan
would look like this:
network:
version: 2
renderer: NetworkManager
You then need to run
netplan generate
netplan apply
After that, network manager should work as you expect.
2
I would also probably rename the file to/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.
– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
add a comment |
Are you aware that Ubuntu 18.04 introduced Netplan?
If you want to use network manager my understanding is you need to edit the netplan configuration file in /etc/netplan
.
Specifically to enable network manager your /etc/netplan
would look like this:
network:
version: 2
renderer: NetworkManager
You then need to run
netplan generate
netplan apply
After that, network manager should work as you expect.
2
I would also probably rename the file to/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.
– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
add a comment |
Are you aware that Ubuntu 18.04 introduced Netplan?
If you want to use network manager my understanding is you need to edit the netplan configuration file in /etc/netplan
.
Specifically to enable network manager your /etc/netplan
would look like this:
network:
version: 2
renderer: NetworkManager
You then need to run
netplan generate
netplan apply
After that, network manager should work as you expect.
Are you aware that Ubuntu 18.04 introduced Netplan?
If you want to use network manager my understanding is you need to edit the netplan configuration file in /etc/netplan
.
Specifically to enable network manager your /etc/netplan
would look like this:
network:
version: 2
renderer: NetworkManager
You then need to run
netplan generate
netplan apply
After that, network manager should work as you expect.
edited Oct 8 '18 at 9:24
Zanna
50.9k13137241
50.9k13137241
answered May 4 '18 at 13:06
user202896user202896
8317
8317
2
I would also probably rename the file to/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.
– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
add a comment |
2
I would also probably rename the file to/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.
– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
2
2
I would also probably rename the file to
/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.– chili555
May 4 '18 at 14:45
I would also probably rename the file to
/etc/netplan/01-network-manager-all.yaml
or else remove the old file and write the new file.– chili555
May 4 '18 at 14:45
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
The file name has to begin with a number or it would not work for me. I.e. if I named the file foo.yaml, nm would not list my connections. I renamed it to 01-foo.yaml and it works fine now...
– Justin Sane
Nov 2 '18 at 9:48
add a comment |
The other answer fixed my problem. I'm running VmWare workstation pro 14.1.2
This is what I did to fix "wired unmanaged" in Ubuntu Server 18.04
sudo nano /etc/netplan/50-cloud-init.yaml
add under network
network:
version: 2
renderer: NetworkManager
then perform:
sudo netplan generate
sudo netplan apply
add a comment |
The other answer fixed my problem. I'm running VmWare workstation pro 14.1.2
This is what I did to fix "wired unmanaged" in Ubuntu Server 18.04
sudo nano /etc/netplan/50-cloud-init.yaml
add under network
network:
version: 2
renderer: NetworkManager
then perform:
sudo netplan generate
sudo netplan apply
add a comment |
The other answer fixed my problem. I'm running VmWare workstation pro 14.1.2
This is what I did to fix "wired unmanaged" in Ubuntu Server 18.04
sudo nano /etc/netplan/50-cloud-init.yaml
add under network
network:
version: 2
renderer: NetworkManager
then perform:
sudo netplan generate
sudo netplan apply
The other answer fixed my problem. I'm running VmWare workstation pro 14.1.2
This is what I did to fix "wired unmanaged" in Ubuntu Server 18.04
sudo nano /etc/netplan/50-cloud-init.yaml
add under network
network:
version: 2
renderer: NetworkManager
then perform:
sudo netplan generate
sudo netplan apply
edited Oct 8 '18 at 9:25
Zanna
50.9k13137241
50.9k13137241
answered Jun 8 '18 at 0:04
hprompthprompt
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%2f1031956%2fnetwork-manager-not-working-when-installing-ubuntu-desktop-on-a-ubuntu-18-04-ser%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