dotnet / sdk

Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI
https://dot.net/core
MIT License
2.71k stars 1.06k forks source link

.NET 8 SDK stopped building projects in Linux: `You must install or update .NET to run this application` #38794

Open eduherminio opened 8 months ago

eduherminio commented 8 months ago

Describe the bug

I had .NET SDK 8 installed in an Ubuntu Azure VM and it was building my project just fine every hour/few hours or so until earlier today,

Suddenly stopped being able to do so, stating You must install or update .NET to run this application. and No frameworks were found. No reboots or known changes happened in the VM (the builds are part of an automated process that doesn't restart automatically after VM restart) and no changes happened in the code either.

Is this somehow expected?

To Reproduce

Exceptions (if any)

~$ dotnet publish src/Lynx.Cli/Lynx.Cli.csproj -c Release --runtime linux-x64 --self-contained /p:Optimized=true /p:DeterministicBuild=true /p:ExecutableName=lynx-E8A394A1 -o ./
You must install or update .NET to run this application.

App: /usr/share/dotnet/sdk/8.0.200/dotnet.dll
Architecture: x64
Framework: 'Microsoft.NETCore.App', version '8.0.2' (x64)
.NET location: /usr/share/dotnet/

No frameworks were found.

Learn more:
https://aka.ms/dotnet/app-launch-failed

To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=8.0.2&arch=x64&rid=linux-x64&os=ubuntu.22.04

I don't think it matters, but the repo being built was lynx-chess/Lynx.

Further technical details

System: Linux 6.2.0-1018-azure

~$ dotnet --info
You must install or update .NET to run this application.

App: /usr/share/dotnet/sdk/8.0.100/dotnet.dll
Architecture: x64
Framework: 'Microsoft.NETCore.App', version '8.0.0' (x64)
.NET location: /usr/share/dotnet/

No frameworks were found.

Learn more:
https://aka.ms/dotnet/app-launch-failed

To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=8.0.0&arch=x64&rid=linux-x64&os=ubuntu.22.04

Host:
  Version:      8.0.0
  Architecture: x64
  Commit:       5535e31a71
  RID:          linux-x64

.NET SDKs installed:
  8.0.100 [/usr/share/dotnet/sdk]

.NET runtimes installed:
  No runtimes were found.

Other architectures found:
  None

Environment variables:
  Not set

global.json file:
  Not found

Learn more:
  https://aka.ms/dotnet/info

Download .NET:
  https://aka.ms/dotnet/download
dotnet-issue-labeler[bot] commented 8 months ago

I couldn't figure out the best area label to add to this issue. If you have write-permissions please help me learn by adding exactly one area label.

GaNacereddine commented 8 months ago

I have the same error, 4 VMs stoped working all at the same time

appiclogics commented 8 months ago

Anyone looking for fix:

  1. Downgrade sdk:

sudo apt-get install --allow-downgrades dotnet-sdk-8.0=8.0.100-1

  1. Reinstall sdk and runtime should fix it
sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-8.0

sudo apt-get install -y dotnet-runtime-8.0
Ariex commented 8 months ago

many thanks to @appiclogics !! similar thing happen to me today in vultr vm, site was running fine, after a commit been pushed to the server, which then publish & restart server, it ends with error. when type dotnet --version it only say this:

You must install or update .NET to run this application.

App: /usr/share/dotnet/sdk/8.0.200/dotnet.dll
Architecture: x64
Framework: 'Microsoft.NETCore.App', version '8.0.2' (x64)
.NET location: /usr/share/dotnet/

No frameworks were found.

Learn more:
https://aka.ms/dotnet/app-launch-failed

To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=8.0.2&arch=x64&rid=linux-x64&os=ubuntu.22.04
banmohan commented 8 months ago

Same error happened, is anyone have fixed it?

GaNacereddine commented 8 months ago

So for every one having this issue, the problem is that our VM/Machines have aspnetcore-runtime-8.0 package installed but what is needed is this dotnet-runtime-8.0 package all you have to do is update apt and install the missing package no need to down grade

tmds commented 8 months ago

the problem is that our VM/Machines have aspnetcore-runtime-8.0 package installed but what is needed is this dotnet-runtime-8.0 package

When the aspnetcore-runtime-8.0 package is installed, that should mean the dotnet-runtime-8.0 package gets installed as well (as a dependency), see https://learn.microsoft.com/en-us/dotnet/core/distribution-packaging.

cc @MichaelSimons

GaNacereddine commented 8 months ago

It all depends on how you installed your runtime in the first place. in my case, after some investigation, I found out that the dotnet-runtime-8.0 package is not installed in all VMs only the aspnetcore-runtime-8.0package is. How it happened, I do not know and I simply do not care, I just added another line in my Python setup script and was done with it.

anyway that is much better than downgrading to 8.0.1

tmds commented 8 months ago

It all depends on how you installed your runtime in the first place.

Unless you're doing something unusual, dotnet-runtime-8.0 should auto install as a dependency of aspnetcore-runtime-8.0. If it doesn't, then the aspnetcore-runtime-8.0 package is not expressing this dependency.

MichaelSimons commented 8 months ago

cc @NikolaMilosavljevic - Can you take a look?

NikolaMilosavljevic commented 8 months ago

aspnetcore-runtime-8.0 package has a dependency on dotnet-runtime-8.0 package - here's the output of rpm -qpR command:

warning: aspnetcore-runtime-8.0-8.0.2-1.x86_64.rpm: Header V4 RSA/SHA256 Signature, key ID 3135ce90: NOKEY
dotnet-runtime-8.0 >= 8.0.2
rpmlib(CompressedFileNames) <= 3.0.4-1
rpmlib(FileDigests) <= 4.6.0-1
rpmlib(PayloadFilesHavePrefix) <= 4.0-1

@eduherminio @GaNacereddine can you add more specifics about VMs you're using, i.e. how do you create and set them up, etc? It would help reproduce this locally and fix the issue.

NikolaMilosavljevic commented 8 months ago

DEB packages are the same - there is a runtime dependency:

 Depends: dotnet-runtime-8.0 (>= 8.0.2)

Are these VMs runing the same distro? I see that first issue was reported on Ubuntu, presumably 22.04.

eduherminio commented 8 months ago

@eduherminio @GaNacereddine can you add more specifics about VMs you're using, i.e. how do you create and set them up, etc? It would help reproduce this locally and fix the issue.

$ uname -srm
Linux 6.2.0-1019-azure x86_64

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 22.04.3 LTS
Release:        22.04
Codename:       jammy

Created manually from Azure Portal. Setup done by running:

wget https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get update && sudo apt-get install -y dotnet-sdk-8.0

Let me know if any other information could be helpful

dkackman commented 8 months ago

I can repro this on WSL Jammy. Code that runs from VSCode debugger fails at the command line.

Architecture: x64
App host version: 8.0.2
.NET location: Not found

Learn more:
https://aka.ms/dotnet/app-launch-failed

Download the .NET runtime:
https://aka.ms/dotnet-core-applaunch?missing_runtime=true&arch=x64&rid=linux-x64&os=ubuntu.22.04&apphost_version=8.0.2
dotnet --list-runtimes
Microsoft.AspNetCore.App 8.0.2 [/usr/share/dotnet/shared/Microsoft.AspNetCore.App]
Microsoft.NETCore.App 8.0.2 [/usr/share/dotnet/shared/Microsoft.NETCore.App]
dotnet --list-sdks
8.0.200 [/usr/share/dotnet/sdk]
eduherminio commented 8 months ago

Yesterday I turned on another machine where builds used to be working. It still worked after turning it on, but they also stopped working this morning. IMHO this behavior and issue is very concerning because it happens out of the blue, without updating neither the code or the machine.

NikolaMilosavljevic commented 8 months ago

Yesterday I turned on another machine where builds used to be working. It still worked after turning it on, but they also stopped working this morning. IMHO this behavior and issue is very concerning because it happens out of the blue, without updating neither the code or the machine.

That is very surprising. The experience suggests that something is removing dotnet-runtime package. Is there anything related to dotnet-runtime package in apt and dpkg logs?

/var/log/apt/history.log
/var/log/dpkg.log

Would it be possible to share these logs?

eduherminio commented 8 months ago

That is very surprising. The experience suggests that something is removing dotnet-runtime package. Is there anything related to dotnet-runtime package in apt and dpkg logs?

/var/log/apt/history.log
/var/log/dpkg.log

Would it be possible to share these logs?

Sure, here you are. /usr/bin/unattended-upgrade seems to have messed with the installation. You can see that on 2024-02-25 00:30:48 I applied the workaround mentioned above.

/var/log/apt/history.log ``` $ cat /var/log/apt/history.log Start-Date: 2024-02-24 06:02:11 Commandline: /usr/bin/unattended-upgrade Install: linux-azure-6.5-tools-6.5.0-1015:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-modules-6.5.0-1015-azure:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-image-6.5.0-1015-azure:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-headers-6.5.0-1015-azure:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-azure-6.5-headers-6.5.0-1015:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-cloud-tools-6.5.0-1015-azure:amd64 (6.5.0-1015.15~22.04.1, automatic), linux-tools-6.5.0-1015-azure:amd64 (6.5.0-1015.15~22.04.1, automatic) Upgrade: linux-image-azure:amd64 (6.2.0.1019.19~22.04.1, 6.5.0.1015.15~22.04.1), linux-cloud-tools-azure:amd64 (6.2.0.1019.19~22.04.1, 6.5.0.1015.15~22.04.1), linux-headers-azure:amd64 (6.2.0.1019.19~22.04.1, 6.5.0.1015.15~22.04.1), linux-tools-azure:amd64 (6.2.0.1019.19~22.04.1, 6.5.0.1015.15~22.04.1), linux-azure:amd64 (6.2.0.1019.19~22.04.1, 6.5.0.1015.15~22.04.1) End-Date: 2024-02-24 06:03:00 Start-Date: 2024-02-24 06:03:04 Commandline: /usr/bin/unattended-upgrade Upgrade: linux-cloud-tools-common:amd64 (5.15.0-92.102, 5.15.0-97.107) End-Date: 2024-02-24 06:03:06 Start-Date: 2024-02-24 06:03:14 Commandline: /usr/bin/unattended-upgrade Upgrade: libssl3:amd64 (3.0.2-0ubuntu1.12, 3.0.2-0ubuntu1.14) End-Date: 2024-02-24 06:03:17 Start-Date: 2024-02-24 06:03:31 Commandline: /usr/bin/unattended-upgrade Upgrade: linux-tools-common:amd64 (5.15.0-92.102, 5.15.0-97.107) End-Date: 2024-02-24 06:03:33 Start-Date: 2024-02-24 06:03:47 Commandline: /usr/bin/unattended-upgrade Upgrade: aspnetcore-targeting-pack-8.0:amd64 (8.0.1-1, 8.0.2-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:03:49 Start-Date: 2024-02-24 06:04:02 Commandline: /usr/bin/unattended-upgrade Upgrade: login:amd64 (1:4.8.1-2ubuntu2.1, 1:4.8.1-2ubuntu2.2) End-Date: 2024-02-24 06:04:05 Start-Date: 2024-02-24 06:04:19 Commandline: /usr/bin/unattended-upgrade Upgrade: openssl:amd64 (3.0.2-0ubuntu1.12, 3.0.2-0ubuntu1.14) End-Date: 2024-02-24 06:04:22 Start-Date: 2024-02-24 06:04:34 Commandline: /usr/bin/unattended-upgrade Upgrade: aspnetcore-runtime-8.0:amd64 (8.0.1-1, 8.0.2-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:04:35 Start-Date: 2024-02-24 06:04:42 Commandline: /usr/bin/unattended-upgrade Upgrade: linux-libc-dev:amd64 (5.15.0-92.102, 5.15.0-97.107) End-Date: 2024-02-24 06:04:45 Start-Date: 2024-02-24 06:04:50 Commandline: /usr/bin/unattended-upgrade Upgrade: dotnet-apphost-pack-8.0:amd64 (8.0.1-1, 8.0.2-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:04:51 Start-Date: 2024-02-24 06:04:57 Commandline: /usr/bin/unattended-upgrade Install: liblttng-ust-ctl5:amd64 (2.13.1-1ubuntu1, automatic), liblttng-ust1:amd64 (2.13.1-1ubuntu1, automatic), liblttng-ust-common1:amd64 (2.13.1-1ubuntu1, automatic) Upgrade: dotnet-runtime-8.0:amd64 (8.0.1-1, 8.0.2-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:04:59 Start-Date: 2024-02-24 06:05:04 Commandline: /usr/bin/unattended-upgrade Upgrade: libldap-common:amd64 (2.5.16+dfsg-0ubuntu0.22.04.1, 2.5.16+dfsg-0ubuntu0.22.04.2) End-Date: 2024-02-24 06:05:05 Start-Date: 2024-02-24 06:05:09 Commandline: /usr/bin/unattended-upgrade Upgrade: bind9-host:amd64 (1:9.18.18-0ubuntu0.22.04.1, 1:9.18.18-0ubuntu0.22.04.2), bind9-dnsutils:amd64 (1:9.18.18-0ubuntu0.22.04.1, 1:9.18.18-0ubuntu0.22.04.2), bind9-libs:amd64 (1:9.18.18-0ubuntu0.22.04.1, 1:9.18.18-0ubuntu0.22.04.2) End-Date: 2024-02-24 06:05:11 Start-Date: 2024-02-24 06:05:14 Commandline: /usr/bin/unattended-upgrade Upgrade: libldap-2.5-0:amd64 (2.5.16+dfsg-0ubuntu0.22.04.1, 2.5.16+dfsg-0ubuntu0.22.04.2) End-Date: 2024-02-24 06:05:14 Start-Date: 2024-02-24 06:05:18 Commandline: /usr/bin/unattended-upgrade Upgrade: passwd:amd64 (1:4.8.1-2ubuntu2.1, 1:4.8.1-2ubuntu2.2) End-Date: 2024-02-24 06:05:19 Start-Date: 2024-02-24 06:05:23 Commandline: /usr/bin/unattended-upgrade Upgrade: dotnet-targeting-pack-8.0:amd64 (8.0.1-1, 8.0.2-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:05:24 Start-Date: 2024-02-24 06:05:27 Commandline: /usr/bin/unattended-upgrade Upgrade: netstandard-targeting-pack-2.1:amd64 (6.0.126-0ubuntu1~22.04.1, 6.0.127-0ubuntu1~22.04.1) End-Date: 2024-02-24 06:05:28 Start-Date: 2024-02-24 06:05:31 Commandline: /usr/bin/unattended-upgrade Remove: dotnet-runtime-deps-8.0:amd64 (8.0.1-1) End-Date: 2024-02-24 06:05:32 Start-Date: 2024-02-25 00:30:48 Commandline: apt-get install --allow-downgrades dotnet-sdk-8.0=8.0.100-1 Requested-By: azureuser (1000) Downgrade: dotnet-sdk-8.0:amd64 (8.0.101-1, 8.0.100-1) End-Date: 2024-02-25 00:30:59 Start-Date: 2024-02-25 00:31:24 Commandline: apt-get install -y dotnet-sdk-8.0 Requested-By: azureuser (1000) Upgrade: dotnet-sdk-8.0:amd64 (8.0.100-1, 8.0.200-1) End-Date: 2024-02-25 00:31:36 Start-Date: 2024-02-25 00:31:59 Commandline: apt-get install -y dotnet-runtime-8.0 Requested-By: azureuser (1000) Install: dotnet-runtime-deps-8.0:amd64 (8.0.2-1, automatic) Upgrade: dotnet-hostfxr-8.0:amd64 (8.0.1-1, 8.0.2-1), dotnet-host:amd64 (8.0.1-1, 8.0.2-1), dotnet-runtime-8.0:amd64 (8.0.2-0ubuntu1~22.04.1, 8.0.2-1) End-Date: 2024-02-25 00:32:01 ```
/var/log/dpkg.log ``` $ cat /var/log/dpkg.log 2024-02-24 06:02:11 startup archives unpack 2024-02-24 06:02:12 install linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:12 status half-installed linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:14 status unpacked linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:14 install linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:14 status half-installed linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:15 status unpacked linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:15 upgrade linux-azure:amd64 6.2.0.1019.19~22.04.1 6.5.0.1015.15~22.04.1 2024-02-24 06:02:15 status half-configured linux-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status unpacked linux-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status half-installed linux-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status unpacked linux-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:15 upgrade linux-image-azure:amd64 6.2.0.1019.19~22.04.1 6.5.0.1015.15~22.04.1 2024-02-24 06:02:15 status half-configured linux-image-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status unpacked linux-image-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status half-installed linux-image-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:15 status unpacked linux-image-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:15 install linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:15 status half-installed linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:45 status unpacked linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:45 install linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:45 status half-installed linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 status unpacked linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 upgrade linux-headers-azure:amd64 6.2.0.1019.19~22.04.1 6.5.0.1015.15~22.04.1 2024-02-24 06:02:48 status half-configured linux-headers-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:48 status unpacked linux-headers-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:48 status half-installed linux-headers-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:48 status unpacked linux-headers-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:48 install linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 status half-installed linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 status unpacked linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 install linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 status half-installed linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 status unpacked linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:48 upgrade linux-tools-azure:amd64 6.2.0.1019.19~22.04.1 6.5.0.1015.15~22.04.1 2024-02-24 06:02:48 status half-configured linux-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:48 status unpacked linux-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:48 status half-installed linux-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:49 status unpacked linux-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:49 install linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status half-installed linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status unpacked linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 install linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status half-installed linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status unpacked linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 upgrade linux-cloud-tools-azure:amd64 6.2.0.1019.19~22.04.1 6.5.0.1015.15~22.04.1 2024-02-24 06:02:49 status half-configured linux-cloud-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:49 status unpacked linux-cloud-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:49 status half-installed linux-cloud-tools-azure:amd64 6.2.0.1019.19~22.04.1 2024-02-24 06:02:49 status unpacked linux-cloud-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:49 startup packages configure 2024-02-24 06:02:49 configure linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status unpacked linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status half-configured linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status installed linux-azure-6.5-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 configure linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status unpacked linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status half-configured linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status installed linux-azure-6.5-headers-6.5.0-1015:all 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 configure linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status unpacked linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:49 status half-configured linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status installed linux-modules-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 configure linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status unpacked linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status half-configured linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status installed linux-azure-6.5-cloud-tools-6.5.0-1015:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 configure linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status unpacked linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status half-configured linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status installed linux-cloud-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 configure linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status unpacked linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status half-configured linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status installed linux-headers-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 configure linux-cloud-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:50 status unpacked linux-cloud-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:50 status half-configured linux-cloud-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:50 status installed linux-cloud-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:50 configure linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status unpacked linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:50 status half-configured linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status triggers-pending linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 configure linux-headers-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status unpacked linux-headers-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-headers-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-headers-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 configure linux-image-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status unpacked linux-image-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-image-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-image-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 configure linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status unpacked linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-tools-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 configure linux-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status unpacked linux-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-tools-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 configure linux-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status unpacked linux-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 status installed linux-azure:amd64 6.5.0.1015.15~22.04.1 2024-02-24 06:02:51 trigproc linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:02:51 status half-configured linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:03:00 status installed linux-image-6.5.0-1015-azure:amd64 6.5.0-1015.15~22.04.1 2024-02-24 06:03:04 startup archives unpack 2024-02-24 06:03:04 upgrade linux-cloud-tools-common:all 5.15.0-92.102 5.15.0-97.107 2024-02-24 06:03:04 status half-configured linux-cloud-tools-common:all 5.15.0-92.102 2024-02-24 06:03:04 status unpacked linux-cloud-tools-common:all 5.15.0-92.102 2024-02-24 06:03:04 status half-installed linux-cloud-tools-common:all 5.15.0-92.102 2024-02-24 06:03:05 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:03:05 status unpacked linux-cloud-tools-common:all 5.15.0-97.107 2024-02-24 06:03:05 startup packages configure 2024-02-24 06:03:05 configure linux-cloud-tools-common:all 5.15.0-97.107 2024-02-24 06:03:05 status unpacked linux-cloud-tools-common:all 5.15.0-97.107 2024-02-24 06:03:05 status half-configured linux-cloud-tools-common:all 5.15.0-97.107 2024-02-24 06:03:05 status installed linux-cloud-tools-common:all 5.15.0-97.107 2024-02-24 06:03:05 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:03:05 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:03:06 status installed man-db:amd64 2.10.2-1 2024-02-24 06:03:15 startup archives unpack 2024-02-24 06:03:15 upgrade libssl3:amd64 3.0.2-0ubuntu1.12 3.0.2-0ubuntu1.14 2024-02-24 06:03:15 status triggers-pending libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:03:15 status half-configured libssl3:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:03:15 status unpacked libssl3:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:03:15 status half-installed libssl3:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:03:16 status unpacked libssl3:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:03:16 startup packages configure 2024-02-24 06:03:16 configure libssl3:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:03:16 status unpacked libssl3:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:03:16 status half-configured libssl3:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:03:17 status installed libssl3:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:03:17 startup packages configure 2024-02-24 06:03:17 trigproc libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:03:17 status half-configured libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:03:17 status installed libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:03:31 startup archives unpack 2024-02-24 06:03:31 upgrade linux-tools-common:all 5.15.0-92.102 5.15.0-97.107 2024-02-24 06:03:31 status half-configured linux-tools-common:all 5.15.0-92.102 2024-02-24 06:03:31 status unpacked linux-tools-common:all 5.15.0-92.102 2024-02-24 06:03:32 status half-installed linux-tools-common:all 5.15.0-92.102 2024-02-24 06:03:32 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:03:32 status unpacked linux-tools-common:all 5.15.0-97.107 2024-02-24 06:03:32 startup packages configure 2024-02-24 06:03:32 configure linux-tools-common:all 5.15.0-97.107 2024-02-24 06:03:32 status unpacked linux-tools-common:all 5.15.0-97.107 2024-02-24 06:03:32 status half-configured linux-tools-common:all 5.15.0-97.107 2024-02-24 06:03:32 status installed linux-tools-common:all 5.15.0-97.107 2024-02-24 06:03:32 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:03:32 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:03:33 status installed man-db:amd64 2.10.2-1 2024-02-24 06:03:47 startup archives unpack 2024-02-24 06:03:48 upgrade aspnetcore-targeting-pack-8.0:amd64 8.0.1-1 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:03:48 status half-configured aspnetcore-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:03:48 status unpacked aspnetcore-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:03:48 status half-installed aspnetcore-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:03:49 status unpacked aspnetcore-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:03:49 startup packages configure 2024-02-24 06:03:49 configure aspnetcore-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:03:49 status unpacked aspnetcore-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:03:49 status half-configured aspnetcore-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:03:49 status installed aspnetcore-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:02 startup archives unpack 2024-02-24 06:04:03 upgrade login:amd64 1:4.8.1-2ubuntu2.1 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:03 status half-configured login:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:04:03 status unpacked login:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:04:03 status half-installed login:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:04:03 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:04:04 status unpacked login:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:04 startup packages configure 2024-02-24 06:04:04 configure login:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:04 status unpacked login:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:04 status half-configured login:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:04 status installed login:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:04:05 startup packages configure 2024-02-24 06:04:05 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:04:05 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:04:05 status installed man-db:amd64 2.10.2-1 2024-02-24 06:04:19 startup archives unpack 2024-02-24 06:04:19 upgrade openssl:amd64 3.0.2-0ubuntu1.12 3.0.2-0ubuntu1.14 2024-02-24 06:04:19 status half-configured openssl:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:04:19 status unpacked openssl:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:04:20 status half-installed openssl:amd64 3.0.2-0ubuntu1.12 2024-02-24 06:04:20 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:04:21 status unpacked openssl:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:04:21 startup packages configure 2024-02-24 06:04:21 configure openssl:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:04:21 status unpacked openssl:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:04:21 status half-configured openssl:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:04:21 status installed openssl:amd64 3.0.2-0ubuntu1.14 2024-02-24 06:04:21 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:04:21 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:04:22 status installed man-db:amd64 2.10.2-1 2024-02-24 06:04:34 startup archives unpack 2024-02-24 06:04:34 upgrade aspnetcore-runtime-8.0:amd64 8.0.1-1 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:34 status half-configured aspnetcore-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:34 status unpacked aspnetcore-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:34 status half-installed aspnetcore-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:35 status unpacked aspnetcore-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:35 startup packages configure 2024-02-24 06:04:35 configure aspnetcore-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:35 status unpacked aspnetcore-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:35 status half-configured aspnetcore-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:35 status installed aspnetcore-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:42 startup archives unpack 2024-02-24 06:04:43 upgrade linux-libc-dev:amd64 5.15.0-92.102 5.15.0-97.107 2024-02-24 06:04:43 status half-configured linux-libc-dev:amd64 5.15.0-92.102 2024-02-24 06:04:43 status unpacked linux-libc-dev:amd64 5.15.0-92.102 2024-02-24 06:04:43 status half-installed linux-libc-dev:amd64 5.15.0-92.102 2024-02-24 06:04:44 status unpacked linux-libc-dev:amd64 5.15.0-97.107 2024-02-24 06:04:44 startup packages configure 2024-02-24 06:04:44 configure linux-libc-dev:amd64 5.15.0-97.107 2024-02-24 06:04:44 status unpacked linux-libc-dev:amd64 5.15.0-97.107 2024-02-24 06:04:44 status half-configured linux-libc-dev:amd64 5.15.0-97.107 2024-02-24 06:04:45 status installed linux-libc-dev:amd64 5.15.0-97.107 2024-02-24 06:04:50 startup archives unpack 2024-02-24 06:04:51 upgrade dotnet-apphost-pack-8.0:amd64 8.0.1-1 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:51 status half-configured dotnet-apphost-pack-8.0:amd64 8.0.1-1 2024-02-24 06:04:51 status unpacked dotnet-apphost-pack-8.0:amd64 8.0.1-1 2024-02-24 06:04:51 status half-installed dotnet-apphost-pack-8.0:amd64 8.0.1-1 2024-02-24 06:04:51 status unpacked dotnet-apphost-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:51 startup packages configure 2024-02-24 06:04:51 configure dotnet-apphost-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:51 status unpacked dotnet-apphost-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:51 status half-configured dotnet-apphost-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:51 status installed dotnet-apphost-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:57 startup archives unpack 2024-02-24 06:04:57 install liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 status triggers-pending libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:04:57 status half-installed liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 status unpacked liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 install liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 status half-installed liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 status unpacked liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 install liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:57 status half-installed liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:58 status unpacked liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:58 upgrade dotnet-runtime-8.0:amd64 8.0.1-1 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:58 status half-configured dotnet-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:58 status unpacked dotnet-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:58 status half-installed dotnet-runtime-8.0:amd64 8.0.1-1 2024-02-24 06:04:59 status unpacked dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:59 startup packages configure 2024-02-24 06:04:59 configure liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status unpacked liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status half-configured liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status installed liblttng-ust-common1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 configure liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status unpacked liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status half-configured liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status installed liblttng-ust-ctl5:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 configure liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status unpacked liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status half-configured liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 status installed liblttng-ust1:amd64 2.13.1-1ubuntu1 2024-02-24 06:04:59 configure dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:59 status unpacked dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:59 status half-configured dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:59 status installed dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:04:59 trigproc libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:04:59 status half-configured libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:04:59 status installed libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:04 startup archives unpack 2024-02-24 06:05:05 upgrade libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.1 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 status half-configured libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:05 status unpacked libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:05 status half-installed libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:05 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:05:05 status unpacked libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 startup packages configure 2024-02-24 06:05:05 configure libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 status unpacked libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 status half-configured libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 status installed libldap-common:all 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:05 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:05:05 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:05:05 status installed man-db:amd64 2.10.2-1 2024-02-24 06:05:10 startup archives unpack 2024-02-24 06:05:10 upgrade bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.1 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status half-configured bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status unpacked bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status half-installed bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:05:10 status unpacked bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 upgrade bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.1 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status half-configured bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status unpacked bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status half-installed bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status unpacked bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 upgrade bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.1 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status triggers-pending libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:10 status half-configured bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status unpacked bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status half-installed bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.1 2024-02-24 06:05:10 status unpacked bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 startup packages configure 2024-02-24 06:05:10 configure bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status unpacked bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status half-configured bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status installed bind9-libs:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 configure bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status unpacked bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status half-configured bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status installed bind9-host:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 configure bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status unpacked bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status half-configured bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 status installed bind9-dnsutils:amd64 1:9.18.18-0ubuntu0.22.04.2 2024-02-24 06:05:10 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:05:10 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:05:10 status installed man-db:amd64 2.10.2-1 2024-02-24 06:05:10 trigproc libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:10 status half-configured libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:10 status installed libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:14 startup archives unpack 2024-02-24 06:05:14 upgrade libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.1 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 status triggers-pending libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:14 status half-configured libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:14 status unpacked libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:14 status half-installed libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.1 2024-02-24 06:05:14 status unpacked libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 startup packages configure 2024-02-24 06:05:14 configure libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 status unpacked libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 status half-configured libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 status installed libldap-2.5-0:amd64 2.5.16+dfsg-0ubuntu0.22.04.2 2024-02-24 06:05:14 trigproc libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:14 status half-configured libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:14 status installed libc-bin:amd64 2.35-0ubuntu3.6 2024-02-24 06:05:18 startup archives unpack 2024-02-24 06:05:18 upgrade passwd:amd64 1:4.8.1-2ubuntu2.1 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:18 status half-configured passwd:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:05:18 status unpacked passwd:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:05:18 status half-installed passwd:amd64 1:4.8.1-2ubuntu2.1 2024-02-24 06:05:18 status triggers-pending man-db:amd64 2.10.2-1 2024-02-24 06:05:18 status unpacked passwd:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:18 startup packages configure 2024-02-24 06:05:18 configure passwd:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:18 status unpacked passwd:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:19 status half-configured passwd:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:19 status installed passwd:amd64 1:4.8.1-2ubuntu2.2 2024-02-24 06:05:19 startup packages configure 2024-02-24 06:05:19 trigproc man-db:amd64 2.10.2-1 2024-02-24 06:05:19 status half-configured man-db:amd64 2.10.2-1 2024-02-24 06:05:19 status installed man-db:amd64 2.10.2-1 2024-02-24 06:05:23 startup archives unpack 2024-02-24 06:05:23 upgrade dotnet-targeting-pack-8.0:amd64 8.0.1-1 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:23 status half-configured dotnet-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:05:23 status unpacked dotnet-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:05:23 status half-installed dotnet-targeting-pack-8.0:amd64 8.0.1-1 2024-02-24 06:05:24 status unpacked dotnet-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:24 startup packages configure 2024-02-24 06:05:24 configure dotnet-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:24 status unpacked dotnet-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:24 status half-configured dotnet-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:24 status installed dotnet-targeting-pack-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-24 06:05:27 startup archives unpack 2024-02-24 06:05:27 upgrade netstandard-targeting-pack-2.1:amd64 6.0.126-0ubuntu1~22.04.1 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:27 status half-configured netstandard-targeting-pack-2.1:amd64 6.0.126-0ubuntu1~22.04.1 2024-02-24 06:05:27 status unpacked netstandard-targeting-pack-2.1:amd64 6.0.126-0ubuntu1~22.04.1 2024-02-24 06:05:27 status half-installed netstandard-targeting-pack-2.1:amd64 6.0.126-0ubuntu1~22.04.1 2024-02-24 06:05:28 status unpacked netstandard-targeting-pack-2.1:amd64 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:28 startup packages configure 2024-02-24 06:05:28 configure netstandard-targeting-pack-2.1:amd64 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:28 status unpacked netstandard-targeting-pack-2.1:amd64 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:28 status half-configured netstandard-targeting-pack-2.1:amd64 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:28 status installed netstandard-targeting-pack-2.1:amd64 6.0.127-0ubuntu1~22.04.1 2024-02-24 06:05:31 startup packages remove 2024-02-24 06:05:31 status installed dotnet-runtime-deps-8.0:amd64 8.0.1-1 2024-02-24 06:05:32 remove dotnet-runtime-deps-8.0:amd64 8.0.1-1 2024-02-24 06:05:32 status half-configured dotnet-runtime-deps-8.0:amd64 8.0.1-1 2024-02-24 06:05:32 status half-installed dotnet-runtime-deps-8.0:amd64 8.0.1-1 2024-02-24 06:05:32 status config-files dotnet-runtime-deps-8.0:amd64 8.0.1-1 2024-02-24 06:05:32 status not-installed dotnet-runtime-deps-8.0:amd64 2024-02-24 06:05:32 startup packages configure 2024-02-25 00:30:48 startup archives unpack 2024-02-25 00:30:48 upgrade dotnet-sdk-8.0:amd64 8.0.101-1 8.0.100-1 2024-02-25 00:30:48 status half-configured dotnet-sdk-8.0:amd64 8.0.101-1 2024-02-25 00:30:48 status unpacked dotnet-sdk-8.0:amd64 8.0.101-1 2024-02-25 00:30:48 status half-installed dotnet-sdk-8.0:amd64 8.0.101-1 2024-02-25 00:30:59 status unpacked dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:30:59 startup packages configure 2024-02-25 00:30:59 configure dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:30:59 status unpacked dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:30:59 status half-configured dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:30:59 status installed dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:31:24 startup archives unpack 2024-02-25 00:31:24 upgrade dotnet-sdk-8.0:amd64 8.0.100-1 8.0.200-1 2024-02-25 00:31:24 status half-configured dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:31:24 status unpacked dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:31:24 status half-installed dotnet-sdk-8.0:amd64 8.0.100-1 2024-02-25 00:31:35 status unpacked dotnet-sdk-8.0:amd64 8.0.200-1 2024-02-25 00:31:35 startup packages configure 2024-02-25 00:31:35 configure dotnet-sdk-8.0:amd64 8.0.200-1 2024-02-25 00:31:35 status unpacked dotnet-sdk-8.0:amd64 8.0.200-1 2024-02-25 00:31:35 status half-configured dotnet-sdk-8.0:amd64 8.0.200-1 2024-02-25 00:31:35 status installed dotnet-sdk-8.0:amd64 8.0.200-1 2024-02-25 00:31:59 startup archives unpack 2024-02-25 00:31:59 upgrade dotnet-host:amd64 8.0.1-1 8.0.2-1 2024-02-25 00:31:59 status half-configured dotnet-host:amd64 8.0.1-1 2024-02-25 00:31:59 status unpacked dotnet-host:amd64 8.0.1-1 2024-02-25 00:31:59 status half-installed dotnet-host:amd64 8.0.1-1 2024-02-25 00:31:59 status unpacked dotnet-host:amd64 8.0.2-1 2024-02-25 00:31:59 upgrade dotnet-hostfxr-8.0:amd64 8.0.1-1 8.0.2-1 2024-02-25 00:31:59 status half-configured dotnet-hostfxr-8.0:amd64 8.0.1-1 2024-02-25 00:31:59 status unpacked dotnet-hostfxr-8.0:amd64 8.0.1-1 2024-02-25 00:31:59 status half-installed dotnet-hostfxr-8.0:amd64 8.0.1-1 2024-02-25 00:31:59 status unpacked dotnet-hostfxr-8.0:amd64 8.0.2-1 2024-02-25 00:31:59 install dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:31:59 status half-installed dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:31:59 status unpacked dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:31:59 upgrade dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 8.0.2-1 2024-02-25 00:31:59 status half-configured dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-25 00:31:59 status unpacked dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-25 00:31:59 status half-installed dotnet-runtime-8.0:amd64 8.0.2-0ubuntu1~22.04.1 2024-02-25 00:32:01 status unpacked dotnet-runtime-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 startup packages configure 2024-02-25 00:32:01 configure dotnet-host:amd64 8.0.2-1 2024-02-25 00:32:01 status unpacked dotnet-host:amd64 8.0.2-1 2024-02-25 00:32:01 status half-configured dotnet-host:amd64 8.0.2-1 2024-02-25 00:32:01 status installed dotnet-host:amd64 8.0.2-1 2024-02-25 00:32:01 configure dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status unpacked dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status half-configured dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status installed dotnet-runtime-deps-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 configure dotnet-hostfxr-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status unpacked dotnet-hostfxr-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status half-configured dotnet-hostfxr-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status installed dotnet-hostfxr-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 configure dotnet-runtime-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status unpacked dotnet-runtime-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status half-configured dotnet-runtime-8.0:amd64 8.0.2-1 2024-02-25 00:32:01 status installed dotnet-runtime-8.0:amd64 8.0.2-1 ```
leecow commented 8 months ago

I've confirmed that the packages.microsoft.com endpoint for 20.04 and 22.04 appear to be stable since the 2/13 releases.

NikolaMilosavljevic commented 8 months ago

It seems that unattended-upgrade process is upgrading Microsoft packages with native Ubuntu packages. This won't work well, as Ubuntu packages install content to a different location. You would end-up with mismatched packages and broken .NET installation.

This issue tracks the scenarios and offers workarounds and fixes: https://github.com/dotnet/core/issues/7699

One solution is to prioritize PMC repository using APT preferences file.

appiclogics commented 7 months ago

For some one still facing the issue:

sudo apt remove dotnet*
sudo apt remove aspnetcore*
sudo apt remove netstandard*
sudo rm /etc/apt/sources.list.d/microsoft-prod.list
sudo apt update
sudo apt install dotnet-sdk-8.0
richlander commented 7 months ago

FYI on our plan for Ubuntu 24.04 packages

https://github.com/dotnet/core/discussions/9258

eduherminio commented 7 months ago

Thanks @richlander. This is for sure not an optimal solution (I'm the first one that had to jump into Microsoft feed packages because latest ones weren't available in Ubuntu archive), but it's better than the duality of packages coexisting that we have now, and that cause issues like this one.

richlander commented 7 months ago

Understood. Please file issues when you see them @eduherminio. Feel free to at-mention me. I'm not always perfect, but I do try and stay on top of my notifications and help where I can.

SWood-BGS commented 6 months ago

I had the same issue and removed every dotnet package and removed microsoft-prod.list. Now I am having package deps issue: 'dotnet-runtime-deps-8.0 : Depends: libicu but it is not installable.' Any help would be appreciated. I can't run my core API...

Distributor ID: Ubuntu
Description:    Ubuntu Noble Numbat (development branch)
Release:        24.04
Codename:       noble
sudo apt install dotnet-sdk-8.0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 dotnet-runtime-deps-8.0 : Depends: libicu but it is not installable or
                                    libicu72 but it is not installable or
                                    libicu71 but it is not installable or
                                    libicu70 but it is not installable or
                                    libicu69 but it is not installable or
                                    libicu68 but it is not installable or
                                    libicu67 but it is not installable or
                                    libicu66 but it is not installable or
                                    libicu65 but it is not installable or
                                    libicu63 but it is not installable or
                                    libicu60 but it is not installable or
                                    libicu57 but it is not installable or
                                    libicu55 but it is not installable or
                                    libicu52 but it is not installable
E: Unable to correct problems, you have held broken packages.
richlander commented 6 months ago

I just tried it on raw metal and in Docker w/o this issue.

What I see: https://gist.github.com/richlander/c35678fc5b82c194bdf29ea633b6073b

On a Jammy system, I have this. It would be good to double check that you do not (on Noble).

root@c3a484fb55e2:~# cat /etc/os-release | head -n 1
PRETTY_NAME="Ubuntu 22.04.4 LTS"
root@c3a484fb55e2:~# cat /etc/apt/sources.list.d/microsoft-prod.list
deb [arch=amd64,arm64,armhf] https://packages.microsoft.com/ubuntu/22.04/prod jammy main

Did you upgrade?

SWood-BGS commented 6 months ago

I just tried it on raw metal and in Docker w/o this issue.

What I see: https://gist.github.com/richlander/c35678fc5b82c194bdf29ea633b6073b

On a Jammy system, I have this. It would be good to double check that you do not (on Noble).

root@c3a484fb55e2:~# cat /etc/os-release | head -n 1
PRETTY_NAME="Ubuntu 22.04.4 LTS"
root@c3a484fb55e2:~# cat /etc/apt/sources.list.d/microsoft-prod.list
deb [arch=amd64,arm64,armhf] https://packages.microsoft.com/ubuntu/22.04/prod jammy main

Did you upgrade?

Thanks for responding. yes I did upgrade to 24.04. Do I still need the "microsoft-prod.list"?

cat /etc/os-release | head -n 1
PRETTY_NAME="Ubuntu 24.04 LTS"
cat /etc/apt/sources.list.d/microsoft-prod.list
cat: /etc/apt/sources.list.d/microsoft-prod.list: No such file or directory
SWood-BGS commented 6 months ago

I had the same issue and removed every dotnet package and removed microsoft-prod.list. Now I am having package deps issue: 'dotnet-runtime-deps-8.0 : Depends: libicu but it is not installable.' Any help would be appreciated. I can't run my core API...

Distributor ID: Ubuntu
Description:    Ubuntu Noble Numbat (development branch)
Release:        24.04
Codename:       noble
sudo apt install dotnet-sdk-8.0
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 dotnet-runtime-deps-8.0 : Depends: libicu but it is not installable or
                                    libicu72 but it is not installable or
                                    libicu71 but it is not installable or
                                    libicu70 but it is not installable or
                                    libicu69 but it is not installable or
                                    libicu68 but it is not installable or
                                    libicu67 but it is not installable or
                                    libicu66 but it is not installable or
                                    libicu65 but it is not installable or
                                    libicu63 but it is not installable or
                                    libicu60 but it is not installable or
                                    libicu57 but it is not installable or
                                    libicu55 but it is not installable or
                                    libicu52 but it is not installable
E: Unable to correct problems, you have held broken packages.

When will the native feed for dotnet-sdk-8 support libicu74?

apt search libicu
Sorting... Done
Full Text Search... Done
icu-devtools/noble 74.2-1ubuntu3 amd64
  Development utilities for International Components for Unicode

libicu-dev/noble 74.2-1ubuntu3 amd64
  Development files for International Components for Unicode

libicu4j-4.4-java/noble 4.4.2.2-4 all
  Library for Unicode support and internationalization

libicu4j-java/noble 73.2-1 all
  Library for Unicode support and internationalization

libicu74/noble,now 74.2-1ubuntu3 amd64 [installed]
  International Components for Unicode
theDiverDK commented 5 months ago

many thanks to @appiclogics !! similar thing happen to me today in vultr vm, site was running fine, after a commit been pushed to the server, which then publish & restart server, it ends with error. when type dotnet --version it only say this:

You must install or update .NET to run this application.

App: /usr/share/dotnet/sdk/8.0.200/dotnet.dll
Architecture: x64
Framework: 'Microsoft.NETCore.App', version '8.0.2' (x64)
.NET location: /usr/share/dotnet/

No frameworks were found.

Learn more:
https://aka.ms/dotnet/app-launch-failed

To install missing framework, download:
https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=8.0.2&arch=x64&rid=linux-x64&os=ubuntu.22.04

It works, thanks :-)

aaronamm commented 5 months ago

For those who found the same issue, clean remove and reinstall as @appiclogics suggestion can fix the problem. Thanks @appiclogics .

BTW, this problem has just happened to me after I have Windows updated. I use Ubuntu 22.04.3 LTS WSL2.

leontev-vyacheslav commented 5 months ago

I had the same issue. I use Kubuntu 24.04

Leonid-Vizel commented 5 months ago

I guess it's happening because of unattended upgrades. This may help those using Ubuntu: 1) Run sudo nano /etc/apt/apt.conf.d/50unattended-upgrades. 2) Find Unattended-Upgrade::Package-Blacklist. 3) Insert the following after it: "dotnet.*"; "aspnetcore.*";

This way, APT will not update dotnet without your command. However, be aware that now security patches released by the dotnet team will not be automatically installed.

This is my interpretation of this answer on this issue.

Corrected it on my servers. We'll see if it helps when 8.0.6 is released.

SWood-BGS commented 5 months ago

I ended up installing via snap. I'm on a Digital Ocean server BTW.

emlautarom1 commented 2 months ago

Facing the same issue on Fedora 39

atrauzzi commented 3 weeks ago

Just had this start happening to me on Fedora 40.