![]() |
Install updates error log - Mullvad repository - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Software - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=5) +--- Forum: Updates (https://www.linuxliteos.com/forums/forumdisplay.php?fid=46) +--- Thread: Install updates error log - Mullvad repository (/showthread.php?tid=9151) |
Install updates error log - Mullvad repository - 177 - 05-30-2024 ============ Log =========== Hit:1 http://security.ubuntu.com/ubuntu focal-security InRelease Hit:2 http://us.archive.ubuntu.com/ubuntu focal InRelease Hit:3 http://repo.linuxliteos.com/linuxlite emerald InRelease Hit:4 http://archive.canonical.com/ubuntu focal InRelease Hit:5 https://brave-browser-apt-release.s3.brave.com stable InRelease Hit:6 http://us.archive.ubuntu.com/ubuntu focal-updates InRelease Hit:7 http://us.archive.ubuntu.com/ubuntu focal-backports InRelease Ign:8 https://repository.mullvad.net/deb/stable focal InRelease Err:9 https://repository.mullvad.net/deb/stable focal Release 404 Not Found [IP: 45.149.104.1 443] Reading package lists... E: The repository 'https://repository.mullvad.net/deb/stable focal Release' no longer has a Release file. Re: Install updates error log - Mullvad repository - stevef - 05-30-2024 Your system OS (Linux Lite 5.x) is based on Ubuntu Focal. A repository for a mullvad application has been added to your system. It appears that mullvad doesn't offer a version of their application which is compatible with Focal. This is stopping the update/upgrade process from running. You need to remove any elements of the mullvad application by reversing the instructions you followed when installing. As part of this ensure that the mullvad repository is deleted from your system. This should allow the update/upgrade process to run again. Re: Install updates error log - Mullvad repository - 177 - 05-30-2024 Thanks. I can see where I have gone wrong, but not how to reverse it. The instructions I followed to (re)install Mullvad were: # Download the Mullvad signing key sudo curl -fsSLo /usr/share/keyrings/mullvad-keyring.asc https://repository.mullvad.net/deb/mullvad-keyring.asc # Add the Mullvad repository server to apt echo "deb [signed-by=/usr/share/keyrings/mullvad-keyring.asc arch=$( dpkg --print-architecture )] https://repository.mullvad.net/deb/stable $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/mullvad.list # Install the package sudo apt update sudo apt install mullvad-vpn Can you tell me how to reverse this? Thanks Re: Install updates error log - Mullvad repository - stevef - 05-30-2024 Quote:ThanksYou are welcome. Those commands will have copied a mullvad keyring from the Internet into your /usr/share/keyrings directory and added a file called mullvad.list into /etc/apt/sources.list.d/ using priviledged access. Open a terminal (Ctrl, Alt, T) and identify the 'mullvad' additions with Code: ls -l /usr/share/keyrings/ Code: ls -l /etc/apt/sources.list.d/ Once you are happy you've identified the additions, you can delete them with these commands. You will be modifying system critical locations so will need to enter your password. Take care to only delete (rm) the specific files that were added by the mullvad install. Code: sudo rm /usr/share/keyrings/mullvad-keyring.asc Code: sudo rm /etc/apt/sources.list.d/mullvad.list It is assumed the both the commands following "# Install the package" will have failed. Provided they failed, there will be nothing to undo. Let us know if those commands did anything other than report errors. Once you've done tidying try running an update/upgrade sequence to ensure that completes. Re: Install updates error log - Mullvad repository - 177 - 05-30-2024 That worked perfectly. Thanks again. This is fantastic help. |