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;









45


















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?










share|improve this question

































    45


















    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?










    share|improve this question





























      45













      45









      45


      10






      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?










      share|improve this question
















      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






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      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























          7 Answers
          7






          active

          oldest

          votes


















          30



















          You can use pasuspender. Try prefixing your wine command with it.



          pasuspender -- wine path/to/file.exe





          share|improve this answer



























          • 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











          • prefixing pasuspender to qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much

            – Mina Michael
            Oct 6 '15 at 17:17


















          30



















          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.






          share|improve this answer






















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



















          18



















          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)






          share|improve this answer



























          • 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


















          14



















          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





          share|improve this answer




















          • 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






          • 1





            My mistake, I was using service instead of systemctl.

            – Joseph Garvin
            Dec 12 '18 at 1:43


















          5



















          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…






          share|improve this answer






















          • 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 worked for me. With pulseaudio -k it restarted automatically even though I had autorespawn disabled.

            – flo
            Jan 31 '17 at 19:48



















          1



















          Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.



          Ubuntu Tip: Turning PulseAudio On and Off






          share|improve this answer


































            -1



















            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.






            share|improve this answer


























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



              );














              draft saved

              draft discarded
















              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









              30



















              You can use pasuspender. Try prefixing your wine command with it.



              pasuspender -- wine path/to/file.exe





              share|improve this answer



























              • 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











              • prefixing pasuspender to qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much

                – Mina Michael
                Oct 6 '15 at 17:17















              30



















              You can use pasuspender. Try prefixing your wine command with it.



              pasuspender -- wine path/to/file.exe





              share|improve this answer



























              • 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











              • prefixing pasuspender to qjackctl (pasuspender qjackctl) solved ages of problems for me!!! thank you so much

                – Mina Michael
                Oct 6 '15 at 17:17













              30















              30











              30









              You can use pasuspender. Try prefixing your wine command with it.



              pasuspender -- wine path/to/file.exe





              share|improve this answer
















              You can use pasuspender. Try prefixing your wine command with it.



              pasuspender -- wine path/to/file.exe






              share|improve this answer















              share|improve this answer




              share|improve this answer








              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











              • prefixing pasuspender to 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











              • 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
















              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













              30



















              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.






              share|improve this answer






















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
















              30



















              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.






              share|improve this answer






















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














              30















              30











              30









              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.






              share|improve this answer
















              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.







              share|improve this answer















              share|improve this answer




              share|improve this answer








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













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








              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












              18



















              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)






              share|improve this answer



























              • 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















              18



















              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)






              share|improve this answer



























              • 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













              18















              18











              18









              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)






              share|improve this answer
















              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)







              share|improve this answer















              share|improve this answer




              share|improve this answer








              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

















              • 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











              14



















              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





              share|improve this answer




















              • 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






              • 1





                My mistake, I was using service instead of systemctl.

                – Joseph Garvin
                Dec 12 '18 at 1:43















              14



















              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





              share|improve this answer




















              • 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






              • 1





                My mistake, I was using service instead of systemctl.

                – Joseph Garvin
                Dec 12 '18 at 1:43













              14















              14











              14









              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





              share|improve this answer














              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






              share|improve this answer













              share|improve this answer




              share|improve this answer










              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 just pulseaudio -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





                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





                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











              5



















              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…






              share|improve this answer






















              • 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 worked for me. With pulseaudio -k it restarted automatically even though I had autorespawn disabled.

                – flo
                Jan 31 '17 at 19:48
















              5



















              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…






              share|improve this answer






















              • 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 worked for me. With pulseaudio -k it restarted automatically even though I had autorespawn disabled.

                – flo
                Jan 31 '17 at 19:48














              5















              5











              5









              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…






              share|improve this answer
















              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…







              share|improve this answer















              share|improve this answer




              share|improve this answer








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













              • 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 worked for me. With pulseaudio -k it 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












              1



















              Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.



              Ubuntu Tip: Turning PulseAudio On and Off






              share|improve this answer































                1



















                Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.



                Ubuntu Tip: Turning PulseAudio On and Off






                share|improve this answer





























                  1















                  1











                  1









                  Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.



                  Ubuntu Tip: Turning PulseAudio On and Off






                  share|improve this answer
















                  Try this Ubuntu Tips. It works fine on my Ubuntu 12.04 LTS.



                  Ubuntu Tip: Turning PulseAudio On and Off







                  share|improve this answer















                  share|improve this answer




                  share|improve this answer








                  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
























                      -1



















                      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.






                      share|improve this answer





























                        -1



















                        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.






                        share|improve this answer



























                          -1















                          -1











                          -1









                          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.






                          share|improve this answer














                          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.







                          share|improve this answer













                          share|improve this answer




                          share|improve this answer










                          answered Jan 18 '13 at 15:25









                          Jevorah ChomadaJevorah Chomada

                          1




                          1































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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

                              Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

                              How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

                              Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü