JavaFX Scene Builder path in Ubuntu
Asked Answered
F

6

9

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.

Fronia answered 20/12, 2015 at 20:7 Comment(0)
B
17

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/

Bainmarie answered 5/8, 2016 at 14:16 Comment(1)
June 2024 - not in /opt any more.Overact
S
15
  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).

Stanislas answered 4/4, 2018 at 9:58 Comment(1)
I am on Ubuntu 22.04 LTS and SB v. 21. ps aux | grep Scene doesn't tell me where the SB launcher is. The way I found it is by doing a file string search ("scenebuilder") on the whole computer, i.e. the "/" directory. Then worked my way through files (not directories) listed in a /bin folder until I found the one that launched SB.Overact
B
5

select these path in your IDE opt/SceneBuilder

Blowsy answered 20/2, 2020 at 6:28 Comment(1)
/var/lib/flatpak/exports/bin/com.gluonhq.SceneBuilderOveract
C
4

For Ubuntu 20.04. Run File is in this below path..

/opt/scenebuilder/bin/SceneBuilder

(check your path) Your's will close or same.

Set this by clicking on Windows>> Preference and then JavaFx in Eclipse

Compel answered 24/2, 2021 at 19:29 Comment(1)
June 2024. /var/lib/flatpak/exports/bin is the folder and you have to append the launcher file name to the path, otherwise IntelliJ JavaFX won't do anything. So it's /var/lib/flatpak/exports/bin/com.gluonhq.SceneBuilder that you put in the Path to SceneBuilder fieldOveract
S
2

The default path is "opt/SceneBuilder"

Schoonover answered 11/8, 2019 at 12:29 Comment(1)
6/2024 - Not in /opt any more. /var/lib/flatpak/exports/bin/com.gluonhq.SceneBuilderOveract
M
0

Create a Symbolic Link

sudo ln -s /opt/scenebuilder/bin/SceneBuilder /usr/bin/SceneBuilder

Munafo answered 26/6, 2024 at 12:28 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.