I recently installed IntelliJ and SceneBuilder on Ubuntu, and when I want to open a .fxml in IntelliJ it asks me to locate the executable. But I can't seem to find anything executable which has something to do with SceneBuilder. I just downloaded and installed the .deb-file of SceneBuilder. What to do?
Asked
Active
Viewed 2,991 times
1 Answers
2
The executable is
/opt/SceneBuilder/SceneBuilder
Why? That's why.
dpkg -L scenebuilder | grep bingives no output, ok, let's continute with step 2
dpkg -L scenebuilder | grep desktopgives
/opt/SceneBuilder/SceneBuilder.desktopand
grep 'Exec=' /opt/SceneBuilder/SceneBuilder.desktopgives
Exec=/opt/SceneBuilder/SceneBuilderand that's your executable.
You could also use
find /opt/SceneBuilder -type f -executable
but in the installation are so many attributes set incorrectly, that makes no sense. The output of the command has 99 entries.
A.B.
- 92,125