Horje
uninstall java from linux (debian) Code Example
uninstall java from linux (debian)
dpkg-query -W -f='${binary:Package}\n' | grep -E -e '^(ia32-)?(sun|oracle)-java' -e '^openjdk-' -e '^icedtea' -e '^(default|gcj)-j(re|dk)' -e '^gcj-(.*)-j(re|dk)' -e '^java-common' | xargs sudo apt-get -y remove
sudo apt-get -y autoremove
uninstall java from linux (debian)
sudo bash -c 'ls -d /home/*/.java' | xargs sudo rm -rf
uninstall java from linux (debian)
sudo rm -rf /usr/lib/jvm/* 
uninstall java from linux (debian)
dpkg -l | grep ^rc | awk '{print($2)}' | xargs sudo apt-get -y purge
uninstall java from linux (debian)
for g in ControlPanel java java_vm javaws jcontrol jexec keytool mozilla-javaplugin.so orbd pack200 policytool rmid rmiregistry servertool tnameserv unpack200 appletviewer apt extcheck HtmlConverter idlj jar jarsigner javac javadoc javah javap jconsole jdb jhat jinfo jmap jps jrunscript jsadebugd jstack jstat jstatd native2ascii rmic schemagen serialver wsgen wsimport xjc xulrunner-1.9-javaplugin.so; do sudo update-alternatives --remove-all $g; done




Shell

Related
bash view specific columns from vcf file Code Example bash view specific columns from vcf file Code Example
how to install ruby on rails with curl Code Example how to install ruby on rails with curl Code Example
how to show lines on cat command Code Example how to show lines on cat command Code Example
minikube memory size Code Example minikube memory size Code Example
set up vim in zsh Code Example set up vim in zsh Code Example

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