Is there any way to set environmental variable "PATH" permanantly so that it will not dissappear from PATH variable listing?
Answer: Assuming you are using bash as your shell, put this in your .bashrc file. Your .bashrc file should be located in /home/Yourusername/.bashrc or ~/.bashrc for short.
this is what you should put in that file:
export PATH=$PATH:
OR
If you want to set the path of a user you can edit your .bash_profile in home directory.
In my .bash_profile i have:
# set PATH so it includes user's private bin if it exists
if [ -d ~/bin ] ; then
PATH=
fi
If you don't have it copy and paste this code.