Uninstall Java from Ubuntu using APT Command
If you want to remove the Java package from Ubuntu you can make use of the apt-get remove command followed by package name,
- Open Terminal
- Type sudo apt-get autoremove openjdk-8-jre package-name example: openjdk-8-jre
- When prompted, Do you want to continue? [Y/n] type yes or y
- Let's try if Java got installed,
Processing triggers for libc-bin (2.31-0ubuntu9) ... $ java -version Command 'java' not found, but can be installed with: apt install openjdk-11-jre-headless # version 11.0.8+10-0ubuntu1~20.04, or apt install default-jre # version 2:1.11-72 apt install openjdk-13-jre-headless # version 13.0.3+3-1ubuntu2 apt install openjdk-14-jre-headless # version 14.0.1+7-1ubuntu1 apt install openjdk-8-jre-headless # version 8u265-b01-0ubuntu2~20.04
$ sudo apt-get autoremove openjdk-8-jre
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
adwaita-icon-theme at-spi2-core ca-certificates-java fontconfig fonts-dejavu-extra gtk-update-icon-cache
hicolor-icon-theme humanity-icon-theme java-common libatk-bridge2.0-0 libatk-wrapper-java libatk-wrapper-java-jni
libatk1.0-0 libatk1.0-data libatspi2.0-0 libavahi-client3 libavahi-common-data libavahi-common3 libcairo-gobject2
libcairo2 libcups2 libdatrie1 libgail-common libgail18 libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-bin
libgdk-pixbuf2.0-common libgif7 libgraphite2-3 libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libharfbuzz0b libjbig0
libjpeg-turbo8 libjpeg8 liblcms2-2 libnspr4 libnss3 libpango-1.0-0 libpangocairo-1.0-0 libpangoft2-1.0-0
libpcsclite1 libpixman-1-0 librsvg2-2 librsvg2-common libthai-data libthai0 libtiff5 libwebp6 libxcb-render0
libxcb-shm0 libxcursor1 openjdk-8-jre-headless ubuntu-mono
Use 'sudo apt autoremove' to remove them.
The following packages will be REMOVED:
openjdk-8-jre
0 upgraded, 0 newly installed, 1 to remove and 163 not upgraded.
After this operation, 287 kB disk space will be freed.
Do you want to continue? [Y/n] yes
(Reading database ... 46202 files and directories currently installed.)
Removing openjdk-8-jre:amd64 (8u265-b01-0ubuntu2~20.04) ...
Processing triggers for hicolor-icon-theme (0.17-2) ...
Processing triggers for libc-bin (2.31-0ubuntu9) ...
Processing triggers for mime-support (3.64ubuntu1) ...
.
.
Removing libcairo2:amd64 (1.16.0-4ubuntu1) ...
Removing libthai0:amd64 (0.1.28-3) ...
Removing libdatrie1:amd64 (0.2.12-3) ...
Removing libgdk-pixbuf2.0-0:amd64 (2.40.0+dfsg-3) ...
Removing libgdk-pixbuf2.0-common (2.40.0+dfsg-3) ...
Removing libharfbuzz0b:amd64 (2.6.4-1ubuntu4) ...
Removing libgraphite2-3:amd64 (1.3.13-11build1) ...
Removing libtiff5:amd64 (4.1.0+git191117-2build1) ...
Removing libjbig0:amd64 (2.1-3.1build1) ...
Removing libjpeg8:amd64 (8c-2ubuntu8) ...
Removing libjpeg-turbo8:amd64 (2.0.3-0ubuntu1.20.04.1) ...
Removing libnss3:amd64 (2:3.49.1-1ubuntu1.5) ...
Removing libnspr4:amd64 (2:4.25-1) ...
Removing libpixman-1-0:amd64 (0.38.4-0ubuntu1) ...
Removing libthai-data (0.1.28-3) ...
Removing libwebp6:amd64 (0.6.1-2) ...
Removing libxcb-render0:amd64 (1.14-2) ...
Removing libxcb-shm0:amd64 (1.14-2) ...
Processing triggers for man-db (2.9.1-1) ...
Processing triggers for ca-certificates (20190110ubuntu1) ...
Updating certificates in /etc/ssl/certs...
0 added, 0 removed; done.
Running hooks in /etc/ca-certificates/update.d...
updates of cacerts keystore disabled.
done.
More Posts related to Linux,
- Rename a directory using Linux/Unix command
- ls command to list only directories
- How to Restart or Reload Nginx Server Service on Linux
- 3 ways to clear screen on Linux Terminal
- ls command: sort files by name alphabetically A-Z or Z-A [Linux/Unix/macOS/Bash]
- Copy entire directory using Terminal Command [Linux, Mac, Bash]
- Fix: sudo: unable to open Read-only file system
- Create Hidden File or Directory using Shell Command
- Command to know the installed Debian version?
- The Date Command and its usage [Linux - Unix - macOS]
- Fix - bash: man: command not found
- How to tar.gz a directory or folder Command
- How to Display content of a file in Terminal Screen?
- How to change bash terminal prompt string and color
- Sort ls command by last modified date and time
- Execute .bin and .run file Ubuntu Linux
- zsh hello world example
- How to check uptime of Linux/Unix/macOS system/server using console command?
- [Fix] Linux - bash: useradd: command not found
- Command to check Last Login or Reboot History of Users and TTYs
- How to install and Configure sar sysstat tools in Ubuntu Linux
- How to use SCP Command to Copy Directory
- Linux Remove or Delete Files and Directories using Terminal Commands
- How to connect to SSH port other than default 22
- Install OpenSSL on Linux/Ubuntu
More Posts:
- Copy file from a remote server to current local directory system using SCP command - HowTos
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting - Java
- How to extend retiring SharePoint 2010 Workflows and continue with Office 365 - SharePoint
- How to add hint text in bootstrap input text field and text area - Bootstrap
- How to Subscribe to AWS SNS Topic [SMS/Email/Lambda] via CLI - AWS
- How to create a Git Project in Eclipse (Step-by-step) - Eclipse
- Install Oh My Zsh on Ubuntu Docker complete steps - Ubuntu
- Selenium Maven Dependency for pom.xml - Java