WiFi works on Ubuntu, but not wired connection












0














I installed Ubuntu (server) onto a computer and during the setup I connected it to my wifi and it works fine. However I am trying to move it to a wired connection and it doesn't seem to recognize the connection.



sudo netplan -debug generate does not return any errors.



I know that the connection should work. It works when connected to my laptop and the light on the ethernet port on the back of the computer flashes when the computer is booting but then turns off when it finishes booting.



lshw returns:



 *-network DISABLED
description: Ethernet interface
product: 88E8056 PCI-E Gigabit Ethernet Controller
vendor: Marvell Technology Group Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: ens33
version: 14
serial: 00:21:97:0f:26:21
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.30 latency=0 link=no multicast=yes port=twisted pair
resources: irq:26 memory:feafc000-feafffff ioport:e800(size=256) memory:feac0000-feadffff


ifconfig returns:



lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1716 bytes 215593 (215.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1716 bytes 215593 (215.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp3s1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.33 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::215:e9ff:fe4c:261 prefixlen 64 scopeid 0x20<link>
ether 00:15:e9:4c:02:61 txqueuelen 1000 (Ethernet)
RX packets 13520 bytes 4311598 (4.3 MB)
RX errors 0 dropped 998 overruns 0 frame 0
TX packets 8205 bytes 5869540 (5.8 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


ip route:



default via 192.168.1.1 dev wlp3s1 proto dhcp src 192.168.1.33 metric 600
192.168.1.0/24 dev wlp3s1 proto kernel scope link src 192.168.1.33
192.168.1.1 dev wlp3s1 proto dhcp scope link src 192.168.1.33 metric 600


cat /etc/netplan/*.yaml:



# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2 <--indentation in entire script is incorrect
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
access-points:
3MightyMen:
password: 3346993030
ethernets:
en33: <--wrong, should be ens33:
dhcp3: true <--wrong, should be dhcp4:









share|improve this question
























  • Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
    – waltinator
    Dec 5 at 23:00










  • Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
    – chili555
    Dec 5 at 23:04










  • You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
    – heynnema
    Dec 7 at 14:05


















0














I installed Ubuntu (server) onto a computer and during the setup I connected it to my wifi and it works fine. However I am trying to move it to a wired connection and it doesn't seem to recognize the connection.



sudo netplan -debug generate does not return any errors.



I know that the connection should work. It works when connected to my laptop and the light on the ethernet port on the back of the computer flashes when the computer is booting but then turns off when it finishes booting.



lshw returns:



 *-network DISABLED
description: Ethernet interface
product: 88E8056 PCI-E Gigabit Ethernet Controller
vendor: Marvell Technology Group Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: ens33
version: 14
serial: 00:21:97:0f:26:21
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.30 latency=0 link=no multicast=yes port=twisted pair
resources: irq:26 memory:feafc000-feafffff ioport:e800(size=256) memory:feac0000-feadffff


ifconfig returns:



lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1716 bytes 215593 (215.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1716 bytes 215593 (215.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp3s1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.33 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::215:e9ff:fe4c:261 prefixlen 64 scopeid 0x20<link>
ether 00:15:e9:4c:02:61 txqueuelen 1000 (Ethernet)
RX packets 13520 bytes 4311598 (4.3 MB)
RX errors 0 dropped 998 overruns 0 frame 0
TX packets 8205 bytes 5869540 (5.8 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


ip route:



default via 192.168.1.1 dev wlp3s1 proto dhcp src 192.168.1.33 metric 600
192.168.1.0/24 dev wlp3s1 proto kernel scope link src 192.168.1.33
192.168.1.1 dev wlp3s1 proto dhcp scope link src 192.168.1.33 metric 600


cat /etc/netplan/*.yaml:



# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2 <--indentation in entire script is incorrect
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
access-points:
3MightyMen:
password: 3346993030
ethernets:
en33: <--wrong, should be ens33:
dhcp3: true <--wrong, should be dhcp4:









share|improve this question
























  • Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
    – waltinator
    Dec 5 at 23:00










  • Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
    – chili555
    Dec 5 at 23:04










  • You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
    – heynnema
    Dec 7 at 14:05
















0












0








0







I installed Ubuntu (server) onto a computer and during the setup I connected it to my wifi and it works fine. However I am trying to move it to a wired connection and it doesn't seem to recognize the connection.



sudo netplan -debug generate does not return any errors.



I know that the connection should work. It works when connected to my laptop and the light on the ethernet port on the back of the computer flashes when the computer is booting but then turns off when it finishes booting.



lshw returns:



 *-network DISABLED
description: Ethernet interface
product: 88E8056 PCI-E Gigabit Ethernet Controller
vendor: Marvell Technology Group Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: ens33
version: 14
serial: 00:21:97:0f:26:21
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.30 latency=0 link=no multicast=yes port=twisted pair
resources: irq:26 memory:feafc000-feafffff ioport:e800(size=256) memory:feac0000-feadffff


ifconfig returns:



lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1716 bytes 215593 (215.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1716 bytes 215593 (215.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp3s1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.33 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::215:e9ff:fe4c:261 prefixlen 64 scopeid 0x20<link>
ether 00:15:e9:4c:02:61 txqueuelen 1000 (Ethernet)
RX packets 13520 bytes 4311598 (4.3 MB)
RX errors 0 dropped 998 overruns 0 frame 0
TX packets 8205 bytes 5869540 (5.8 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


ip route:



default via 192.168.1.1 dev wlp3s1 proto dhcp src 192.168.1.33 metric 600
192.168.1.0/24 dev wlp3s1 proto kernel scope link src 192.168.1.33
192.168.1.1 dev wlp3s1 proto dhcp scope link src 192.168.1.33 metric 600


cat /etc/netplan/*.yaml:



# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2 <--indentation in entire script is incorrect
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
access-points:
3MightyMen:
password: 3346993030
ethernets:
en33: <--wrong, should be ens33:
dhcp3: true <--wrong, should be dhcp4:









share|improve this question















I installed Ubuntu (server) onto a computer and during the setup I connected it to my wifi and it works fine. However I am trying to move it to a wired connection and it doesn't seem to recognize the connection.



sudo netplan -debug generate does not return any errors.



I know that the connection should work. It works when connected to my laptop and the light on the ethernet port on the back of the computer flashes when the computer is booting but then turns off when it finishes booting.



lshw returns:



 *-network DISABLED
description: Ethernet interface
product: 88E8056 PCI-E Gigabit Ethernet Controller
vendor: Marvell Technology Group Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: ens33
version: 14
serial: 00:21:97:0f:26:21
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: bus_master cap_list rom ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=sky2 driverversion=1.30 latency=0 link=no multicast=yes port=twisted pair
resources: irq:26 memory:feafc000-feafffff ioport:e800(size=256) memory:feac0000-feadffff


ifconfig returns:



lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1000 (Local Loopback)
RX packets 1716 bytes 215593 (215.5 KB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 1716 bytes 215593 (215.5 KB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
wlp3s1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.33 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::215:e9ff:fe4c:261 prefixlen 64 scopeid 0x20<link>
ether 00:15:e9:4c:02:61 txqueuelen 1000 (Ethernet)
RX packets 13520 bytes 4311598 (4.3 MB)
RX errors 0 dropped 998 overruns 0 frame 0
TX packets 8205 bytes 5869540 (5.8 MB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0


ip route:



default via 192.168.1.1 dev wlp3s1 proto dhcp src 192.168.1.33 metric 600
192.168.1.0/24 dev wlp3s1 proto kernel scope link src 192.168.1.33
192.168.1.1 dev wlp3s1 proto dhcp scope link src 192.168.1.33 metric 600


cat /etc/netplan/*.yaml:



# This file describes the network interfaces available on your system
# For more information, see netplan(5).
network:
version: 2 <--indentation in entire script is incorrect
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
access-points:
3MightyMen:
password: 3346993030
ethernets:
en33: <--wrong, should be ens33:
dhcp3: true <--wrong, should be dhcp4:






networking server ethernet wired






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Dec 7 at 14:10









heynnema

17.9k22054




17.9k22054










asked Dec 5 at 22:47









Ethan B

32




32












  • Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
    – waltinator
    Dec 5 at 23:00










  • Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
    – chili555
    Dec 5 at 23:04










  • You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
    – heynnema
    Dec 7 at 14:05




















  • Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
    – waltinator
    Dec 5 at 23:00










  • Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
    – chili555
    Dec 5 at 23:04










  • You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
    – heynnema
    Dec 7 at 14:05


















Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
– waltinator
Dec 5 at 23:00




Routing problem? Edit ( askubuntu.com/posts/1098790/edit ) your question and add in the results of ip route
– waltinator
Dec 5 at 23:00












Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
– chili555
Dec 5 at 23:04




Please edit your question to show the result of: cat /etc/netplan/*.yaml Welcome to Ask Ubuntu.
– chili555
Dec 5 at 23:04












You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
– heynnema
Dec 7 at 14:05






You have the indentation wrong, and you put en33 instead of the correct ens33. And dhcp3 should be dhcp4. That's why it doesn't work for you. Best to just copy/paste my .yaml script into your file. Please see my other comments below.
– heynnema
Dec 7 at 14:05












1 Answer
1






active

oldest

votes


















1














Your /etc/neplan .yaml file should look something like this... this will enable your ethernet device...



network:
version: 2
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
dhcp6: no
access-points:
"3MightyMen":
password: "3346993030"
ethernets:
ens33:
dhcp4: yes
dhcp6: no
# for a fixed IP, comment out the above line, (dhcp4: true),
# and uncomment addresses: and gateway4: lines below.
# to specify DNS nameservers, uncomment last three lines.
# addresses: [192.168.1.20/24]
# gateway4: 192.168.1.1
# nameservers:
# search: [mydomain, otherdomain]
# addresses: [192.168.1.1, 1.1.1.1]


In terminal...



sudo netplan -debug generate # generate config files



sudo netplan apply # apply current configuration



reboot # reboot and confirm proper network operation



postnote: see https://netplan.io/examples for more examples






share|improve this answer























  • lshw still says:*-network DISABLED
    – Ethan B
    Dec 6 at 2:13










  • @EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
    – heynnema
    Dec 7 at 14:24










  • Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
    – Ethan B
    Dec 7 at 16:05











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1098790%2fwifi-works-on-ubuntu-but-not-wired-connection%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









1














Your /etc/neplan .yaml file should look something like this... this will enable your ethernet device...



network:
version: 2
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
dhcp6: no
access-points:
"3MightyMen":
password: "3346993030"
ethernets:
ens33:
dhcp4: yes
dhcp6: no
# for a fixed IP, comment out the above line, (dhcp4: true),
# and uncomment addresses: and gateway4: lines below.
# to specify DNS nameservers, uncomment last three lines.
# addresses: [192.168.1.20/24]
# gateway4: 192.168.1.1
# nameservers:
# search: [mydomain, otherdomain]
# addresses: [192.168.1.1, 1.1.1.1]


In terminal...



sudo netplan -debug generate # generate config files



sudo netplan apply # apply current configuration



reboot # reboot and confirm proper network operation



postnote: see https://netplan.io/examples for more examples






share|improve this answer























  • lshw still says:*-network DISABLED
    – Ethan B
    Dec 6 at 2:13










  • @EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
    – heynnema
    Dec 7 at 14:24










  • Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
    – Ethan B
    Dec 7 at 16:05
















1














Your /etc/neplan .yaml file should look something like this... this will enable your ethernet device...



network:
version: 2
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
dhcp6: no
access-points:
"3MightyMen":
password: "3346993030"
ethernets:
ens33:
dhcp4: yes
dhcp6: no
# for a fixed IP, comment out the above line, (dhcp4: true),
# and uncomment addresses: and gateway4: lines below.
# to specify DNS nameservers, uncomment last three lines.
# addresses: [192.168.1.20/24]
# gateway4: 192.168.1.1
# nameservers:
# search: [mydomain, otherdomain]
# addresses: [192.168.1.1, 1.1.1.1]


In terminal...



sudo netplan -debug generate # generate config files



sudo netplan apply # apply current configuration



reboot # reboot and confirm proper network operation



postnote: see https://netplan.io/examples for more examples






share|improve this answer























  • lshw still says:*-network DISABLED
    – Ethan B
    Dec 6 at 2:13










  • @EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
    – heynnema
    Dec 7 at 14:24










  • Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
    – Ethan B
    Dec 7 at 16:05














1












1








1






Your /etc/neplan .yaml file should look something like this... this will enable your ethernet device...



network:
version: 2
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
dhcp6: no
access-points:
"3MightyMen":
password: "3346993030"
ethernets:
ens33:
dhcp4: yes
dhcp6: no
# for a fixed IP, comment out the above line, (dhcp4: true),
# and uncomment addresses: and gateway4: lines below.
# to specify DNS nameservers, uncomment last three lines.
# addresses: [192.168.1.20/24]
# gateway4: 192.168.1.1
# nameservers:
# search: [mydomain, otherdomain]
# addresses: [192.168.1.1, 1.1.1.1]


In terminal...



sudo netplan -debug generate # generate config files



sudo netplan apply # apply current configuration



reboot # reboot and confirm proper network operation



postnote: see https://netplan.io/examples for more examples






share|improve this answer














Your /etc/neplan .yaml file should look something like this... this will enable your ethernet device...



network:
version: 2
renderer: networkd
wifis:
wlp3s1:
dhcp4: yes
dhcp6: no
access-points:
"3MightyMen":
password: "3346993030"
ethernets:
ens33:
dhcp4: yes
dhcp6: no
# for a fixed IP, comment out the above line, (dhcp4: true),
# and uncomment addresses: and gateway4: lines below.
# to specify DNS nameservers, uncomment last three lines.
# addresses: [192.168.1.20/24]
# gateway4: 192.168.1.1
# nameservers:
# search: [mydomain, otherdomain]
# addresses: [192.168.1.1, 1.1.1.1]


In terminal...



sudo netplan -debug generate # generate config files



sudo netplan apply # apply current configuration



reboot # reboot and confirm proper network operation



postnote: see https://netplan.io/examples for more examples







share|improve this answer














share|improve this answer



share|improve this answer








edited Dec 7 at 14:15

























answered Dec 6 at 0:54









heynnema

17.9k22054




17.9k22054












  • lshw still says:*-network DISABLED
    – Ethan B
    Dec 6 at 2:13










  • @EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
    – heynnema
    Dec 7 at 14:24










  • Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
    – Ethan B
    Dec 7 at 16:05


















  • lshw still says:*-network DISABLED
    – Ethan B
    Dec 6 at 2:13










  • @EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
    – heynnema
    Dec 7 at 14:24










  • Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
    – Ethan B
    Dec 7 at 16:05
















lshw still says:*-network DISABLED
– Ethan B
Dec 6 at 2:13




lshw still says:*-network DISABLED
– Ethan B
Dec 6 at 2:13












@EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
– heynnema
Dec 7 at 14:24




@EthanB you didn't copy/paste my .yaml script, and you've got errors in your manual edit of your .yaml file.
– heynnema
Dec 7 at 14:24












Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
– Ethan B
Dec 7 at 16:05




Once I copied it properly this worked. Thanks a ton, I'm getting download speeds that are 10x better now!
– Ethan B
Dec 7 at 16:05


















draft saved

draft discarded




















































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.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • 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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1098790%2fwifi-works-on-ubuntu-but-not-wired-connection%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Quarter-circle Tiles

build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

Mont Emei