Monday, December 16, 2019

Installing dotnet core SDK in Ubuntu using snap

To view currently supported version of dotnet-dsk, do:
$: sudo snap install dotnet-sdk

Installing latest stable:
$: sudo snap install dotnet-sdk

dotnet will not be available in the command line as snap creates dotnet-sdk.dotnet. Let us create an alias to make it convenient:

$: sudo snap alias dotnet-sdk.dotnet dotnet

No comments:

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04

Configuring TUN/TAP virtual network interface for use with QEMU on Xubuntu 24.04 I am planning to run qemu-system-ppc to play around QEMU ...