Replies: 1 comment 1 reply
-
Thanks @ptapper One question - are you using the latest version of the script from Git, or the release version? The Git version has a similar fix in it (see #103) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When running the install_pulseaudio_sources_apt_wrapper.sh in Ubuntu 24.04 LTS if you run into an error
"** schroot failed. ..."
The log will tell you:
"E: You must put some 'deb-src' URIs in your sources.list"
This is because Ubuntu source have moved to /etc/apt/source.list.d/ubuntu.sources
In order to run install_pulseaudio_sources_apt_wrapper.sh successfully you have to modify the script around line 280 (in commit d0a4c12) as follow:
#Copy some files to the build root
for file in $(find /etc/apt/ /etc/apt/sources.list.d -maxdepth 1 -type f -name '*.sources'); do
Before running the script again, you'll have to remove the old built root (if you tried to run the script already).
sudo rm -r /var/lib/pa-build/root
I hope this helps.
Beta Was this translation helpful? Give feedback.
All reactions