You are on page 1of 1

How to install BURAI1.3.2 (Quantum Espresso GUI) in Ubuntu 18.04/16.

04

First go to the following link and download BURAI1.3.2 and Java Package

www.tiny.cc/cloud-files

or

You can download them from the official site which are

For BURAI
https://nisihara.wixsite.com/burai/resources

For Java
https://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html

I hope you have downloaded both the files now open the terminal and type these commands

$ sudo apt-get purge openjdk*


$ sudo apt autoremove
$ sudo apt-get update

Above commands will completely remove the existing virsion of Java from your ubuntu.
Installation of JAVA in /opt/jdk directory

$ sudo mkdir -p /opt/jdk

$ sudo cp ~/Downloads/jdk-8u202-linux-x64.tar.gz /opt/jdk/

$ cd /opt/jdk

$ sudo tar zxvf jdk-8u202-linux-x64.tar.gz

$ sudo update-alternatives --install /usr/bin/java java /opt/jdk/jdk1.8.0_202/bin/java 100

$ sudo update-alternatives --install /usr/bin/javac javac /opt/jdk/jdk1.8.0_202/bin/javac 100

Installation of BURAI in /usr/local/bin directory

$ sudo cp ~/Downloads/BURAI1.3.2_Linux.tgz /usr/local/bin/


$ cd /usr/local/bin
$ sudo tar zxvf BURAI1.3.2_Linux.tgz
$ cd BURAI1.3.2
$ sudo ./makeLauncher.sh

You might also like