Форум программистов, компьютерный форум, киберфорум
FreeBSD
Войти
Регистрация
Восстановить пароль
Карта форума Темы раздела Блоги Сообщество Поиск Заказать работу  
 
Рейтинг 4.64/11: Рейтинг темы: голосов - 11, средняя оценка - 4.64
3 / 3 / 0
Регистрация: 26.12.2013
Сообщений: 27
1

Настройка Nvidia optimus

17.02.2016, 13:26. Показов 2083. Ответов 2
Метки нет (Все метки)

Author24 — интернет-сервис помощи студентам
Доброго времени суток! Прошу помочь в настройке optimus на Intel HD Graphics 2000 + GeForce 520mx. Нашел 2 статьи но, к сожалению, там мало что понятно.

1)OptimusVideoSupport
2)Бета-версия драйверов Nvidia 319.12 FreeBSD
Может есть другие способы, в общем, буду благодарен за любую помощь.

Схожие темы на этом и других форумах прочитал ответа не нашел.

Конфигурация установлен драйвер.
P.S. xorg.conf xorg.0.log прилагаю

Добавлено через 4 минуты
xorg.conf



Bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
Section "ServerLayout"
    Identifier     "X.org Configured"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" RightOf "Screen0"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "Keyboard0" "CoreKeyboard"
EndSection
 
Section "Files"
    ModulePath   "/usr/local/lib/xorg/modules"
    FontPath     "/usr/local/share/fonts/misc/"
    FontPath     "/usr/local/share/fonts/TTF/"
    FontPath     "/usr/local/share/fonts/OTF/"
    FontPath     "/usr/local/share/fonts/Type1/"
    FontPath     "/usr/local/share/fonts/100dpi/"
    FontPath     "/usr/local/share/fonts/75dpi/"
EndSection
 
Section "Module"
    Load  "glx"
EndSection
 
Section "InputDevice"
    Identifier  "Keyboard0"
    Driver      "kbd"
EndSection
 
Section "InputDevice"
    Identifier  "Mouse0"
    Driver      "mouse"
    Option      "Protocol" "auto"
    Option      "Device" "/dev/sysmouse"
    Option      "ZAxisMapping" "4 5 6 7"
EndSection
 
Section "Monitor"
    Identifier   "Monitor0"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection
 
Section "Monitor"
    Identifier   "Monitor1"
    VendorName   "Monitor Vendor"
    ModelName    "Monitor Model"
EndSection
 
Section "Device"
    Identifier  "Card0"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"
EndSection
 
Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "NoAccel"               # [<bool>]
        #Option     "AccelMethod"           # <str>
        #Option     "Backlight"             # <str>
        #Option     "DRI"                   # <str>
        #Option     "ColorKey"              # <i>
        #Option     "VideoKey"              # <i>
        #Option     "Tiling"                # [<bool>]
        #Option     "LinearFramebuffer"     # [<bool>]
        #Option     "SwapbuffersWait"       # [<bool>]
        #Option     "TripleBuffer"          # [<bool>]
        #Option     "XvPreferOverlay"       # [<bool>]
        #Option     "HotPlug"               # [<bool>]
        #Option     "ReprobeOutputs"        # [<bool>]
        #Option     "XvMC"                  # [<bool>]
        #Option     "ZaphodHeads"           # <str>
        #Option     "TearFree"              # [<bool>]
        #Option     "PerCrtcPixmaps"        # [<bool>]
        #Option     "FallbackDebug"         # [<bool>]
        #Option     "DebugFlushBatches"     # [<bool>]
        #Option     "DebugFlushCaches"      # [<bool>]
        #Option     "DebugWait"             # [<bool>]
        #Option     "BufferCache"           # [<bool>]
    Identifier  "Card1"
    Driver      "intel"
    BusID       "PCI:0:2:0"
EndSection
 
Section "Screen"
    Identifier "Screen0"
    Device     "Card0"
    Monitor    "Monitor0"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
 
Section "Screen"
    Identifier "Screen1"
    Device     "Card1"
    Monitor    "Monitor1"
    SubSection "Display"
        Viewport   0 0
        Depth     1
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     4
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     8
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     15
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     16
    EndSubSection
    SubSection "Display"
        Viewport   0 0
        Depth     24
    EndSubSection
EndSection
0
Programming
Эксперт
94731 / 64177 / 26122
Регистрация: 12.04.2006
Сообщений: 116,782
17.02.2016, 13:26
Ответы с готовыми решениями:

NVIDIA optimus
помогите запустить xorg с nvidia картой

nvidia optimus vs freebsd 8.2
Ребят,кто-нибудь ставил фря на ноут с оптимус(гибридная графика интел+инвидиа)? если ставили...

Диагноз - Nvidia Optimus
Доброго всем времени суток, прошу помощи с решением тяжелой задачи с ноутбуком, и двумя...

Темная сторона nvidia optimus
есть ноутбук со след. хар-ками: intel core i5 nvidia gt710m так же, насколько я понял, на...

2
3 / 3 / 0
Регистрация: 26.12.2013
Сообщений: 27
17.02.2016, 13:29  [ТС] 2
xorg.0.log


[ 814.846]
X.Org X Server 1.17.4
Release Date: 2015-10-28
[ 814.846] X Protocol Version 11, Revision 0
[ 814.846] Build Operating System: FreeBSD 10.1-RELEASE-p29 amd64
[ 814.846] Current Operating System: FreeBSD Ruslan.frbsd.org 10.2-RELEASE FreeBSD 10.2-RELEASE #0 r286666: Wed Aug 12 15:26:37 UTC 2015 root@releng1.nyi.freebsd.org:/usr/obj/usr/src/sys/GENERIC amd64
[ 814.847] Build Date: 31 January 2016 04:12:21AM
[ 814.847]
[ 814.847] Current version of pixman: 0.32.8
[ 814.847] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 814.847] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 814.847] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Feb 16 23:44:13 2016
[ 814.891] (==) Using config file: "/etc/X11/xorg.conf"
[ 814.909] (==) ServerLayout "X.org Configured"
[ 814.909] (**) |-->Screen "Screen0" (0)
[ 814.909] (**) | |-->Monitor "Monitor0"
[ 814.910] (**) | |-->Device "Card0"
[ 814.910] (**) |-->Screen "Screen1" (1)
[ 814.910] (**) | |-->Monitor "Monitor1"
[ 814.910] (**) | |-->Device "Card1"
[ 814.910] (**) |-->Input Device "Mouse0"
[ 814.910] (**) |-->Input Device "Keyboard0"
[ 814.910] (==) Automatically adding devices
[ 814.910] (==) Automatically enabling devices
[ 814.910] (==) Not automatically adding GPU devices
[ 815.031] (**) FontPath set to:
/usr/local/share/fonts/misc/,
/usr/local/share/fonts/TTF/,
/usr/local/share/fonts/OTF/,
/usr/local/share/fonts/Type1/,
/usr/local/share/fonts/100dpi/,
/usr/local/share/fonts/75dpi/,
/usr/local/share/fonts/misc/,
/usr/local/share/fonts/TTF/,
/usr/local/share/fonts/OTF/,
/usr/local/share/fonts/Type1/,
/usr/local/share/fonts/100dpi/,
/usr/local/share/fonts/75dpi/
[ 815.031] (**) ModulePath set to "/usr/local/lib/xorg/modules"
[ 815.031] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 815.031] (WW) Disabling Mouse0
[ 815.031] (WW) Disabling Keyboard0
[ 815.031] (II) Loader magic: 0x801510
[ 815.031] (II) Module ABI versions:
[ 815.031] X.Org ANSI C Emulation: 0.4
[ 815.031] X.Org Video Driver: 19.0
[ 815.031] X.Org XInput driver : 21.0
[ 815.031] X.Org Server Extension : 9.0
[ 815.042] (--) PCI:*(0:0:2:0) 8086:0106:144d:c606 rev 9, Mem @ 0xe1000000/4194304, 0xd0000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/65536
[ 815.042] (--) PCI: (0:1:0:0) 10de:1051:144d:c606 rev 161, Mem @ 0xe0000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x00003000/128
[ 815.043] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 815.043] (II) LoadModule: "glx"
[ 815.078] (II) Loading /usr/local/lib/xorg/modules/extensions/libglx.so
[ 817.296] (II) Module glx: vendor="NVIDIA Corporation"
[ 817.296] compiled for 4.0.2, module version = 1.0.0
[ 817.296] Module class: X.Org Server Extension
[ 817.296] (II) NVIDIA GLX Module 346.47 Thu Feb 19 18:07:16 PST 2015
[ 817.311] (II) LoadModule: "nvidia"
[ 817.312] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so
[ 817.413] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 817.413] compiled for 4.0.2, module version = 1.0.0
[ 817.413] Module class: X.Org Video Driver
[ 817.423] (II) LoadModule: "intel"
[ 817.423] (II) Loading /usr/local/lib/xorg/modules/drivers/intel_drv.so
[ 817.457] (II) Module intel: vendor="X.Org Foundation"
[ 817.457] compiled for 1.17.4, module version = 2.21.15
[ 817.457] Module class: X.Org Video Driver
[ 817.457] ABI class: X.Org Video Driver, version 19.0
[ 817.457] (II) NVIDIA dlloader X Driver 346.47 Thu Feb 19 17:45:04 PST 2015
[ 817.457] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 817.458] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
GM45, 4 Series, G45/G43, Q45/Q43, G41, B43, HD Graphics,
HD Graphics 2000, HD Graphics 3000, HD Graphics 2500,
HD Graphics 4000, HD Graphics P4000, HD Graphics 4600,
HD Graphics 5000, HD Graphics P4600/P4700, Iris(TM) Graphics 5100,
HD Graphics 4400, HD Graphics 4200, Iris(TM) Pro Graphics 5200
[ 817.459] (--) Using syscons driver with X support (version 0.x)
[ 817.459] (--) using VT number 9

[ 817.483] (II) Loading sub module "fb"
[ 817.483] (II) LoadModule: "fb"
[ 817.483] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 817.498] (II) Module fb: vendor="X.Org Foundation"
[ 817.498] compiled for 1.17.4, module version = 1.0.0
[ 817.498] ABI class: X.Org ANSI C Emulation, version 0.4
[ 817.498] (II) Loading sub module "wfb"
[ 817.498] (II) LoadModule: "wfb"
[ 817.498] (II) Loading /usr/local/lib/xorg/modules/libwfb.so
[ 817.514] (II) Module wfb: vendor="X.Org Foundation"
[ 817.514] compiled for 1.17.4, module version = 1.0.0
[ 817.514] ABI class: X.Org ANSI C Emulation, version 0.4
[ 817.515] (II) Loading sub module "ramdac"
[ 817.515] (II) LoadModule: "ramdac"
[ 817.515] (II) Module "ramdac" already built-in
[ 818.697] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 818.697] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[ 818.697] (==) NVIDIA(0): RGB weight 888
[ 818.697] (==) NVIDIA(0): Default visual is TrueColor
[ 818.697] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 818.718] (**) NVIDIA(0): Enabling 2D acceleration
[ 819.144] (II) NVIDIA(0): NVIDIA GPU GeForce GT 520MX (GF119) at PCI:1:0:0 (GPU-0)
[ 819.144] (--) NVIDIA(0): Memory: 1048576 kBytes
[ 819.144] (--) NVIDIA(0): VideoBIOS: 75.19.4f.00.1d
[ 819.145] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 819.145] (--) NVIDIA(0): Valid display device(s) on GeForce GT 520MX at PCI:1:0:0
[ 819.145] (--) NVIDIA(0): none
[ 819.145] (II) NVIDIA(0): Validated MetaModes:
[ 819.145] (II) NVIDIA(0): "NULL"
[ 819.145] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[ 819.145] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[ 819.145] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[ 819.145] (==) intel(1): Depth 24, (--) framebuffer bpp 32
[ 819.145] (==) intel(1): RGB weight 888
[ 819.145] (==) intel(1): Default visual is TrueColor
[ 819.145] (--) intel(1): Integrated Graphics Chipset: Intel(R) HD Graphics 2000
[ 819.154] (**) intel(1): Relaxed fencing enabled
[ 819.154] (**) intel(1): Wait on SwapBuffers? enabled
[ 819.154] (**) intel(1): Triple buffering? enabled
[ 819.154] (**) intel(1): Framebuffer tiled
[ 819.154] (**) intel(1): Pixmaps tiled
[ 819.154] (**) intel(1): 3D buffers tiled
[ 819.154] (**) intel(1): SwapBuffers wait enabled
[ 819.154] (==) intel(1): video overlay key set to 0x101fe
[ 819.154] (II) intel(1): Output LVDS1 using monitor section Monitor1
[ 819.154] (II) intel(1): Output VGA1 has no monitor section
[ 819.159] (II) intel(1): Output HDMI1 has no monitor section
[ 819.168] (II) intel(1): Output DP1 has no monitor section
[ 819.178] (II) intel(1): EDID for output LVDS1
[ 819.178] (II) intel(1): Manufacturer: AUO Model: 149e Serial#: 0
[ 819.178] (II) intel(1): Year: 2012 Week: 1
[ 819.178] (II) intel(1): EDID Version: 1.3
[ 819.178] (II) intel(1): Digital Display Input
[ 819.178] (II) intel(1): Max Image Size [cm]: horiz.: 38 vert.: 21
[ 819.178] (II) intel(1): Gamma: 2.20
[ 819.178] (II) intel(1): No DPMS capabilities specified
[ 819.179] (II) intel(1): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 819.179] (II) intel(1): First detailed timing is preferred mode
[ 819.179] (II) intel(1): redX: 0.620 redY: 0.340 greenX: 0.325 greenY: 0.570
[ 819.179] (II) intel(1): blueX: 0.150 blueY: 0.060 whiteX: 0.313 whiteY: 0.329
[ 819.179] (II) intel(1): Manufacturer's mask: 0
[ 819.179] (II) intel(1): Supported detailed timing:
[ 819.179] (II) intel(1): clock: 100.0 MHz Image Size: 382 x 214 mm
[ 819.179] (II) intel(1): h_active: 1600 h_sync: 1648 h_sync_end 1680 h_blank_end 1798 h_border: 0
[ 819.179] (II) intel(1): v_active: 900 v_sync: 903 v_sync_end 909 v_blanking: 926 v_border: 0
[ 819.179] (II) intel(1): Unknown vendor-specific block f
[ 819.179] (II) intel(1): AUO
[ 819.179] (II) intel(1): B173RW01 V4
[ 819.179] (II) intel(1): EDID (in hex):
[ 819.179] (II) intel(1): 00ffffffffffff0006af9e1400000000
[ 819.179] (II) intel(1): 01160103802615780ac4959e57539226
[ 819.179] (II) intel(1): 0f505400000001010101010101010101
[ 819.179] (II) intel(1): 010101010101102740c660841a303020
[ 819.179] (II) intel(1): 36007ed6100000180000000f00000000
[ 819.179] (II) intel(1): 00000000000000000020000000fe0041
[ 819.179] (II) intel(1): 554f0a202020202020202020000000fe
[ 819.179] (II) intel(1): 004231373352573031205634200a00c9
[ 819.179] (II) intel(1): Not using default mode "320x240" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "400x300" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "400x300" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "512x384" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "640x480" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "640x512" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "800x600" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "896x672" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "928x696" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "960x720" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "700x525" (doublescan mode not supported)
[ 819.179] (II) intel(1): Not using default mode "1024x768" (doublescan mode not supported)
[ 819.179] (II) intel(1): Printing probed modes for output LVDS1
[ 819.179] (II) intel(1): Modeline "1600x900"x60.1 100.00 1600 1648 1680 1798 900 903 909 926 -hsync -vsync (55.6 kHz eP)
[ 819.179] (II) intel(1): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 819.179] (II) intel(1): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 819.179] (II) intel(1): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 819.179] (II) intel(1): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 819.179] (II) intel(1): EDID for output VGA1
[ 819.183] (II) intel(1): EDID for output HDMI1
[ 819.192] (II) intel(1): EDID for output DP1
[ 819.192] (II) intel(1): Output LVDS1 connected
[ 819.192] (II) intel(1): Output VGA1 disconnected
[ 819.192] (II) intel(1): Output HDMI1 disconnected
[ 819.192] (II) intel(1): Output DP1 disconnected
[ 819.192] (II) intel(1): Using exact sizes for initial modes
[ 819.192] (II) intel(1): Output LVDS1 using initial mode 1600x900
[ 819.192] (II) intel(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[ 819.192] (II) intel(1): Kernel page flipping support detected, enabling
[ 819.192] (==) intel(1): DPI set to (96, 96)
[ 819.192] (II) Loading sub module "fb"
[ 819.192] (II) LoadModule: "fb"
0
3 / 3 / 0
Регистрация: 26.12.2013
Сообщений: 27
17.02.2016, 13:30  [ТС] 3
[ 819.192] (II) Loading /usr/local/lib/xorg/modules/libfb.so
[ 819.192] (II) Module fb: vendor="X.Org Foundation"
[ 819.192] compiled for 1.17.4, module version = 1.0.0
[ 819.192] ABI class: X.Org ANSI C Emulation, version 0.4
[ 819.192] (II) Loading sub module "dri2"
[ 819.192] (II) LoadModule: "dri2"
[ 819.192] (II) Module "dri2" already built-in
[ 819.192] (--) Depth 24 pixmap format is 32 bpp
[ 819.193] (II) NVIDIA: Reserving 3072.00 MB of virtual memory for indirect memory
[ 819.193] (II) NVIDIA: access.
[ 819.195] (II) NVIDIA(0): Setting mode "NULL"
[ 819.229] (II) NVIDIA(0): Built-in logo is bigger than the screen.
[ 819.282] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 819.282] (==) NVIDIA(0): Backing store enabled
[ 819.282] (==) NVIDIA(0): Silken mouse enabled
[ 819.296] (==) NVIDIA(0): DPMS enabled
[ 819.296] (II) Loading sub module "dri2"
[ 819.296] (II) LoadModule: "dri2"
[ 819.296] (II) Module "dri2" already built-in
[ 819.296] (II) NVIDIA(0): [DRI2] Setup complete
[ 819.296] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 819.297] (--) RandR disabled
[ 819.297] (II) intel(1): [DRI2] Setup complete
[ 819.297] (II) intel(1): [DRI2] DRI driver: i965
[ 819.297] (II) intel(1): Allocated new frame buffer 1600x900 stride 6656, tiled
[ 819.310] (II) UXA(1): Driver registered support for the following operations:
[ 819.310] (II) solid
[ 819.310] (II) copy
[ 819.310] (II) composite (RENDER acceleration)
[ 819.310] (II) put_image
[ 819.310] (II) get_image
[ 819.310] (==) intel(1): Backing store enabled
[ 819.310] (==) intel(1): Silken mouse enabled
[ 819.310] (II) intel(1): Initializing HW Cursor
[ 819.310] (II) intel(1): RandR 1.2 enabled, ignore the following RandR disabled message.
[ 819.310] (==) intel(1): DPMS enabled
[ 819.310] (==) intel(1): Intel XvMC decoder enabled
[ 819.310] (II) intel(1): Set up textured video
[ 819.310] (II) intel(1): [XvMC] xvmc_vld driver initialized.
[ 819.310] (II) intel(1): direct rendering: DRI2 Enabled
[ 819.468] (--) RandR disabled
[ 819.476] (II) Initializing extension GLX
[ 819.476] (II) Indirect GLX disabled.(II) intel(1): Setting screen physical size to 423 x 238
[ 820.229] (II) config/devd: probing input devices...
[ 820.230] (II) config/devd: adding input device (null) (/dev/kbdmux)
[ 820.230] (II) LoadModule: "kbd"
[ 820.248] (II) Loading /usr/local/lib/xorg/modules/input/kbd_drv.so
[ 820.256] (II) Module kbd: vendor="X.Org Foundation"
[ 820.256] compiled for 1.17.4, module version = 1.8.1
[ 820.256] Module class: X.Org XInput Driver
[ 820.256] ABI class: X.Org XInput driver, version 21.0
[ 820.256] (II) Using input driver 'kbd' for 'kbdmux'
[ 820.256] (**) kbdmux: always reports core events
[ 820.256] (**) kbdmux: always reports core events
[ 820.256] (**) Option "Protocol" "standard"
[ 820.256] (**) Option "XkbRules" "base"
[ 820.256] (**) Option "XkbModel" "pc105"
[ 820.256] (**) Option "XkbLayout" "us"
[ 820.256] (**) Option "config_info" "devd:kbdmux"
[ 820.256] (II) XINPUT: Adding extended input device "kbdmux" (type: KEYBOARD, id 6)
[ 820.272] (II) config/devd: kbdmux is enabled, ignoring device ukbd0
[ 820.272] (II) config/devd: kbdmux is enabled, ignoring device atkbd0
[ 820.273] (II) config/devd: adding input device (null) (/dev/sysmouse)
[ 820.273] (II) LoadModule: "mouse"
[ 820.273] (II) Loading /usr/local/lib/xorg/modules/input/mouse_drv.so
[ 820.284] (II) Module mouse: vendor="X.Org Foundation"
[ 820.284] compiled for 1.17.4, module version = 1.9.1
[ 820.284] Module class: X.Org XInput Driver
[ 820.284] ABI class: X.Org XInput driver, version 21.0
[ 820.284] (II) Using input driver 'mouse' for 'sysmouse'
[ 820.284] (**) sysmouse: always reports core events
[ 820.284] (**) Option "Device" "/dev/sysmouse"
[ 820.284] (==) sysmouse: Protocol: "Auto"
[ 820.284] (**) sysmouse: always reports core events
[ 820.284] (==) sysmouse: Emulate3Buttons, Emulate3Timeout: 50
[ 820.284] (**) sysmouse: ZAxisMapping: buttons 4 and 5
[ 820.284] (**) sysmouse: Buttons: 5
[ 820.284] (**) Option "config_info" "devd:sysmouse"
[ 820.284] (II) XINPUT: Adding extended input device "sysmouse" (type: MOUSE, id 7)
[ 820.284] (**) sysmouse: (accel) keeping acceleration scheme 1
[ 820.284] (**) sysmouse: (accel) acceleration profile 0
[ 820.284] (**) sysmouse: (accel) acceleration factor: 2.000
[ 820.284] (**) sysmouse: (accel) acceleration threshold: 4
[ 820.284] (II) sysmouse: SetupAuto: hw.iftype is 4, hw.model is 0
[ 820.284] (II) sysmouse: SetupAuto: protocol is SysMouse
[ 820.284] (II) config/devd: device /dev/psm0 already opened
[ 839.225] (WW) config/devd: devd socket is lost
[ 839.226] (EE) config/devd: fail to connect to devd
[ 840.216] (II) config/devd: terminating backend...
[ 840.216] (II) UnloadModule: "mouse"
[ 840.216] (II) UnloadModule: "kbd"
[ 840.823] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 840.837] (II) Server terminated successfully (0). Closing log file.
0
17.02.2016, 13:30
IT_Exp
Эксперт
87844 / 49110 / 22898
Регистрация: 17.06.2006
Сообщений: 92,604
17.02.2016, 13:30
Помогаю со студенческими работами здесь

Артефакты с NVIDIA GeForce GT640M (Optimus)
Всем доброго времени суток, я хочу попросить помощи у специалистов. Дело в том, что после игры в HL...

NVIDIA Geforce GT 650M с технологией OPTIMUS
2-х гиговая видеокарта показала себя в играх довольно хорошо, но конкретно у меня не долго....

Nvidia optimus(bumblebee) для Debian 8 jessie Gnome 3
Было очень много проблем при установке драйверов, сейчас вернулся к тому с чего начал....

Настройка видеокарты Nvidia GeForce 710m для игр
Привет всем! История такая. Искал в инете правильные настройки Nvidia GeForce 710m для игр,...


Искать еще темы с ответами

Или воспользуйтесь поиском по форуму:
3
Ответ Создать тему
КиберФорум - форум программистов, компьютерный форум, программирование
Powered by vBulletin
Copyright ©2000 - 2024, CyberForum.ru