Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须为 Linux 安装 CUDA。我下载了工具包、驱动程序和 SDK。但是当我尝试安装 CUDA 驱动程序时,出现以下错误:
错误:您似乎正在运行 X 服务器; 请在安装前退出 X。
我使用 Ubuntu 10.04 LTS(32 位) 我该如何解决这个问题?
对于 Ubuntu 10.04,假设您使用的是 Gnome 桌面环境,您需要停止gdm守护进程。从终端运行以下命令:
gdm
sudo service gdm stop
这将停止gdm守护进程并将您带到一个裸终端(如果您想重新开始gdm,只需将stop参数替换为start参数)。像往常一样安装 CUDA 工具包、驱动程序和 SDK。完成后,重新启动计算机以确保您使用的是新驱动程序。
stop
start
sudo reboot