0

I have been running Xubuntu 20.04.5 LTS since it came out. I was going to upgrade to the next LTS, but I'm stymied by the requirement that I upgrade all existing apps first. I cannot.

After making changes suggested by helpful readers... When I try:

  1. apt-get update runs normally

  2. apt-get dist-upgrade seems to run normally, but...

  3. apt-get autoremove removes nsight-compute-2022.4.0 and nsight-systems-2022.4.2

  4. Whether or not I reinstall those nsight packages, do-release-upgrade says:

    Checking for a new Ubuntu release

    Please install all available updates for your release before upgrading.

So I cannot get the new release.... Please help

4dummies
  • 143
  • 12

1 Answers1

1

Per https://github.com/cli/cli/blob/trunk/docs/install_linux.md - They had to change their key signing key and this appears to have broken your install -

Note We were recently forced to change our GPG signing key. If you've previously downloaded the githubcli-archive-keyring.gpg file, you should re-download it again per above instructions. If you are using a keyserver to download the key, the ID of the new key is 23F3D4EA75716059.

I posit that runnimg the following will import the new key (untested, im not by a PC)-

  curl -fsSL https://cli.github.com/packages/githubcli-archive-keyring.gpg > github-com-key.gpg
  apt-key add github-com-key.gpg

After that, re-attempt the upgrade.

I posit you will get some warnings still. If you want to remove these, look for duplicate lines in /etc/apt/sources.list and /etc/apt/sources.list.d/cuda-ubuntu2004-x86_64.list and remove the duplicate. (my guess is you can comment out lines 51-53 in /etc/apt/sources.list)

davidgo
  • 73,366