Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JavaFX Scene Builder path in Ubuntu

Can anyone please tell me where I can find the path to the correct files for Scene Builder on Ubuntu to get it linked in my preferences with Eclipse IDE.

like image 593
user294159 Avatar asked Dec 20 '15 20:12

user294159


2 Answers

if you installed Scene builder through ubuntu Software Center then the path should be "/opt/SceneBuilder/"

http://linuxsagas.digitaleagle.net/2013/01/31/java-fx-eclipse-ubuntu/preferences-_185/

like image 74
Duc Dat Nguyen Avatar answered Sep 21 '22 06:09

Duc Dat Nguyen


  1. Start Scene Builder
  2. Show the path of the executable by running the following command in terminal

    ps aux | grep Scene

Output:
user 9386 9.2 3.0 5422044 245152 ? Sl 11:38 0:12 /opt/SceneBuilder/SceneBuilder
user 9525 0.0 0.0 15800 932 pts/2 S+ 11:40 0:00 grep --color=auto Scene

The last string in the first line of the output is the path of the executable. This should work regardless of how you installed Scene Builder (Ubuntu Software Center, Jar, RPM or DEB package).

like image 40
Michael_H Avatar answered Sep 19 '22 06:09

Michael_H