pkgProblemResolver::Resolve generated breaks
Clash Royale CLAN TAG#URR8PPP
up vote
2
down vote
favorite
I am trying to run an apt-get dist-upgrade
, but it comes with the following error
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
perl : Depends: perl-base (= 5.14.2-21+deb7u2) but it is not going to be installed
Depends: perl-modules (>= 5.14.2-21+deb7u2) but it is not going to be installed
sysvinit : PreDepends: initscripts (>= 2.88dsf-13.3) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
I successfully ran apt-get upgrade
, so I am out of ideas
I was thinking of apt-get remove perl
, but then it comes with this error
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:
mount : PreDepends: libblkid1 (>= 2.20.1) but it is not going to be installed
PreDepends: libmount1 (>= 2.20.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
My sources.list
looks like this
deb http://ftp.dk.debian.org/debian/ wheezy main
deb-src http://ftp.dk.debian.org/debian/ wheezy main
deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main
deb http://security.debian.org/debian-security wheezy/updates main
deb-src http://security.debian.org/debian-security wheezy/updates main
deb http://backports.debian.org/debian-backports squeeze-backports main
deb http://mirrors.sunsite.dk/debian/ wheezy main
deb-src http://mirrors.sunsite.dk/debian/ wheezy main
deb http://ftp.ie.debian.org/debian/ wheezy main
deb-src http://ftp.ie.debian.org/debian/ wheezy main
deb http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian/ wheezy main non-free
deb http://security.debian.org/ wheezy/updates main non-free
What can I do?
The answers to the questions in comments are
The output of cat /etc/debian_version
is 7.9
, but no I am not using apt pinning
as your comment is the first place, I read about it, but I am going for setting it up, when apt
is running
The output of apt-cache policy
is
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://security.debian.org/ wheezy/updates/non-free Translation-en
500 http://security.debian.org/ wheezy/updates/main Translation-en
500 http://security.debian.org/ wheezy/updates/non-free i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=non-free
origin security.debian.org
500 http://security.debian.org/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.debian.org/debian/ wheezy/non-free Translation-en
500 http://ftp.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.debian.org/debian/ wheezy/non-free i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=non-free
origin ftp.debian.org
500 http://ftp.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.debian.org
500 http://security.debian.org/ stable/updates/main Translation-en
500 http://security.debian.org/ stable/updates/main i386 Packages
release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.ie.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.ie.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.ie.debian.org
500 http://mirrors.sunsite.dk/debian/ wheezy/main Translation-en
500 http://mirrors.sunsite.dk/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin mirrors.sunsite.dk
500 http://backports.debian.org/debian-backports/ squeeze-backports/main Translation-en
100 http://backports.debian.org/debian-backports/ squeeze-backports/main i386 Packages
release o=Debian Backports,a=squeeze-backports,n=squeeze-backports,l=Debian Backports,c=main
origin backports.debian.org
500 http://security.debian.org/debian-security/ wheezy/updates/main Translation-en
500 http://security.debian.org/debian-security/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://security.debian.org/ testing/updates/main Translation-en
500 http://security.debian.org/ testing/updates/main i386 Packages
release o=Debian,a=testing,n=stretch,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.dk.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.dk.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.dk.debian.org
Pinned packages:
debian apt
migrated from serverfault.com Dec 18 '15 at 6:27
This question came from our site for system and network administrators.
add a comment |Â
up vote
2
down vote
favorite
I am trying to run an apt-get dist-upgrade
, but it comes with the following error
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
perl : Depends: perl-base (= 5.14.2-21+deb7u2) but it is not going to be installed
Depends: perl-modules (>= 5.14.2-21+deb7u2) but it is not going to be installed
sysvinit : PreDepends: initscripts (>= 2.88dsf-13.3) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
I successfully ran apt-get upgrade
, so I am out of ideas
I was thinking of apt-get remove perl
, but then it comes with this error
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:
mount : PreDepends: libblkid1 (>= 2.20.1) but it is not going to be installed
PreDepends: libmount1 (>= 2.20.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
My sources.list
looks like this
deb http://ftp.dk.debian.org/debian/ wheezy main
deb-src http://ftp.dk.debian.org/debian/ wheezy main
deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main
deb http://security.debian.org/debian-security wheezy/updates main
deb-src http://security.debian.org/debian-security wheezy/updates main
deb http://backports.debian.org/debian-backports squeeze-backports main
deb http://mirrors.sunsite.dk/debian/ wheezy main
deb-src http://mirrors.sunsite.dk/debian/ wheezy main
deb http://ftp.ie.debian.org/debian/ wheezy main
deb-src http://ftp.ie.debian.org/debian/ wheezy main
deb http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian/ wheezy main non-free
deb http://security.debian.org/ wheezy/updates main non-free
What can I do?
The answers to the questions in comments are
The output of cat /etc/debian_version
is 7.9
, but no I am not using apt pinning
as your comment is the first place, I read about it, but I am going for setting it up, when apt
is running
The output of apt-cache policy
is
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://security.debian.org/ wheezy/updates/non-free Translation-en
500 http://security.debian.org/ wheezy/updates/main Translation-en
500 http://security.debian.org/ wheezy/updates/non-free i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=non-free
origin security.debian.org
500 http://security.debian.org/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.debian.org/debian/ wheezy/non-free Translation-en
500 http://ftp.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.debian.org/debian/ wheezy/non-free i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=non-free
origin ftp.debian.org
500 http://ftp.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.debian.org
500 http://security.debian.org/ stable/updates/main Translation-en
500 http://security.debian.org/ stable/updates/main i386 Packages
release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.ie.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.ie.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.ie.debian.org
500 http://mirrors.sunsite.dk/debian/ wheezy/main Translation-en
500 http://mirrors.sunsite.dk/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin mirrors.sunsite.dk
500 http://backports.debian.org/debian-backports/ squeeze-backports/main Translation-en
100 http://backports.debian.org/debian-backports/ squeeze-backports/main i386 Packages
release o=Debian Backports,a=squeeze-backports,n=squeeze-backports,l=Debian Backports,c=main
origin backports.debian.org
500 http://security.debian.org/debian-security/ wheezy/updates/main Translation-en
500 http://security.debian.org/debian-security/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://security.debian.org/ testing/updates/main Translation-en
500 http://security.debian.org/ testing/updates/main i386 Packages
release o=Debian,a=testing,n=stretch,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.dk.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.dk.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.dk.debian.org
Pinned packages:
debian apt
migrated from serverfault.com Dec 18 '15 at 6:27
This question came from our site for system and network administrators.
Are you usingapt pinning
? Could you show the content of/etc/debian_version
?
â gf_
Dec 17 '15 at 21:47
Please paste the output ofapt-cache policy
. In the question, not in a comment.
â Faheem Mitha
Dec 18 '15 at 10:13
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52
add a comment |Â
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am trying to run an apt-get dist-upgrade
, but it comes with the following error
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
perl : Depends: perl-base (= 5.14.2-21+deb7u2) but it is not going to be installed
Depends: perl-modules (>= 5.14.2-21+deb7u2) but it is not going to be installed
sysvinit : PreDepends: initscripts (>= 2.88dsf-13.3) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
I successfully ran apt-get upgrade
, so I am out of ideas
I was thinking of apt-get remove perl
, but then it comes with this error
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:
mount : PreDepends: libblkid1 (>= 2.20.1) but it is not going to be installed
PreDepends: libmount1 (>= 2.20.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
My sources.list
looks like this
deb http://ftp.dk.debian.org/debian/ wheezy main
deb-src http://ftp.dk.debian.org/debian/ wheezy main
deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main
deb http://security.debian.org/debian-security wheezy/updates main
deb-src http://security.debian.org/debian-security wheezy/updates main
deb http://backports.debian.org/debian-backports squeeze-backports main
deb http://mirrors.sunsite.dk/debian/ wheezy main
deb-src http://mirrors.sunsite.dk/debian/ wheezy main
deb http://ftp.ie.debian.org/debian/ wheezy main
deb-src http://ftp.ie.debian.org/debian/ wheezy main
deb http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian/ wheezy main non-free
deb http://security.debian.org/ wheezy/updates main non-free
What can I do?
The answers to the questions in comments are
The output of cat /etc/debian_version
is 7.9
, but no I am not using apt pinning
as your comment is the first place, I read about it, but I am going for setting it up, when apt
is running
The output of apt-cache policy
is
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://security.debian.org/ wheezy/updates/non-free Translation-en
500 http://security.debian.org/ wheezy/updates/main Translation-en
500 http://security.debian.org/ wheezy/updates/non-free i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=non-free
origin security.debian.org
500 http://security.debian.org/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.debian.org/debian/ wheezy/non-free Translation-en
500 http://ftp.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.debian.org/debian/ wheezy/non-free i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=non-free
origin ftp.debian.org
500 http://ftp.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.debian.org
500 http://security.debian.org/ stable/updates/main Translation-en
500 http://security.debian.org/ stable/updates/main i386 Packages
release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.ie.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.ie.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.ie.debian.org
500 http://mirrors.sunsite.dk/debian/ wheezy/main Translation-en
500 http://mirrors.sunsite.dk/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin mirrors.sunsite.dk
500 http://backports.debian.org/debian-backports/ squeeze-backports/main Translation-en
100 http://backports.debian.org/debian-backports/ squeeze-backports/main i386 Packages
release o=Debian Backports,a=squeeze-backports,n=squeeze-backports,l=Debian Backports,c=main
origin backports.debian.org
500 http://security.debian.org/debian-security/ wheezy/updates/main Translation-en
500 http://security.debian.org/debian-security/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://security.debian.org/ testing/updates/main Translation-en
500 http://security.debian.org/ testing/updates/main i386 Packages
release o=Debian,a=testing,n=stretch,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.dk.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.dk.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.dk.debian.org
Pinned packages:
debian apt
I am trying to run an apt-get dist-upgrade
, but it comes with the following error
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Failed
The following packages have unmet dependencies:
perl : Depends: perl-base (= 5.14.2-21+deb7u2) but it is not going to be installed
Depends: perl-modules (>= 5.14.2-21+deb7u2) but it is not going to be installed
sysvinit : PreDepends: initscripts (>= 2.88dsf-13.3) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
I successfully ran apt-get upgrade
, so I am out of ideas
I was thinking of apt-get remove perl
, but then it comes with this error
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:
mount : PreDepends: libblkid1 (>= 2.20.1) but it is not going to be installed
PreDepends: libmount1 (>= 2.20.1) but it is not going to be installed
E: Error, pkgProblemResolver::Resolve generated breaks, this may be caused by held packages.
My sources.list
looks like this
deb http://ftp.dk.debian.org/debian/ wheezy main
deb-src http://ftp.dk.debian.org/debian/ wheezy main
deb http://security.debian.org/ testing/updates main
deb-src http://security.debian.org/ testing/updates main
deb http://security.debian.org/debian-security wheezy/updates main
deb-src http://security.debian.org/debian-security wheezy/updates main
deb http://backports.debian.org/debian-backports squeeze-backports main
deb http://mirrors.sunsite.dk/debian/ wheezy main
deb-src http://mirrors.sunsite.dk/debian/ wheezy main
deb http://ftp.ie.debian.org/debian/ wheezy main
deb-src http://ftp.ie.debian.org/debian/ wheezy main
deb http://security.debian.org/ stable/updates main
deb http://ftp.debian.org/debian/ wheezy main non-free
deb http://security.debian.org/ wheezy/updates main non-free
What can I do?
The answers to the questions in comments are
The output of cat /etc/debian_version
is 7.9
, but no I am not using apt pinning
as your comment is the first place, I read about it, but I am going for setting it up, when apt
is running
The output of apt-cache policy
is
Package files:
100 /var/lib/dpkg/status
release a=now
500 http://security.debian.org/ wheezy/updates/non-free Translation-en
500 http://security.debian.org/ wheezy/updates/main Translation-en
500 http://security.debian.org/ wheezy/updates/non-free i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=non-free
origin security.debian.org
500 http://security.debian.org/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.debian.org/debian/ wheezy/non-free Translation-en
500 http://ftp.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.debian.org/debian/ wheezy/non-free i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=non-free
origin ftp.debian.org
500 http://ftp.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.debian.org
500 http://security.debian.org/ stable/updates/main Translation-en
500 http://security.debian.org/ stable/updates/main i386 Packages
release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.ie.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.ie.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.ie.debian.org
500 http://mirrors.sunsite.dk/debian/ wheezy/main Translation-en
500 http://mirrors.sunsite.dk/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin mirrors.sunsite.dk
500 http://backports.debian.org/debian-backports/ squeeze-backports/main Translation-en
100 http://backports.debian.org/debian-backports/ squeeze-backports/main i386 Packages
release o=Debian Backports,a=squeeze-backports,n=squeeze-backports,l=Debian Backports,c=main
origin backports.debian.org
500 http://security.debian.org/debian-security/ wheezy/updates/main Translation-en
500 http://security.debian.org/debian-security/ wheezy/updates/main i386 Packages
release v=7.0,o=Debian,a=oldstable,n=wheezy,l=Debian-Security,c=main
origin security.debian.org
500 http://security.debian.org/ testing/updates/main Translation-en
500 http://security.debian.org/ testing/updates/main i386 Packages
release o=Debian,a=testing,n=stretch,l=Debian-Security,c=main
origin security.debian.org
500 http://ftp.dk.debian.org/debian/ wheezy/main Translation-en
500 http://ftp.dk.debian.org/debian/ wheezy/main i386 Packages
release v=7.9,o=Debian,a=oldstable,n=wheezy,l=Debian,c=main
origin ftp.dk.debian.org
Pinned packages:
debian apt
debian apt
edited Dec 18 '15 at 18:07
asked Dec 17 '15 at 17:40
The87Boy
11113
11113
migrated from serverfault.com Dec 18 '15 at 6:27
This question came from our site for system and network administrators.
migrated from serverfault.com Dec 18 '15 at 6:27
This question came from our site for system and network administrators.
Are you usingapt pinning
? Could you show the content of/etc/debian_version
?
â gf_
Dec 17 '15 at 21:47
Please paste the output ofapt-cache policy
. In the question, not in a comment.
â Faheem Mitha
Dec 18 '15 at 10:13
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52
add a comment |Â
Are you usingapt pinning
? Could you show the content of/etc/debian_version
?
â gf_
Dec 17 '15 at 21:47
Please paste the output ofapt-cache policy
. In the question, not in a comment.
â Faheem Mitha
Dec 18 '15 at 10:13
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52
Are you using
apt pinning
? Could you show the content of /etc/debian_version
?â gf_
Dec 17 '15 at 21:47
Are you using
apt pinning
? Could you show the content of /etc/debian_version
?â gf_
Dec 17 '15 at 21:47
Please paste the output of
apt-cache policy
. In the question, not in a comment.â Faheem Mitha
Dec 18 '15 at 10:13
Please paste the output of
apt-cache policy
. In the question, not in a comment.â Faheem Mitha
Dec 18 '15 at 10:13
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52
add a comment |Â
1 Answer
1
active
oldest
votes
up vote
0
down vote
Nothing seems to work, I really need some help with this.
New contributor
add a comment |Â
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
Nothing seems to work, I really need some help with this.
New contributor
add a comment |Â
up vote
0
down vote
Nothing seems to work, I really need some help with this.
New contributor
add a comment |Â
up vote
0
down vote
up vote
0
down vote
Nothing seems to work, I really need some help with this.
New contributor
Nothing seems to work, I really need some help with this.
New contributor
New contributor
answered 1 min ago
NIRAJ GOLCHHA
1
1
New contributor
New contributor
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%2f250134%2fpkgproblemresolverresolve-generated-breaks%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
Are you using
apt pinning
? Could you show the content of/etc/debian_version
?â gf_
Dec 17 '15 at 21:47
Please paste the output of
apt-cache policy
. In the question, not in a comment.â Faheem Mitha
Dec 18 '15 at 10:13
Your questions are now answered in the original question
â The87Boy
Dec 18 '15 at 18:52