For reference, I know very little about Linux, and am using it to run a program written by someone else. The instructions say Add the executable 'ttt' to the search path. In most installations this can be accomplished by linking the file to the 'bin' subdirectory at user home.
How do I go about doing this?
This executable is currently in a subfolder in the host area, as it's running on a dual-boot computer I cannot change the fact that it is a dual boot, as it is a work computer.
To make this work for the command line (terminal):
I would suggest that you do the following steps in the terminal:
Create a folder called
bin
in your home directory.Add
~/bin
to yourPATH
for all sessions of Bash (the default shell used inside of the terminal).Add either the executable files themselves OR symlinks to the executable into
~/bin
Restart your terminal session by closing out the terminal and reopening it, or run
source ~/.bashrc
to reload the configuration for your sessionThat should allow your terminal to read the
PATH
variable for terminal sessions.I do not know how to add it to the GUI, though, as I'm not certain of how the GUI manages the
PATH
variable(s), but it might be necessary to modify the path with other methods should this method here not work with the GUI.to just temporary add the local directory to your path call this: