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
Why is there a PLL in CPU?
Whats the best way to handle refactoring a big file?
Return of the Riley Riddles in Reverse
Why didn't Khan get resurrected in the Genesis Explosion?
Removing read access from a file
Term for the "extreme-extension" version of a straw man fallacy?
How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?
Is it a good idea to use COLUMN AS (left([Another_Column],(4)) instead of LEFT in the select?
Example of a Mathematician/Physicist whose Other Publications during their PhD eclipsed their PhD Thesis
Is it okay to store user locations?
Horror movie/show or scene where a horse creature opens its mouth really wide and devours a man in a stables
Apart from "berlinern", do any other German dialects have a corresponding verb?
Fastest way to shutdown Ubuntu Mate 18.10
How easy is it to start Magic from scratch?
Why here is plural "We went to the movies last night."
What is the purpose of the Evocation wizard's Potent Cantrip feature?
How to make a software documentation "officially" citable?
What's the point of interval inversion?
How do I construct this japanese bowl?
Is it my responsibility to learn a new technology in my own time my employer wants to implement?
How to count occurrences of text in a file?
Does the Brexit deal have to be agreed by both Houses?
Should I tutor a student who I know has cheated on their homework?
What makes a siege story/plot interesting?
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-phps' 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
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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-phps' 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
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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-phps' 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
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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-phps' 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
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited 6 mins ago
Danny
New contributor
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked 11 mins ago
DannyDanny
62
62
New contributor
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Danny is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
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