Horje
how to uninstall jdk java completely from ubuntu linux Code Example
how to uninstall jdk java completely from ubuntu linux
#If you want to remove Openjdk only, execute the following command on terminal:
sudo apt-get remove openjdk*

#If you want to remove Openjdk along with dependencies, execute the following command on terminal:
sudo apt-get remove --auto-remove openjdk*

#If you want to remove Openjdk and it’s configuration files, execute the following command on terminal:
sudo apt-get purge openjdk*

#If you want to remove Openjdk along with dependencies and it’s configuration files, execute the following command on terminal:
sudo apt-get purge --auto-remove openjdk*
  
#don't forgive to give a thumbs up




Shell

Related
install yarn ubuntu 20.04 Code Example install yarn ubuntu 20.04 Code Example
how to stop port 3000 in windows Code Example how to stop port 3000 in windows Code Example
restart apache Code Example restart apache Code Example
zsh compinit: insecure directories, run compaudit for list. Code Example zsh compinit: insecure directories, run compaudit for list. Code Example
Amazon Linux 2 AMI install docker Code Example Amazon Linux 2 AMI install docker Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
16