Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

uninstall .net ubuntu

sudo apt --installed list | grep "dotnet"

# sample result of this command
dotnet-apphost-pack-3.0    dotnet-hostfxr-3.1         dotnet-runtime-deps-5.0
dotnet-apphost-pack-3.1    dotnet-hostfxr-5.0         dotnet-sdk-5.0
dotnet-apphost-pack-5.0    dotnet-runtime-5.0         dotnet-targeting-pack-3.0
dotnet-host                dotnet-runtime-deps-2.2    dotnet-targeting-pack-3.1
dotnet-hostfxr-2.2         dotnet-runtime-deps-3.0    dotnet-targeting-pack-5.0
dotnet-hostfxr-3.0         dotnet-runtime-deps-3.1 

$ sudo apt-get remove --purge dotnet-*3*
Comment

un innstall dot net ubuntu

# get installed dotnet information
dotnet --info
# remove sdk and runtime based on installed version ( in my case 5.0 )
sudo apt remove --purge dotnet-sdk-5.0
sudo apt remove --purge dotnet-runtime-5.0
Comment

PREVIOUS NEXT
Code Example
Shell :: how to check bluetooth driver version in ubuntu 
Shell :: how to uninstall git in ubuntu 18.04 
Shell :: ubuntu check ssh login log 
Shell :: uninstall lightdm 
Shell :: git add access rights for script 
Shell :: install git gui ubuntu 
Shell :: iis stop 
Shell :: how change remote origin git 
Shell :: uninstall node from linux debian 
Shell :: install compass mongodb ubuntu 
Shell :: remove iptables rule 
Shell :: check flutter version of project from command line 
Shell :: ubuntu install codecs 
Shell :: linux recursively find directory by name 
Shell :: add credentials to git 
Shell :: kill vlc in linux 
Shell :: install angular bootstrap 
Shell :: remove microsoft edge from ubuntu 
Shell :: install wireshark on ubuntu 
Shell :: git search history for file 
Shell :: apache2 reload 
Shell :: remove a folder from git tracking 
Shell :: duing push error: RPC failed; curl 18 transfer closed with outstanding read data remaining send-pack: unexpected disconnect while reading sideband packet 
Shell :: remove notepad plus plus ubuntu 
Shell :: install perl ubuntu 
Shell :: ubuntu get folder size 
Shell :: locate command not found 
Shell :: ubuntu install certbot 
Shell :: how to find and replace a string in a file using shell script 
Shell :: dd show progress 
ADD CONTENT
Topic
Content
Source link
Name
4+8 =