使用 nvidia 驱动时 tty 模糊

使用 nvidia 驱动时 tty 模糊

我最近升级了我的电脑,在安装了最新的 Ubuntu 后,发现了一个问题。我正在使用 xorg-edgers ppa 的最新 nvidia 驱动程序 (nvidia-346) 以及 GTX 970 gpu。

Grub 自动在高分辨率(小于原始分辨率)下工作,但启动后,按 ctrl-alt-F1-6 得到的 tty 非常模糊,重启/关机时屏幕上显示的命令行输出也是如此(启动期间的文本看起来很好)。

我使用了这里的一些指南,并将 grub 分辨率更改为原生 1920x1080,但 tty 变得更加模糊,甚至完全无法读取。

我该如何修复?这是 nvidia 驱动程序的问题吗?

周围有一些类似的帖子,但我发现没有一个帖子能切中要点,也没有任何帮助,因此才有此疑问。

这是我的 /etc/default/grub 的内容:

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
#GRUB_CMDLINE_LINUX_DEFAULT="nomodeset vga=838 quiet splash"
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=1920x1080

#GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"

以及相关图片(当前 grub 分辨率和 tty 的样子):

grub 分辨率图片

模糊的 tty

答案1

我不太清楚原因,但目前(使用完全更新的软件包),问题已经消失。这很可能是某个软件包中的错误(可能是与第三方驱动程序相关的某些不兼容性)。如果有人仍然遇到问题,请尝试更新所有软件包。

相关内容