[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debian-users:56959] Re: NVIDIA GeForce GTX 760M が正常に動作しない?



山本です。

;; "kmuto>" == kmuto@xxxxxxxx (Kenshi Muto) wrote:

kmuto> NVIDIA Optimusテクノロジーが絡んでる?
kmuto> https://wiki.debian.org/Bumblebee の手順だとどうでしょうか(Wheezy
kmuto> だとbackportsなどいろいろ使わないといけないですが…)。

情報、ありがとうございました。さっそくやってみました。
sources.list に wheezy-backports main contrib non-free を加えた後、
aptitude update してから、

aptitude install -t wheezy-backports bumblebee primus
aptitude install -t wheezy-backports bumblebee-nvidia primus

あたりを書かれた通りに試してみましたが、aptitude は正常に終了したものの、
再起動後の状況に変化なく、残念ながらダメでした。

その後、ダメもとで、bumblebee 関連を削除し、Xorg -configure した(順序
が逆だったかも)ところ、一応、 X が立ち上げるようになりました! 
なんで?ってな感じです。

ただし、『GNOME3 を読み込むのに失敗しました』とかいうメッセージが出て、
フォールバックモードで立ち上がっております。作成された xorg.conf をみて
みると、fbdev が使われており、fbset で情報を見てみるとこんな↓内容です。

=================================================================
Linux Frame Buffer Device Configuration Version 2.1 (23/06/1999) (C)
Copyright 1995-1999 by Geert Uytterhoeven

Opening frame buffer device `/dev/fb0'
Using current video mode from `/dev/fb0'

mode "1920x1080-77"
    # D: 207.383 MHz, H: 85.273 kHz, V: 77.240 Hz
    geometry 1920 1080 1920 1080 32
    timings 4822 240 32 16 4 240 4
    rgba 8/16,8/8,8/0,8/24
endmode

Getting further frame buffer information
Frame buffer device information:
    Name        : EFI VGA
    Address     : 0xd0000000
    Size        : 8323072
    Type        : PACKED PIXELS
    Visual      : TRUECOLOR
    XPanStep    : 0
    YPanStep    : 0
    YWrapStep   : 0
    LineLength  : 7680
    Accelerator : No
=================================================================

とりあえずフォールバックモードで立ち上がっているので X な環境で作業はで
きますが、若干、挙動があやしいところもあるので、nvidia のドライバで動く
ようにもう少しいじってみます。引き続き情報をお待ちしています。よろしく
お願いします。

参考までに、Xorg で生成された xorg.conf (少々修正してあります)を
添付します。

=====================================================================
Section "ServerLayout"
	Identifier     "X.org Configured"
	Screen      0  "Screen0" 0 0
	InputDevice    "Mouse0" "CorePointer"
	InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "InputDevice"
	Identifier  "Keyboard0"
	Driver      "kbd"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/psaux"
	Option	    "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
	Identifier   "Monitor0"
	VendorName   "Monitor Vendor"
	ModelName    "Monitor Model"
EndSection

Section "Device"
	Identifier  "Card0"
	Driver      "fbdev"
	BusID       "PCI:0:2:0"
EndSection

Section "Screen"
	Identifier "Screen0"
	Device     "Card0"
	Monitor    "Monitor0"
	DefaultDepth 24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection
=====================================================================

以上