web-dev-qa-db-ja.com

Debian 9がGUIで起動しない

古い東芝のノートブックにDebian 9をインストールしたところ、インストール中にすべてがうまくいきました。

インストール完了
インストールが完了したので、新しいシステムで起動します。インストールを再開するのではなく、新しいシステムで起動できるように、必ずインストールメディアを削除してください。

ただし、再起動後、システムはいくつかのエラーメッセージを表示し、暗い画面で停止しました(alt-ctrl-f2〜f6を介してコンソールに切り替えることは引き続き可能です)。

[drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU pipe A FIFO underrun
[drm:intel_set_cpu_fifo_underrun_reporting [i915]] *ERROR* pipe B underrun
[drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU pipe B FIFO underrun
[drm:intel_set_cpu_fifo_underrun_reporting [i915]] *ERROR* CPU pipe B FIFO underrun

何か案は?


ノートブックの仕様
東芝サテライト1135-S155

  • 2.20 GHzのIntel®Celeron®4プロセッサ
  • Intel 852GMチップセット
  • 1Gb RAM
  • 32MBの内蔵Intel®852GMビデオメモリ

Debianバージョン

ソフトウェアの選択
(X)Debianデスクトップ環境
()... GNOME
()... Xfce
()... KDE
( ) ... シナモン
( ) ... メイト
()... LXDE
()Webサーバー
(X)プリントサーバー
()SSHサーバー
(X)標準システムユーティリティ

出力とログファイルの抜粋
/ var/log/installer#grep EE Xorg.0.log

(WW) warning, (EE) error, (NI) not implemented, (??) unknown
[8.534] (EE) Failed to load module "intel" (module does not exist, 0)
[8.535] (EE) Failed to load module "vesa" (module does not exist, 0)
[8.538] (EE) open /dev/dri/card 0: No such file or directory
[8.538] (EE) open /dev/dri/card 0: No such file or directory
[8.538] (EE) Screen 0 deleted because of no matching config section

/ var/log/installer/syslog

pci 0000:02:04.0: bridge configuration invalid ([bus 00-00]), reconfiguring
pci_bud 0000:03:busn_res: can not insert [bus 03-02] under [bus 02] conflicts with (null) [bus 02])
gnome-Shell [548]: Failed to allocate texture: Failed to create texture 2d due to size/format constraints

apt install xserver-xorg-video- {vesa、intel}

Reading package lists ... Done
Building dependency tree
Reading state information ... Done
xserver-xorg-video-intel is already the newest version (2:2.99.917+git20161206-1)
xserver-xorg-video-vesa is already the newest version (1:2.3.4-1+b2).
xserver-xorg-video-vesa set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1
Mark Messa

インストール時にデスクトップ環境(DE)が個別に選択されなかったため、GNOMEがデフォルトで選択されました。ただし、GNOMEは利用可能なシステムに対して重すぎるようです。したがって、DEを他のライターに変更すると、問題は解決しました。

軽量のDEをインストールします(例:mate、xfceまたはlxde)

apt install tasksel aptitude
tasksel

新しいDEを選択して開始

update-alternatives --config x-session-manager
exec startx

もちろん、上記のスクリプトは単なる回避策であり、理想はDebianを再インストールしてこのDEのみを選択することです。

0
Mark Messa