Ubuntu 18.04 internet connection not working (using VMWare Fusion)
Not sure what happened. Yesterday everything worked, today I booted up my VMware and it seems Ubuntu doesn't have an internet connection at all.
Tried all the different options (besides NAT that I normally use) like Bridged and Host-Only but it didn't help. Tried restarting my network via terminal etc. Under Ubuntu's internet settings it just shows that no Wi-Fi adapter is found.
Not sure what happened overnight, maybe some update that got installed? I did accidentally turn off the host computer before I could correctly shut down Ubuntu's VMware session but I doubt that did anything. Windows 7 that is also running on VMware on the other hand works perfectly.
How to proceed? Thanks!
UPDATE: Followed this https://ubuntuforums.org/showthread.php?t=1400504 and got it working :)
networking 18.04 vmware vmware-fusion
add a comment |
Not sure what happened. Yesterday everything worked, today I booted up my VMware and it seems Ubuntu doesn't have an internet connection at all.
Tried all the different options (besides NAT that I normally use) like Bridged and Host-Only but it didn't help. Tried restarting my network via terminal etc. Under Ubuntu's internet settings it just shows that no Wi-Fi adapter is found.
Not sure what happened overnight, maybe some update that got installed? I did accidentally turn off the host computer before I could correctly shut down Ubuntu's VMware session but I doubt that did anything. Windows 7 that is also running on VMware on the other hand works perfectly.
How to proceed? Thanks!
UPDATE: Followed this https://ubuntuforums.org/showthread.php?t=1400504 and got it working :)
networking 18.04 vmware vmware-fusion
add a comment |
Not sure what happened. Yesterday everything worked, today I booted up my VMware and it seems Ubuntu doesn't have an internet connection at all.
Tried all the different options (besides NAT that I normally use) like Bridged and Host-Only but it didn't help. Tried restarting my network via terminal etc. Under Ubuntu's internet settings it just shows that no Wi-Fi adapter is found.
Not sure what happened overnight, maybe some update that got installed? I did accidentally turn off the host computer before I could correctly shut down Ubuntu's VMware session but I doubt that did anything. Windows 7 that is also running on VMware on the other hand works perfectly.
How to proceed? Thanks!
UPDATE: Followed this https://ubuntuforums.org/showthread.php?t=1400504 and got it working :)
networking 18.04 vmware vmware-fusion
Not sure what happened. Yesterday everything worked, today I booted up my VMware and it seems Ubuntu doesn't have an internet connection at all.
Tried all the different options (besides NAT that I normally use) like Bridged and Host-Only but it didn't help. Tried restarting my network via terminal etc. Under Ubuntu's internet settings it just shows that no Wi-Fi adapter is found.
Not sure what happened overnight, maybe some update that got installed? I did accidentally turn off the host computer before I could correctly shut down Ubuntu's VMware session but I doubt that did anything. Windows 7 that is also running on VMware on the other hand works perfectly.
How to proceed? Thanks!
UPDATE: Followed this https://ubuntuforums.org/showthread.php?t=1400504 and got it working :)
networking 18.04 vmware vmware-fusion
networking 18.04 vmware vmware-fusion
edited Sep 7 '18 at 10:02
Aleksandr
asked Sep 7 '18 at 9:49
AleksandrAleksandr
114
114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Got it working by browsing through multiple threads.
First check if your network is disabled by using the following cmd in terminal:
sudo lshw -C network
If it shows disabled after the name of your adapter ( note down the logical name for later use)
*-network DISABLED
description: Ethernet interface
product: 82545EM Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:02:01.0
logical name: ens33
All we need to do is enable the adapter, so lets get started.
open up your interfaces file by using the following cmd:
sudo gedit /etc/network/interfaces
My file had the following data written:
auto lo
iface lo loopback
But the logical name of my NIC was ens33 ( not lo), so i changed it to read the following and saved the file.
auto ens33
iface ens33 inet dhcp
Now time to restart the networking service .
sudo /etc/init.d/networking restart
check if network is back up, it shouldn't have that disabled tag anymore.
sudo lshw -C network
Enjoy your internet :)
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f1073031%2fubuntu-18-04-internet-connection-not-working-using-vmware-fusion%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Got it working by browsing through multiple threads.
First check if your network is disabled by using the following cmd in terminal:
sudo lshw -C network
If it shows disabled after the name of your adapter ( note down the logical name for later use)
*-network DISABLED
description: Ethernet interface
product: 82545EM Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:02:01.0
logical name: ens33
All we need to do is enable the adapter, so lets get started.
open up your interfaces file by using the following cmd:
sudo gedit /etc/network/interfaces
My file had the following data written:
auto lo
iface lo loopback
But the logical name of my NIC was ens33 ( not lo), so i changed it to read the following and saved the file.
auto ens33
iface ens33 inet dhcp
Now time to restart the networking service .
sudo /etc/init.d/networking restart
check if network is back up, it shouldn't have that disabled tag anymore.
sudo lshw -C network
Enjoy your internet :)
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Got it working by browsing through multiple threads.
First check if your network is disabled by using the following cmd in terminal:
sudo lshw -C network
If it shows disabled after the name of your adapter ( note down the logical name for later use)
*-network DISABLED
description: Ethernet interface
product: 82545EM Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:02:01.0
logical name: ens33
All we need to do is enable the adapter, so lets get started.
open up your interfaces file by using the following cmd:
sudo gedit /etc/network/interfaces
My file had the following data written:
auto lo
iface lo loopback
But the logical name of my NIC was ens33 ( not lo), so i changed it to read the following and saved the file.
auto ens33
iface ens33 inet dhcp
Now time to restart the networking service .
sudo /etc/init.d/networking restart
check if network is back up, it shouldn't have that disabled tag anymore.
sudo lshw -C network
Enjoy your internet :)
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
Got it working by browsing through multiple threads.
First check if your network is disabled by using the following cmd in terminal:
sudo lshw -C network
If it shows disabled after the name of your adapter ( note down the logical name for later use)
*-network DISABLED
description: Ethernet interface
product: 82545EM Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:02:01.0
logical name: ens33
All we need to do is enable the adapter, so lets get started.
open up your interfaces file by using the following cmd:
sudo gedit /etc/network/interfaces
My file had the following data written:
auto lo
iface lo loopback
But the logical name of my NIC was ens33 ( not lo), so i changed it to read the following and saved the file.
auto ens33
iface ens33 inet dhcp
Now time to restart the networking service .
sudo /etc/init.d/networking restart
check if network is back up, it shouldn't have that disabled tag anymore.
sudo lshw -C network
Enjoy your internet :)
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Got it working by browsing through multiple threads.
First check if your network is disabled by using the following cmd in terminal:
sudo lshw -C network
If it shows disabled after the name of your adapter ( note down the logical name for later use)
*-network DISABLED
description: Ethernet interface
product: 82545EM Gigabit Ethernet Controller (Copper)
vendor: Intel Corporation
physical id: 1
bus info: pci@0000:02:01.0
logical name: ens33
All we need to do is enable the adapter, so lets get started.
open up your interfaces file by using the following cmd:
sudo gedit /etc/network/interfaces
My file had the following data written:
auto lo
iface lo loopback
But the logical name of my NIC was ens33 ( not lo), so i changed it to read the following and saved the file.
auto ens33
iface ens33 inet dhcp
Now time to restart the networking service .
sudo /etc/init.d/networking restart
check if network is back up, it shouldn't have that disabled tag anymore.
sudo lshw -C network
Enjoy your internet :)
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
answered 9 hours ago
Abhishek VijAbhishek Vij
111
111
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Abhishek Vij is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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%2f1073031%2fubuntu-18-04-internet-connection-not-working-using-vmware-fusion%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