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

Blu*_*lue 5 .profile

每次登录后我都会收到此错误:

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

stty: standard input: Inappropriate ioctl for device
Run Code Online (Sandbox Code Playgroud)

因此,会话将无法正确配置。您应该尽快解决问题。

我该如何解决?这是一个烦人的弹出窗口,每次登录都必须单击(并且此错误还会阻止我的桌面背景更改持续存在)。谢谢!

# ~/.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
Run Code Online (Sandbox Code Playgroud)