After looking around, look at the Genymotion log, note that when calling a Virtual Device from the Android Studio, it jumped when trying to locate some necessary libraries, specifically this error
Output command: "/usr/lib/virtualbox/VBoxManage: ./libssl.so.1.0.0: version 'OPENSSL_1.0.2' not found (required by /usr/lib/x86_64-linux-gnu/libcurl.so.4)"
When I searched for it on Google, I took it to the spare parts of Stackoverflow in English, where a Genymotion Engineer explained that this error was caused by how it defined an Android Studio path.
It proposes three solutions, I apply the one that suggests to edit the studio.sh
On line 178 of my studio.sh (It is located in / opt / android-studio / bin /) is the definition of LD_LIBRARY_PATH like this:
LD_LIBRARY_PATH="$ IDE_BIN_HOME $: LD_LIBRARY_PATH" "$ JAVA_BIN" \
after editing it is like this:
LD_LIBRARY_PATH="$ IDE_BIN_HOME $ LD_LIBRARY_PATH" "$ JAVA_BIN" \
and everything ready I can call my virtual devices of Genymotion from the Android Studio plugin.
Here is the link to Stackoverflow where I found the Stackoverflow response that helped me.