How to start IntelliJ?












2















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?










share|improve this question























  • 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
















2















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?










share|improve this question























  • 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














2












2








2








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?










share|improve this question














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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Aug 21 '17 at 12:25









SoloSolo

3482717




3482717













  • 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

















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










3 Answers
3






active

oldest

votes


















5














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



cd bin
./idea.sh





share|improve this answer































    0














    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






    share|improve this answer
























    • 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











    • 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





















    0














    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 )






    share|improve this answer























      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
      });


      }
      });














      draft saved

      draft discarded


















      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









      5














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



      cd bin
      ./idea.sh





      share|improve this answer




























        5














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



        cd bin
        ./idea.sh





        share|improve this answer


























          5












          5








          5







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



          cd bin
          ./idea.sh





          share|improve this answer













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



          cd bin
          ./idea.sh






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 11 '17 at 17:46









          Thilanka Deshan-minion91Thilanka Deshan-minion91

          3411311




          3411311

























              0














              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






              share|improve this answer
























              • 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











              • 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


















              0














              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






              share|improve this answer
























              • 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











              • 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
















              0












              0








              0







              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






              share|improve this answer













              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







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Nov 11 '17 at 17:39









              Nick DewitteNick Dewitte

              4817




              4817













              • 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











              • 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











              • 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













              0














              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 )






              share|improve this answer




























                0














                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 )






                share|improve this answer


























                  0












                  0








                  0







                  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 )






                  share|improve this answer













                  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 )







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 7 at 11:18









                  sulekhasulekha

                  1




                  1






























                      draft saved

                      draft discarded




















































                      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.




                      draft saved


                      draft discarded














                      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





















































                      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







                      Popular posts from this blog

                      flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

                      Mangá

                       ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕