将 export utf8 添加到 /etc/profile 不起作用

将 export utf8 添加到 /etc/profile 不起作用

尝试将 debian:stretch 中的语言环境设置为 utf8。我构建了一个 docker 镜像,然后使用它。除了我的 Dockerfile:

# Set locale
RUN sed --in-place '/en_US.UTF-8/s/^# //' /etc/locale.gen && \
    locale-gen && \
    # Set system locale (add line)
    echo "export LANG=en_US.UTF-8" >> /etc/profile && \
    # Set system timezone (add line)
    echo "export TZ=UTC" >> /etc/profile

使用我构建的图像的 Gitlab 作业:

$ cat /etc/profile
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ "`id -u`" -eq 0 ]; then
  PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
  PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH

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
export LANG=en_US.UTF-8
export TZ=UTC
$ locale
LANG=
LANGUAGE=
LC_CTYPE="POSIX"
LC_NUMERIC="POSIX"
LC_TIME="POSIX"
LC_COLLATE="POSIX"
LC_MONETARY="POSIX"
LC_MESSAGES="POSIX"
LC_PAPER="POSIX"
LC_NAME="POSIX"
LC_ADDRESS="POSIX"
LC_TELEPHONE="POSIX"
LC_MEASUREMENT="POSIX"
LC_IDENTIFICATION="POSIX"
LC_ALL=

我不明白为什么它没有被改变。它似乎没有读取文件/etc/profile

答案1

引用bash(1)手册页:

当 bash 作为交互式登录 shell 或使用 选项作为非交互式 shell 调用时--login,它首先从文件 读取并执行命令/etc/profile(如果该文件存在)。
读取该文件后,它会按顺序查找 ~/.bash_profile~/.bash_login~/.profile,然后从第一个存在且可读的文件中读取和执行命令。 --noprofile启动 shell 时可以使用 选项来禁止此行为。

<…>

当启动非登录 shell 的交互式 shell 时,如果这些文件存在,bash 将从 和 读取并执行命令/etc/bash.bashrc~/.bashrc可以使用--norc选项禁止此操作。file选项将强制 bash 从 file 而不是和 --rcfile读取并执行命令 。/etc/bash.bashrc~/.bashrc

相关内容