[Linux noob] How to obtain the terminal output on Godot X11 ?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By DriNeo
:warning: Old Version Published before Godot 3 was released.

Hello I compiled the master branch for Linux and I want to see the terminal window to check if many renderer errors are displayed, as I saw on Windows O.S.

:bust_in_silhouette: Reply From: eons

Some file browsers allow to run a program on a terminal, but the easier option is to open a terminal in a window and run the executable from there.

I entered the executable name in the terminal but Linux didn’t found the command.

DriNeo | 2017-06-07 10:38

You need to give an absolute or relative path to the binary. Either:

cd path/to/download/folder
./your_binary

Or:

./path/to/download/folder/your_binary

Akien | 2017-06-07 11:48

Thanks Akien. I was on the good folder but I missed the “./” characters.

DriNeo | 2017-06-07 20:34