<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=4002&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / PulseAudio always resets to mute]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=4002</link>
		<description><![CDATA[The most recent posts in PulseAudio always resets to mute.]]></description>
		<lastBuildDate>Sun, 14 Jul 2024 12:23:05 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=51104#p51104</link>
			<description><![CDATA[<div class="quotebox"><cite>aluma wrote:</cite><blockquote><div><p>The same one, open it in the editor.</p></div></blockquote></div><p>I opened &#039;/etc/init.d/dbus&#039; in Mousepad. It reported &quot;1 occurrence&quot; when I searched for &#039;IDTYPE&#039;.</p><div class="codebox"><pre><code>$ uname -a
Linux ng3 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64 GNU/Linux</code></pre></div><p>Where is the &#039;dbus&#039; that you opened in KWrite?</p><p>Ah! No need to respond! It took a while, then I spotted that I mis-read: it is in <span class="bbc">/etc/default/dbus</span>.</p><p>Many thanks. I&#039;ve now changed that setting.</p>]]></description>
			<author><![CDATA[dummy@example.com (alexkemp)]]></author>
			<pubDate>Sun, 14 Jul 2024 12:23:05 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=51104#p51104</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=51103#p51103</link>
			<description><![CDATA[<p>@alexkemp; late evening perhaps <img src="https://dev1galaxy.org/img/smilies/smile.png" width="15" height="15" alt="smile" /><br />Please check <span class="bbc">/etc/<strong>default</strong>/dbus</span> again (which indeed is different from&#160; <span class="bbc">/etc/<strong>init.d</strong>/dbus</span>).</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Sun, 14 Jul 2024 12:07:49 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=51103#p51103</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=51101#p51101</link>
			<description><![CDATA[<p>The same one, open it in the editor.<br />I placed ~/.dbus/session-bus/ in RAM and the sound works from pure alsa, so there are no such problems.<br /><a href="https://postimg.cc/PP7rz9JX" rel="nofollow"><span class="postimg"><img src="https://i.postimg.cc/HkYcHCCy/35.jpg" alt="35.jpg" /></span></a></p>]]></description>
			<author><![CDATA[dummy@example.com (aluma)]]></author>
			<pubDate>Sun, 14 Jul 2024 11:39:47 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=51101#p51101</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=51097#p51097</link>
			<description><![CDATA[<p>My desktop works under Daedalus. /etc/default/dbus looks nothing like the above for me:</p><div class="codebox"><pre><code>$ cat /etc/init.d/dbus | fgrep -i IDTYPE
  if [ &quot;${IDTYPE}&quot; = &quot;RANDOM&quot; ] &amp;&amp; \</code></pre></div><p>Here is the only bit of /etc/init.d/dbus that applies:</p><div class="codebox"><pre><code>create_machineid() {
  # Create or recreate machine-id file
  
  UPTIME=$(cat /proc/uptime | cut -d &quot; &quot; -f 1 | sed &#039;s/\..*//g&#039;)
  # re-create machine-id if it already exists and this is the first 
  # time the initscript is called (either PIDDIR does not exist or
  # uptime is less than GRACETIME)
  if [ &quot;${IDTYPE}&quot; = &quot;RANDOM&quot; ] &amp;&amp; \
     [ -f &quot;${MACHINEID}&quot; ] &amp;&amp; \
     [ ! -d &quot;$PIDDIR&quot; -o ${UPTIME} -lt ${GRACETIME} ]; then 
        rm -f &quot;${MACHINEID}&quot;
  fi 
  if [ -x $UUIDGEN ]; then
    $UUIDGEN $UUIDGEN_OPTS
  fi
}</code></pre></div><p>Presumably something sets <span class="bbc">$IDTYPE</span> to &quot;RANDOM&quot;, but it is not in that script-file.</p>]]></description>
			<author><![CDATA[dummy@example.com (alexkemp)]]></author>
			<pubDate>Sun, 14 Jul 2024 08:39:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=51097#p51097</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=51091#p51091</link>
			<description><![CDATA[<p>thanks fsmithred! forum search led me here.</p><p>the IDTYPE=RANDOM was the problem for me. comment-out this line and machine_id<br />remains stable across boots.</p><p>this change keeps pulseaudio stable with no build-up of junk files in ~/.config/pulse.<br />it also keeps the ~/.dbus/session-bus/ directory clean as well, which is welcome.</p><p>i had scripts to handle the build-up of junk files in these two dirs, which have now been deleted.</p><p>FYI, after making the above change i came across this blog post, which adds a little more info:</p><p><a href="https://kelar.org/~bandali/blog/pacify.html" rel="nofollow">https://kelar.org/~bandali/blog/pacify.html</a></p>]]></description>
			<author><![CDATA[dummy@example.com (grunchy)]]></author>
			<pubDate>Sat, 13 Jul 2024 20:38:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=51091#p51091</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=49561#p49561</link>
			<description><![CDATA[<p>Finally, there&#039;s a solution. Someone figured out that pulseaudio saves settings in files that are named with the dbus machine-id. In Devuan, that machine-id changes with each reboot. They&#039;re kept in ~/.config/pulse. </p><p>You can edit /etc/default/dbus to comment the last line as shown below to disable the machine-id change. </p><div class="codebox"><pre><code># This is a configuration file for /etc/init.d/dbus; it allows you to
# perform common modifications to the behavior of the dbus daemon
# startup without editing the init script (and thus getting prompted
# by dpkg on upgrades).  We all love dpkg prompts.

# Parameters to pass to dbus.
PARAMS=&quot;&quot;

# IDTYPE: how to deal with /var/lib/dbus/machine-id:
# 
# if IDTYPE=&quot;RANDOM&quot;: regenerate /var/lib/dbus/machine-id at each boot
# else keep it fixed across reboots
#IDTYPE=&quot;RANDOM&quot;</code></pre></div><p>It&#039;s also possible to rename those files so they use the current machine-id so they work.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 18 Apr 2024 21:25:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=49561#p49561</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47173#p47173</link>
			<description><![CDATA[<p>Hi, you can make the changes to /etc/asound.conf, by using <br />~/.asoundrc</p><div class="codebox"><pre><code>defaults.ctl.card 0
defaults.pcm.card 0
defaults.timer.card 0</code></pre></div><p>use your researched values...</p><p>~/.asoundrc has precedence over /etc/asound.conf</p><p>I use this to Not use hdmi (desktop-tower, not laptop)... I&#039;ve sure it works both ways.</p>]]></description>
			<author><![CDATA[dummy@example.com (GlennW)]]></author>
			<pubDate>Wed, 10 Jan 2024 22:43:43 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47173#p47173</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=43233#p43233</link>
			<description><![CDATA[<p>Given the version devuan has, currently, or at least last I checked, it might be more beneficial to have alsasound.</p><p>This being said, to each their own.</p>]]></description>
			<author><![CDATA[dummy@example.com (zapper)]]></author>
			<pubDate>Sun, 06 Aug 2023 01:02:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=43233#p43233</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42954#p42954</link>
			<description><![CDATA[<p>zapper, it&#039;s grand that you&#039;ve added some more intel about this minefield,<br />I do wax lyrical some you know, we all try and that&#039;s not dumb.<br />Now I am introduced to sndio, there&#039;s a wikipedia page and packages.debian Description search found 11 matching packages.<br />I suppose we all gather intel from many sources of course.<br />All the docs are greatly better these days in it, certainly Arch Linux.<br />Distro&#039;s that I spin to troubleshoot, well Knoppix, thesedays easyos certainly, MX Linux is greatly popular.<br />Pipewire appears to be the way forward, I buy that, head on a sticks two penneth.<br />So actually pulseaudio is my best friend because it appears to work some magic under the hood and hey presto asound.conf then works and can be configured as total as you like.<br />Thanks zapper.</p>]]></description>
			<author><![CDATA[dummy@example.com (andyp67)]]></author>
			<pubDate>Mon, 17 Jul 2023 07:44:41 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42954#p42954</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42953#p42953</link>
			<description><![CDATA[<p>andyp67, mostly agree, one exception though,pure alsa is only beaten by one thing, alsa-lib + sndio - alsasound.</p><p>If you can get it working of course. <img src="https://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></p><p>Some distros can, hard to know if Devuan is one of them, never tried before for whatever reason. Perhaps I didn&#039;t know if the service&#039;s name. Idk...</p><p>People who need pipewire and pulseaudio aren&#039;t dumb, they just like unneeded bloatware.</p><p>Still foolish? In my opinon, yes... but what can you do.</p><p>:shrug:</p><p>btw, nice necro. This page was dead 2 years ago. <img src="https://dev1galaxy.org/img/smilies/tongue.png" width="15" height="15" alt="tongue" /></p>]]></description>
			<author><![CDATA[dummy@example.com (zapper)]]></author>
			<pubDate>Mon, 17 Jul 2023 04:18:56 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42953#p42953</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42878#p42878</link>
			<description><![CDATA[<p>Elegant way is to just use alsa alone.<br />Anything on top of alsa that &#039;modifies&#039; &#039;enhances&#039; sound file, is for retards, use ffmpeg.</p><p>If (like me,) you can not, for example, get sound out of your hdmi monitor speakers, all alsa configuration methods will fail, I tell you no lie, I am not the only one, we are many.</p><p>apt-get install alsa-topology-conf alsa-ucm-conf alsa-utils</p><p>/etc/init.d/alsa-utils reset</p><p>apt-get install pulseaudio pavucontrol</p><p>In GUI, run pavucontrol and setup configuration, e.g., I want sound out of line out on my box and my HDMI monitor speakers as well.</p><p>Purge pulseaudio and pavucontrol, I purge the flipping lot with debfoster (&amp; rm /var/lib/debfoster/keepers.)</p><p>touch /etc/asound.conf</p><p>vi (or whatever,) /etc/asound.conf<br />defaults.pcm.card 0<br />defaults.pcm.device 3 # my flipping HDMI monitor speakers<br />defaults.ctl.card 0</p><p>pavucontrol does something that makes alsa asound.conf &#039;work.&#039;</p><p>Do `/etc/init.d/alsa-utils reset` again, and it will trash it.</p><p>A very clever person could tell us what pavucontrol &#039;modifies,&#039; so we wouldn&#039;t have to do the pavucontrol thing, and we are many.<br />If somebody tells us what pavucontrol does, without actually doing it themselves, that&#039;s not very clever.<br />AT ALL</p><p>P.S., try pavucontrol before jerking around with modules, and firmware-intel-sound firmware-misc-nonfree firmware-sof-signed</p>]]></description>
			<author><![CDATA[dummy@example.com (andyp67)]]></author>
			<pubDate>Thu, 13 Jul 2023 13:30:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42878#p42878</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=42873#p42873</link>
			<description><![CDATA[<p>Does anyone have ideas for a more elegant way of setting the default pulseaudio device?</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Thu, 13 Jul 2023 10:07:42 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=42873#p42873</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=33041#p33041</link>
			<description><![CDATA[<div class="quotebox"><cite>mirrortokyo wrote:</cite><blockquote><div><p>then at the end of /etc/pulse/default.pa I put:</p><p># set-card-profile name-of-card-without-angle-brackets name-of-profile-without-trailing-colon<br />set-card-profile alsa_card.pci-0000_03_06.0 output:analog-stereo+input:analog-mono</p></div></blockquote></div><p><strong>After adding another PCI-Express card to the pc, I needed to comment out the line referencing the sound card in /etc/pulse/default.pa and re-run:</strong></p><p><strong>pacmd list-cards</strong></p><p>which gave the new name of the card as:</p><p>alsa_card.pci-0000_04_06.0 </p><p>and updated the line in /etc/pulse/default.pa to:</p><p>set-card-profile alsa_card.pci-0000_04_06.0 output:analog-stereo+input:analog-mono</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Mon, 29 Nov 2021 01:21:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=33041#p33041</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=28936#p28936</link>
			<description><![CDATA[<p>I registered here to just to report on this issue (long time Devuan user).</p><p>Thanks to this thread I solved the issue for myself and filed a bug report:</p><p><a href="https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=986211" rel="nofollow">https://bugs.debian.org/cgi-bin/bugrepo … bug=986211</a></p><p>My solution was to do:</p><p>pacmd list-cards</p><p>(program pacmd is in package pulseaudio-utils)</p><p>to find the actual output that I wanted to use (in my case, analogue stereo output on a Soundblaster Audigy 2 ZS)</p><p>then at the end of /etc/pulse/default.pa I put:</p><p># set-card-profile name-of-card-without-angle-brackets name-of-profile-without-trailing-colon<br />set-card-profile alsa_card.pci-0000_03_06.0 output:analog-stereo+input:analog-mono</p><p>I also recommend installing the package pavucontrol and using the command pavucontrol if something gets accidentally muted.</p><p>This seems to be a problem of lack of documentation on setting the default audio profile.</p>]]></description>
			<author><![CDATA[dummy@example.com (mirrortokyo)]]></author>
			<pubDate>Thu, 08 Apr 2021 05:00:38 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=28936#p28936</guid>
		</item>
		<item>
			<title><![CDATA[Re: PulseAudio always resets to mute]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=28128#p28128</link>
			<description><![CDATA[<p>Let&#039;s see, pipewire or pulseaudio which is worse...</p><p>How about neither...</p><p>Since they both are redhat garbage software. </p><p>I tire of the corporate ideal to eff things up that work well just to make people depend on software that is bloated and sux... </p><p>Smh...&#160; greed does wonders... or horrors if you prefer.</p><p><img src="https://dev1galaxy.org/img/smilies/sad.png" width="15" height="15" alt="sad" /></p>]]></description>
			<author><![CDATA[dummy@example.com (zapper)]]></author>
			<pubDate>Sat, 13 Mar 2021 03:44:46 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=28128#p28128</guid>
		</item>
	</channel>
</rss>
