<?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=7251&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=7251</link>
		<description><![CDATA[The most recent posts in RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?.]]></description>
		<lastBuildDate>Fri, 18 Jul 2025 03:43:58 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56765#p56765</link>
			<description><![CDATA[<div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>bluez-alsa-utils (which provides a virtual sound card for playback and capture via bluez bluetooth mediation).</p></div></blockquote></div><p>It seems that it does not provide any &quot;virtual sound card&quot;.</p><p>What it does provide is a sort &quot;virtual PCM device&quot; named &quot;bluealsa&quot;<br />_https://github.com/arkq/bluez-alsa</p><div class="codebox"><pre><code>aplay -D bluealsa test.wav </code></pre></div><div class="codebox"><pre><code>alsamixer -D bluealsa </code></pre></div><div class="codebox"><pre><code> $ bluealsa-aplay -l
**** List of PLAYBACK Bluetooth Devices ****
hci0: EC:66:D1:BF:02:05 [Godess of Wisdom], trusted audio-headphones
  A2DP (SBC): S16_LE 2 channels 48000 Hz
**** List of CAPTURE Bluetooth Devices **** </code></pre></div><p>It can be configured as default playback device, e.g. <span class="bbc">~/.asoundrc</span>.</p><p>The question is how to configure a <span class="bbc">dmix</span> for it.</p><p>EDIT:</p><div class="quotebox"><blockquote><div><p>Unfortunately dmix works as a front-end only with hardware (ie &quot;hw&quot; type) devices, and not with any other plugin types such as BlueALSA.</p><p>So it is not possible to configure BlueALSA as a backend device for dmix. We are forced to find an indirect method; that is, use a &quot;hw&quot; device that can forward the mixed stream on to a BlueALSA PCM. Fortunately, ALSA provides just such a device, the &quot;Loopback&quot; device, which is a kernel driver that implements a <strong><span style="color: red">virtual sound card</span></strong>.</p><p>This wiki article describes one way that BlueALSA can be used with the ALSA Loopback device and the dmix plugin to achieve mixing of multiple audio streams into a single BlueALSA playback PCM.<br />_https://github-wiki-see.page/m/Arkq/bluez-alsa/wiki/Using-bluealsa-with-dmix</p></div></blockquote></div><p>A very simple ALSA config for Bluetooth Headphones:</p><div class="codebox"><pre><code>$ cat ~/.asoundrc
# -------------------------------------------
#		Bluetooth Headphones
#
#	Configuration for default audio device
#--------------------------------------------

# Perform plug device
pcm.!default
{
	type	plug
	slave.pcm	&quot;bluealsa&quot;
	hint.description	&quot;Default device&quot;
}</code></pre></div><div class="quotebox"><blockquote><div><p><strong>bluealsa</strong> is a Linux <strong>daemon</strong> to give applications access to Bluetooth audio streams using the Bluetooth A2DP, HFP, HSP and/or BLE-MIDI profiles. It provides a D-Bus API to applications, and can be used by ALSA applications via libasound plugins (see bluealsa-plugins(7) for details).<br />_https://manpages.debian.org/unstable/bluez-alsa-utils/bluealsa.8.en.html</p></div></blockquote></div><div class="codebox"><pre><code>$ apt-file find /usr/bin/bluealsa
bluez-alsa-utils: /usr/bin/bluealsa       
bluez-alsa-utils: /usr/bin/bluealsa-aplay</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (igorzwx)]]></author>
			<pubDate>Fri, 18 Jul 2025 03:43:58 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56765#p56765</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56250#p56250</link>
			<description><![CDATA[<p>You may post the output of this command:</p><div class="codebox"><pre><code>fuser -av $(find /dev/snd -type c 2&gt;/dev/null)</code></pre></div><p>For example:</p><div class="codebox"><pre><code>➤ fuser -av $(find /dev/snd -type c 2&gt;/dev/null)
                     USER        PID ACCESS COMMAND
/dev/snd/controlC0:  igor       2235 F.... mate-settings-d
                     igor       2326 F.... mate-volume-con
/dev/snd/pcmC0D0c:
/dev/snd/pcmC0D0p:   igor       3201 F...m firefox-esr
/dev/snd/seq:
/dev/snd/timer:      igor       3201 f.... firefox-esr</code></pre></div><p>And the output of </p><div class="codebox"><pre><code>inxi -A</code></pre></div><div class="codebox"><pre><code>sudo apt install inxi</code></pre></div><p><strong>inxi: everything you need to know about your computer </strong><br />_https://easylinuxtipsproject.blogspot.com/p/inxi.html</p>]]></description>
			<author><![CDATA[dummy@example.com (igorzwx)]]></author>
			<pubDate>Tue, 24 Jun 2025 14:07:04 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56250#p56250</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56187#p56187</link>
			<description><![CDATA[<p>THANK YOU EVERYONE! I now have sound! Yippee! &#039;b&#039;ye ! - Noel AAARRRGGGHHH!!!! JUST DISCOVERED NO SOUND ON FACEBOOK?</p>]]></description>
			<author><![CDATA[dummy@example.com (Noel)]]></author>
			<pubDate>Fri, 20 Jun 2025 04:39:15 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56187#p56187</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56181#p56181</link>
			<description><![CDATA[<p>Yes, create the directory pathname </p><div class="codebox"><pre><code># mkdir -p /etc/alsa/conf.d</code></pre></div><p> if it doesn&#039;t exist.</p><p>in fact, if you look into <span class="bbc">/usr/share/alsa/alsa.conf</span> which is the main configuration file for alsa, you will see that it looks for configuration files in many places. I suggested <span class="bbc">/etc/alsa/conf.d/</span> because that is commonly used by many packages and especially <span class="bbc">bluez-alsa-utils</span> (which provides a virtual sound card for playback and capture via <span class="bbc">bluez</span> bluetooth mediation).</p><p>Some people prefer using <span class="bbc">~/.asoundrc</span> instead, since that is written/editable by the non-root end user. However it will also only be used by that non-root end user and not shared among all users.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Fri, 20 Jun 2025 02:03:27 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56181#p56181</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56180#p56180</link>
			<description><![CDATA[<div class="codebox"><pre><code>➤ apt-file find /etc/alsa/conf.d
...
libasound2-plugins: /etc/alsa/conf.d/10-rate-lav.conf
libasound2-plugins: /etc/alsa/conf.d/10-samplerate.conf
libasound2-plugins: /etc/alsa/conf.d/10-speexrate.conf
libasound2-plugins: /etc/alsa/conf.d/50-arcam-av-ctl.conf
libasound2-plugins: /etc/alsa/conf.d/50-jack.conf
libasound2-plugins: /etc/alsa/conf.d/50-oss.conf
libasound2-plugins: /etc/alsa/conf.d/50-pulseaudio.conf
libasound2-plugins: /etc/alsa/conf.d/60-a52-encoder.conf
libasound2-plugins: /etc/alsa/conf.d/60-speex.conf
libasound2-plugins: /etc/alsa/conf.d/60-upmix.conf
libasound2-plugins: /etc/alsa/conf.d/60-vdownmix.conf
libasound2-plugins: /etc/alsa/conf.d/98-usb-stream.conf
libasound2-plugins: /etc/alsa/conf.d/99-pulseaudio-default.conf.example
...</code></pre></div><p>See also:<br />_https://www.commandlinux.com/man-page/man1/apt-file.1.html</p>]]></description>
			<author><![CDATA[dummy@example.com (igorzwx)]]></author>
			<pubDate>Fri, 20 Jun 2025 01:55:39 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56180#p56180</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56178#p56178</link>
			<description><![CDATA[<p>Thank you Fred &amp; Ralph. However Ralph, I could not create the file &lt; /etc/alsa/conf.d/00-defaults.conf &gt;<br />$ ls -al /etc/alsa<br />ls: cannot access &#039;/etc/alsa&#039;: No such file or directory<br />???<br />Should I just create empty &lt; alsa &gt; &amp; &lt; conf.d &gt; directories?</p>]]></description>
			<author><![CDATA[dummy@example.com (Noel)]]></author>
			<pubDate>Fri, 20 Jun 2025 01:08:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56178#p56178</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56166#p56166</link>
			<description><![CDATA[<p>Since the analog out put is on your <span class="bbu">card 1</span>, you should create a file <br /><span class="bbc">/etc/alsa/conf.d/00-defaults.conf</span> with the following line:</p><div class="codebox"><pre><code>defaults.pcm.!card 1</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Thu, 19 Jun 2025 04:36:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56166#p56166</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56165#p56165</link>
			<description><![CDATA[<p>$ aplay -l<br />**** List of PLAYBACK Hardware Devices ****<br />card 0: HDMI [HDA Intel HDMI], device 3: HDMI 0 [HDMI 0]<br />&#160; Subdevices: 1/1<br />&#160; Subdevice #0: subdevice #0<br />card 0: HDMI [HDA Intel HDMI], device 7: HDMI 1 [HDMI 1]<br />&#160; Subdevices: 1/1<br />&#160; Subdevice #0: subdevice #0<br />card 0: HDMI [HDA Intel HDMI], device 8: HDMI 2 [HDMI 2]<br />&#160; Subdevices: 1/1<br />&#160; Subdevice #0: subdevice #0<br />card 1: PCH [HDA Intel PCH], device 0: ALC892 Analog [ALC892 Analog]<br />&#160; Subdevices: 1/1<br />&#160; Subdevice #0: subdevice #0<br />card 1: PCH [HDA Intel PCH], device 1: ALC892 Digital [ALC892 Digital]<br />&#160; Subdevices: 1/1<br />&#160; Subdevice #0: subdevice #0</p>]]></description>
			<author><![CDATA[dummy@example.com (Noel)]]></author>
			<pubDate>Thu, 19 Jun 2025 02:36:28 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56165#p56165</guid>
		</item>
		<item>
			<title><![CDATA[Re: RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56164#p56164</link>
			<description><![CDATA[<p>Normally the audio works. in alsamixer, use arrow keys to move left/right to select a channel, m to mute/unmute a channel, pgup/pgdown to raise/lower volumes. ESC to exit when you&#039;re done.</p><p>Post the output of <span class="bbc">aplay -l</span> Let&#039;s see how many audio devices you have and what they are.</p>]]></description>
			<author><![CDATA[dummy@example.com (fsmithred)]]></author>
			<pubDate>Thu, 19 Jun 2025 00:46:06 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56164#p56164</guid>
		</item>
		<item>
			<title><![CDATA[RefractaOS - (Devuan Daedalus Based) Fresh Install SOUND OK XCEPT4FBK?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=56160#p56160</link>
			<description><![CDATA[<p>RefractaOS - (Devuan Daedalus Based) Fresh Install - No Sound?<br />I cannot make head nor tail of the Alsa Mixer! HELP!</p>]]></description>
			<author><![CDATA[dummy@example.com (Noel)]]></author>
			<pubDate>Wed, 18 Jun 2025 23:57:32 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=56160#p56160</guid>
		</item>
	</channel>
</rss>
