1

Checking for installed snaps

Calculating snap size requirements

Updating repository information

No valid sources.list entry found

While scanning your repository information no entry about lunar could be found.

An upgrade might not succeed.

Do you want to continue anyway?

  • 1
    We have no idea how you are attempting to upgrade and whether what you attempt indeed is a valid upgrade procedure. – vanadium Dec 16 '23 at 08:13
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Dec 16 '23 at 09:13

1 Answers1

0

Try to fix the issue this way.

  1. Open the apt directory.

    cd /etc/apt
    
  2. Move the "sources.list" to another directory.

    sudo mv sources.list /home/User1/
    
  3. Create a new sources.list file in /etc/apt/ directory.

    sudo touch /etc/apt/sources.list
    
  4. Open the Software & Updates application using the search bar or the app drawer. Change the server to the main server and enable the restricted repository.

    enter image description here

  5. Under the Updates tab, select All updates or at least security updates in Subscribed to dropdown menu and click on Close.

    enter image description here

  6. Click Reload.

    enter image description here

  1. Update the repositories.

    sudo apt update
    
  2. Check for release upgrade.

    sudo do-release-upgrade -c
    
  3. Run the upgrade.

    sudo do-release-upgrade
    
karel
  • 114,770