0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

.Net: Ubuntu 22.04 で dotnet 2.2 を使う方法

Posted at

次の環境で確認しました。

$ uname -a
Linux shimizu 5.15.0-48-generic #54-Ubuntu SMP Fri Aug 26 13:26:29 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

$ dotnet --version
2.2.207

次のようなエラーが出ます。

$ dotnet run
No usable version of libssl was found
中止 (コアダンプ)

これは、openssl 1.0 がないために起こるエラーです。

必要なライブラリーのダウンロード

wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl1.0/libssl1.0.0_1.0.2n-1ubuntu5.10_amd64.deb

インストール

sudo dpkg -i libssl1.0.0_1.0.2n-1ubuntu5.10_amd64.deb
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?