[GH-ISSUE #12160] [Bug]: Apache Guacamole Update fails on Debian 13 (Trixie) due to Temurin JDK 11 dependency (p11-kit) #2548

Closed
opened 2026-02-26 12:52:48 +03:00 by kerem · 2 comments
Owner

Originally created by @Peterkal2112 on GitHub (Feb 21, 2026).
Original GitHub issue: https://github.com/community-scripts/ProxmoxVE/issues/12160

Originally assigned to: @MickLesk, @Copilot on GitHub.

Have you read and understood the above guidelines?

yes

🔎 Did you run the script with verbose mode enabled?

No response

📜 What is the name of the script you are using?

Apache Guacamole

📂 What was the exact command used to execute the script?

update in ssh console

⚙️ What settings are you using?

  • Default Settings
  • Advanced Settings

🖥️ Which Linux distribution are you using?

Debian 13

📈 Which Proxmox version are you on?

pve-manager/9.1.4/5ac30304265fbd8e (running kernel: 6.17.4-2-pve)

📝 Provide a clear and concise description of the issue.

The update script fails during the Java (Temurin JDK 11) installation phase on Debian 13. The Adoptium repository for "trixie" seems to have a dependency conflict where adoptium-ca-certificates requires p11-kit, but p11-kit is not available as an installation candidate in Debian 13 (it has been replaced/restructured).

Since the script forces the installation of Temurin JDK 11, it exits with code 100/1 when APT cannot satisfy the dependencies.

🔄 Steps to reproduce the issue.

  1. Have an Apache Guacamole LXC running on Debian 13.
  2. Run the update script/command.
  3. The script attempts to verify/install temurin-11-jdk.
  4. Installation fails with: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable.

Paste the full error output (if available).

    ___                     __               ______                                       __
   /   |  ____  ____ ______/ /_  ___        / ____/_  ______ __________ _____ ___  ____  / /__
  / /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/ __ `__ \/ __ \/ / _ \
 / ___ |/ /_/ / /_/ / /__/ / / /  __/_____/ /_/ / /_/ / /_/ / /__/ /_/ / / / / / / /_/ / /  __/
/_/  |_/ .___/\__,_/\___/_/ /_/\___/      \____/\__,_/\__,_/\___/\__,_/_/ /_/ /_/\____/_/\___/
      /_/

All packages are up to date.
Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
Get:2 https://packages.adoptium.net/artifactory/deb trixie/main amd64 Packages [10.9 kB]
Fetched 18.4 kB in 1s (33.4 kB/s)
All packages are up to date.
Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
Fetched 7,503 B in 0s (22.6 kB/s)
All packages are up to date.
Solving dependencies... Error!
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  💡   Package installation failed, retrying (1/2)...
Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease
All packages are up to date.
Solving dependencies... Error!
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  💡   Package installation failed, retrying (2/2)...
Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
Fetched 7,503 B in 0s (24.0 kB/s)
All packages are up to date.
Solving dependencies... Error!
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  ✖️   Failed to install Temurin JDK 11
  ✖️   in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1

  --- Last 20 lines of log ---
[2026-02-21 22:29:12] [INFO] Setup Temurin JDK 11
[2026-02-21 22:29:13] [WARN] Package installation failed, retrying (1/2)...
[2026-02-21 22:29:16] [WARN] Package installation failed, retrying (2/2)...
[2026-02-21 22:29:18] [ERROR] Failed to install Temurin JDK 11
[2026-02-21 22:29:18] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1
  -----------------------------------

 📋 Full log: /tmp/create-lxc-5d2e59bd.log
root@apache-guacamole-lxc:/opt/apache-guacamole/tomcat9/webapps# ^C
root@apache-guacamole-lxc:/opt/apache-guacamole/tomcat9/webapps# cat /tmp/create-lxc-5d2e59bd.log
[2026-02-21 22:29:12] [INFO] Setup Temurin JDK 11
[2026-02-21 22:29:13] [WARN] Package installation failed, retrying (1/2)...
[2026-02-21 22:29:16] [WARN] Package installation failed, retrying (2/2)...
[2026-02-21 22:29:18] [ERROR] Failed to install Temurin JDK 11
[2026-02-21 22:29:18] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1
[2026-02-21 22:29:18] Full log: /tmp/create-lxc-5d2e59bd.log

🖼️ Additional context (optional).

The system already has default-jdk (Java 21) installed, but the script explicitly tries to install temurin-11-jdk from the Adoptium repo. On Debian 13, p11-kit is no longer available under that exact name in the default repositories, causing the Adoptium package to fail.

Manual attempt to install p11-kit confirms: Package 'p11-kit' has no installation candidate.

root@apache-guacamole-lxc:~# java -version
openjdk version "21.0.9" 2025-10-21
OpenJDK Runtime Environment (build 21.0.9+10-Debian-1deb13u1)
OpenJDK 64-Bit Server VM (build 21.0.9+10-Debian-1deb13u1, mixed mode, sharing)
root@apache-guacamole-lxc:~# apt list --installed | grep jdk

WARNING: apt does not have a stable CLI interface. Use with caution in scripts.

default-jdk-headless/now 2:1.21-76 amd64 [installed,local]
default-jdk/now 2:1.21-76 amd64 [installed,local]
openjdk-21-jdk-headless/now 21.0.9+10-1~deb13u1 amd64 [installed,local]
openjdk-21-jdk/now 21.0.9+10-1~deb13u1 amd64 [installed,local]
openjdk-21-jre-headless/now 21.0.9+10-1~deb13u1 amd64 [installed,local]
openjdk-21-jre/now 21.0.9+10-1~deb13u1 amd64 [installed,local]
root@apache-guacamole-lxc:~# update-alternatives --display java
java - auto mode
  link best version is /usr/lib/jvm/java-21-openjdk-amd64/bin/java
  link currently points to /usr/lib/jvm/java-21-openjdk-amd64/bin/java
  link java is /usr/bin/java
  slave java.1.gz is /usr/share/man/man1/java.1.gz
/usr/lib/jvm/java-21-openjdk-amd64/bin/java - priority 2111
  slave java.1.gz: /usr/lib/jvm/java-21-openjdk-amd64/man/man1/java.1.gz
root@apache-guacamole-lxc:~# ^C
root@apache-guacamole-lxc:~# apt install -s temurin-11-jdk

Solving dependencies... Error!
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
Error: Unable to correct problems, you have held broken packages.
Error: The following information from --solver 3.0 may provide additional context:
   Unable to satisfy dependencies. Reached two conflicting decisions:
   1. adoptium-ca-certificates:amd64 is selected for install because:
      1. temurin-11-jdk:amd64=11.0.30.0.0+7-0 is selected for install
      2. temurin-11-jdk:amd64 Depends adoptium-ca-certificates
   2. adoptium-ca-certificates:amd64 Depends p11-kit
      but none of the choices are installable:
      [no choices]
root@apache-guacamole-lxc:~# apt-cache depends adoptium-ca-certificates
adoptium-ca-certificates
  Depends: ca-certificates
  Depends: <p11-kit>
root@apache-guacamole-lxc:~# apt-cache search p11-kit
libp11-kit-dev - library for loading and coordinating access to PKCS#11 modules - development
libp11-kit0 - library for loading and coordinating access to PKCS#11 modules - runtime
root@apache-guacamole-lxc:~# apt-cache policy p11-kit
p11-kit:
  Installed: (none)
  Candidate: (none)
  Version table:
root@apache-guacamole-lxc:~# dpkg -l | grep ^iU
root@apache-guacamole-lxc:~# apt check
Error: Invalid operation check

Originally created by @Peterkal2112 on GitHub (Feb 21, 2026). Original GitHub issue: https://github.com/community-scripts/ProxmoxVE/issues/12160 Originally assigned to: @MickLesk, @Copilot on GitHub. ### ✅ Have you read and understood the above guidelines? yes ### 🔎 Did you run the script with verbose mode enabled? _No response_ ### 📜 What is the name of the script you are using? Apache Guacamole ### 📂 What was the exact command used to execute the script? update in ssh console ### ⚙️ What settings are you using? - [x] Default Settings - [ ] Advanced Settings ### 🖥️ Which Linux distribution are you using? Debian 13 ### 📈 Which Proxmox version are you on? pve-manager/9.1.4/5ac30304265fbd8e (running kernel: 6.17.4-2-pve) ### 📝 Provide a clear and concise description of the issue. The update script fails during the Java (Temurin JDK 11) installation phase on Debian 13. The Adoptium repository for "trixie" seems to have a dependency conflict where `adoptium-ca-certificates` requires `p11-kit`, but `p11-kit` is not available as an installation candidate in Debian 13 (it has been replaced/restructured). Since the script forces the installation of Temurin JDK 11, it exits with code 100/1 when APT cannot satisfy the dependencies. ### 🔄 Steps to reproduce the issue. 1. Have an Apache Guacamole LXC running on Debian 13. 2. Run the update script/command. 3. The script attempts to verify/install `temurin-11-jdk`. 4. Installation fails with: `Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable`. ### ❌ Paste the full error output (if available). ``` ___ __ ______ __ / | ____ ____ ______/ /_ ___ / ____/_ ______ __________ _____ ___ ____ / /__ / /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/ __ `__ \/ __ \/ / _ \ / ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /_/ / /_/ / /_/ / /__/ /_/ / / / / / / /_/ / / __/ /_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/\__,_/\___/\__,_/_/ /_/ /_/\____/_/\___/ /_/ All packages are up to date. Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B] Get:2 https://packages.adoptium.net/artifactory/deb trixie/main amd64 Packages [10.9 kB] Fetched 18.4 kB in 1s (33.4 kB/s) All packages are up to date. Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B] Fetched 7,503 B in 0s (22.6 kB/s) All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable 💡 Package installation failed, retrying (1/2)... Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable 💡 Package installation failed, retrying (2/2)... Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B] Fetched 7,503 B in 0s (24.0 kB/s) All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable ✖️ Failed to install Temurin JDK 11 ✖️ in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 --- Last 20 lines of log --- [2026-02-21 22:29:12] [INFO] Setup Temurin JDK 11 [2026-02-21 22:29:13] [WARN] Package installation failed, retrying (1/2)... [2026-02-21 22:29:16] [WARN] Package installation failed, retrying (2/2)... [2026-02-21 22:29:18] [ERROR] Failed to install Temurin JDK 11 [2026-02-21 22:29:18] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 ----------------------------------- 📋 Full log: /tmp/create-lxc-5d2e59bd.log root@apache-guacamole-lxc:/opt/apache-guacamole/tomcat9/webapps# ^C root@apache-guacamole-lxc:/opt/apache-guacamole/tomcat9/webapps# cat /tmp/create-lxc-5d2e59bd.log [2026-02-21 22:29:12] [INFO] Setup Temurin JDK 11 [2026-02-21 22:29:13] [WARN] Package installation failed, retrying (1/2)... [2026-02-21 22:29:16] [WARN] Package installation failed, retrying (2/2)... [2026-02-21 22:29:18] [ERROR] Failed to install Temurin JDK 11 [2026-02-21 22:29:18] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 [2026-02-21 22:29:18] Full log: /tmp/create-lxc-5d2e59bd.log ``` ### 🖼️ Additional context (optional). The system already has `default-jdk` (Java 21) installed, but the script explicitly tries to install `temurin-11-jdk` from the Adoptium repo. On Debian 13, `p11-kit` is no longer available under that exact name in the default repositories, causing the Adoptium package to fail. Manual attempt to install `p11-kit` confirms: `Package 'p11-kit' has no installation candidate`. ``` root@apache-guacamole-lxc:~# java -version openjdk version "21.0.9" 2025-10-21 OpenJDK Runtime Environment (build 21.0.9+10-Debian-1deb13u1) OpenJDK 64-Bit Server VM (build 21.0.9+10-Debian-1deb13u1, mixed mode, sharing) root@apache-guacamole-lxc:~# apt list --installed | grep jdk WARNING: apt does not have a stable CLI interface. Use with caution in scripts. default-jdk-headless/now 2:1.21-76 amd64 [installed,local] default-jdk/now 2:1.21-76 amd64 [installed,local] openjdk-21-jdk-headless/now 21.0.9+10-1~deb13u1 amd64 [installed,local] openjdk-21-jdk/now 21.0.9+10-1~deb13u1 amd64 [installed,local] openjdk-21-jre-headless/now 21.0.9+10-1~deb13u1 amd64 [installed,local] openjdk-21-jre/now 21.0.9+10-1~deb13u1 amd64 [installed,local] root@apache-guacamole-lxc:~# update-alternatives --display java java - auto mode link best version is /usr/lib/jvm/java-21-openjdk-amd64/bin/java link currently points to /usr/lib/jvm/java-21-openjdk-amd64/bin/java link java is /usr/bin/java slave java.1.gz is /usr/share/man/man1/java.1.gz /usr/lib/jvm/java-21-openjdk-amd64/bin/java - priority 2111 slave java.1.gz: /usr/lib/jvm/java-21-openjdk-amd64/man/man1/java.1.gz root@apache-guacamole-lxc:~# ^C root@apache-guacamole-lxc:~# apt install -s temurin-11-jdk Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable Error: Unable to correct problems, you have held broken packages. Error: The following information from --solver 3.0 may provide additional context: Unable to satisfy dependencies. Reached two conflicting decisions: 1. adoptium-ca-certificates:amd64 is selected for install because: 1. temurin-11-jdk:amd64=11.0.30.0.0+7-0 is selected for install 2. temurin-11-jdk:amd64 Depends adoptium-ca-certificates 2. adoptium-ca-certificates:amd64 Depends p11-kit but none of the choices are installable: [no choices] root@apache-guacamole-lxc:~# apt-cache depends adoptium-ca-certificates adoptium-ca-certificates Depends: ca-certificates Depends: <p11-kit> root@apache-guacamole-lxc:~# apt-cache search p11-kit libp11-kit-dev - library for loading and coordinating access to PKCS#11 modules - development libp11-kit0 - library for loading and coordinating access to PKCS#11 modules - runtime root@apache-guacamole-lxc:~# apt-cache policy p11-kit p11-kit: Installed: (none) Candidate: (none) Version table: root@apache-guacamole-lxc:~# dpkg -l | grep ^iU root@apache-guacamole-lxc:~# apt check Error: Invalid operation check ```
kerem 2026-02-26 12:52:48 +03:00
  • closed this issue
  • added the
    bug
    label
Author
Owner

@michelroegl-brunner commented on GitHub (Feb 22, 2026):

Fix Merged

<!-- gh-comment-id:3941678280 --> @michelroegl-brunner commented on GitHub (Feb 22, 2026): Fix Merged
Author
Owner

@Peterkal2112 commented on GitHub (Feb 24, 2026):

The issue is still present after the merge. The script now attempts to install Temurin JDK 17 instead of 11, but it fails with the same dependency error: adoptium-ca-certificates : Depends: p11-kit but it is not installable.

As established before, Debian 13 (Trixie) does not provide a package named p11-kit anymore. Any package from the Adoptium repository that depends on it will fail to install on this distribution.

Since Debian 13 already has openjdk-21 (default-jdk) available in the official repos, would it be possible to use the system's default-jdk instead of forcing Temurin on Trixie?

    ___                     __               ______                                       __   
   /   |  ____  ____ ______/ /_  ___        / ____/_  ______ __________ _____ ___  ____  / /__ 
  / /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/ __ `__ \/ __ \/ / _ \
 / ___ |/ /_/ / /_/ / /__/ / / /  __/_____/ /_/ / /_/ / /_/ / /__/ /_/ / / / / / / /_/ / /  __/
/_/  |_/ .___/\__,_/\___/_/ /_/\___/      \____/\__,_/\__,_/\___/\__,_/_/ /_/ /_/\____/_/\___/ 
      /_/                                                                                      

All packages are up to date.    
Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
Get:2 https://packages.adoptium.net/artifactory/deb trixie/main amd64 Packages [10.9 kB]
Fetched 18.4 kB in 1s (35.9 kB/s)
All packages are up to date.    
Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease
All packages are up to date.    
Solving dependencies... Error!  
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  💡   Package installation failed, retrying (1/2)...
Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease
All packages are up to date.    
Solving dependencies... Error!  
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  💡   Package installation failed, retrying (2/2)...
Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease
All packages are up to date.    
Solving dependencies... Error!  
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:

Unsatisfied dependencies:
 adoptium-ca-certificates : Depends: p11-kit but it is not installable
  ✖️   Failed to install Temurin JDK 17
  ✖️   in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1

  --- Last 20 lines of log ---
[2026-02-24 12:47:37] [INFO] Setup Temurin JDK 17
[2026-02-24 12:47:38] [WARN] Package installation failed, retrying (1/2)...
[2026-02-24 12:47:40] [WARN] Package installation failed, retrying (2/2)...
[2026-02-24 12:47:43] [ERROR] Failed to install Temurin JDK 17
[2026-02-24 12:47:43] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1
  -----------------------------------

 📋 Full log: /tmp/create-lxc-004010f4.log
root@apache-guacamole-lxc:~# cat /tmp/create-lxc-004010f4.log
[2026-02-24 12:47:37] [INFO] Setup Temurin JDK 17
[2026-02-24 12:47:38] [WARN] Package installation failed, retrying (1/2)...
[2026-02-24 12:47:40] [WARN] Package installation failed, retrying (2/2)...
[2026-02-24 12:47:43] [ERROR] Failed to install Temurin JDK 17
[2026-02-24 12:47:43] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1
[2026-02-24 12:47:43] Full log: /tmp/create-lxc-004010f4.log
<!-- gh-comment-id:3951187672 --> @Peterkal2112 commented on GitHub (Feb 24, 2026): The issue is still present after the merge. The script now attempts to install Temurin JDK 17 instead of 11, but it fails with the same dependency error: adoptium-ca-certificates : Depends: p11-kit but it is not installable. As established before, Debian 13 (Trixie) does not provide a package named p11-kit anymore. Any package from the Adoptium repository that depends on it will fail to install on this distribution. Since Debian 13 already has openjdk-21 (default-jdk) available in the official repos, would it be possible to use the system's default-jdk instead of forcing Temurin on Trixie? ``` ___ __ ______ __ / | ____ ____ ______/ /_ ___ / ____/_ ______ __________ _____ ___ ____ / /__ / /| | / __ \/ __ `/ ___/ __ \/ _ \______/ / __/ / / / __ `/ ___/ __ `/ __ `__ \/ __ \/ / _ \ / ___ |/ /_/ / /_/ / /__/ / / / __/_____/ /_/ / /_/ / /_/ / /__/ /_/ / / / / / / /_/ / / __/ /_/ |_/ .___/\__,_/\___/_/ /_/\___/ \____/\__,_/\__,_/\___/\__,_/_/ /_/ /_/\____/_/\___/ /_/ All packages are up to date. Get:1 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B] Get:2 https://packages.adoptium.net/artifactory/deb trixie/main amd64 Packages [10.9 kB] Fetched 18.4 kB in 1s (35.9 kB/s) All packages are up to date. Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable 💡 Package installation failed, retrying (1/2)... Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable 💡 Package installation failed, retrying (2/2)... Hit:1 https://packages.adoptium.net/artifactory/deb trixie InRelease All packages are up to date. Solving dependencies... Error! 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: Unsatisfied dependencies: adoptium-ca-certificates : Depends: p11-kit but it is not installable ✖️ Failed to install Temurin JDK 17 ✖️ in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 --- Last 20 lines of log --- [2026-02-24 12:47:37] [INFO] Setup Temurin JDK 17 [2026-02-24 12:47:38] [WARN] Package installation failed, retrying (1/2)... [2026-02-24 12:47:40] [WARN] Package installation failed, retrying (2/2)... [2026-02-24 12:47:43] [ERROR] Failed to install Temurin JDK 17 [2026-02-24 12:47:43] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 ----------------------------------- 📋 Full log: /tmp/create-lxc-004010f4.log root@apache-guacamole-lxc:~# cat /tmp/create-lxc-004010f4.log [2026-02-24 12:47:37] [INFO] Setup Temurin JDK 17 [2026-02-24 12:47:38] [WARN] Package installation failed, retrying (1/2)... [2026-02-24 12:47:40] [WARN] Package installation failed, retrying (2/2)... [2026-02-24 12:47:43] [ERROR] Failed to install Temurin JDK 17 [2026-02-24 12:47:43] [ERROR] in line 54: exit code 1 (General error / Operation not permitted): while executing command return 1 [2026-02-24 12:47:43] Full log: /tmp/create-lxc-004010f4.log ```
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ProxmoxVE#2548
No description provided.