TP-Link AC1300 T6E PCI-E Wifi card not working [duplicate]
This question already has an answer here:
Installing Broadcom Wireless Drivers
47 answers
I am running the latest version of ubuntu (18.04.1) and the TP link T6E PCI-E wifi card is not working. I do not have the ability to run a wired connection to my computer. I have no idea where to even start I am just starting to learn linux.
networking wireless tp-link
New contributor
marked as duplicate by Jeremy31, karel, N0rbert, Zanna, Eric Carvalho Dec 19 at 22:37
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Installing Broadcom Wireless Drivers
47 answers
I am running the latest version of ubuntu (18.04.1) and the TP link T6E PCI-E wifi card is not working. I do not have the ability to run a wired connection to my computer. I have no idea where to even start I am just starting to learn linux.
networking wireless tp-link
New contributor
marked as duplicate by Jeremy31, karel, N0rbert, Zanna, Eric Carvalho Dec 19 at 22:37
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.
– chili555
Dec 19 at 14:46
add a comment |
This question already has an answer here:
Installing Broadcom Wireless Drivers
47 answers
I am running the latest version of ubuntu (18.04.1) and the TP link T6E PCI-E wifi card is not working. I do not have the ability to run a wired connection to my computer. I have no idea where to even start I am just starting to learn linux.
networking wireless tp-link
New contributor
This question already has an answer here:
Installing Broadcom Wireless Drivers
47 answers
I am running the latest version of ubuntu (18.04.1) and the TP link T6E PCI-E wifi card is not working. I do not have the ability to run a wired connection to my computer. I have no idea where to even start I am just starting to learn linux.
This question already has an answer here:
Installing Broadcom Wireless Drivers
47 answers
networking wireless tp-link
networking wireless tp-link
New contributor
New contributor
New contributor
asked Dec 19 at 6:10
Nathan Pulver
1
1
New contributor
New contributor
marked as duplicate by Jeremy31, karel, N0rbert, Zanna, Eric Carvalho Dec 19 at 22:37
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Jeremy31, karel, N0rbert, Zanna, Eric Carvalho Dec 19 at 22:37
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.
– chili555
Dec 19 at 14:46
add a comment |
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.
– chili555
Dec 19 at 14:46
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:
lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.– chili555
Dec 19 at 14:46
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:
lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.– chili555
Dec 19 at 14:46
add a comment |
2 Answers
2
active
oldest
votes
wifi adapter not found?
Issue: Wifi driver is not installed. Mine was "rtl8821ce". Check the your "network controller" using lspci
command.
then install the necessary driver, and you are good to go
P.S: sometimes sudo apt-get update && sudo apt-get upgrade
also solves the problem
add a comment |
I had the same problem using the T9E. Fortunately, it is pretty simple if you have a smartphone that supports USB WiFi tethering. The reason for this is you must be able to establish some form of Internet connection to install the packages, and this was the easiest for me. Otherwise you will have to either get an Ethernet cable long enough to reach your router or move your PC close to it. You can find the full answer here.
It comes down to opening a terminal on your machine and running lspci -nn -d 14e4:
, locating the package you need in the table shown in the answer I linked to, and doing sudo apt install <PACKAGE>
where <PACKAGE>
is your actual needed package.
For me this looked like sudo apt install bcmwl-kernel-source
. There were instructions for an offline install, but this did not work for me even though I followed the instructions. You will need access to the internet on a device that you can move files from anyway.
Hope this helps!
New contributor
Your modifier-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?
– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
wifi adapter not found?
Issue: Wifi driver is not installed. Mine was "rtl8821ce". Check the your "network controller" using lspci
command.
then install the necessary driver, and you are good to go
P.S: sometimes sudo apt-get update && sudo apt-get upgrade
also solves the problem
add a comment |
wifi adapter not found?
Issue: Wifi driver is not installed. Mine was "rtl8821ce". Check the your "network controller" using lspci
command.
then install the necessary driver, and you are good to go
P.S: sometimes sudo apt-get update && sudo apt-get upgrade
also solves the problem
add a comment |
wifi adapter not found?
Issue: Wifi driver is not installed. Mine was "rtl8821ce". Check the your "network controller" using lspci
command.
then install the necessary driver, and you are good to go
P.S: sometimes sudo apt-get update && sudo apt-get upgrade
also solves the problem
wifi adapter not found?
Issue: Wifi driver is not installed. Mine was "rtl8821ce". Check the your "network controller" using lspci
command.
then install the necessary driver, and you are good to go
P.S: sometimes sudo apt-get update && sudo apt-get upgrade
also solves the problem
answered Dec 19 at 6:16
Hamza Saeed
208
208
add a comment |
add a comment |
I had the same problem using the T9E. Fortunately, it is pretty simple if you have a smartphone that supports USB WiFi tethering. The reason for this is you must be able to establish some form of Internet connection to install the packages, and this was the easiest for me. Otherwise you will have to either get an Ethernet cable long enough to reach your router or move your PC close to it. You can find the full answer here.
It comes down to opening a terminal on your machine and running lspci -nn -d 14e4:
, locating the package you need in the table shown in the answer I linked to, and doing sudo apt install <PACKAGE>
where <PACKAGE>
is your actual needed package.
For me this looked like sudo apt install bcmwl-kernel-source
. There were instructions for an offline install, but this did not work for me even though I followed the instructions. You will need access to the internet on a device that you can move files from anyway.
Hope this helps!
New contributor
Your modifier-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?
– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
add a comment |
I had the same problem using the T9E. Fortunately, it is pretty simple if you have a smartphone that supports USB WiFi tethering. The reason for this is you must be able to establish some form of Internet connection to install the packages, and this was the easiest for me. Otherwise you will have to either get an Ethernet cable long enough to reach your router or move your PC close to it. You can find the full answer here.
It comes down to opening a terminal on your machine and running lspci -nn -d 14e4:
, locating the package you need in the table shown in the answer I linked to, and doing sudo apt install <PACKAGE>
where <PACKAGE>
is your actual needed package.
For me this looked like sudo apt install bcmwl-kernel-source
. There were instructions for an offline install, but this did not work for me even though I followed the instructions. You will need access to the internet on a device that you can move files from anyway.
Hope this helps!
New contributor
Your modifier-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?
– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
add a comment |
I had the same problem using the T9E. Fortunately, it is pretty simple if you have a smartphone that supports USB WiFi tethering. The reason for this is you must be able to establish some form of Internet connection to install the packages, and this was the easiest for me. Otherwise you will have to either get an Ethernet cable long enough to reach your router or move your PC close to it. You can find the full answer here.
It comes down to opening a terminal on your machine and running lspci -nn -d 14e4:
, locating the package you need in the table shown in the answer I linked to, and doing sudo apt install <PACKAGE>
where <PACKAGE>
is your actual needed package.
For me this looked like sudo apt install bcmwl-kernel-source
. There were instructions for an offline install, but this did not work for me even though I followed the instructions. You will need access to the internet on a device that you can move files from anyway.
Hope this helps!
New contributor
I had the same problem using the T9E. Fortunately, it is pretty simple if you have a smartphone that supports USB WiFi tethering. The reason for this is you must be able to establish some form of Internet connection to install the packages, and this was the easiest for me. Otherwise you will have to either get an Ethernet cable long enough to reach your router or move your PC close to it. You can find the full answer here.
It comes down to opening a terminal on your machine and running lspci -nn -d 14e4:
, locating the package you need in the table shown in the answer I linked to, and doing sudo apt install <PACKAGE>
where <PACKAGE>
is your actual needed package.
For me this looked like sudo apt install bcmwl-kernel-source
. There were instructions for an offline install, but this did not work for me even though I followed the instructions. You will need access to the internet on a device that you can move files from anyway.
Hope this helps!
New contributor
edited Dec 19 at 9:03
New contributor
answered Dec 19 at 8:56
Miqued
85
85
New contributor
New contributor
Your modifier-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?
– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
add a comment |
Your modifier-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?
– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
Your modifier
-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?– chili555
Dec 19 at 14:44
Your modifier
-d 14e4:
means that only Broadcom devices will be shown. Is the T6E a Broadcom?– chili555
Dec 19 at 14:44
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
This post suggests that it is, and also points to the same package I ended up using
– Miqued
Dec 19 at 19:34
add a comment |
Let's start by identifying your exact device. Please edit your question to show the result of the terminal command:
lspci -nnk | grep 0280 -A3
Welcome to Ask Ubuntu.– chili555
Dec 19 at 14:46