创建 /etc/dconf/db/site 和 /etc/dconf/db/distro

创建 /etc/dconf/db/site 和 /etc/dconf/db/distro

dconf登录我的 Ubuntu 22.04 dell precision 5570 工作站时出现以下错误:

Error found when loading /etc/profile

# unable to open file '/etc/dconf/db/site': Failed to open file "/etc/dconf/db/site": open() failed: No such file or directory: expect degraded performance
# unable to open file '/etc/dconf/db/distro': Failed to open file "/etc/dconf/db/distro": open() failed: No such file or directory: expect degraded performance

As a result the session will not be configured correctly. You should fix the problem as soon as feasible.

我已尝试按照此 askubuntu 问题中提到的步骤操作: https://askubuntu.com/a/1397206/268697

但是,当我运行它时sudo dconf update,它不会创建/etc/dconf/db/site/etc/dconf/db/distro文件。这似乎导致我的会话在记录后出现一些问题。

有趣的是,这似乎只有当我通过软件和更新->附加驱动程序(当前已启用 nvidia-driver-525)启用专有 nvidia 驱动程序时才会发生。

我搜索了其他地方,但并没有找到任何可以解决此问题的方法。这是一个已知错误,还是存在我找不到的已知修复方法?

答案1

因此我使用以下命令修复了重启时出现的错误:

sudo touch /etc/dconf/db/site
sudo touch /etc/dconf/db/distro
sudo mkdir /etc/dconf/db/site.d
sudo mkdir /etc/dconf/db/distro.d
sudo dconf update

不确定是否应该对这些进行配置,因此不确定这是否是一个修复,还是一个创可贴。

相关内容