Confusion on apt-cache policy: same origin but different versions? The Next CEO of Stack OverflowWhy do apache2 upgrades remove and not re-install libapache2-mod-php5?Do I need linux-libc-dev and libc6-dev?cant update to php 5.4 ubuntu 12.10dependency error on libc6-amd64 even if it's already installedbroken packages with PgAdmin3 version 1.20 in Ubuntu 14 LTSCan't install libpng-devUbuntu Xenial 16.04 libapache2-mod-php5.6 NO PPAwhy libpython3.6 is not installing?apt does not want to clear updated packagesUpgrading to PHP 7.2 (from 7.0) broke MySQLi functions on NGINX server
Only print output after finding pattern
Are there languages with no euphemisms?
Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?
Text adventure game code
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Term for the "extreme-extension" version of a straw man fallacy?
How do scammers retract money, while you can’t?
Too much space between section and text in a twocolumn document
Return of the Riley Riddles in Reverse
Removing read access from a file
Implement the Thanos sorting algorithm
How to make a variable always equal to the result of some calculations?
A pseudo-riley?
How to write the block matrix in LaTex?
Why is there a PLL in CPU?
Solution of this Diophantine Equation
Fastest way to shutdown Ubuntu Mate 18.10
How to Reset Passwords on Multiple Websites Easily?
Whats the best way to handle refactoring a big file?
What size rim is OK?
What's the point of interval inversion?
How do we know the LHC results are robust?
When airplanes disconnect from a tanker during air to air refueling, why do they bank so sharply to the right?
Inappropriate reference requests from Journal reviewers
Confusion on apt-cache policy: same origin but different versions?
The Next CEO of Stack OverflowWhy do apache2 upgrades remove and not re-install libapache2-mod-php5?Do I need linux-libc-dev and libc6-dev?cant update to php 5.4 ubuntu 12.10dependency error on libc6-amd64 even if it's already installedbroken packages with PgAdmin3 version 1.20 in Ubuntu 14 LTSCan't install libpng-devUbuntu Xenial 16.04 libapache2-mod-php5.6 NO PPAwhy libpython3.6 is not installing?apt does not want to clear updated packagesUpgrading to PHP 7.2 (from 7.0) broke MySQLi functions on NGINX server
Background:
I have a Debian containers that installs libapache2-mod-php
and is running PHP 7.2
server. It has been set up half a year ago and is running fine.
Problem:
This week I've been trying to install the Debian containers on another VM with the same OS.
It seems like this package has gotten an update recently (defaults to 7.3
) which breaks my PHP 7.2
server after the installation.
Attempts:
I've tried apt policy libapache2-mod-php
, it shows both environments contains the same origins, but both libapache2-mod-php
s' versions of the same origin are different.
I am really confused as in how to specify apt to install PHP 7.2
when there's no available version on apt policy
?
Broken Container:
root@b3ec62f3096d:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Candidate: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Version table:
*** 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
Working Container:
root@430822ee576a:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Candidate: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Version table:
*** 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
apt server package-management apache2 php
New contributor
add a comment |
Background:
I have a Debian containers that installs libapache2-mod-php
and is running PHP 7.2
server. It has been set up half a year ago and is running fine.
Problem:
This week I've been trying to install the Debian containers on another VM with the same OS.
It seems like this package has gotten an update recently (defaults to 7.3
) which breaks my PHP 7.2
server after the installation.
Attempts:
I've tried apt policy libapache2-mod-php
, it shows both environments contains the same origins, but both libapache2-mod-php
s' versions of the same origin are different.
I am really confused as in how to specify apt to install PHP 7.2
when there's no available version on apt policy
?
Broken Container:
root@b3ec62f3096d:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Candidate: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Version table:
*** 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
Working Container:
root@430822ee576a:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Candidate: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Version table:
*** 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
apt server package-management apache2 php
New contributor
add a comment |
Background:
I have a Debian containers that installs libapache2-mod-php
and is running PHP 7.2
server. It has been set up half a year ago and is running fine.
Problem:
This week I've been trying to install the Debian containers on another VM with the same OS.
It seems like this package has gotten an update recently (defaults to 7.3
) which breaks my PHP 7.2
server after the installation.
Attempts:
I've tried apt policy libapache2-mod-php
, it shows both environments contains the same origins, but both libapache2-mod-php
s' versions of the same origin are different.
I am really confused as in how to specify apt to install PHP 7.2
when there's no available version on apt policy
?
Broken Container:
root@b3ec62f3096d:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Candidate: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Version table:
*** 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
Working Container:
root@430822ee576a:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Candidate: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Version table:
*** 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
apt server package-management apache2 php
New contributor
Background:
I have a Debian containers that installs libapache2-mod-php
and is running PHP 7.2
server. It has been set up half a year ago and is running fine.
Problem:
This week I've been trying to install the Debian containers on another VM with the same OS.
It seems like this package has gotten an update recently (defaults to 7.3
) which breaks my PHP 7.2
server after the installation.
Attempts:
I've tried apt policy libapache2-mod-php
, it shows both environments contains the same origins, but both libapache2-mod-php
s' versions of the same origin are different.
I am really confused as in how to specify apt to install PHP 7.2
when there's no available version on apt policy
?
Broken Container:
root@b3ec62f3096d:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Candidate: 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465
Version table:
*** 2:7.3+69+0~20190303094804.15+stretch~1.gbp0f7465 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
Working Container:
root@430822ee576a:/srv/server/server# apt policy libapache2-mod-php
libapache2-mod-php:
Installed: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Candidate: 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee
Version table:
*** 1:7.2+65+0~20181014094036.7+stretch~1.gbpaaf4ee 500
500 https://packages.sury.org/php stretch/main amd64 Packages
100 /var/lib/dpkg/status
1:7.0+49 500
500 http://deb.debian.org/debian stretch/main amd64 Packages
apt server package-management apache2 php
apt server package-management apache2 php
New contributor
New contributor
edited 13 mins ago
Danny
New contributor
asked 19 mins ago
DannyDanny
62
62
New contributor
New contributor
add a comment |
add a comment |
0
active
oldest
votes
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
);
);
Danny is a new contributor. Be nice, and check out our Code of Conduct.
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%2f1129540%2fconfusion-on-apt-cache-policy-same-origin-but-different-versions%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Danny is a new contributor. Be nice, and check out our Code of Conduct.
Danny is a new contributor. Be nice, and check out our Code of Conduct.
Danny is a new contributor. Be nice, and check out our Code of Conduct.
Danny is a new contributor. Be nice, and check out our Code of Conduct.
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.
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%2f1129540%2fconfusion-on-apt-cache-policy-same-origin-but-different-versions%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