# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
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
/etc/profile
通过运行备份现有的sudo cp /etc/profile /etc/profile.bak
./etc/profile
然后通过运行编辑您的sudo nano /etc/profile
. 下面是我/etc/profile
和你的比较。您可以将您的替换/etc/profile
为活动磁盘中的一个或下面的一个。如果您有自定义项,则可以运行diff /etc/profile /etc/profile.bak
以查找差异并添加回所需的自定义项,然后一次测试每个项。