Ubuntu 无法启动

Ubuntu 无法启动

设置专有驱动程序并重新启动后,我的 Ubuntu 21.04 无法启动。驱动程序:来自 nvidia-driver-450 的 NVIDIA 驱动程序元包显卡:GeForce GTX 1050 Mobile 我已在“软件和更新”>“附加驱动程序”中安装了此驱动程序,启动系统后,我看到一个错误。错误:

/etc/profile/ 第 27 行,语法错误:意外的文件结束

简介代码:

# 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

顺便说一句,我在文件配置文件中没有看到 gedit 中的第 27 行

相关内容