启动系统时 ubuntu 中出现 etc 错误

启动系统时 ubuntu 中出现 etc 错误

错误截图 在安装 Java 时我做了一些事情,现在出现这个错误。

答案1

/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查找差异并重新添加所需的自定义项,然后逐一测试每个自定义项。

# /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

相关内容