<?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=7981&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / New Devuan user, strugging to get the sound working]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=7981</link>
		<description><![CDATA[The most recent posts in New Devuan user, strugging to get the sound working.]]></description>
		<lastBuildDate>Mon, 18 May 2026 01:05:12 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: New Devuan user, strugging to get the sound working]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63881#p63881</link>
			<description><![CDATA[<p>If you installed Cinnamon desktop using the excalibur 6.1.1 iso set, attempts to have some kind of sound working after installation.&#160; Sorry it didn&#039;t work out for you.&#160; The installer creates /etc/xdg/autostart/pipewire.desktop file that attempts to run daemon to start pipewire, pipewire-pulse, and wireplumber.&#160; Since this method isn&#039;t working on your system, before attempting other ways of getting these processes to start up, you should first disable the xdg autostart.&#160; You can do this in the Cinnamon GUI: Menu -&gt; System Settings -&gt; Startup Applications, turn the slider for Pipewire to the off position.&#160; Then you may try other methods of starting pipewire, if that&#039;s what you want to use.</p>]]></description>
			<author><![CDATA[dummy@example.com (rbit)]]></author>
			<pubDate>Mon, 18 May 2026 01:05:12 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63881#p63881</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Devuan user, strugging to get the sound working]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63879#p63879</link>
			<description><![CDATA[<p>I guess the problem is that you are mixing several approaches, and they don&#039;t go together very well. I have taken my setup from here: <a href="https://dev1galaxy.org/viewtopic.php?pid=45747#p45747" rel="nofollow">https://dev1galaxy.org/viewtopic.php?pid=45747#p45747</a>. This is the initial Daedalus approach. The same thread then talks about different approaches and daemons ... never fully understood the differences, and never changed my setup. It works 18 months now.&#160; </p><p>I have simply upgraded my Daedalus installation to Excalibur, ignored the release notes, and the old stuff simply works. Also on my travelling laptop. </p><p>You followed a different guide, and I guess you have to undo that stuff first of all. Sorry, I should have mentioned that. </p><p>I got the same snippet in front of my .xsessionrc:</p><div class="codebox"><pre><code>if [ -f ~/.profile ]; then
    . ~/.profile
fi</code></pre></div><p>But according to my notes this was because of some conf change for gnupg. I don&#039;t think this hurts. </p><p>I would remove or comment out the addition from the release note in .profile. Give it a try.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Sun, 17 May 2026 19:53:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63879#p63879</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Devuan user, strugging to get the sound working]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63877#p63877</link>
			<description><![CDATA[<p>Many thanks for your welcome, rolfie, and your reply.&#160; </p><p>I followed your advice, and ran </p><div class="codebox"><pre><code>apt install pipewire-audio</code></pre></div><p>which came back that everything was installed and up to date.&#160; </p><p>I then added your lines to ~/.xsessionrc, checked the file permissions (664), and restarted the computer.&#160; Unfortunately, when I logged into Devuan, the screen froze as black with just the mouse pointer showing.&#160; </p><p>I had to hold the power button down to turn off the computer, then booted into Linux Mint and hashed out the addition to .xsessionrc.&#160; This time Devuan logged in fine, but with no sound as before.&#160; </p><p>I&#039;m wondering, what does your entire .xsession file look like, please?&#160; With your lines added, mine was</p><div class="codebox"><pre><code>if [ -f ~/.profile ]; then
    . ~/.profile
fi

# kill any existing pipewire instance to restore sound 
pkill -u &quot;$USER&quot; -fx /usr/bin/pipewire-pulse 1&gt;/dev/null 2&gt;&amp;1 
pkill -u &quot;$USER&quot; -fx /usr/bin/wireplumber 1&gt;/dev/null 2&gt;&amp;1 
pkill -u &quot;$USER&quot; -fx /usr/bin/pipewire 1&gt;/dev/null 2&gt;&amp;1 

exec /usr/bin/pipewire &amp; 

# wait for pipewire to start before attempting to start related daemons 
while [ &quot;$(pgrep -f /usr/bin/pipewire)&quot; = &quot;&quot; ] ; do 
   sleep 1 
done 

exec /usr/bin/wireplumber &amp; 

exec /usr/bin/pipewire-pulse &amp; </code></pre></div><p>the first 3 lines are from the Devuan Excalibur release notes.&#160; </p><p>Also, my ~/.profile file is this, in case it makes a difference - again the last section I added from the Devuan Excalibur release notes</p><div class="codebox"><pre class="vscroll"><code># ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n &quot;$BASH_VERSION&quot; ]; then
    # include .bashrc if it exists
    if [ -f &quot;$HOME/.bashrc&quot; ]; then
	. &quot;$HOME/.bashrc&quot;
    fi
fi

# set PATH so it includes user&#039;s private bin if it exists
if [ -d &quot;$HOME/bin&quot; ] ; then
    PATH=&quot;$HOME/bin:$PATH&quot;
fi

# set PATH so it includes user&#039;s private bin if it exists
if [ -d &quot;$HOME/.local/bin&quot; ] ; then
    PATH=&quot;$HOME/.local/bin:$PATH&quot;
fi

# Pipewire Audio snippet from Devuan release notes
if [ &quot;$XDG_RUNTIME_DIR&quot; = &quot;/run/user/$(id -u)&quot; ] ; then
                psess_pids=
                for p in pipewire wireplumber pipewire-pulse ; do
                command -v $p &gt;/dev/null || continue
                    pgrep --exact --uid $USER $p &gt;/dev/null &amp;&amp; continue
                    $p &amp;
                    psess_pids=&quot;$! ${psess_pids}&quot;
                done
                [ &quot;$psess_pids&quot; ] &amp;&amp; trap &quot;kill $psess_pids&quot; EXIT
fi</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (Big_Hat)]]></author>
			<pubDate>Sun, 17 May 2026 19:20:57 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63877#p63877</guid>
		</item>
		<item>
			<title><![CDATA[Re: New Devuan user, strugging to get the sound working]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63875#p63875</link>
			<description><![CDATA[<p>Welcome to dev1galaxy. </p><p>What worked for me on my Excalibur with Cinnamon on sysvinit, basically the same setup you have:</p><div class="codebox"><pre><code>apt install pipewire-audio</code></pre></div><p>Edit the users .xsessionrc and add:</p><div class="codebox"><pre><code># kill any existing pipewire instance to restore sound 
pkill -u &quot;$USER&quot; -fx /usr/bin/pipewire-pulse 1&gt;/dev/null 2&gt;&amp;1 
pkill -u &quot;$USER&quot; -fx /usr/bin/wireplumber 1&gt;/dev/null 2&gt;&amp;1 
pkill -u &quot;$USER&quot; -fx /usr/bin/pipewire 1&gt;/dev/null 2&gt;&amp;1 

exec /usr/bin/pipewire &amp; 

# wait for pipewire to start before attempting to start related daemons 
while [ &quot;$(pgrep -f /usr/bin/pipewire)&quot; = &quot;&quot; ] ; do 
   sleep 1 
done 

exec /usr/bin/wireplumber &amp; 

exec /usr/bin/pipewire-pulse &amp; </code></pre></div><p>The file is a config file, does not need to be executable. Octal rights 644. </p><p>If you have more than one user you have to repeat that for these too.</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Sun, 17 May 2026 18:30:01 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63875#p63875</guid>
		</item>
		<item>
			<title><![CDATA[New Devuan user, strugging to get the sound working]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=63874#p63874</link>
			<description><![CDATA[<p>Hello, I&#039;ve recently installed Devuan, after a year with Linux Mint, looking to get away from systemd/age verification etc.&#160; </p><p>Installing and setting-up Devuan (with sysvinit and the Cinnamon DE) has has gone pretty well so far, except that the sound has only ever worked once - and didn&#039;t work the next time I rebooted :-(&#160; </p><p>First I tried the instructions in the Release Notes to get Pipewire working, which didn&#039;t help unfortunately.&#160; I didn&#039;t have a ~/.xsessionrc file, so pasted the three lines indicated into a blank new file - but noticed that the ~/.profile file when open in Geany had the if/then/fine/continue/fi etc in bold, whereas the .xsessionrc file didn&#039;t - so I&#039;m not sure if there was a problem with the file.&#160; Neither file was set to be executable.&#160; </p><p>I then thought I&#039;d use pulseaudio and pavucontrol, as I do on Mint, so installed that - but couldn&#039;t get it to work either.&#160; </p><p>Then I removed pulseaudio/pavu, and followed the instructions to set up pipewire in this forum post <a href="https://dev1galaxy.org/viewtopic.php?pid=56220#p56220" rel="nofollow">https://dev1galaxy.org/viewtopic.php?pid=56220#p56220</a> but with no success.&#160; </p><p>Now I&#039;m at my wits&#039; end, and would be very grateful if someone could help me get a working sound configuration, please?</p>]]></description>
			<author><![CDATA[dummy@example.com (Big_Hat)]]></author>
			<pubDate>Sun, 17 May 2026 17:31:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=63874#p63874</guid>
		</item>
	</channel>
</rss>
