• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to install intelliJ IDEA in Ubuntu

372

To install intelliJ IDEA in Ubuntu 16.04

IntelliJ IDEA is an integrated development environment (IDE) for Java. In this article we will learn how to install IntelliJ IDEA in Ubuntu.

To install intelliJ IDEA

Before installing IntelliJ on Ubuntu, install Java.
Run the following command to check whether java is installed or not.

root@linuxhelp:~# dpkg -l | grep java
ii  gir1.2-javascriptcoregtk-4.0:amd64         2.10.9-1ubuntu1                                     amd64        JavaScript engine library from WebKitGTK+ - GObject introspection data
ii  java-common                                0.56ubuntu2                                         all          Base package for Java runtimes
ii  javascript-common                          11                                                  all          Base support for JavaScript library packages
ii  libjavascriptcoregtk-1.0-0:amd64           2.4.11-0ubuntu0.1                                   amd64        JavaScript engine library from WebKitGTK+
ii  libjavascriptcoregtk-4.0-18:amd64          2.10.9-1ubuntu1                                     amd64        JavaScript engine library from WebKitGTK+
ii  oracle-java7-installer                     7u80+7u60arm-0~webupd8~1                            all          Oracle Java(TM) Development Kit (JDK) 7

Add intellij repo file using “ add-apt-repository” command.

root@linuxhelp:~# add-apt-repository ppa:mmk2410/intellij-idea-community
 Unofficial .deb packages of the latest version of IntelliJ IDEA Community Edition by JetBrains
Git: http://git.mmk2410.org/intellij-idea-community/
 More info: https://launchpad.net/~mmk2410/+archive/ubuntu/intellij-idea-community
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keyring `/tmp/tmpm_ykarif/secring.gpg'  created
gpg: keyring `/tmp/tmpm_ykarif/pubring.gpg'  created
gpg: requesting key 9263FB77 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpm_ykarif/trustdb.gpg: trustdb created
gpg: key 9263FB77: public key " Launchpad PPA for Marcel Kapfer"  imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK

Update apt source using the following command.

root@linuxhelp:~# apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Hit:2 http://ppa.launchpad.net/enlightenment-git/ppa/ubuntu xenial InRelease
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial InRelease                     
Hit:4 http://ppa.launchpad.net/gns3/ppa/ubuntu xenial InRelease                
Get:5 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease [94.5 kB]   
.
.
.
Get:18 http://in.archive.ubuntu.com/ubuntu xenial-updates/universe Translation-en [78.7 kB]
Get:19 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [3,328 B]
Get:20 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse i386 Packages [3,492 B]
Get:21 http://in.archive.ubuntu.com/ubuntu xenial-updates/multiverse Translation-en [1,540 B]
Fetched 1,224 kB in 13s (92.2 kB/s)                                            
Reading package lists... Done

Install intellj community edition by using the following command.

root@linuxhelp:~# apt-get install intellij-idea-community
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gcc-5-multilib gcc-multilib lib32asan2 lib32atomic1 lib32cilkrts5
  lib32gcc-5-dev lib32gcc1 lib32gomp1 lib32itm1 lib32mpx0 lib32ncurses5
  lib32quadmath0 lib32stdc++6 lib32tinfo5 lib32ubsan0 lib32z1 lib32z1-dev
.
.
.
.
Setting up lib32z1-dev (1:1.2.8.dfsg-2ubuntu4) ...
Setting up intellij-idea-community (2016.1.3-1) ...
Processing triggers for libc-bin (2.23-0ubuntu3) ...

After installation, open intellij tool
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-open-intellij
Select the type of installation and click " OK"
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-installation-type
Read and accept the license agreement.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-license
Select the type of customisation theme. Here, we are choosing Darcula.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-customisation-Darcula
In Create desktop entry wizard, select “ next:launch script” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-Create-desktop-entry-launch-script
Install the required plugins and click “ start using intellij IDEA”
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-Install-plugins
welcome page of intellij IDEA appears. Click Project Defaults &rarr Settings
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-welcome-page-Settings
Go to terminal, select the path and click OK
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-terminal
Select “ create new project”
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-create-new-project
Select your language and click “ next” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-language
Set the project name, path and then click “ finish” .
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-project-name-path
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-finish
Now start creating your projects using Intellij IDEA.
install-intelliJ-IDEA-integrated-development-environment-IDE-for-Java-Ubuntu16.04-create-projects

Tags:
elijah
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is IntelliJ idea used for?

A

This environment is used especially for the development of programs

Q

How do I start programming in IntelliJ?

A

Select System (java.lang) by pressing Enter .
Type p and then find and select println(String x).
Type s , press Ctrl+J and select sout

Q

How to add previously existing project from my folder?

A

By using this option use can import
"import project" from the launcher

Q

How do I run Intellij?

A

Press Shift+Alt+F10 , select the desired run configuration from the pop-up menu, and press Enter . And then you can run.

Q

Is Java is necessary for intelliJ?

A

JRE 1.8 is bundled with the IntelliJ IDEA distribution. You do not need to install Java on your computer to run IntelliJ IDEA. A standalone JDK is required for Java development.

Related Tutorials in How to install intelliJ IDEA in Ubuntu

Related Tutorials in How to install intelliJ IDEA in Ubuntu

How to install Meld tool in Ubuntu
How to install Meld tool in Ubuntu
Feb 25, 2017
How to install Dconf-Editor on Ubuntu 18.04
How to install Dconf-Editor on Ubuntu 18.04
Jul 14, 2018
How to install and update OpenSSL on Ubuntu 16.04
How to install and update OpenSSL on Ubuntu 16.04
Mar 9, 2017
How to install GLib 2.0 on Ubuntu 17.04
How to install GLib 2.0 on Ubuntu 17.04
May 22, 2017
How to Install Android Emulator on Ubuntu 20.4.1
How to Install Android Emulator on Ubuntu 20.4.1
Jul 13, 2021
How To Install AnyDesk on Ubuntu 16.04
How To Install AnyDesk on Ubuntu 16.04
Apr 4, 2018
How to install Genymotion 2.12.1 on Ubuntu 18.04
How to install Genymotion 2.12.1 on Ubuntu 18.04
Jul 9, 2018
How to install Timeshift 18.4 on Ubuntu 18.04
How to install Timeshift 18.4 on Ubuntu 18.04
Jul 6, 2018

Related Forums in How to install intelliJ IDEA in Ubuntu

Related Forums in How to install intelliJ IDEA in Ubuntu

Ubuntu
matthew class=
Failed to enable unit: Refusing to operate on linked unit file sshd.service
Apr 15, 2019
Ubuntu
mason class=
Passwd: You may not view or modify password information for root On Ubuntu 19.04
May 27, 2019
Ubuntu
isaac class=
/etc/apt/sources.list Permission denied
May 18, 2017
Ubuntu
yousuf class=
lsb_release command not working : Debian
Jan 18, 2018
ifconfig command
jackbrookes class=
what is the location of the ifconfig program on your machine?
Jan 4, 2018
Ubuntu
mason class=
"E: Package 'php-mcrypt' has no installation candidate" error on Ubuntu 20.4.1
Mar 15, 2021
NFS
luke class=
clnt_create: RPC: Program not registered
Apr 25, 2017
Apache
isaac class=
How to disable apache welcome page on Ubuntu
Dec 15, 2018

Related News in How to install intelliJ IDEA in Ubuntu

Related News in How to install intelliJ IDEA in Ubuntu

How To Install Mixxx on Ubuntu 16.04
How To Install Mixxx on Ubuntu 16.04
Oct 11, 2017
Ubuntu 17.04 released with greater expectations
Ubuntu 17.04 released with greater expectations
Apr 15, 2017
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Ubuntu Core now available on i.MX6 based TS-4900 thanks to Technologic Systems Inc.
Mar 1, 2017
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Ubuntu 17.10 Artful Aardvark Beta 1 is now here. Download Now
Sep 2, 2017
Ubuntu Unity is no more: One Linux dream has been axed
Ubuntu Unity is no more: One Linux dream has been axed
Apr 7, 2017
What’s next for Ubuntu Linux Desktop?
What’s next for Ubuntu Linux Desktop?
Apr 11, 2017
Say Hi to Ubuntu's new mascot
Say Hi to Ubuntu's new mascot
Mar 22, 2019
KDE Connect App was removed from Google Play Store and brought back in 24 hours
KDE Connect App was removed from Google Play Store and brought back in 24 hours
Mar 22, 2019
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help Gibbson ?
How do i run both nginx and apache in same instance on centos

Hi...,

my server is based centos operating system and my webserver is already running on Apache.... i need to run both apache and nginx on same instance ... please help me to implement this concept...

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.