云网牛站
所在位置:首页 > Linux新闻 > 原版Deepin 20.1操作系统的etc/profile文件内容

原版Deepin 20.1操作系统的etc/profile文件内容

2021-03-20 11:34:36作者:deepinuser17稿源:深度站

有些Deepin 20.1用户修改了etc/profile文件,而又不备份,现提供原版Deepin 20.1操作系统的etc/profile文件内容,供恢复使用。

 

原etc/profile文件截图

原版Deepin 20.1操作系统的etc/profile文件内容

 

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:/sbin:/usr/sbin"

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

tty | egrep -q tty[1-6] && export LC_ALL=C

 

技术点评

请不要轻易的修改Deepin 20.1系统初始设置的环境文件,/etc/profile,/etc/bash.bashrc。

这些环境文件对于系统稳定运行很重要,任何定制的修改都应该放到用户个人的环境文件里,比如:~/.profile,~/.bashrc,~/.bashrc.logout。相关可参考关于登陆Deepin V20后不自动加载~/.profile文件的点拨

个人的~/.profile环境比系统的/etc/profile有优先权,~/.bashrc同样。

 

相关主题

Linux下用文字处理器编辑/etc/profile会有隐含的字符出现

精选文章
热门文章