在启动PC期间,断电了。通电后尝试启动PC后,出现以下消息:
加载/home/foo/.profile时发现错误:
stty:“标准输入”:设备的ioctl不适当
因此,会话将配置不正确。您应该尽快解决此问题。
这是我的.profile文件的内容:
$ cat .profile
if [ -n "$BASH_VERSION" ]; then
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
export PATH="$PATH:$HOME/.rvm/bin"
[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm"
我看不到任何可能触发该错误的内容。有什么想法吗?