Downloaded genymotion and trying to access it by following their instructions. In the terminal, I've changed directory to where the file is, used chmod +x genymotion-2.4.0_x64.bin
and sudo ./genymotion-2.4.0_x64.bin
and it gives me sudo: ./genymotion-2.4.0_x64.bin: command not found
.
Asked
Active
Viewed 4,735 times
0
1 Answers
1
Solved by OP in Question
I was trying to execute it from the directory I had it in which was in a different partition than my home folder. I moved it to home and right clicked and selected
Allow executing file as program
from the permissions tab of the properties, followed the previous steps adding the directory I was in as the install folder, and it worked. Which only opens up new questions for me... Why couldn't I execute the file in the target folder, why couldn't I clickAllow executing file as program
in the original directory, and why did I have to move the.bin
file to the home folder?

Tim
- 32,861
- 27
- 118
- 178
sudo
..run./genymotion-2.4.0_x64.bin -d "$PWD"
– heemayl Jun 11 '15 at 11:29Permission denied
What is "$PWD"? – Jem Jun 11 '15 at 11:30echo $PWD
). If you are in the right directory, the file should appear in the output ofls
– Wilf Jun 11 '15 at 11:34echo $PWD
is just a demonstration of what it does – Wilf Jun 11 '15 at 11:40