在Linux-Mint 18中,启动非交互式shell时会读取哪些文件?
我试图通过ssh执行命令,比如
ssh norio@remote.host.net coolcommand
但我得到一个错误
bash: coolcommand: command not found
文件coolcommand
位于/home/norio/bin/
,和
我将PATH
环境变量设置为包含此目录
在/home/norio/.bashrc
中,此.bashrc
设置为由/home/norio/.profile
和/home/norio/.bash_profile
提供。
但是,当远程非交互式shell启动时,看起来并不会读取任何这些文件。实际上,/etc/profile
似乎并未提供任何这些文件。我需要编辑此文件吗?或者,有没有其他方法可以为非root用户设置非交互式shell的启动过程?
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi
if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
答案 0 :(得分:0)
Bash尝试确定何时将其标准输入连接到网络连接,如远程shell守护程序(通常是rshd)或安全shell守护程序sshd执行时。如果Bash确定它以这种方式运行,它将从〜/ .bashrc读取并执行命令,如果该文件存在且可读的话。如果作为sh调用它将不会这样做。 --norc选项可用于禁止此行为,并且--rcfile选项可用于强制读取另一个文件,但rshd和sshd通常都不会使用这些选项调用shell或允许指定它们。