Dependency problems Linux Debian undetectable broken packages
Clash Royale CLAN TAG#URR8PPP
up vote
-2
down vote
favorite
I am just trying to do an upgrade (sudo apt upgrade
), but it fails with error E: Broken Packages
. Doing dpkg -l | grep broken
and dpkg -l | grep held
returned nothing. My sources.list
looks as follows:
deb http://ftp.at.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable main contrib non-free
deb http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb http://security.debian.org/ stable/updates main
deb-src http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main
deb https://deb.opera.com/opera stable non-free
deb http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid main
deb [arch=amd64] https://repo.skype.com/deb stable main
deb http://repository.spotify.com stable non-free
deb [arch=amd64] http://repo.steampowered.com/steam/ precise steam
deb-src [arch=amd64] http://repo.steampowered.com/steam/ precise steam
I also did sudo apt install -f
, sudo apt update && sudo apt upgrade -f && sudo apt dist-upgrade -f
and it didn't solve the problem. As well, I tried to use aptitude
and synaptic
instead of apt
. I think it's all about conflicting versions of some packages, but i don't know how to solve it yet and hope for help.
Full output of sudo apt upgrade
:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... 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:
libgstreamer-gl1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0:i386 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0:i386 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
E: Broken packages
debian apt package-management aptitude synaptic
add a comment |Â
up vote
-2
down vote
favorite
I am just trying to do an upgrade (sudo apt upgrade
), but it fails with error E: Broken Packages
. Doing dpkg -l | grep broken
and dpkg -l | grep held
returned nothing. My sources.list
looks as follows:
deb http://ftp.at.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable main contrib non-free
deb http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb http://security.debian.org/ stable/updates main
deb-src http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main
deb https://deb.opera.com/opera stable non-free
deb http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid main
deb [arch=amd64] https://repo.skype.com/deb stable main
deb http://repository.spotify.com stable non-free
deb [arch=amd64] http://repo.steampowered.com/steam/ precise steam
deb-src [arch=amd64] http://repo.steampowered.com/steam/ precise steam
I also did sudo apt install -f
, sudo apt update && sudo apt upgrade -f && sudo apt dist-upgrade -f
and it didn't solve the problem. As well, I tried to use aptitude
and synaptic
instead of apt
. I think it's all about conflicting versions of some packages, but i don't know how to solve it yet and hope for help.
Full output of sudo apt upgrade
:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... 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:
libgstreamer-gl1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0:i386 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0:i386 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
E: Broken packages
debian apt package-management aptitude synaptic
Try to let the system clear things up:sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Could you edit your question to include the full output ofsudo apt upgrade
?
â Stephen Kitt
Jun 25 at 19:22
lucid
is notdebian stable
. You're using incompatible repos. Don't mix them!
â Ipor Sircer
Jun 25 at 19:31
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34
add a comment |Â
up vote
-2
down vote
favorite
up vote
-2
down vote
favorite
I am just trying to do an upgrade (sudo apt upgrade
), but it fails with error E: Broken Packages
. Doing dpkg -l | grep broken
and dpkg -l | grep held
returned nothing. My sources.list
looks as follows:
deb http://ftp.at.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable main contrib non-free
deb http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb http://security.debian.org/ stable/updates main
deb-src http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main
deb https://deb.opera.com/opera stable non-free
deb http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid main
deb [arch=amd64] https://repo.skype.com/deb stable main
deb http://repository.spotify.com stable non-free
deb [arch=amd64] http://repo.steampowered.com/steam/ precise steam
deb-src [arch=amd64] http://repo.steampowered.com/steam/ precise steam
I also did sudo apt install -f
, sudo apt update && sudo apt upgrade -f && sudo apt dist-upgrade -f
and it didn't solve the problem. As well, I tried to use aptitude
and synaptic
instead of apt
. I think it's all about conflicting versions of some packages, but i don't know how to solve it yet and hope for help.
Full output of sudo apt upgrade
:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... 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:
libgstreamer-gl1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0:i386 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0:i386 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
E: Broken packages
debian apt package-management aptitude synaptic
I am just trying to do an upgrade (sudo apt upgrade
), but it fails with error E: Broken Packages
. Doing dpkg -l | grep broken
and dpkg -l | grep held
returned nothing. My sources.list
looks as follows:
deb http://ftp.at.debian.org/debian/ stable main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable main contrib non-free
deb http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb-src http://ftp.at.debian.org/debian/ stable-updates main contrib non-free
deb http://security.debian.org/ stable/updates main
deb-src http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian stretch-backports main
deb-src http://ftp.debian.org/debian stretch-backports main
deb https://deb.opera.com/opera stable non-free
deb http://downloads.metasploit.com/data/releases/metasploit-framework/apt lucid main
deb [arch=amd64] https://repo.skype.com/deb stable main
deb http://repository.spotify.com stable non-free
deb [arch=amd64] http://repo.steampowered.com/steam/ precise steam
deb-src [arch=amd64] http://repo.steampowered.com/steam/ precise steam
I also did sudo apt install -f
, sudo apt update && sudo apt upgrade -f && sudo apt dist-upgrade -f
and it didn't solve the problem. As well, I tried to use aptitude
and synaptic
instead of apt
. I think it's all about conflicting versions of some packages, but i don't know how to solve it yet and hope for help.
Full output of sudo apt upgrade
:
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... 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:
libgstreamer-gl1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer-plugins-base1.0-0:i386 : Conflicts: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
libgstreamer1.0-0:i386 : Breaks: libgstreamer-plugins-bad1.0-0 (< 1.13.1) but 1.10.4-1 is to be installed
E: Broken packages
debian apt package-management aptitude synaptic
edited Jun 25 at 19:36
Stephen Kitt
139k22299361
139k22299361
asked Jun 25 at 19:20
xcynthos
43
43
Try to let the system clear things up:sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Could you edit your question to include the full output ofsudo apt upgrade
?
â Stephen Kitt
Jun 25 at 19:22
lucid
is notdebian stable
. You're using incompatible repos. Don't mix them!
â Ipor Sircer
Jun 25 at 19:31
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34
add a comment |Â
Try to let the system clear things up:sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Could you edit your question to include the full output ofsudo apt upgrade
?
â Stephen Kitt
Jun 25 at 19:22
lucid
is notdebian stable
. You're using incompatible repos. Don't mix them!
â Ipor Sircer
Jun 25 at 19:31
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34
Try to let the system clear things up:
sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Try to let the system clear things up:
sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Could you edit your question to include the full output of
sudo apt upgrade
?â Stephen Kitt
Jun 25 at 19:22
Could you edit your question to include the full output of
sudo apt upgrade
?â Stephen Kitt
Jun 25 at 19:22
lucid
is not debian stable
. You're using incompatible repos. Don't mix them!â Ipor Sircer
Jun 25 at 19:31
lucid
is not debian stable
. You're using incompatible repos. Don't mix them!â Ipor Sircer
Jun 25 at 19:31
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
2
down vote
YouâÂÂve somehow got gstreamer packages from Debian testing or unstable. To fix your system, you should remove them and restore the Debian 9 versions:
sudo apt purge libgstreamer-gl1.0-0
sudo apt install libgstreamer-plugins-base1.0-0/stable libgstreamer-plugins-base1.0-0:i386/stable libgstreamer1.0-0/stable libgstreamer1.0-0:i386/stable
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
YouâÂÂve somehow got gstreamer packages from Debian testing or unstable. To fix your system, you should remove them and restore the Debian 9 versions:
sudo apt purge libgstreamer-gl1.0-0
sudo apt install libgstreamer-plugins-base1.0-0/stable libgstreamer-plugins-base1.0-0:i386/stable libgstreamer1.0-0/stable libgstreamer1.0-0:i386/stable
add a comment |Â
up vote
2
down vote
YouâÂÂve somehow got gstreamer packages from Debian testing or unstable. To fix your system, you should remove them and restore the Debian 9 versions:
sudo apt purge libgstreamer-gl1.0-0
sudo apt install libgstreamer-plugins-base1.0-0/stable libgstreamer-plugins-base1.0-0:i386/stable libgstreamer1.0-0/stable libgstreamer1.0-0:i386/stable
add a comment |Â
up vote
2
down vote
up vote
2
down vote
YouâÂÂve somehow got gstreamer packages from Debian testing or unstable. To fix your system, you should remove them and restore the Debian 9 versions:
sudo apt purge libgstreamer-gl1.0-0
sudo apt install libgstreamer-plugins-base1.0-0/stable libgstreamer-plugins-base1.0-0:i386/stable libgstreamer1.0-0/stable libgstreamer1.0-0:i386/stable
YouâÂÂve somehow got gstreamer packages from Debian testing or unstable. To fix your system, you should remove them and restore the Debian 9 versions:
sudo apt purge libgstreamer-gl1.0-0
sudo apt install libgstreamer-plugins-base1.0-0/stable libgstreamer-plugins-base1.0-0:i386/stable libgstreamer1.0-0/stable libgstreamer1.0-0:i386/stable
answered Jun 25 at 19:37
Stephen Kitt
139k22299361
139k22299361
add a comment |Â
add a comment |Â
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
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f451828%2fdependency-problems-linux-debian-undetectable-broken-packages%23new-answer', 'question_page');
);
Post as a guest
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
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
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
Try to let the system clear things up:
sudo apt-get autoremove; sudo apt-get install -f
â Stefan M
Jun 25 at 19:22
Could you edit your question to include the full output of
sudo apt upgrade
?â Stephen Kitt
Jun 25 at 19:22
lucid
is notdebian stable
. You're using incompatible repos. Don't mix them!â Ipor Sircer
Jun 25 at 19:31
Ok, I fixed that... But the problem is still there.
â xcynthos
Jun 25 at 19:34