Hello everyone I have JDK 8 installation file but I don,t know how to install it offline. could you help me?
Asked
Active
Viewed 595 times
1 Answers
0
Assuming you have the installation file in .rpm format(that oracle jdk ships with)
sudo apt-get install alien
alien <filename>.rpm
dpkg -i <filename>.deb
Note - Alien is the a package that converts rpm to deb
Or what I would actually suggest you to do is
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
And follow the onscreen instructions. 'Strikingly simple' of-course
Sorry, you asked for offline instructions

Sagar B Hathwar
- 141
-
I,m sorry but I forgot to say that I have been downloaded a folder which contains JDK 8 installation not a single file – FSh Jun 15 '16 at 21:49