次のコマンドを使用してDebian 8システムを更新しようとしています。
apt update
apt upgrade
その後、私のシステムはグラフィック環境(KDE)を起動しなくなります。標準コマンドを試してみましたapt-get clean
。apt-get install --fix-broken
/etc/init.d/kdm stop
/etc/init.d/kdm start
また、エラーも表示されません。
エラーが見つかると、次のような結果が出ます。
grep \(EE\) /var/log/Xorg.0.log
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 146.464] (EE) NVIDIA: Failed to initialize the NVIDIA kernel module. Please see the
[ 146.464] (EE) NVIDIA: system's kernel log for additional error messages and
[ 146.464] (EE) NVIDIA: consult the NVIDIA README for details.
[ 146.464] (EE) No devices detected.
[ 146.464] (EE)
[ 146.464] (EE) no screens found(EE)
[ 146.464] (EE)
[ 146.464] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[ 146.464] (EE)
@Kevin Lemaireが指摘したように:
lspci| grep VGA
00:02.0 VGA compatible controller: Intel Corporation HD Graphics 530 (rev 06)
以下に基づいて更新されたNVIDIAパッケージ/var/log/apt/history.log
:
Upgrade: nvidia-alternative:amd64 (340.102-1, 340.106-1), libegl1-nvidia:amd64 (340.102-1, 340.106-1), nvidia-driver:amd64 (340.102-1, 340.106-1), xserver-xorg-video-nvidia:amd64 (340.102-1, 340.106-1), nvidia-opencl-common:amd64 (340.102-1, 340.106-1), nvidia-glx:amd64 (340.102-1, 340.106-1), nvidia-opencl-icd:amd64 (340.102-1, 340.106-1), libnvidia-compiler:amd64 (340.102-1, 340.106-1), libgl1-nvidia-glx:amd64 (340.102-1, 340.106-1), libgl1-nvidia-glx:i386 (340.102-1, 340.106-1), nvidia-kernel-dkms:amd64 (340.102-1, 340.106-1), libnvidia-ml1:amd64 (340.102-1, 340.106-1), nvidia-vdpau-driver:amd64 (340.102-1, 340.106-1), nvidia-driver-bin:amd64 (340.102-1, 340.106-1), nvidia-smi:amd64 (340.102-1, 340.106-1), libnvidia-eglcore:amd64 (340.102-1, 340.106-1)
(単語を含むパッケージのみをフィルタリングしましたnvidia
。)
修正する/etc/X11/xorg.conf
問題が解決したように見えるファイルを削除しました。グラフィカル環境を再起動できます。ただし、これは遅くなる可能性があるため、2番目のモニターは使用できなくなります。 VGA情報の変更
❯ lspci | grep VGA
01:00.0 VGA compatible controller: NVIDIA Corporation GK107 [GeForce GT 630 OEM] (rev a1)
答え1
問題は、nvidiaドライバがインストールされていますが、実際にnvidiaカードがないことです。
どのパッケージがインストールされているかを確認するには:
dpkg -l | grep -i nvidia
見つかったパッケージを削除するには:
sudo apt-get remove --purge nvidia-package-name
答え2
〜のようにケビン・レミア問題は実際にはNVIDIA GPUがないということを指摘しました。ただし、アップデートは/etc/X11/xorg.conf
NVIDIA GPUを指定します。ファイルを削除するとmv /etc/X11/xorg.conf /etc/X11/xorg.conf.backup
問題が解決しました。
答え3
CLIモードに入ります
sudo apt-get remove --purge nvidia*
sudo apt-get install ubuntu-desktop
sudo apt-get autoremove
sudo rm /etc/X11/xorg.conf
echo "nouveau" | sudo tee -a /etc/modules
sudo reboot
再起動後、nouveauドライバを使用して操作を再開できます。
sudo add-apt-repository --remove ppa:graphics-drivers/ppa
sudo apt-get autoremove
sudo apt-get autoclean
引用するUbuntu Wiki