我以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
,它会重新开始工作,直到我退出。
请帮忙。感谢。
编辑:
这是我的.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
答案 0 :(得分:1)
当bash作为交互式登录shell或具有--login选项的非交互式shell调用时,它首先从文件/ etc / profile中读取并执行命令(如果该文件存在)。读完该文件后,按顺序查找〜/ .bash_profile,〜/ .bash_login和〜/ .profile,并从存在的第一个中读取并执行命令是可读的。启动shell时可以使用--noprofile选项来禁止这种行为。
也许你有一个.bash_profile
并且正在使用它?