I installed a program and I want to create a shortcut.
e.g. I want to type eclipse
into the terminal to launch the program.
I already copied the eclipse folder in /home/user/Programs
and created a symbolinc link to the executable /home/user/Programs/eclipse/eclipse
(the one that allows me to launch the program by typing ./eclipse
, I guess it is a binary or like a shell script) in a folder located in /home/bin
and I added this last folder to the path using export.
But I have this issue:
bash: ./eclipse: No such file or directory
Can you please help me on that? I am sure that I missed something
echo $PATH
. Also, what's /home/bin? – mikewhatever Aug 11 '15 at 20:57$PATH
folders are readily executed by typing them into the terminal; but binaries in subfolders cannot be executed. Check yourecho $PATH
and compare that withwhich eclipse
commands. If your eclipse binary is in a subfolder, say/usr/bin/eclipse
you will need to add/usr/bin/eclipse
to your$PATH
as well. Let me know if this helps – Sergiy Kolodyazhnyy Aug 12 '15 at 00:20