Open bananajoe200 opened 10 months ago
Possibly related #782
Getting this error currently, is there any way to resolve?
The error message you are encountering during package installation on your Linux system suggests a problem with fetching data from the repository at "https://adoptopenjdk.jfrog.io/adoptopenjdk/deb". This is typically due to network issues or repository configuration errors. Here are some steps to troubleshoot and potentially resolve the issue:
Check Network Connectivity:
ping
or curl
to see if the server is reachable:
curl -I https://adoptopenjdk.jfrog.io/adoptopenjdk/deb
Inspect Repository Configuration:
/etc/apt/sources.list
or the files under /etc/apt/sources.list.d/
for any entry related to adoptopenjdk
.deb [signed-by=/usr/share/keyrings/adoptopenjdk-archive-keyring.gpg] https://adoptopenjdk.jfrog.io/adoptopenjdk/deb buster main
buster
) are correct.Authentication and Proxy Configuration:
/etc/apt/apt.conf.d/
, for example:
Acquire::http::Proxy "http://proxy_address:proxy_port";
Update and Install:
sudo apt update
sudo apt install <package-name>
Check Repository Key:
curl -sL "https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public" | sudo apt-key add -
Consult Logs:
/var/log/apt/term.log
/var/log/apt/history.log
These steps should help you diagnose and hopefully resolve the issue you're facing with accessing the AdoptOpenJDK repository on your Linux system.
Hello,
I hope this message finds you well. I am experiencing an issue when trying to update the AdoptOpenJDK repository on my Debian 10 (buster) system.
The error message I am encountering is as follows:
Err:6 https://adoptopenjdk.jfrog.io/adoptopenjdk/deb buster InRelease Clearsigned file is not valid, received 'NOSPLIT' (does the network require authentication?) Paket lists are being read... Done E: Failed to fetch https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/dists/buster/InRelease Clearsigned file is not valid, received 'NOSPLIT' (does the network require authentication?) E: The repository 'https://adoptopenjdk.jfrog.io/adoptopenjdk/deb buster InRelease' is no longer signed. N: Updating from such a repository cannot be done securely, and it is disabled by default. N: For more details, see the apt-secure(8) manual page.
I followed the installation guide provided at: Adoptium Blog - Eclipse Temurin Linux Installers
Despite my efforts, the problem persists. It seems to be related to a Clearsigned file issue with a 'NOSPLIT' error.
Could you kindly assist me in resolving this matter? If there are specific steps or changes to the approach that I should follow, please provide guidance.
Thank you in advance for your support.