How to temporarily disable PulseAudio?how to disable internal speaker audioHow can I replace pulseaudio with alsa?Volume mutes when set below ~20% 14.04Crackling and feedback with Presonus AudioBox USB on 12.04How to disable pulseaudio permanently in Ubuntu 16.0.4 LTSHow do I get the Tascam US122L USB audio interface to work?No sound Civ 5 and wineVolume slider not workingUbuntu 13.10 not detecting internal micWine, no sound at X :1Flash Breaking Pulseaudio?My sound stopped working today, how can I fix it?Pulseaudio not startingWhy is pulseaudio only working properly in system mode (for me)?How to reinstall PulseAudio (Ubuntu 12.04)How do I reinstall Pulseaudio in 16.04?
I wasted six years of my life getting a PhD degree. What should I do, and how will I survive?
Film about the USA being run by fake videos of the president after his kidnapping
Unpaid suspension due to management error
What is the difference between "ещё" and "больше"?
Is leave-one-out cross validation known to systematically overestimate error?
Distributed expansion gaps in solid hardwood flooring
When should I use a box register rather than def?
What are optical counterparts?
How can I customize the Touch Bar interfaces for my tremor?
Making a Plasma Gun that works
Why do right-wing parties generally oppose the legalization of marijuana?
What are the differences between the versions on lubuntu download page?
How do oases form in the middle of the desert?
Taking volume contraction into account when mixing water with ethanol
Is there a material or method to allow "swimmable" coins?
I bought a pair of tefillin -- help me understand the accompanying certificate?
How to create slices for each selected area of a layer separated by transparency or solid color?
Is this medieval picture of hanging 5 royals showing an historical event?
Is it OK for a Buddhist teacher to charge their students an hourly rate for their time?
Did the Mueller report find that Trump committed any felonies?
How Long Should a Hash be to be Absolutely Secure?
Want to publish unpublished work found in an auction storage unit
Can I make leading exclamation points be ignored in the terminal? (I type them by instinct due to ipython)
Why is the processor instruction called "move", not "copy"?
How to temporarily disable PulseAudio?
how to disable internal speaker audioHow can I replace pulseaudio with alsa?Volume mutes when set below ~20% 14.04Crackling and feedback with Presonus AudioBox USB on 12.04How to disable pulseaudio permanently in Ubuntu 16.0.4 LTSHow do I get the Tascam US122L USB audio interface to work?No sound Civ 5 and wineVolume slider not workingUbuntu 13.10 not detecting internal micWine, no sound at X :1Flash Breaking Pulseaudio?My sound stopped working today, how can I fix it?Pulseaudio not startingWhy is pulseaudio only working properly in system mode (for me)?How to reinstall PulseAudio (Ubuntu 12.04)How do I reinstall Pulseaudio in 16.04?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;
Just wondering if there a way to temporarily disable PulseAudio as I am trying to run a specific Wine game (Left 4 Dead 2) and it makes the game crash occasionally.
If I kill the process it automatically comes back up. Any suggestions?
pulseaudio
add a comment
|
Just wondering if there a way to temporarily disable PulseAudio as I am trying to run a specific Wine game (Left 4 Dead 2) and it makes the game crash occasionally.
If I kill the process it automatically comes back up. Any suggestions?
pulseaudio
add a comment
|
Just wondering if there a way to temporarily disable PulseAudio as I am trying to run a specific Wine game (Left 4 Dead 2) and it makes the game crash occasionally.
If I kill the process it automatically comes back up. Any suggestions?
pulseaudio
Just wondering if there a way to temporarily disable PulseAudio as I am trying to run a specific Wine game (Left 4 Dead 2) and it makes the game crash occasionally.
If I kill the process it automatically comes back up. Any suggestions?
pulseaudio
pulseaudio
edited Jan 25 '14 at 9:58
kiri
22.3k15 gold badges62 silver badges106 bronze badges
22.3k15 gold badges62 silver badges106 bronze badges
asked Oct 20 '10 at 7:48
Dean ThomsonDean Thomson
9253 gold badges10 silver badges16 bronze badges
9253 gold badges10 silver badges16 bronze badges
add a comment
|
add a comment
|
7 Answers
7
active
oldest
votes
You can use pasuspender. Try prefixing your wine command with it.
pasuspender -- wine path/to/file.exe
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixingpasuspenderto qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much
– Mina Michael
Oct 6 '15 at 17:17
add a comment
|
In /etc/pulse/client.conf, you can uncomment the line autospawn=yes and replace the yes with a "no". Of course this should be possible to set this in .pulse directory in your home directory.
A cleaner way to do this would be to create a client.conf in your .pulse dir in ~ and put the line "autospawn=no" in it. It would be good to turn back on autospawn after you have done what you need to do.
1
Or,edcould be used to change the config before running the game, and change it back afterwards.
– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a.config/pulse/client.confin my homedir withautospawn=noworks for me. Pulseaudio continues to start on boot - Ubuntu 19.10
– timbo
Nov 19 at 20:15
add a comment
|
I use the script:
#!/bin/bash
echo autospawn = no > $HOME/.config/pulse/client.conf
pulseaudio --kill
rm $HOME/.config/pulse/client.conf
Then play the game, then re-enable PA:
pulseaudio --start
Works on Xubuntu 13.10. Replace ".config/pulse" with ".pulse" in the script if it doesn't work (usually on old *buntues)
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
add a comment
|
In my case, I was unable to stop pulseaudio since it was being restarted automatically by systemctl.
The proper way to stop pulseaudio, in that case is:
systemctl --user stop pulseaudio.socket
systemctl --user stop pulseaudio.service
To start it again, you can use:
systemctl --user start pulseaudio.socket
systemctl --user start pulseaudio.service
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should justpulseaudio -k.
– user156516
Dec 12 '18 at 0:19
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
add a comment
|
Alt+F2 type pactl exit
stops all pulseaudio processes. You can enter
Alt+F2 type pulseaudio
to start it again. Unfortunately, some programs doesn't seem to sound anymore, after that. Still looking for a way to reactivate pulse without reboot…
6
pactl exitdoes not stop pulseaudio completely on my machine, it is immediately restarted (just like withpulseaudio -k).
– Philipp Wendler
Aug 15 '14 at 13:10
pactl exitworked for me. Withpulseaudio -kit restarted automatically even though I had autorespawn disabled.
– flo
Jan 31 '17 at 19:48
add a comment
|
Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.
Ubuntu Tip: Turning PulseAudio On and Off
add a comment
|
What I did.... stopped it from respawning because it couldn't find it....... right click the /etc folder in the file browser (open as root) create a new folder called pulseoff, then move the pulse folder into it (drag and drop). The system doesn't have the command to look there for it. If you want to start it again, cut it from the pulseoff folder, go up a step to the /etc folder and paste it there...... Some people like to make it out to be harder than it really is with editing files and stuff and mostly those edits don't work I tried them. Do it the easy way. I restarted the machine and checked the system monitor before posting this, pulseaudio is not running and sucking up memory.
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/4.0/"u003ecc by-sa 4.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%2f8425%2fhow-to-temporarily-disable-pulseaudio%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
7 Answers
7
active
oldest
votes
7 Answers
7
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can use pasuspender. Try prefixing your wine command with it.
pasuspender -- wine path/to/file.exe
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixingpasuspenderto qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much
– Mina Michael
Oct 6 '15 at 17:17
add a comment
|
You can use pasuspender. Try prefixing your wine command with it.
pasuspender -- wine path/to/file.exe
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixingpasuspenderto qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much
– Mina Michael
Oct 6 '15 at 17:17
add a comment
|
You can use pasuspender. Try prefixing your wine command with it.
pasuspender -- wine path/to/file.exe
You can use pasuspender. Try prefixing your wine command with it.
pasuspender -- wine path/to/file.exe
edited Oct 20 '10 at 8:06
answered Oct 20 '10 at 7:57
mgunesmgunes
8,7122 gold badges36 silver badges41 bronze badges
8,7122 gold badges36 silver badges41 bronze badges
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixingpasuspenderto qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much
– Mina Michael
Oct 6 '15 at 17:17
add a comment
|
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixingpasuspenderto qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much
– Mina Michael
Oct 6 '15 at 17:17
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
How do I reenable PulseAudio after disabling it? I have no sound after running this, except in the program I run with pasuspender (chuck in my case), even after exiting said program (chuck). Audio does work as normal after I restart my computer. Is my experience what is expected?
– apollodude217
May 11 '15 at 1:54
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
I answered my own question. From wiki.debian.org/…: "While you run pasuspender, other applications won't be able to use PulseAudio. When you quit the application, the default behaviour of PulseAudio will be restored automatically." So I have a special problem tangential to the original question.
– apollodude217
May 11 '15 at 1:57
prefixing
pasuspender to qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much– Mina Michael
Oct 6 '15 at 17:17
prefixing
pasuspender to qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much– Mina Michael
Oct 6 '15 at 17:17
add a comment
|
In /etc/pulse/client.conf, you can uncomment the line autospawn=yes and replace the yes with a "no". Of course this should be possible to set this in .pulse directory in your home directory.
A cleaner way to do this would be to create a client.conf in your .pulse dir in ~ and put the line "autospawn=no" in it. It would be good to turn back on autospawn after you have done what you need to do.
1
Or,edcould be used to change the config before running the game, and change it back afterwards.
– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a.config/pulse/client.confin my homedir withautospawn=noworks for me. Pulseaudio continues to start on boot - Ubuntu 19.10
– timbo
Nov 19 at 20:15
add a comment
|
In /etc/pulse/client.conf, you can uncomment the line autospawn=yes and replace the yes with a "no". Of course this should be possible to set this in .pulse directory in your home directory.
A cleaner way to do this would be to create a client.conf in your .pulse dir in ~ and put the line "autospawn=no" in it. It would be good to turn back on autospawn after you have done what you need to do.
1
Or,edcould be used to change the config before running the game, and change it back afterwards.
– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a.config/pulse/client.confin my homedir withautospawn=noworks for me. Pulseaudio continues to start on boot - Ubuntu 19.10
– timbo
Nov 19 at 20:15
add a comment
|
In /etc/pulse/client.conf, you can uncomment the line autospawn=yes and replace the yes with a "no". Of course this should be possible to set this in .pulse directory in your home directory.
A cleaner way to do this would be to create a client.conf in your .pulse dir in ~ and put the line "autospawn=no" in it. It would be good to turn back on autospawn after you have done what you need to do.
In /etc/pulse/client.conf, you can uncomment the line autospawn=yes and replace the yes with a "no". Of course this should be possible to set this in .pulse directory in your home directory.
A cleaner way to do this would be to create a client.conf in your .pulse dir in ~ and put the line "autospawn=no" in it. It would be good to turn back on autospawn after you have done what you need to do.
edited Dec 1 '10 at 19:39
Jorge Castro
61.5k110 gold badges430 silver badges624 bronze badges
61.5k110 gold badges430 silver badges624 bronze badges
answered Oct 29 '10 at 19:32
Conor CurranConor Curran
5164 silver badges5 bronze badges
5164 silver badges5 bronze badges
1
Or,edcould be used to change the config before running the game, and change it back afterwards.
– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a.config/pulse/client.confin my homedir withautospawn=noworks for me. Pulseaudio continues to start on boot - Ubuntu 19.10
– timbo
Nov 19 at 20:15
add a comment
|
1
Or,edcould be used to change the config before running the game, and change it back afterwards.
– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a.config/pulse/client.confin my homedir withautospawn=noworks for me. Pulseaudio continues to start on boot - Ubuntu 19.10
– timbo
Nov 19 at 20:15
1
1
Or,
edcould be used to change the config before running the game, and change it back afterwards.– ζ--
Jul 19 '12 at 15:33
Or,
edcould be used to change the config before running the game, and change it back afterwards.– ζ--
Jul 19 '12 at 15:33
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
second line put that you said, and first line just put: .include /etc/pulse/client.conf
– Aquarius Power
Oct 15 '16 at 2:23
Neither this or creating a
.config/pulse/client.conf in my homedir with autospawn=no works for me. Pulseaudio continues to start on boot - Ubuntu 19.10– timbo
Nov 19 at 20:15
Neither this or creating a
.config/pulse/client.conf in my homedir with autospawn=no works for me. Pulseaudio continues to start on boot - Ubuntu 19.10– timbo
Nov 19 at 20:15
add a comment
|
I use the script:
#!/bin/bash
echo autospawn = no > $HOME/.config/pulse/client.conf
pulseaudio --kill
rm $HOME/.config/pulse/client.conf
Then play the game, then re-enable PA:
pulseaudio --start
Works on Xubuntu 13.10. Replace ".config/pulse" with ".pulse" in the script if it doesn't work (usually on old *buntues)
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
add a comment
|
I use the script:
#!/bin/bash
echo autospawn = no > $HOME/.config/pulse/client.conf
pulseaudio --kill
rm $HOME/.config/pulse/client.conf
Then play the game, then re-enable PA:
pulseaudio --start
Works on Xubuntu 13.10. Replace ".config/pulse" with ".pulse" in the script if it doesn't work (usually on old *buntues)
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
add a comment
|
I use the script:
#!/bin/bash
echo autospawn = no > $HOME/.config/pulse/client.conf
pulseaudio --kill
rm $HOME/.config/pulse/client.conf
Then play the game, then re-enable PA:
pulseaudio --start
Works on Xubuntu 13.10. Replace ".config/pulse" with ".pulse" in the script if it doesn't work (usually on old *buntues)
I use the script:
#!/bin/bash
echo autospawn = no > $HOME/.config/pulse/client.conf
pulseaudio --kill
rm $HOME/.config/pulse/client.conf
Then play the game, then re-enable PA:
pulseaudio --start
Works on Xubuntu 13.10. Replace ".config/pulse" with ".pulse" in the script if it doesn't work (usually on old *buntues)
edited Dec 23 '13 at 18:38
answered Dec 23 '13 at 18:29
Ax TrifonovAx Trifonov
1811 silver badge4 bronze badges
1811 silver badge4 bronze badges
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
add a comment
|
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
Very elegant approach.
– Rafał Cieślak
Aug 26 '14 at 11:44
2
2
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
Useless if you already have a client.conf and end up deleting it.
– Ken Sharp
Apr 7 '15 at 3:19
add a comment
|
In my case, I was unable to stop pulseaudio since it was being restarted automatically by systemctl.
The proper way to stop pulseaudio, in that case is:
systemctl --user stop pulseaudio.socket
systemctl --user stop pulseaudio.service
To start it again, you can use:
systemctl --user start pulseaudio.socket
systemctl --user start pulseaudio.service
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should justpulseaudio -k.
– user156516
Dec 12 '18 at 0:19
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
add a comment
|
In my case, I was unable to stop pulseaudio since it was being restarted automatically by systemctl.
The proper way to stop pulseaudio, in that case is:
systemctl --user stop pulseaudio.socket
systemctl --user stop pulseaudio.service
To start it again, you can use:
systemctl --user start pulseaudio.socket
systemctl --user start pulseaudio.service
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should justpulseaudio -k.
– user156516
Dec 12 '18 at 0:19
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
add a comment
|
In my case, I was unable to stop pulseaudio since it was being restarted automatically by systemctl.
The proper way to stop pulseaudio, in that case is:
systemctl --user stop pulseaudio.socket
systemctl --user stop pulseaudio.service
To start it again, you can use:
systemctl --user start pulseaudio.socket
systemctl --user start pulseaudio.service
In my case, I was unable to stop pulseaudio since it was being restarted automatically by systemctl.
The proper way to stop pulseaudio, in that case is:
systemctl --user stop pulseaudio.socket
systemctl --user stop pulseaudio.service
To start it again, you can use:
systemctl --user start pulseaudio.socket
systemctl --user start pulseaudio.service
answered Jan 23 '17 at 0:58
user156516user156516
2412 silver badges3 bronze badges
2412 silver badges3 bronze badges
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should justpulseaudio -k.
– user156516
Dec 12 '18 at 0:19
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
add a comment
|
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should justpulseaudio -k.
– user156516
Dec 12 '18 at 0:19
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
1
1
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should just
pulseaudio -k.– user156516
Dec 12 '18 at 0:19
It could be that it's not being managed by systemctl. In that case, to stop pulseaudio, you should just
pulseaudio -k.– user156516
Dec 12 '18 at 0:19
1
1
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
My mistake, I was using service instead of systemctl.
– Joseph Garvin
Dec 12 '18 at 1:43
add a comment
|
Alt+F2 type pactl exit
stops all pulseaudio processes. You can enter
Alt+F2 type pulseaudio
to start it again. Unfortunately, some programs doesn't seem to sound anymore, after that. Still looking for a way to reactivate pulse without reboot…
6
pactl exitdoes not stop pulseaudio completely on my machine, it is immediately restarted (just like withpulseaudio -k).
– Philipp Wendler
Aug 15 '14 at 13:10
pactl exitworked for me. Withpulseaudio -kit restarted automatically even though I had autorespawn disabled.
– flo
Jan 31 '17 at 19:48
add a comment
|
Alt+F2 type pactl exit
stops all pulseaudio processes. You can enter
Alt+F2 type pulseaudio
to start it again. Unfortunately, some programs doesn't seem to sound anymore, after that. Still looking for a way to reactivate pulse without reboot…
6
pactl exitdoes not stop pulseaudio completely on my machine, it is immediately restarted (just like withpulseaudio -k).
– Philipp Wendler
Aug 15 '14 at 13:10
pactl exitworked for me. Withpulseaudio -kit restarted automatically even though I had autorespawn disabled.
– flo
Jan 31 '17 at 19:48
add a comment
|
Alt+F2 type pactl exit
stops all pulseaudio processes. You can enter
Alt+F2 type pulseaudio
to start it again. Unfortunately, some programs doesn't seem to sound anymore, after that. Still looking for a way to reactivate pulse without reboot…
Alt+F2 type pactl exit
stops all pulseaudio processes. You can enter
Alt+F2 type pulseaudio
to start it again. Unfortunately, some programs doesn't seem to sound anymore, after that. Still looking for a way to reactivate pulse without reboot…
edited Jun 3 '12 at 16:40
Marco Ceppi♦
44.2k24 gold badges159 silver badges194 bronze badges
44.2k24 gold badges159 silver badges194 bronze badges
answered May 20 '12 at 10:59
mitschmitsch
591 silver badge2 bronze badges
591 silver badge2 bronze badges
6
pactl exitdoes not stop pulseaudio completely on my machine, it is immediately restarted (just like withpulseaudio -k).
– Philipp Wendler
Aug 15 '14 at 13:10
pactl exitworked for me. Withpulseaudio -kit restarted automatically even though I had autorespawn disabled.
– flo
Jan 31 '17 at 19:48
add a comment
|
6
pactl exitdoes not stop pulseaudio completely on my machine, it is immediately restarted (just like withpulseaudio -k).
– Philipp Wendler
Aug 15 '14 at 13:10
pactl exitworked for me. Withpulseaudio -kit restarted automatically even though I had autorespawn disabled.
– flo
Jan 31 '17 at 19:48
6
6
pactl exit does not stop pulseaudio completely on my machine, it is immediately restarted (just like with pulseaudio -k).– Philipp Wendler
Aug 15 '14 at 13:10
pactl exit does not stop pulseaudio completely on my machine, it is immediately restarted (just like with pulseaudio -k).– Philipp Wendler
Aug 15 '14 at 13:10
pactl exit worked for me. With pulseaudio -k it restarted automatically even though I had autorespawn disabled.– flo
Jan 31 '17 at 19:48
pactl exit worked for me. With pulseaudio -k it restarted automatically even though I had autorespawn disabled.– flo
Jan 31 '17 at 19:48
add a comment
|
Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.
Ubuntu Tip: Turning PulseAudio On and Off
add a comment
|
Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.
Ubuntu Tip: Turning PulseAudio On and Off
add a comment
|
Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.
Ubuntu Tip: Turning PulseAudio On and Off
Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.
Ubuntu Tip: Turning PulseAudio On and Off
edited Oct 12 '12 at 8:40
lambda23
2,5787 gold badges28 silver badges44 bronze badges
2,5787 gold badges28 silver badges44 bronze badges
answered Oct 5 '12 at 12:20
abhishake rainaabhishake raina
111 bronze badge
111 bronze badge
add a comment
|
add a comment
|
What I did.... stopped it from respawning because it couldn't find it....... right click the /etc folder in the file browser (open as root) create a new folder called pulseoff, then move the pulse folder into it (drag and drop). The system doesn't have the command to look there for it. If you want to start it again, cut it from the pulseoff folder, go up a step to the /etc folder and paste it there...... Some people like to make it out to be harder than it really is with editing files and stuff and mostly those edits don't work I tried them. Do it the easy way. I restarted the machine and checked the system monitor before posting this, pulseaudio is not running and sucking up memory.
add a comment
|
What I did.... stopped it from respawning because it couldn't find it....... right click the /etc folder in the file browser (open as root) create a new folder called pulseoff, then move the pulse folder into it (drag and drop). The system doesn't have the command to look there for it. If you want to start it again, cut it from the pulseoff folder, go up a step to the /etc folder and paste it there...... Some people like to make it out to be harder than it really is with editing files and stuff and mostly those edits don't work I tried them. Do it the easy way. I restarted the machine and checked the system monitor before posting this, pulseaudio is not running and sucking up memory.
add a comment
|
What I did.... stopped it from respawning because it couldn't find it....... right click the /etc folder in the file browser (open as root) create a new folder called pulseoff, then move the pulse folder into it (drag and drop). The system doesn't have the command to look there for it. If you want to start it again, cut it from the pulseoff folder, go up a step to the /etc folder and paste it there...... Some people like to make it out to be harder than it really is with editing files and stuff and mostly those edits don't work I tried them. Do it the easy way. I restarted the machine and checked the system monitor before posting this, pulseaudio is not running and sucking up memory.
What I did.... stopped it from respawning because it couldn't find it....... right click the /etc folder in the file browser (open as root) create a new folder called pulseoff, then move the pulse folder into it (drag and drop). The system doesn't have the command to look there for it. If you want to start it again, cut it from the pulseoff folder, go up a step to the /etc folder and paste it there...... Some people like to make it out to be harder than it really is with editing files and stuff and mostly those edits don't work I tried them. Do it the easy way. I restarted the machine and checked the system monitor before posting this, pulseaudio is not running and sucking up memory.
answered Jan 18 '13 at 15:25
Jevorah ChomadaJevorah Chomada
1
1
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%2f8425%2fhow-to-temporarily-disable-pulseaudio%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