Installation de logiciels problème (Linux)

Solved
-  

Hello,

I'm encountering a problem when I install software. After that, it says:

 E: Conflicting values were provided for the Signed-By option regarding the source https://dl.winehq.org/wine-builds/ubuntu/ focal: /usr/share/keyrings/winehq-archive.key != /usr/share/keyrings/winehq.gpg E: The source list cannot be read. E: _cache->open() failed, please report.

Help me fix this issue, thanks!!

1 answer

  1. Hello,

    The source address is incorrect:

    Instead of

     https://dl.winehq.org/wine-builds/ubuntu/ focal

    it should be:

     https://dl.winehq.org/wine-builds/ubuntu/dists/focal

    Correct your /etc/apt/source.list file accordingly:

    sudo gedit /etc/apt/sources.list &

    Note: To install wine as I believe that’s what you’re trying to do, it would be simpler to type in the terminal:

     sudo apt update sudo apt install wine
    1