Wireless adapters no longer interfacable The Next CEO of Stack OverflowBridging two wireless...
Calculate the Mean mean of two numbers
Physiological effects of huge anime eyes
Is it okay to majorly distort historical facts while writing a fiction story?
Defamation due to breach of confidentiality
Does higher Oxidation/ reduction potential translate to higher energy storage in battery?
What difference does it make using sed with/without whitespaces?
Help/tips for a first time writer?
Is there an equivalent of cd - for cp or mv
How to find image of a complex function with given constraints?
Yu-Gi-Oh cards in Python 3
Is a distribution that is normal, but highly skewed, considered Gaussian?
Won the lottery - how do I keep the money?
Expectation in a stochastic differential equation
Why is the US ranked as #45 in Press Freedom ratings, despite its extremely permissive free speech laws?
Graph of the history of databases
Easy to read palindrome checker
Why don't programming languages automatically manage the synchronous/asynchronous problem?
Decide between Polyglossia and Babel for LuaLaTeX in 2019
Is there a way to save my career from absolute disaster?
Airplane gently rocking its wings during whole flight
Can I board the first leg of the flight without having final country's visa?
Is it ever safe to open a suspicious HTML file (e.g. email attachment)?
What happened in Rome, when the western empire "fell"?
Are the names of these months realistic?
Wireless adapters no longer interfacable
The Next CEO of Stack OverflowBridging two wireless NICs in Debian - network unreachableHostapd requires manual restart for devices to connectWired Network Occasionally Fails (Debian)How and why is this ubuntu system getting an ipv6 address?VLAN Debian server interface configuration fileCannot connect to internet in Kali LinuxHow can I make hostapd WPA2 work?Unable to ping locally with iptables masquerade wifi repeaterDo not understand some commands used to setup an access point on LinuxUnable to connect to AP
In the process of setting up a server I followed these two tutorials:
https://seravo.fi/2014/create-wireless-access-point-hostapd
https://community.openhab.org/t/setup-your-own-openhab-cloud-myopenhab-server-instance/24716
I have two network adapters. 1 is used to connect to the router which is connected to the internet. 2 is used to for a private home server. They were both working until I restarted my computer (after following the tutorials)
They are both detected with lsusb
and lspci
respectively. ip link show
shows only the second adapter, the first is missing entirely.
Trying to start the private network host with sudo hostapd /etc/hostapd/hostapd.conf
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Could not configure driver mode
nl80211: deinit ifname=wlp3s0 disabled_11b_rates=0
nl80211: driver initialization failed.
wlp3s0: interface state UNINITIALIZZED->DISABLED
wlp3s0: AP-DISABLED
hostapd_free_hapd_data: Interface wlp3s0 wasn't started
If I removed the changes I added to /etc/network/interfaces
auto wlp3s0
iface wlp3s0 inet static
hostapd /etc/hostapd/hostapd.conf
address 192.168.1.1
netmask 255.255.255.0
Then I can use this adapter to connect to the internet router. It gives the same error message when I try to start hostapd.
I need to start hostapd to host the private network, and I need to get the 1st network adapter working at all. I suppose something must have changed in the tutorial 2 process that broke interfacing with my wifi adapters.
wireless-networking debian network-adapter network-interface hostapd
New contributor
add a comment |
In the process of setting up a server I followed these two tutorials:
https://seravo.fi/2014/create-wireless-access-point-hostapd
https://community.openhab.org/t/setup-your-own-openhab-cloud-myopenhab-server-instance/24716
I have two network adapters. 1 is used to connect to the router which is connected to the internet. 2 is used to for a private home server. They were both working until I restarted my computer (after following the tutorials)
They are both detected with lsusb
and lspci
respectively. ip link show
shows only the second adapter, the first is missing entirely.
Trying to start the private network host with sudo hostapd /etc/hostapd/hostapd.conf
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Could not configure driver mode
nl80211: deinit ifname=wlp3s0 disabled_11b_rates=0
nl80211: driver initialization failed.
wlp3s0: interface state UNINITIALIZZED->DISABLED
wlp3s0: AP-DISABLED
hostapd_free_hapd_data: Interface wlp3s0 wasn't started
If I removed the changes I added to /etc/network/interfaces
auto wlp3s0
iface wlp3s0 inet static
hostapd /etc/hostapd/hostapd.conf
address 192.168.1.1
netmask 255.255.255.0
Then I can use this adapter to connect to the internet router. It gives the same error message when I try to start hostapd.
I need to start hostapd to host the private network, and I need to get the 1st network adapter working at all. I suppose something must have changed in the tutorial 2 process that broke interfacing with my wifi adapters.
wireless-networking debian network-adapter network-interface hostapd
New contributor
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago
add a comment |
In the process of setting up a server I followed these two tutorials:
https://seravo.fi/2014/create-wireless-access-point-hostapd
https://community.openhab.org/t/setup-your-own-openhab-cloud-myopenhab-server-instance/24716
I have two network adapters. 1 is used to connect to the router which is connected to the internet. 2 is used to for a private home server. They were both working until I restarted my computer (after following the tutorials)
They are both detected with lsusb
and lspci
respectively. ip link show
shows only the second adapter, the first is missing entirely.
Trying to start the private network host with sudo hostapd /etc/hostapd/hostapd.conf
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Could not configure driver mode
nl80211: deinit ifname=wlp3s0 disabled_11b_rates=0
nl80211: driver initialization failed.
wlp3s0: interface state UNINITIALIZZED->DISABLED
wlp3s0: AP-DISABLED
hostapd_free_hapd_data: Interface wlp3s0 wasn't started
If I removed the changes I added to /etc/network/interfaces
auto wlp3s0
iface wlp3s0 inet static
hostapd /etc/hostapd/hostapd.conf
address 192.168.1.1
netmask 255.255.255.0
Then I can use this adapter to connect to the internet router. It gives the same error message when I try to start hostapd.
I need to start hostapd to host the private network, and I need to get the 1st network adapter working at all. I suppose something must have changed in the tutorial 2 process that broke interfacing with my wifi adapters.
wireless-networking debian network-adapter network-interface hostapd
New contributor
In the process of setting up a server I followed these two tutorials:
https://seravo.fi/2014/create-wireless-access-point-hostapd
https://community.openhab.org/t/setup-your-own-openhab-cloud-myopenhab-server-instance/24716
I have two network adapters. 1 is used to connect to the router which is connected to the internet. 2 is used to for a private home server. They were both working until I restarted my computer (after following the tutorials)
They are both detected with lsusb
and lspci
respectively. ip link show
shows only the second adapter, the first is missing entirely.
Trying to start the private network host with sudo hostapd /etc/hostapd/hostapd.conf
Configuration file: /etc/hostapd/hostapd.conf
nl80211: Could not configure driver mode
nl80211: deinit ifname=wlp3s0 disabled_11b_rates=0
nl80211: driver initialization failed.
wlp3s0: interface state UNINITIALIZZED->DISABLED
wlp3s0: AP-DISABLED
hostapd_free_hapd_data: Interface wlp3s0 wasn't started
If I removed the changes I added to /etc/network/interfaces
auto wlp3s0
iface wlp3s0 inet static
hostapd /etc/hostapd/hostapd.conf
address 192.168.1.1
netmask 255.255.255.0
Then I can use this adapter to connect to the internet router. It gives the same error message when I try to start hostapd.
I need to start hostapd to host the private network, and I need to get the 1st network adapter working at all. I suppose something must have changed in the tutorial 2 process that broke interfacing with my wifi adapters.
wireless-networking debian network-adapter network-interface hostapd
wireless-networking debian network-adapter network-interface hostapd
New contributor
New contributor
New contributor
asked 1 hour ago
bulletgirl22bulletgirl22
11
11
New contributor
New contributor
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago
add a comment |
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago
add a comment |
0
active
oldest
votes
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
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
});
}
});
bulletgirl22 is a new contributor. Be nice, and check out our Code of Conduct.
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%2fsuperuser.com%2fquestions%2f1419765%2fwireless-adapters-no-longer-interfacable%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
bulletgirl22 is a new contributor. Be nice, and check out our Code of Conduct.
bulletgirl22 is a new contributor. Be nice, and check out our Code of Conduct.
bulletgirl22 is a new contributor. Be nice, and check out our Code of Conduct.
bulletgirl22 is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Super User!
- 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%2fsuperuser.com%2fquestions%2f1419765%2fwireless-adapters-no-longer-interfacable%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
Hi and Welcome to Super User. It's good that you posted links to the tutorial for context. In addition to the links, it would help us answer your question if you edited the question to add a step by step list of what you actually did and what results you got. This way, you save the people trying to help you time and if the problem is that you made a mistake following the instructions, it will become apparent.
– timotree
54 mins ago
When you say "If I remove the changes..." and then have part of the interfaces file, do you mean that that's what you removed, or that that's what you're left with after removal?
– timotree
39 mins ago