20.04 启动后出现“加载 /home/user/.profile 时发现错误,无法写入重启参数文件”

20.04 启动后出现“加载 /home/user/.profile 时发现错误,无法写入重启参数文件”

每次我启动 Ubuntu 时都会收到此错误消息

Error found when loading /home/user/.profile  
Failed to write reboot parameter file: permission denied  

之后一切似乎都正常工作。
我使用 GRUB 在不同的 SSD 上启动 Windows 或 Ubuntu。

任何帮助都将受到赞赏。

这就是我的/home/user/.profile样子:

# ~/.profile: executed by the command interpreter for login shells.
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
# exists.
# see /usr/share/doc/bash/examples/startup-files for examples.
# the files are located in the bash-doc package.

# the default umask is set in /etc/profile; for setting the umask
# for ssh logins, install and configure the libpam-umask package.
#umask 022

#pactl set-default-source alsa_input.usb-R__DE_Microphones_R__DE_NT-USB_Mini_0C664231-00.mono-fallback
#pactl set-default-sink alsa_output.pci-0000_00_1f.3.hdmi-stereo

# if running bash
if [ -n "$BASH_VERSION" ]; then
    # include .bashrc if it exists
    if [ -f "$HOME/.bashrc" ]; then
    . "$HOME/.bashrc"
    fi
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
    PATH="$HOME/bin:$PATH"
fi

# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ] ; then
    PATH="$HOME/.local/bin:$PATH"
fi

答案1

我在 中定义了一个错误的别名.bashrc。删除它就可以解决问题。

答案2

下面我给出了一些尝试性的解决方案。同时,请发布以下信息:

  1. 似乎这样的错误不应该在启动后出现,而是在登录您的帐户后出现,对吗?
  2. usersudoer 吗?

尝试性解决方案

  1. 如果user不是 sudoer,请尝试使其成为 sudoer,并检查问题是否仍然存在。
  2. 尝试检查启动日志文件,看看是否可以识别问题和/或导致报告错误的文件,请参阅如何查看日志以查找启动问题。然后尝试更改该文件的权限,或添加user到可以写入该文件的组。

请在问题中发布您对结果的反馈。以 markdown 格式的文本发布结果最为方便,而不是以屏幕截图的形式。

有关的

  1. https://superuser.com/questions/176165/where-linux-places-the-messages-of-boot

相关内容