How to start IntelliJ?
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?
intellij
add a comment |
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?
intellij
Inside the directory containing IntelliJ, there will be abin
folder in which you will find a.sh
script you can run to start it.
– Android Dev
Aug 21 '17 at 12:34
add a comment |
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?
intellij
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?
intellij
intellij
asked Aug 21 '17 at 12:25
SoloSolo
3482717
3482717
Inside the directory containing IntelliJ, there will be abin
folder in which you will find a.sh
script you can run to start it.
– Android Dev
Aug 21 '17 at 12:34
add a comment |
Inside the directory containing IntelliJ, there will be abin
folder in which you will find a.sh
script you can run to start it.
– Android Dev
Aug 21 '17 at 12:34
Inside the directory containing IntelliJ, there will be a
bin
folder in which you will find a .sh
script you can run to start it.– Android Dev
Aug 21 '17 at 12:34
Inside the directory containing IntelliJ, there will be a
bin
folder in which you will find a .sh
script you can run to start it.– Android Dev
Aug 21 '17 at 12:34
add a comment |
3 Answers
3
active
oldest
votes
go to the directory through the terminal where the installation files were extracted and
cd bin
./idea.sh
add a comment |
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
Could you please explain why it's necessary to add IntelliJ to thePATH
environment variable? What's the adavantage or difference compared to a direct invocation?
– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
add a comment |
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 )
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f948319%2fhow-to-start-intellij%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
go to the directory through the terminal where the installation files were extracted and
cd bin
./idea.sh
add a comment |
go to the directory through the terminal where the installation files were extracted and
cd bin
./idea.sh
add a comment |
go to the directory through the terminal where the installation files were extracted and
cd bin
./idea.sh
go to the directory through the terminal where the installation files were extracted and
cd bin
./idea.sh
answered Nov 11 '17 at 17:46
Thilanka Deshan-minion91Thilanka Deshan-minion91
3411311
3411311
add a comment |
add a comment |
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
Could you please explain why it's necessary to add IntelliJ to thePATH
environment variable? What's the adavantage or difference compared to a direct invocation?
– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
add a comment |
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
Could you please explain why it's necessary to add IntelliJ to thePATH
environment variable? What's the adavantage or difference compared to a direct invocation?
– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
add a comment |
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
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
answered Nov 11 '17 at 17:39
Nick DewitteNick Dewitte
4817
4817
Could you please explain why it's necessary to add IntelliJ to thePATH
environment variable? What's the adavantage or difference compared to a direct invocation?
– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
add a comment |
Could you please explain why it's necessary to add IntelliJ to thePATH
environment variable? What's the adavantage or difference compared to a direct invocation?
– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
Could you please explain why it's necessary to add IntelliJ to the
PATH
environment variable? What's the adavantage or difference compared to a direct invocation?– David Foerster
Nov 11 '17 at 17:56
Could you please explain why it's necessary to add IntelliJ to the
PATH
environment variable? What's the adavantage or difference compared to a direct invocation?– David Foerster
Nov 11 '17 at 17:56
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
The advantage to adding it to the path variable is that you can call it from anywhere without having to enter the full path every time. - Unless i'm mistaken?
– Nick Dewitte
Nov 12 '17 at 0:59
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
That's correct, but considering that OP's aim is to to follow the tutorial which suggests to start the application once which will then set up an application starter, I don't find your approach useful enough to justify the additional complexity. Hence the down-vote.
– David Foerster
Nov 12 '17 at 10:37
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
This comment helped me, as the application starter auto setup didn't work.
– Steven Laidlaw
Dec 12 '18 at 3:07
add a comment |
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 )
add a comment |
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 )
add a comment |
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 )
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 )
answered Feb 7 at 11:18
sulekhasulekha
1
1
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f948319%2fhow-to-start-intellij%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Inside the directory containing IntelliJ, there will be a
bin
folder in which you will find a.sh
script you can run to start it.– Android Dev
Aug 21 '17 at 12:34