Prevent/stop wpa_supplicant from starting The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to enable or disable services?How can I prevent iwconfig power management from being turned on?Disable automatic starting of sshd?Stop a service from starting when it is disabled in the rc.dHow can I stop YaCy from starting when my machine starts?List all services starting at bootStop service during bootWhy does redis-server service keep starting even after update-rc.d remove command?Some Ubuntu services are starting even if they are disabledWhy does systemd stop my service but not restart it?Prevent deja-dup daemon from starting, but keep deja-dup
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
Who or what is the being for whom Being is a question for Heidegger?
Why can't devices on different VLANs, but on the same subnet, communicate?
How are presidential pardons supposed to be used?
How do you keep chess fun when your opponent constantly beats you?
Working through the single responsibility principle (SRP) in Python when calls are expensive
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
What can I do if neighbor is blocking my solar panels intentionally?
Hiding Certain Lines on Table
Would an alien lifeform be able to achieve space travel if lacking in vision?
What information about me do stores get via my credit card?
Single author papers against my advisor's will?
I could not break this equation. Please help me
Is this wall load bearing? Blueprints and photos attached
Are my PIs rude or am I just being too sensitive?
First use of “packing” as in carrying a gun
Typeface like Times New Roman but with "tied" percent sign
Can the prologue be the backstory of your main character?
Make it rain characters
How did the audience guess the pentatonic scale in Bobby McFerrin's presentation?
Am I ethically obligated to go into work on an off day if the reason is sudden?
Wall plug outlet change
How can I protect witches in combat who wear limited clothing?
What's the point in a preamp?
Prevent/stop wpa_supplicant from starting
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to enable or disable services?How can I prevent iwconfig power management from being turned on?Disable automatic starting of sshd?Stop a service from starting when it is disabled in the rc.dHow can I stop YaCy from starting when my machine starts?List all services starting at bootStop service during bootWhy does redis-server service keep starting even after update-rc.d remove command?Some Ubuntu services are starting even if they are disabledWhy does systemd stop my service but not restart it?Prevent deja-dup daemon from starting, but keep deja-dup
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
wpa_supplicant seems to somehow be auto started at boot.
# ps auxwww |grep wpa
root 915 0.0 0.0 28824 1232 ? S 17:36 0:00 /sbin/wpa_supplicant -u -s
How do I disable this service, prevent it from auto starting ?
wireless configuration services
add a comment |
wpa_supplicant seems to somehow be auto started at boot.
# ps auxwww |grep wpa
root 915 0.0 0.0 28824 1232 ? S 17:36 0:00 /sbin/wpa_supplicant -u -s
How do I disable this service, prevent it from auto starting ?
wireless configuration services
add a comment |
wpa_supplicant seems to somehow be auto started at boot.
# ps auxwww |grep wpa
root 915 0.0 0.0 28824 1232 ? S 17:36 0:00 /sbin/wpa_supplicant -u -s
How do I disable this service, prevent it from auto starting ?
wireless configuration services
wpa_supplicant seems to somehow be auto started at boot.
# ps auxwww |grep wpa
root 915 0.0 0.0 28824 1232 ? S 17:36 0:00 /sbin/wpa_supplicant -u -s
How do I disable this service, prevent it from auto starting ?
wireless configuration services
wireless configuration services
edited Jun 18 '11 at 15:51
htorque
47.8k32176213
47.8k32176213
asked Jun 18 '11 at 15:46
nosnos
5062816
5062816
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Should be enough to remove the file
/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
Move it somewhere so you can restore it, rather than immediately delete it. ;-)
For Ubuntu 13.04, I have to move the filefi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible withsystemctl
). Also,dpkg-divert
will keep it disabled across package upgrades.
– Peter Cordes
Dec 12 '15 at 2:14
add a comment |
Update for 2019
htorque's solution did not work for me.
However, the following did work:
sudo systemctl disable wpa_supplicant
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%2f49416%2fprevent-stop-wpa-supplicant-from-starting%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
Should be enough to remove the file
/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
Move it somewhere so you can restore it, rather than immediately delete it. ;-)
For Ubuntu 13.04, I have to move the filefi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible withsystemctl
). Also,dpkg-divert
will keep it disabled across package upgrades.
– Peter Cordes
Dec 12 '15 at 2:14
add a comment |
Should be enough to remove the file
/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
Move it somewhere so you can restore it, rather than immediately delete it. ;-)
For Ubuntu 13.04, I have to move the filefi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible withsystemctl
). Also,dpkg-divert
will keep it disabled across package upgrades.
– Peter Cordes
Dec 12 '15 at 2:14
add a comment |
Should be enough to remove the file
/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
Move it somewhere so you can restore it, rather than immediately delete it. ;-)
Should be enough to remove the file
/usr/share/dbus-1/system-services/fi.epitest.hostap.WPASupplicant.service
Move it somewhere so you can restore it, rather than immediately delete it. ;-)
answered Jun 18 '11 at 15:49
htorquehtorque
47.8k32176213
47.8k32176213
For Ubuntu 13.04, I have to move the filefi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible withsystemctl
). Also,dpkg-divert
will keep it disabled across package upgrades.
– Peter Cordes
Dec 12 '15 at 2:14
add a comment |
For Ubuntu 13.04, I have to move the filefi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible withsystemctl
). Also,dpkg-divert
will keep it disabled across package upgrades.
– Peter Cordes
Dec 12 '15 at 2:14
For Ubuntu 13.04, I have to move the file
fi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
For Ubuntu 13.04, I have to move the file
fi.w1.wpa_supplicant1.service
– Jaime M.
Dec 7 '13 at 18:43
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:
systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible with systemctl
). Also, dpkg-divert
will keep it disabled across package upgrades.– Peter Cordes
Dec 12 '15 at 2:14
Seems to still be the case for Ubuntu 15.10, which uses systemd. wpa_supplicant is started from dbus, not from init scripts directly:
systemctl status wpa_supplicant.service
shows it's running, but not auto-started by systemd directly. (So disabling for future boots isn't possible with systemctl
). Also, dpkg-divert
will keep it disabled across package upgrades.– Peter Cordes
Dec 12 '15 at 2:14
add a comment |
Update for 2019
htorque's solution did not work for me.
However, the following did work:
sudo systemctl disable wpa_supplicant
add a comment |
Update for 2019
htorque's solution did not work for me.
However, the following did work:
sudo systemctl disable wpa_supplicant
add a comment |
Update for 2019
htorque's solution did not work for me.
However, the following did work:
sudo systemctl disable wpa_supplicant
Update for 2019
htorque's solution did not work for me.
However, the following did work:
sudo systemctl disable wpa_supplicant
edited Apr 10 at 21:41
answered Apr 10 at 21:20
Mike NakisMike Nakis
1214
1214
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%2f49416%2fprevent-stop-wpa-supplicant-from-starting%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