Dependenncy problem - Cannot reinstall PulseAudio
I've recently deleted pulseaudio by mistake, which means that now I'm unable to listen to all audio, which means 90% of all I do on my pc is now off. I tried to reinstall pulseaudio from the command line, but this was the output:
~$ sudo apt install pulseaudio
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
pulseaudio : Depends: libpulse0 (= 1:11.1-1ubuntu7.1) but 1:12.2-5~bionic1 is to be installed
E: Unable to correct problems, you have held broken packages.
I've tried everything. sudo apt install -f doesn't work, dist-upgrade doesn't work, update, upgrade and autoremove all work properly and don't give back any error, and there are 0 packages to be installed, upgraded or removed. I've tried using apt, apt-get and aptitude. I've tried to fix the broken dependencies with synaptic. Nothing.
If I try to remove or regress libpulse0 it gives me an endless list of packages that are to be removed or will be removed.
I know that I can fix everything with a fresh install, but I'd rather not if at all possible, since last time was a small nightmare, what with UEFI and whatnot.
I'm really at my wits' end. Does anybody have any suggestion?
apt package-management sound pulseaudio
add a comment |
I've recently deleted pulseaudio by mistake, which means that now I'm unable to listen to all audio, which means 90% of all I do on my pc is now off. I tried to reinstall pulseaudio from the command line, but this was the output:
~$ sudo apt install pulseaudio
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
pulseaudio : Depends: libpulse0 (= 1:11.1-1ubuntu7.1) but 1:12.2-5~bionic1 is to be installed
E: Unable to correct problems, you have held broken packages.
I've tried everything. sudo apt install -f doesn't work, dist-upgrade doesn't work, update, upgrade and autoremove all work properly and don't give back any error, and there are 0 packages to be installed, upgraded or removed. I've tried using apt, apt-get and aptitude. I've tried to fix the broken dependencies with synaptic. Nothing.
If I try to remove or regress libpulse0 it gives me an endless list of packages that are to be removed or will be removed.
I know that I can fix everything with a fresh install, but I'd rather not if at all possible, since last time was a small nightmare, what with UEFI and whatnot.
I'm really at my wits' end. Does anybody have any suggestion?
apt package-management sound pulseaudio
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and runsudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio
– Minty
Dec 18 '18 at 18:17
2
The clues to the answer are right there in your output:libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from usingapt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.
– user535733
Dec 18 '18 at 18:22
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51
add a comment |
I've recently deleted pulseaudio by mistake, which means that now I'm unable to listen to all audio, which means 90% of all I do on my pc is now off. I tried to reinstall pulseaudio from the command line, but this was the output:
~$ sudo apt install pulseaudio
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
pulseaudio : Depends: libpulse0 (= 1:11.1-1ubuntu7.1) but 1:12.2-5~bionic1 is to be installed
E: Unable to correct problems, you have held broken packages.
I've tried everything. sudo apt install -f doesn't work, dist-upgrade doesn't work, update, upgrade and autoremove all work properly and don't give back any error, and there are 0 packages to be installed, upgraded or removed. I've tried using apt, apt-get and aptitude. I've tried to fix the broken dependencies with synaptic. Nothing.
If I try to remove or regress libpulse0 it gives me an endless list of packages that are to be removed or will be removed.
I know that I can fix everything with a fresh install, but I'd rather not if at all possible, since last time was a small nightmare, what with UEFI and whatnot.
I'm really at my wits' end. Does anybody have any suggestion?
apt package-management sound pulseaudio
I've recently deleted pulseaudio by mistake, which means that now I'm unable to listen to all audio, which means 90% of all I do on my pc is now off. I tried to reinstall pulseaudio from the command line, but this was the output:
~$ sudo apt install pulseaudio
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies.
pulseaudio : Depends: libpulse0 (= 1:11.1-1ubuntu7.1) but 1:12.2-5~bionic1 is to be installed
E: Unable to correct problems, you have held broken packages.
I've tried everything. sudo apt install -f doesn't work, dist-upgrade doesn't work, update, upgrade and autoremove all work properly and don't give back any error, and there are 0 packages to be installed, upgraded or removed. I've tried using apt, apt-get and aptitude. I've tried to fix the broken dependencies with synaptic. Nothing.
If I try to remove or regress libpulse0 it gives me an endless list of packages that are to be removed or will be removed.
I know that I can fix everything with a fresh install, but I'd rather not if at all possible, since last time was a small nightmare, what with UEFI and whatnot.
I'm really at my wits' end. Does anybody have any suggestion?
apt package-management sound pulseaudio
apt package-management sound pulseaudio
asked Dec 18 '18 at 18:10
Batrax
11
11
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and runsudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio
– Minty
Dec 18 '18 at 18:17
2
The clues to the answer are right there in your output:libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from usingapt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.
– user535733
Dec 18 '18 at 18:22
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51
add a comment |
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and runsudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio
– Minty
Dec 18 '18 at 18:17
2
The clues to the answer are right there in your output:libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from usingapt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.
– user535733
Dec 18 '18 at 18:22
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and run
sudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio– Minty
Dec 18 '18 at 18:17
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and run
sudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio– Minty
Dec 18 '18 at 18:17
2
2
The clues to the answer are right there in your output:
libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from using apt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.– user535733
Dec 18 '18 at 18:22
The clues to the answer are right there in your output:
libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from using apt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.– user535733
Dec 18 '18 at 18:22
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51
add a comment |
1 Answer
1
active
oldest
votes
Ok, I've been defeated. Thinking it would be the pinnacle of cleverness, I installed the required libpulse0 library from a downloaded package.
...it didn't go well. Immediately afterwards apt told me that something like a hundred packages were not needed anymore, and the audio was still not working. I rebooted my laptop and, surprise, the desktop environment had disappeared, and there was only the command line.
I've just finished reinstalling everything (thank the linux gods for home partitions).
Sorry to all those who'll land here in search of a solution.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102896%2fdependenncy-problem-cannot-reinstall-pulseaudio%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Ok, I've been defeated. Thinking it would be the pinnacle of cleverness, I installed the required libpulse0 library from a downloaded package.
...it didn't go well. Immediately afterwards apt told me that something like a hundred packages were not needed anymore, and the audio was still not working. I rebooted my laptop and, surprise, the desktop environment had disappeared, and there was only the command line.
I've just finished reinstalling everything (thank the linux gods for home partitions).
Sorry to all those who'll land here in search of a solution.
add a comment |
Ok, I've been defeated. Thinking it would be the pinnacle of cleverness, I installed the required libpulse0 library from a downloaded package.
...it didn't go well. Immediately afterwards apt told me that something like a hundred packages were not needed anymore, and the audio was still not working. I rebooted my laptop and, surprise, the desktop environment had disappeared, and there was only the command line.
I've just finished reinstalling everything (thank the linux gods for home partitions).
Sorry to all those who'll land here in search of a solution.
add a comment |
Ok, I've been defeated. Thinking it would be the pinnacle of cleverness, I installed the required libpulse0 library from a downloaded package.
...it didn't go well. Immediately afterwards apt told me that something like a hundred packages were not needed anymore, and the audio was still not working. I rebooted my laptop and, surprise, the desktop environment had disappeared, and there was only the command line.
I've just finished reinstalling everything (thank the linux gods for home partitions).
Sorry to all those who'll land here in search of a solution.
Ok, I've been defeated. Thinking it would be the pinnacle of cleverness, I installed the required libpulse0 library from a downloaded package.
...it didn't go well. Immediately afterwards apt told me that something like a hundred packages were not needed anymore, and the audio was still not working. I rebooted my laptop and, surprise, the desktop environment had disappeared, and there was only the command line.
I've just finished reinstalling everything (thank the linux gods for home partitions).
Sorry to all those who'll land here in search of a solution.
answered Dec 18 '18 at 22:29
Batrax
11
11
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102896%2fdependenncy-problem-cannot-reinstall-pulseaudio%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Have you tried downloading the package directly from their website? You should be able to download it, extract it, and run
sudo dpkg -i (packagename)
freedesktop.org/wiki/Software/PulseAudio– Minty
Dec 18 '18 at 18:17
2
The clues to the answer are right there in your output:
libpulse0
version 1:12.2-5~bionic1 is not an Ubuntu package - figure out which PPA or non-Ubuntu source you got it from usingapt-cache policy
, and uninstall all packages from that repository. Don't forget to disable that repository. Once you have reinstalled pulseaudio successfully, you can re-add the non-Ubuntu source.– user535733
Dec 18 '18 at 18:22
Thank you for replying. I did what you suggested, user535733, and I did in fact have a suse repository (for lutris), but even after deleting the packages and the repository, I still can't install pulseaudio. Minty, I downloaded the package from the site, but it's a tar.gz and it can't (or I don't know how) install it with dpkg. Should I install it its own way?
– Batrax
Dec 18 '18 at 19:51