如何在不使用 xorg.conf 的情况下在启动时删除 Nvidia 徽标?

Jor*_*tro 13 nvidia xorg

我想删除了Nvidia的bootsplash标志,但在互联网上的解决方案,建议增加Option "NoLogo"/etc/X11/xorg.conf

但是我的机器没有那个配置文件,因为我一直插入不同的显示器(这是我的旅行电脑),我想完全避免使用 xorg.conf 并让神奇的自动配置事情发生。

有没有办法在没有 xorg.conf 的情况下删除徽标?

Pan*_*her 11

如果你运行应该工作

sudo nvidia-xconfig --no-logo
Run Code Online (Sandbox Code Playgroud)

这将编写一个最小的 xorg.conf 文件,应该没问题。

我不确定在 xorg.conf 之外有没有办法做到这一点


Jor*_*tro 10

好的找到了一个很好的方法来做到这一点:

/etc/X11/xorg.conf.d/nosplash.conf用这个做一个:

Section "Device"
    Identifier "Nvidia Card"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
EndSection
Run Code Online (Sandbox Code Playgroud)

这样我在/etc/X11.

来源:http : //steamcommunity.com/groups/steamuniverse/discussions/1/496880203075108061/