我是 Ubuntu 的新用户,我买了一台新笔记本电脑,里面有 GTX 1650 GPU,但 Ubuntu 使用的是 CPU 集成 GPU。我想换到 1650,但我没能做到……我首先尝试安装 1650 的驱动程序,但当我尝试启动时,它说 Prime 不受支持
sudo nvidia-settings
我尝试过这个:
sudo apt install nvidia-prime
它告诉我 prime 已经安装...
我已经寻找解决方法,但没有任何效果。有什么建议吗?
新的输出lspci -k | grep -EA3 'VGA|3D|Display'
是
01:00.0 VGA compatible controller: NVIDIA Corporation Device 1f91 (rev a1)
Subsystem: Hewlett-Packard Company Device 86d5
Kernel driver in use: nvidia
Kernel modules: nvidiafb, nouveau, nvidia_drm, nvidia
--
05:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Picasso (rev c2)
Subsystem: Hewlett-Packard Company Device 86d5
Kernel driver in use: amdgpu
Kernel modules: amdgpu
输出glxinfo | grep OpenGL
:
OpenGL vendor string: X.Org
OpenGL renderer string: AMD RAVEN (DRM 3.27.0, 5.0.0-37-generic, LLVM 8.0.0)
OpenGL core profile version string: 4.5 (Core Profile) Mesa 19.0.8
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL core profile extensions:
OpenGL version string: 4.5 (Compatibility Profile) Mesa 19.0.8
OpenGL shading language version string: 4.50
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile
OpenGL extensions:
OpenGL ES profile version string: OpenGL ES 3.2 Mesa 19.0.8
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.20
OpenGL ES profile extensions:
的输出为prime-select query
:
nvidia
重要编辑!我已经清除了驱动程序,并使用 ubuntu 附加驱动程序面板(nvidia 440 驱动程序)重新安装它们,我还安装了 prime,并且知道它说有错误。以下是输出nvidia-settings
ERROR: Unable to load info from any available system
(nvidia-settings:2747): GLib-GObject-CRITICAL **: 15:35:48.650: g_object_unref: assertion 'G_IS_OBJECT (object)' failed
** Message: 15:35:48.657: PRIME: No offloading required. Abort
** Message: 15:35:48.657: PRIME: is it supported? no
答案1
我知道这看起来像是一个简单的答案,但看起来您并没有尝试以 Ubuntu 提供给您的默认方式切换到驱动程序:
软件和更新程序中的选项卡additional drivers
。转到那里,看看您是否能够切换到它。
此外,如果您想为 Nvidia GPU 安装最新的 440 驱动程序,这里是它的 PPA:
sudo add-apt-repository ppa:graphics-drivers
然后做sudo apt update && sudo apt upgrade -yy
在使用涉及 sudo 调用的随机人员命令时要小心。