加载 /home/[myusername]/.profile 时发现错误

加载 /home/[myusername]/.profile 时发现错误

我每次登录后都会出现此错误:

Error found when loading /home/[myusername]/.profile:

stty: standard input: Inappropriate ioctl for device

因此会话将无法正确配置。您应尽快修复此问题。

我该如何解决这个问题?每次登录时都要点击这个弹出窗口,这太烦人了(而且这个错误还会阻止我的桌面背景更改持续存在)。谢谢!

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

相关内容