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

How to install Webstrom in Ubuntu

335

To install Webstrom in Ubuntu 16.04

WebStorm is a coding assistance for JavaScript. It is compiled-to-JavaScript languages, Node.js, HTML and CSS. Installation of Webstorm in Ubuntu is explained in this article.

Features

  • Modern frameworks,
  • Debugging, tracing and testing,
  • Seamless tool integration.


Install webstrom

Add java repo file to apt source list.

root@linuxhelp:~# add-apt-repository ppa:webupd8team/java
 Oracle Java (JDK) Installer (automatically downloads and installs Oracle JDK7 / JDK8 / JDK9). There are no actual Java files in this PPA.

More info (and Ubuntu installation instructions):
- for Oracle Java 7: http://www.webupd8.org/2012/01/install-oracle-java-jdk-7-in-ubuntu-via.html
- for Oracle Java 8: http://www.webupd8.org/2012/09/install-oracle-java-8-in-ubuntu-via-ppa.html

Debian installation instructions:
- Oracle Java 7: http://www.webupd8.org/2012/06/how-to-install-oracle-java-7-in-debian.html
- Oracle Java 8: http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html

Oracle Java 9 (for both Ubuntu and Debian): http://www.webupd8.org/2015/02/install-oracle-java-9-in-ubuntu-linux.html

For JDK9, the PPA uses standard builds from: https://jdk9.java.net/download/ (and not the Jigsaw builds!).

Important!!! For now, you should continue to use Java 8 because Oracle Java 9 is available as an early access release (it should be released in 2016)! You should only use Oracle Java 9 if you explicitly need it, because it may contain bugs and it might not include the latest security patches! Also, some Java options were removed in JDK9, so you may encounter issues with various Java apps. More information and installation instructions (Ubuntu / Linux Mint / Debian): http://www.webupd8.org/2015/02/install-oracle-java-9-in-ubuntu-linux.html
 More info: https://launchpad.net/~webupd8team/+archive/ubuntu/java
Press [ENTER] to continue or ctrl-c to cancel adding it

gpg: keyring `/tmp/tmp_f23b7l7/secring.gpg'  created
gpg: keyring `/tmp/tmp_f23b7l7/pubring.gpg'  created
gpg: requesting key EEA14886 from hkp server keyserver.ubuntu.com
gpg: /tmp/tmp_f23b7l7/trustdb.gpg: trustdb created
gpg: key EEA14886: public key " Launchpad VLC"  imported
gpg: no ultimately trusted keys found
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
OK

Update apt source using “ apt-get update” command.

root@linuxhelp:~# apt-get update
Get:1 http://security.ubuntu.com/ubuntu xenial-security InRelease [94.5 kB]
Hit:2 http://in.archive.ubuntu.com/ubuntu xenial InRelease                           
Hit:3 http://in.archive.ubuntu.com/ubuntu xenial-updates InRelease                   
Hit:4 http://ppa.launchpad.net/enlightenment-git/ppa/ubuntu xenial InRelease         
Hit:5 http://in.archive.ubuntu.com/ubuntu xenial-backports InRelease                 
Hit:6 http://ppa.launchpad.net/gns3/ppa/ubuntu xenial InRelease                      
Hit:7 http://ppa.launchpad.net/klaus-vormweg/ppa/ubuntu xenial InRelease
Hit:8 http://ppa.launchpad.net/webupd8team/java/ubuntu xenial InRelease
Fetched 94.5 kB in 1s (61.6 kB/s)
Reading package lists... Done

Install java by using the following command.

root@linuxhelp:~# apt-get install oracle-java7-installer
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following additional packages will be installed:
  gsfonts-x11 java-common
Suggested packages:
  binfmt-support visualvm ttf-baekmuk | ttf-unfonts | ttf-unfonts-core ttf-kochi-gothic
  | ttf-sazanami-gothic ttf-kochi-mincho | ttf-sazanami-mincho ttf-arphic-uming
The following NEW packages will be installed:
  gsfonts-x11 java-common oracle-java7-installer.
.
.
.
Oracle JDK 7 installed
update-alternatives: using /usr/lib/jvm/java-7-oracle/jre/lib/amd64/libnpjp2.so to provide /usr/lib/mozilla/plugins/libjavaplugin.so (mozilla-javaplugin.so) in auto mode
Oracle JRE 7 browser plugin installed
Setting up gsfonts-x11 (0.24) ...

Accept the java installation license agreement to proceed further.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-java-license
Move to the downloaded directory using “ cd” command.

root@linuxhelp:~# cd /home/user1/Downloads/

Download webstrom tar ball file from its official website by using “ wget” command.

root@linuxhelp:/home/user1/Downloads# wget https://download.jetbrains.com/webstorm/WebStorm-2016.2.tar.gz
--2016-07-14 12:07:01-- https://download.jetbrains.com/webstorm/WebStorm-2016.2.tar.gz
Resolving download.jetbrains.com (download.jetbrains.com)... 54.217.236.18
Connecting to download.jetbrains.com (download.jetbrains.com)|54.217.236.18|:443... connected.
HTTP request sent, awaiting response... 302 Moved Temporarily
Location: https://download-cf.jetbrains.com/webstorm/WebStorm-2016.2.tar.gz [following]
--2016-07-14 12:07:02-- https://download-cf.jetbrains.com/webstorm/WebStorm-2016.2.tar.gz
Resolving download-cf.jetbrains.com (download-cf.jetbrains.com)... 54.230.172.73, 54.230.172.106, 54.230.172.38, ...
Connecting to download-cf.jetbrains.com (download-cf.jetbrains.com)|54.230.172.73|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: 209648032 (200M) [binary/octet-stream]
Saving to: ‘ WebStorm-2016.2.tar.gz’ 

WebStorm-2016.2.tar.g 100%[=======================> ] 199.94M 560KB/s in 8m 53s

2016-07-14 12:15:56 (384 KB/s) - ‘ WebStorm-2016.2.tar.gz’  saved [209648032/209648032]

Extract the downloaded tar file using “ tar” command.

root@linuxhelp:/home/user1/Downloads# tar xfz WebStorm-2016.2.tar.gz

Go to the extracted directory and list the files by running the following command.

root@linuxhelp:/home/user1/Downloads# cd WebStorm-162.1121.31/
root@linuxhelp:/home/user1/Downloads/WebStorm-162.1121.31# ls
bin  build.txt  help  Install-Linux-tar.txt  jre  lib  license  plugins

Enter into the “ bin” directory.

root@linuxhelp:/home/user1/Downloads/WebStorm-162.1121.31# cd bin/

list the all files. Here you can able to see “ webstrom.sh” file.

root@linuxhelp:/home/user1/Downloads/WebStorm-162.1121.31/bin# ls
fsnotifier      idea.properties         libyjpagent-linux.so  webstorm.sh
fsnotifier64    inspect.sh              log.xml               webstorm.svg
fsnotifier-arm  libyjpagent-linux64.so  webstorm64.vmoptions  webstorm.vmoptions

Set execute permission to the “ webstrom.sh” file.

root@linuxhelp:/home/user1/Downloads/WebStorm-162.1121.31/bin# chmod -R 755 webstorm.sh

Run the “ webstrom.sh” file by using the following command.

root@linuxhelp:/home/user1/Downloads/WebStorm-162.1121.31/bin# ./ webstorm.sh

“ Complete installation” page appears, Click “ OK” to proceed further.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-Complete-installation
Accept the “ Webstrom privacy policy Agreement” wizard.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-privacy-policy

Select the type of package and click Evaluate.

If you have valid account or activation key, you can use click activate option.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-package-type-Evaluate
Next click “ accept” to start the evaluation.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-evaluation
Webstrom initial configuration wizard open. Set IDE theme, Keymap scheme and Editor colors and fonts. Finally click “ OK" .
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-Webstrom-initial-configuration-IDE-theme-Keymap-scheme-Editor-colors-fonts
Click “ create new project” in welcome screen.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-create-new-project
Set project path and click “ create” .
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-Set-project-path
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-new-project
Select your project. Right click, select New and then choose your program language.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-Select-project-choose-program-language
Set file name and click “ OK”
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-Set-file-name
Now the source code editing page opens. Here you can edit and modify your project.
Installation-Webstorm-coding-assistance-for-JavaScript-Ubuntu16.04-source-code-editing-page-edit-modify-project

Tags:
andrew
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is WebStorm & PhpStorm?

A

WebStorm & PhpStorm are IDEs (Integrated Development Environment) built on top of JetBrains IntelliJ platform and narrowed for web development.

Q

I don’t wanna have a desktop launcher for it how to disable it?

A

after license aggreement in initail configuration select "eable opening files and folders from command line"

Q

Is there any best other software out there with same functionality?

A

Yes you can go for Visual Studio Code,Eclipse,Sublime text editor

Q

How do I open Webstorm terminal?

A

Press Alt+F12 .
Select View. | Tool Windows. | Terminal from the main menu.
Click the Terminal tool window button .
Hover your mouse pointer over in the lower left corner of the IDE, then choose Terminal from the menu.

Q

Who will own the code?

A

The client will own the code, this includes all the documentation, binaries and source code, except the Generic code, which may be used in any way by you and also Webstorm.

Related Tutorials in How to install Webstrom in Ubuntu

Related Tutorials in How to install Webstrom 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 Webstrom in Ubuntu

Related Forums in How to install Webstrom 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 Webstrom in Ubuntu

Related News in How to install Webstrom 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
Docker friendly Alpine Linux gets hardened Node.js
Docker friendly Alpine Linux gets hardened Node.js
Apr 19, 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
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 Sebastian ?
How to change non required to required field in SuiteCRM Custom/Default Modules

How to change not required to the required field in SuiteCRM Custom/Default Modules?

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.