Я вошел в систему как пользователь root на моем сервере CentOS 5 / cPanel и набрал следующее:
cd /usr/local/bin/
git clone --depth 1 http://github.com/joyent/node.git
cd node
git checkout origin/v0.4 # optional. Note that master is unstable.
export JOBS=2 # optional, sets number of parallel commands.
mkdir ~/local
./configure --prefix=$HOME/local/node
make
make install
echo 'export PATH=$HOME/local/node/bin:$PATH' >> ~/.profile
source ~/.profile
Кажется, что работает нормально, пока я не выйду с сервера и не войду снова, поскольку он не был установлен:
[~]# node test.js
-bash: node: command not found
Если я наберу: source ~/.profile
, он снова начнет работать, пока я не выйду из системы.
Пожалуйста, помогите. Благодаря.
EDIT:
Это содержимое моего .bash_profile, как мне его изменить?
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME