Software reference: Difference between revisions
No edit summary |
No edit summary |
||
| Line 55: | Line 55: | ||
sudo subl /etc/environment | sudo subl /etc/environment | ||
JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course | JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course | ||
|} | |} | ||
<!-- | <!-- | ||
Revision as of 13:39, 7 April 2016
Mediawiki - Wordpress - Phabricator
CodeLite - Eclipse - Sublime - Scite - Emacs
LibreOffice - Gimp - i3
Chromium - Firefox - IceWeasel
| Ubuntu set up networking |
|---|
Install NetworkManager, as the wpagui UI sucks
|
| Ubuntu install Sublime |
|---|
Sublime editor seems way better than anything else out there on linux:
|
| Ubuntu install Node.js |
|---|
Install Node.js using the "Node.js Version Manager" nvm details
|
| Ubuntu install Java |
|---|
Install Oracle JDK 8 (9 is scheduled for release in 2016)
su - add-apt-repository ppa:webupd8team/java apt-get update apt-get install oracle-java8-installer apt-get install oracle-java8-set-default
update-alternatives --config java # make note of path update-alternatives --config javac # make note of path sudo subl /etc/environment JAVA_HOME="/usr/lib/jvm/java-8-oracle/jre/bin/java" # actually, use the path from above, of course |