How do I find the path to genymotion
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
I am having a problem trying to find where Ubuntu stores the program folders. I am new to Linux and only know a few limited terminal commands, but I have tried hundreds of folders in Ubuntu and cannot find where the programs reside. I tried the find command but I get a few hundred hits and none of them seem to be correct. I have GenyMotion installed and running correctly but I need the path to the program folder in order to connect it with Intellij.
Any help would be appriciated.
Thanks
Clan
intellij genymotion
New contributor
add a comment |
I am having a problem trying to find where Ubuntu stores the program folders. I am new to Linux and only know a few limited terminal commands, but I have tried hundreds of folders in Ubuntu and cannot find where the programs reside. I tried the find command but I get a few hundred hits and none of them seem to be correct. I have GenyMotion installed and running correctly but I need the path to the program folder in order to connect it with Intellij.
Any help would be appriciated.
Thanks
Clan
intellij genymotion
New contributor
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47
add a comment |
I am having a problem trying to find where Ubuntu stores the program folders. I am new to Linux and only know a few limited terminal commands, but I have tried hundreds of folders in Ubuntu and cannot find where the programs reside. I tried the find command but I get a few hundred hits and none of them seem to be correct. I have GenyMotion installed and running correctly but I need the path to the program folder in order to connect it with Intellij.
Any help would be appriciated.
Thanks
Clan
intellij genymotion
New contributor
I am having a problem trying to find where Ubuntu stores the program folders. I am new to Linux and only know a few limited terminal commands, but I have tried hundreds of folders in Ubuntu and cannot find where the programs reside. I tried the find command but I get a few hundred hits and none of them seem to be correct. I have GenyMotion installed and running correctly but I need the path to the program folder in order to connect it with Intellij.
Any help would be appriciated.
Thanks
Clan
intellij genymotion
intellij genymotion
New contributor
New contributor
New contributor
asked Apr 6 at 15:15
ClanClan
1
1
New contributor
New contributor
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47
add a comment |
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47
add a comment |
2 Answers
2
active
oldest
votes
In bash use type
to see what the command is: alias, built-in, and if not either the path to the executable.
>type gcc
gcc is /usr/bin/gcc
>type ll
ll is aliased to `ls -alF'
You can add a realpath
invocation to resolve links (even the multi-stage links used by alternatives`):
>type java
java is /usr/bin/java
>realpath /usr/bin/java
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
add a comment |
Use the which command to fine the location of the command e.g.:
which genymotion
If the program is installed in a standard location, it will be found and the location printed out. If a third party application is not installed in a standard location, then to run it from the command line you either need to add its location to your PATH variable, or type in the full path, which you may have decided at installation time. For instance, if you decided to install a program to your Documents folder, your program path might look like:
/home/<username>/Documents/<myprogram>/bin
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Clan is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131689%2fhow-do-i-find-the-path-to-genymotion%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
In bash use type
to see what the command is: alias, built-in, and if not either the path to the executable.
>type gcc
gcc is /usr/bin/gcc
>type ll
ll is aliased to `ls -alF'
You can add a realpath
invocation to resolve links (even the multi-stage links used by alternatives`):
>type java
java is /usr/bin/java
>realpath /usr/bin/java
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
add a comment |
In bash use type
to see what the command is: alias, built-in, and if not either the path to the executable.
>type gcc
gcc is /usr/bin/gcc
>type ll
ll is aliased to `ls -alF'
You can add a realpath
invocation to resolve links (even the multi-stage links used by alternatives`):
>type java
java is /usr/bin/java
>realpath /usr/bin/java
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
add a comment |
In bash use type
to see what the command is: alias, built-in, and if not either the path to the executable.
>type gcc
gcc is /usr/bin/gcc
>type ll
ll is aliased to `ls -alF'
You can add a realpath
invocation to resolve links (even the multi-stage links used by alternatives`):
>type java
java is /usr/bin/java
>realpath /usr/bin/java
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
In bash use type
to see what the command is: alias, built-in, and if not either the path to the executable.
>type gcc
gcc is /usr/bin/gcc
>type ll
ll is aliased to `ls -alF'
You can add a realpath
invocation to resolve links (even the multi-stage links used by alternatives`):
>type java
java is /usr/bin/java
>realpath /usr/bin/java
/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java
answered Apr 6 at 15:43
xenoidxenoid
1,9431416
1,9431416
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
add a comment |
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
bash: type: genymotion: not found
– Clan
Apr 6 at 15:51
add a comment |
Use the which command to fine the location of the command e.g.:
which genymotion
If the program is installed in a standard location, it will be found and the location printed out. If a third party application is not installed in a standard location, then to run it from the command line you either need to add its location to your PATH variable, or type in the full path, which you may have decided at installation time. For instance, if you decided to install a program to your Documents folder, your program path might look like:
/home/<username>/Documents/<myprogram>/bin
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
add a comment |
Use the which command to fine the location of the command e.g.:
which genymotion
If the program is installed in a standard location, it will be found and the location printed out. If a third party application is not installed in a standard location, then to run it from the command line you either need to add its location to your PATH variable, or type in the full path, which you may have decided at installation time. For instance, if you decided to install a program to your Documents folder, your program path might look like:
/home/<username>/Documents/<myprogram>/bin
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
add a comment |
Use the which command to fine the location of the command e.g.:
which genymotion
If the program is installed in a standard location, it will be found and the location printed out. If a third party application is not installed in a standard location, then to run it from the command line you either need to add its location to your PATH variable, or type in the full path, which you may have decided at installation time. For instance, if you decided to install a program to your Documents folder, your program path might look like:
/home/<username>/Documents/<myprogram>/bin
Use the which command to fine the location of the command e.g.:
which genymotion
If the program is installed in a standard location, it will be found and the location printed out. If a third party application is not installed in a standard location, then to run it from the command line you either need to add its location to your PATH variable, or type in the full path, which you may have decided at installation time. For instance, if you decided to install a program to your Documents folder, your program path might look like:
/home/<username>/Documents/<myprogram>/bin
edited Apr 6 at 16:02
answered Apr 6 at 15:27
ubfan1ubfan1
9,90441730
9,90441730
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
add a comment |
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
I tried the 'which' command but it returns nothing. It seems a shame that I cannot right click on the Genymotion icon in the applications folder and get the path and the actual name of the file it is starting, but that does not work either.
– Clan
Apr 6 at 15:48
add a comment |
Clan is a new contributor. Be nice, and check out our Code of Conduct.
Clan is a new contributor. Be nice, and check out our Code of Conduct.
Clan is a new contributor. Be nice, and check out our Code of Conduct.
Clan is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1131689%2fhow-do-i-find-the-path-to-genymotion%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
For what I see, Genymotion would be a virtual machine running in VirtualBox. So there is no "Genymotion program". It would be VirtualBox booting a VM from some VDI/VDMK image.
– xenoid
Apr 6 at 19:47