Skip to content

Commit 7790cd6

Browse files
Paul VerestPaul Verest
authored andcommitted
up Starting on Ubuntu
1 parent 3ce6770 commit 7790cd6

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed

_posts/2015-7-9-Starting-with-Java-and-Node.js-development-on-Ubuntu-Linux.md

Lines changed: 22 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ categories: [ubuntu,linux,java,nodejs,2015]
66
---
77

88

9-
## {{ page.title }}
9+
### {{ page.title }}
1010

1111
<p class="meta">{{ page.date }}</p> by Paul Verest
1212

1313
[Ubuntu](http://www.ubuntu.com/) is major Linux distribution
14-
[wikipedia article](https://en.wikipedia.org/wiki/Ubuntu_(operating_system))
14+
([wikipedia article](https://en.wikipedia.org/wiki/Ubuntu_(operating_system))
1515

1616
One should select LTS version, as for example [Help](https://help.ubuntu.com/)
1717
is full only for LTS versions and Node.js packages are [supported for LTS](https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager)
1818
but not latest versions.
1919

20-
### Installing Java JDK 8
20+
#### Installing Java JDK 8
2121

2222
There are many [Java implementations for Ubuntu](https://help.ubuntu.com/community/Java).
2323
Let's stick with Oracle JDK:
@@ -35,33 +35,42 @@ Check what exact version you got:
3535

3636
See also <https://www.digitalocean.com/community/tutorials/how-to-install-java-on-ubuntu-with-apt-get>
3737

38-
### Installing Enide 2015 (Eclipse-based IDE)
38+
#### Install Enide 2015 (Eclipse-based IDE)
3939

4040
Based on <http://ubuntuhandbook.org/index.php/2014/06/install-latest-eclipse-ubuntu-14-04/>
4141

42-
1. Download Enide for Linux.
43-
2. extract to /opt/Eclipses/Enide-2015-7-linux-gtk-x64-20150706/
42+
1. Download Enide for Linux, e.g. [Enide-2015-7](http://sourceforge.net/projects/nodeclipse/files/Enide-2015/7/Enide-2015-7-linux-gtk-x64-20150706.zip/download).
43+
2. Extract to e.g. `/opt/Eclipses/Enide-2015-7-linux-gtk-x64-20150706/`
44+
45+
sudo nautilus ~/Downloads
46+
sudo nautilus /opt
47+
48+
3. Allow `eclipse` to be executable. From the `/opt/Eclipses/Enide-2015-7-linux-gtk-x64-20150706/eclipse/` folder
49+
50+
sudo chmod -R 7555 eclipse
51+
52+
4. Create shortcut
4453

4554
sudo gedit /usr/share/applications/enide-2015-7.desktop
4655

4756
paste
4857

4958
[Desktop Entry]
50-
Name=Enide 2015-7
59+
Name=Enide-2015-7
5160
Type=Application
5261
Exec=/opt/Eclipses/Enide-2015-7-linux-gtk-x64-20150706/eclipse/eclipse
5362
Terminal=false
54-
Icon=/opt/eclipse/icon.xpm
55-
Comment=Enide 2015-7 (Eclipse 4.5 based)
63+
Icon=/opt/Eclipses/Enide-2015-7-linux-gtk-x64-20150706/eclipse/icon.xpm
64+
Comment=Enide 2015-7 (Eclipse 4.5 Mars-based)
5665
NoDisplay=false
5766
Categories=Development;IDE;
58-
Name[en]=Enide 2015-7
67+
Name[en]=Enide-2015-7
5968

60-
### Installing Node.js
69+
#### Installing Node.js
6170

62-
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager
71+
<https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager>
6372

64-
https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server
73+
<https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-an-ubuntu-14-04-server>
6574

6675
sudo apt-get update
6776
sudo apt-get install nodejs

0 commit comments

Comments
 (0)