Star Hype News.

Premium celebrity moments with standout appeal.

news

How to start IntelliJ?

By Sophia Hammond

I have installed JDK8 from Oracle and IntelliJ using this tutorial; Good Intellij installation on ubuntu 15

I am on step #4 where I am supposed to "Start IntelliJ to configure and create a desktop entry". How do I start it?

1

4 Answers

go to the directory through the terminal where the installation files were extracted and

cd bin
./idea.sh

Add the bin folder to your path variable. Your path variable can be edited with sudo vi /etc/environment.
As with all sudo commands, care should be taken. Think before you write and don't just copy what i wrote.

in /etc/environment, you should see PATH="/usr/local/sbin:/usr/local/bin:[more path locations]"
in /etc/environment, Add the following line after the lasth path, before the double quote that ends the variable:
:/path/to/intelliJ/bin/folder.
In the case of the linked guide you would have to add: :/opt/idea-IC/bin.

Then you have to log out (or reboot) for the changes you made to take effect. Afterwards you should be able to start intelliJ by running the command idea.sh

4

Go to the in the idea-ic extracted folder idea/bin(using cd command like cd /idea/bin) and then run the command:

To run in the background: ./idea.sh & (with the if you close the terminal then IntelliJ still run )

To run without background: ./idea.sh (with the if you close the terminal then IntelliJ also exit )

for your question, I will tell you how to install IntelliJ step by step which I followed.

  1. first download

    this is for Linux version

  2. Then Extract .gz file

sudo tar -xzf {package name}.tar.gz -C /opt

make sure to add your package name

x: This tells tar to extract the files.

v: This option will list all of the files one by one in the archive. The “v” stands for “verbose.”

f: This option tells tar that you are going to give it a file name to work with.

  1. go to the bin folder in the install directory

cd ./{package name}/bin

  1. install by terminal

./idea.sh

  1. then install it as normal software

There also other ways to install IntelliJ follow

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy