在带有 php8.1 的 Debian 11 上使用 apt 安装 phpMyAdmin 5.2.1

在带有 php8.1 的 Debian 11 上使用 apt 安装 phpMyAdmin 5.2.1

apt install phpmyadmin在 Debian 11 上安装不兼容 php8.1 的旧版本 5.0.4。

如何通过 apt 安装最新版本?

答案1

Debian stable (bookworm) 包含最新的phpmyadmin软件包 (看这里)。首先,将测试分支添加到您的/etc/apt/sources.list

deb http://security.debian.org/ stable-security main
deb http://ftp.us.debian.org/debian stable-updates main
deb http://ftp.us.debian.org/debian stable main

然后,进行引脚测试,/etc/apt/preferences以便包不会被自动拉入。

Package: *
Pin: release a=stable
Pin-Priority: -2

现在,当您需要测试包时,请手动指定目标版本。小心不要让一半的系统升级。

apt update
apt-get install -t stable phpmyadmin

这将安装版本 5.2.1 而不是 5.0.4

来源https://unix.stackexchange.com/a/439078/20661通过@user277591

相关内容