<?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=6319&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / removing pulseaudio correctly / Chimaera]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=6319</link>
		<description><![CDATA[The most recent posts in removing pulseaudio correctly / Chimaera.]]></description>
		<lastBuildDate>Mon, 08 Jan 2024 00:28:23 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: removing pulseaudio correctly / Chimaera]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=47033#p47033</link>
			<description><![CDATA[<p>Hi kapqa, <br />I too went the &quot;nuclear&quot; route to be rid of pulseaudio and ran into problems.</p><p>Until I read this post specifically on how to install pipewire:<br /><a href="https://dev1galaxy.org/viewtopic.php?id=5867" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=5867</a></p><p>In sort:</p><ul><li><p>Install metapackage pipewire-audio: it will remove pulseaudio automatically</p></li><li><p>edit .xsession with code below</p></li><li><p>reboot computer</p></li></ul><p>enjoy the audio from pipewire <img src="https://dev1galaxy.org/img/smilies/wink.png" width="15" height="15" alt="wink" /></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>]]></description>
			<author><![CDATA[dummy@example.com (rdav)]]></author>
			<pubDate>Mon, 08 Jan 2024 00:28:23 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=47033#p47033</guid>
		</item>
		<item>
			<title><![CDATA[Re: removing pulseaudio correctly / Chimaera]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46995#p46995</link>
			<description><![CDATA[<p>Hello Ralph,</p><p>thank you for the suggestion,</p><p>what i ended up doing is uninstalling &quot;everything&quot; that was proposed, but found out that tasksel would everytime re-install pulseaudio and remove everytime every desktop flavour chosen with all the corresponding packages if afterwards again chosen to remove pulseaudio.</p><p>so i then installed xfce4 manually afterwards without tasksel command, but this time added</p><div class="quotebox"><blockquote><div><p>pulseaudio-</p></div></blockquote></div><p>like in</p><div class="codebox"><pre><code>sudo apt-get install xfce4 pulseaudio- xfce4-goodies</code></pre></div><p>which then achieved the desired to stop installing the pulseaudio and doing so without breaking the desktop.</p><p>Audio still could be better, but the year is long, so lets hope well.</p>]]></description>
			<author><![CDATA[dummy@example.com (kapqa)]]></author>
			<pubDate>Sun, 07 Jan 2024 11:24:44 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46995#p46995</guid>
		</item>
		<item>
			<title><![CDATA[Re: removing pulseaudio correctly / Chimaera]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46990#p46990</link>
			<description><![CDATA[<p>Perhaps if you avoid removing <span class="bbc">libpulse-mainloop-glib0</span> it might not remove <span class="bbc">xfce4</span> and hopefully retain that which you will want to retain. </p><p>btw, such output you should rather wrap as &quot;code&quot; than &quot;quote&quot; which would have made a scrolling element instead of a full two pages with such &quot;nothingness&quot;.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Sun, 07 Jan 2024 10:03:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46990#p46990</guid>
		</item>
		<item>
			<title><![CDATA[removing pulseaudio correctly / Chimaera]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46989#p46989</link>
			<description><![CDATA[<p>Hello ,</p><p>i have upgraded my Alsa-Only Laptop from Jessie to Chimaera and have found that it again installed Pulseaudio in the process.</p><p>Since on Linux Laptop Audio is generally weak-spot, thought that Alsa-only at least alleviates the issue;</p><p>Now, i have an old command that i copy-pasted from the internet in use since debian wheezy, which helped well, <br />but i needs to adapt for 2024.</p><p>now, if i like to use the command, it would deinstall also XFCE4 and Task-Desktop-XFCE4, which i like to avoid.</p><p>Please help to adapt the command to achieve this.</p><p>original command</p><div class="codebox"><pre><code>sudo killall pulseaudio
sudo apt-get purge pulseaudio pulseaudio-utils gstreamer0.10-pulseaudio libpulse-browse0 paman pavumeter pavucontrol
sudo mv /etc/asound.conf /etc/asound.conf.bak
rm ~/.pulse-cookie
rm -r ~/.pulse
sudo apt-get install alsa-base alsa-tools alsa-tools-gui alsa-utils alsa-oss alsamixergui libalsaplayer0</code></pre></div><p>newer version?</p><div class="codebox"><pre><code> sudo apt-get purge pulseaudio pulseaudio-utils gstreamer1.0-pulseaudio libpulse-mainloop-glib0 paman pavumeter pavucontrol</code></pre></div><p>however</p><div class="quotebox"><blockquote><div><p>sudo apt-get purge pulseaudio pulseaudio-utils gstreamer1.0-pulseaudio libpulse-mainloop-glib0 paman pavumeter pavucontrol<br />Reading package lists... Done<br />Building dependency tree... Done<br />Reading state information... Done<br />Package &#039;paman&#039; is not installed, so not removed<br />Package &#039;pavumeter&#039; is not installed, so not removed<br />The following packages were automatically installed and are no longer required:<br />&#160; coinor-libcbc3 coinor-libcgl1 coinor-libclp1 coinor-libcoinmp1v5<br />&#160; coinor-libcoinutils3v5 coinor-libosi1v5 cups-pk-helper dns-root-data<br />&#160; dnsmasq-base espeak-ng-data exfalso fonts-font-awesome fonts-lato gimp-data<br />&#160; gir1.2-atspi-2.0 gir1.2-gst-plugins-base-1.0 gir1.2-gstreamer-1.0<br />&#160; gir1.2-gtksource-3.0 gir1.2-javascriptcoregtk-4.0 gir1.2-keybinder-3.0<br />&#160; gir1.2-notify-0.7 gir1.2-packagekitglib-1.0 gir1.2-polkit-1.0<br />&#160; gir1.2-secret-1 gir1.2-soup-2.4 gir1.2-webkit2-4.0 gir1.2-wnck-3.0<br />&#160; gnome-keyring gnome-keyring-pkcs11 gstreamer1.0-gtk3 hddtemp hyphen-en-us<br />&#160; iptables libamd2 libao-common libao4 libappstream4 libatk-adaptor<br />&#160; libatkmm-1.6-1v5 libaudio2 libayatana-appindicator3-1 libayatana-ido3-0.4-0<br />&#160; libayatana-indicator3-7 libbabl-0.1-0 libbluetooth3 libbrlapi0.8 libburn4<br />&#160; libcairomm-1.0-1v5 libcamd2 libcanberra-gtk3-0 libcanberra-gtk3-module<br />&#160; libccolamd2 libcdr-0.1-1 libcholmod3 libck-connector0 libcolamd2<br />&#160; libdbusmenu-glib4 libdbusmenu-gtk3-4 libdotconf0 libespeak-ng1 libexiv2-27<br />&#160; libfreehand-0.1-1 libgegl-0.4-0 libgegl-common libgexiv2-2 libgimp2.0<br />&#160; libglib2.0-bin libglibmm-2.4-1v5 libgtkmm-3.0-1v5 libgtksourceview-3.0-1<br />&#160; libgtksourceview-3.0-common libgtop-2.0-11 libgtop2-common libip4tc2<br />&#160; libip6tc2 libisofs6 libjte2 libkeybinder-3.0-0 libldb2 libmetis5<br />&#160; libmspub-0.1-1 libndp0 libnetfilter-conntrack3 libnfnetlink0 libnm0<br />&#160; libnma-common libnma0 libpackagekit-glib2-18 libpagemaker-0.0-0<br />&#160; libpam-gnome-keyring libpangomm-1.4-1v5 libpcaudio0 libpulsedsp libqrencode4<br />&#160; libqxp-0.0-0 libraw20 libreoffice-calc libreoffice-draw libreoffice-gtk3<br />&#160; libreoffice-help-en-us libreoffice-impress libsigc++-2.0-0v5 libsmbclient<br />&#160; libsonic0 libspeechd2 libspeexdsp1 libstemmer0d libsuitesparseconfig5<br />&#160; libtagc0 libtalloc2 libteamdctl0 libtevent0 libumfpack5 libvisio-0.1-1<br />&#160; libwbclient0 libxfce4ui-utils libxnvctrl0 libzmf-0.0-0 lp-solve<br />&#160; mobile-broadband-provider-info mousepad mythes-en-us network-manager<br />&#160; network-manager-gnome orca p11-kit p11-kit-modules p7zip p7zip-full<br />&#160; packagekit packagekit-tools parole perl-tk python3-brlapi python3-cairo<br />&#160; python3-cups python3-cupshelpers python3-gi-cairo python3-ldb python3-louis<br />&#160; python3-musicbrainzngs python3-mutagen python3-pyatspi python3-pyinotify<br />&#160; python3-smbc python3-talloc ristretto rtkit samba-libs slim sound-icons<br />&#160; speech-dispatcher speech-dispatcher-audio-plugins<br />&#160; speech-dispatcher-espeak-ng sphinx-rtd-theme-common system-config-printer<br />&#160; system-config-printer-common system-config-printer-udev tango-icon-theme<br />&#160; thunar thunar-archive-plugin thunar-media-tags-plugin thunar-volman<br />&#160; xarchiver xbrlapi xfburn xfce4-appfinder xfce4-battery-plugin xfce4-clipman<br />&#160; xfce4-clipman-plugin xfce4-cpufreq-plugin xfce4-cpugraph-plugin<br />&#160; xfce4-datetime-plugin xfce4-dict xfce4-diskperf-plugin xfce4-fsguard-plugin<br />&#160; xfce4-genmon-plugin xfce4-goodies xfce4-mailwatch-plugin<br />&#160; xfce4-netload-plugin xfce4-panel xfce4-places-plugin xfce4-power-manager<br />&#160; xfce4-power-manager-data xfce4-power-manager-plugins xfce4-sensors-plugin<br />&#160; xfce4-smartbookmark-plugin xfce4-systemload-plugin xfce4-taskmanager<br />&#160; xfce4-timer-plugin xfce4-verve-plugin xfce4-wavelan-plugin<br />&#160; xfce4-weather-plugin xfce4-whiskermenu-plugin xkbset xsane xsane-common<br />Use &#039;sudo apt autoremove&#039; to remove them.<br />The following packages will be REMOVED:<br />&#160; gstreamer1.0-pulseaudio* libpulse-mainloop-glib0* pavucontrol* pulseaudio*<br />&#160; pulseaudio-utils* quodlibet* task-xfce-desktop* xfce4*<br />&#160; xfce4-pulseaudio-plugin*<br />0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded.<br />After this operation, 10.5 MB disk space will be freed.<br />Do you want to continue? [Y/n]</p></div></blockquote></div><p>Thank you very much.</p>]]></description>
			<author><![CDATA[dummy@example.com (kapqa)]]></author>
			<pubDate>Sun, 07 Jan 2024 09:52:16 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46989#p46989</guid>
		</item>
	</channel>
</rss>
