Skip to content

Instantly share code, notes, and snippets.

@AlexString
Created December 7, 2021 19:30
Show Gist options
  • Save AlexString/4b352ee28bbf55acb2e8ea7c7a7a6032 to your computer and use it in GitHub Desktop.
Save AlexString/4b352ee28bbf55acb2e8ea7c7a7a6032 to your computer and use it in GitHub Desktop.
Install Pipewire on Fedora

Install Pipewire on Fedora

pactl info to show which audio server is running. In occasions this tends to fail showing Connection failure: connection refused. I think this is saying that there is no connection to an audio server so you'll need to enable manually the service using systemctl. please comment about it if you know more of this.

Install pipewire

If you try installing pipewire without removing pulseaudio you'll get a conflict message complaining about it.

  • So, first is removing pulseaudio:

sudo rpm -e pulseaudio --nodeps

  • Install Pipewire

sudo dnf install pipewire-pulseaudio

  • You'll need to reboot

reboot

If you do pactl info it should be now using pipewire. If it says connection failure you'll need to do it manually systemctl --user pipewire-pulse.service pipewire-pulse.socket

About this gist

I made it for myself to just avoid missing this instructions that I found.

Just like all my Gists I leave them public hoping it helps someone.

Im leaving the Pipewire repo here too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment