LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 03-29-2017, 07:40 AM   #16
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749

Quote:
I can move the cursor across the screens, but not a window.
That is expected behaviour when you are using two separated displays.
Quote:
I am trying to use Xinerama
For me, that is a single display across both monitors.
Try enabling the Xinerama option in the ServerLayout section.
Code:
	Option         "Xinerama" "True"  # enable XINERAMA extension.  Default is disabled.
 
1 members found this post helpful.
Old 03-29-2017, 05:45 PM   #17
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
I tried "True", "1" and "on" on "ServerLayout" and "ServerFlags" sections, one by one.
All those Xinerama values gave me 2 blank monitors.

Last edited by frushiyama; 03-29-2017 at 05:47 PM.
 
Old 03-29-2017, 09:29 PM   #18
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
Your Device sections do not have the Screen entries as suggested by @allend.
 
Old 03-30-2017, 09:29 AM   #19
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
To summarise, your setup appears to be:
NVIDIA GPU GeForce GTX 950 (GM206-A) at PCI bus address 1:0:0 connected to LG Ultrawide monitor. These have been configured using Screen section with identifier Screen0, Device Section with identifier Card1 and Monitor Section with identifier Monitor0. This is being assigned as xrandr output DFP-1.
Intel(R) HD Graphics 4600 at PCI bus address 0:2:0 connected to LG Flatron monitor. These have been configured using Screen section with identifier Screen1, Device Section with identifier Card0 and Monitor Section with identifier Monitor1. This is being assigned as xrandr output VGA1.

I suggest trying some device specific configuration.
For the nVidia:
In the Device Section
Code:
Option         "TwinView" "Off"
Option         "UseDisplayDevice" "DFP-1"
and in the Screen Section
Code:
Option         "metamodes" "DFP-1: nvidia-auto-select +0+0"
For the Intel:
In the Device Section
Code:
Option         "UseDisplayDevice" "VGA1"
and in the Screen Section
Code:
SubSection "Display"
  Modes  "mode-name"
EndSubSection
where you need to supply the mode-name for your desired resolution.
Your Xorg.0.log shows this display as defaulting to
Quote:
[ 32.025] (II) intel(1): switch to mode 1024x768@60.0 on VGA1
which may be conflicting with the nVidia default resolution.
Quote:
[ 31.864] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1080

Last edited by allend; 03-30-2017 at 09:41 AM.
 
Old 04-14-2017, 05:38 PM   #20
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
I've been able to make both monitors work on the same screen of xserver with this: http://us.download.nvidia.com/XFree8...E/randr14.html .
Here is my xorg.conf that is working now:
Code:
#Generated with the aid of http://www.linuxquestions.org/questions/slackware-14/dual-monitor-hdmi-and-vga-4175602604/page2.html

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/75dpi"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
	Load  "glx"
#	Load  "nvidia"
#	Load  "intel"
EndSection

#Section "ServerFlags"
#	Option "Xinerama" "True"
#EndSection

#Section "Extensions"
#	Option	"Composite"	"Disable"
#EndSection

#Section "InputDevice"
#	Identifier  "Keyboard0"
#	Driver      "kbd"
#	Option       "XkbVariant" ",dvorak"
#EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    BusID "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection
Still remains some issues with kde desktop but it is a problem for another topic. I'll mark this as solved for now and i'll update when i reorganize my xorg.conf.

Last edited by frushiyama; 04-16-2017 at 08:30 PM. Reason: typo
 
Old 04-04-2018, 01:31 PM   #21
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
Old post, but after being on W10 for some months, i am back home with 14.2 instead of -current branch.
I have the same hardware but this time xrandr does not list VGA as an output.
Do i have to force it somehow to recognize? I am searching an approach to solve this again but i dont know if i need to
1 solve xrandr or
2 is a kernel issue or
3 other suggestion to make the system recognize VGA
 
Old 04-07-2018, 05:44 PM   #22
RadicalDreamer
Senior Member
 
Registered: Jul 2016
Location: USA
Distribution: Slackware64-Current
Posts: 1,816

Rep: Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981Reputation: 981
Why not get a VGA to DVI converter, plug it into your nvidia card, and use nvidia-settings to adjust multi-monitor support?
 
Old 04-07-2018, 08:18 PM   #23
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
Quote:
Originally Posted by RadicalDreamer View Post
Why not get a VGA to DVI converter, plug it into your nvidia card, and use nvidia-settings to adjust multi-monitor support?
I do not want to spend money. Besides, it worked once, so i want it to work again.
 
1 members found this post helpful.
Old 04-08-2018, 01:34 PM   #24
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
All I'll do is ask you the same questions as before.
 
1 members found this post helpful.
Old 04-08-2018, 02:58 PM   #25
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
Ok, here it is:
Code:
root@darkstar:~# lspci -v -s 00:02.0
00:02.0 Display controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
        Subsystem: ASUSTeK Computer Inc. Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller
        Flags: bus master, fast devsel, latency 0, IRQ 34
        Memory at f7400000 (64-bit, non-prefetchable) [size=4M]
        Memory at d0000000 (64-bit, prefetchable) [size=256M]
        I/O ports at f000 [size=64]
        Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
        Capabilities: [d0] Power Management version 2
        Capabilities: [a4] PCI Advanced Features
        Kernel driver in use: i915
        Kernel modules: i915
/etc/X11/xorg.conf:
Code:
#Generated with the aid of http://www.linuxquestions.org/questi...604/page2.html

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/75dpi"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
	Load  "glx"
#	Load  "nvidia"
#	Load  "intel"
EndSection

#Section "ServerFlags"
#	Option "Xinerama" "True"
#EndSection

#Section "Extensions"
#	Option	"Composite"	"Disable"
#EndSection

#Section "InputDevice"
#	Identifier  "Keyboard0"
#	Driver      "kbd"
#	Option       "XkbVariant" ",dvorak"
#EndSection

Section "InputClass"
	Identifier "keyboard-all"
	MatchIsKeyboard "on"
	MatchDevicePath "/dev/input/event*"
	Driver "evdev"
	Option "XkbLayout" "dvorak"
	#Option "XkbVariant" ""
	Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    BusID "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection
/etc/X11/xorg.conf.d is empty.
Here is the output of xrandr:
Code:
bash-4.3$ xrandr 
Screen 0: minimum 8 x 8, current 2560 x 1080, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected primary 2560x1080+0+0 (normal left inverted right x axis y axis) 798mm x 334mm
   2560x1080     60.00*+
   1920x1080     60.00    59.94    50.00    29.97    60.05    60.00    50.04  
   1680x1050     59.95                                                                                                                                                                                                                                                                                                                                                     
   1600x900      60.00                                                                                                                                                                                                                                                                                                                                                     
   1280x1024     75.02    60.02                                                                                                                                                                                                                                                                                                                                            
   1280x720      60.00    59.94    50.00                                                                                                                                                                                                                                                                                                                                   
   1152x864      75.00                                                                                                                                                                                                                                                                                                                                                     
   1024x768      75.03    60.00                                                                                                                                                                                                                                                                                                                                            
   800x600       75.00    60.32                                                                                                                                                                                                                                                                                                                                            
   720x576       50.00                                                                                                                                                                                                                                                                                                                                                     
   720x480       59.94                                                                                                                                                                                                                                                                                                                                                     
   640x480       75.00    59.94    59.93                                                                                                                                                                                                                                                                                                                                   
DP-0 disconnected (normal left inverted right x axis y axis)                                                                                                                                                                                                                                                                                                               
DP-1 disconnected (normal left inverted right x axis y axis)                                                                                                                                                                                                                                                                                                               
DVI-D-0 disconnected (normal left inverted right x axis y axis)

Last edited by frushiyama; 04-08-2018 at 02:58 PM. Reason: typo
 
Old 04-08-2018, 04:04 PM   #26
Richard Cranium
Senior Member
 
Registered: Apr 2009
Location: McKinney, Texas
Distribution: Slackware64 15.0
Posts: 3,858

Rep: Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225Reputation: 2225
How about the contents of /var/log/Xorg.0.log?
 
1 members found this post helpful.
Old 04-08-2018, 06:14 PM   #27
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
Here, /var/log/Xorg.0.log:
Code:
[    36.121] 
X.Org X Server 1.18.3
Release Date: 2016-04-04
[    36.121] X Protocol Version 11, Revision 0
[    36.121] Build Operating System: Slackware 14.2 Slackware Linux Project
[    36.121] Current Operating System: Linux darkstar 4.4.118 #1 SMP Sun Feb 25 14:18:45 CST 2018 x86_64
[    36.121] Kernel command line: auto BOOT_IMAGE=Slackware ro root=802 ramdisk=0 vt.default_utf8=1
[    36.121] Build Date: 18 October 2017  12:21:16PM
[    36.121]  
[    36.121] Current version of pixman: 0.34.0
[    36.121] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    36.121] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    36.121] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Apr  7 07:44:34 2018
[    36.400] (==) Using config file: "/etc/X11/xorg.conf"
[    36.400] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    36.641] (==) ServerLayout "layout"
[    36.641] (**) |-->Screen "nvidia" (0)
[    36.641] (**) |   |-->Monitor "<default monitor>"
[    36.642] (**) |   |-->Device "nvidia"
[    36.642] (**) |   |-->GPUDevice "intel"
[    36.642] (==) No monitor specified for screen "nvidia".
	Using a default monitor configuration.
[    36.642] (**) |-->Inactive Device "intel"
[    36.642] (==) Automatically adding devices
[    36.642] (==) Automatically enabling devices
[    36.642] (==) Automatically adding GPU devices
[    36.642] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    36.694] (WW) The directory "/usr/share/fonts/local" does not exist.
[    36.695] 	Entry deleted from font path.
[    36.695] (WW) The directory "/usr/share/fonts/CID" does not exist.
[    36.695] 	Entry deleted from font path.
[    36.695] (**) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/misc,
	/usr/share/fonts/75dpi/:unscaled,
	/usr/share/fonts/100dpi/:unscaled,
	/usr/share/fonts/75dpi,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/cyrillic,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/misc,
	/usr/share/fonts/75dpi/:unscaled,
	/usr/share/fonts/100dpi/:unscaled,
	/usr/share/fonts/75dpi,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/cyrillic
[    36.695] (**) ModulePath set to "/usr/lib64/xorg/modules"
[    36.695] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    36.695] (II) Loader magic: 0x807c00
[    36.695] (II) Module ABI versions:
[    36.695] 	X.Org ANSI C Emulation: 0.4
[    36.695] 	X.Org Video Driver: 20.0
[    36.695] 	X.Org XInput driver : 22.1
[    36.695] 	X.Org Server Extension : 9.0
[    36.695] (II) xfree86: Adding drm device (/dev/dri/card1)
[    36.696] (II) xfree86: Adding drm device (/dev/dri/card0)
[    36.697] (--) PCI: (0:0:2:0) 8086:0412:1043:8534 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[    36.697] (--) PCI:*(0:1:0:0) 10de:1402:1458:36c3 rev 161, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    36.697] (II) Open ACPI successful (/var/run/acpid.socket)
[    36.697] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    36.697] (II) LoadModule: "glx"
[    36.753] (II) Loading /usr/lib64/xorg/modules/extensions/libglx.so
[    38.477] (II) Module glx: vendor="NVIDIA Corporation"
[    38.477] 	compiled for 4.0.2, module version = 1.0.0
[    38.477] 	Module class: X.Org Server Extension
[    38.517] (II) NVIDIA GLX Module  390.48  Wed Mar 21 23:42:56 PDT 2018
[    38.624] (II) LoadModule: "nvidia"
[    38.665] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so
[    38.835] (II) Module nvidia: vendor="NVIDIA Corporation"
[    38.835] 	compiled for 4.0.2, module version = 1.0.0
[    38.835] 	Module class: X.Org Video Driver
[    38.842] (II) LoadModule: "modesetting"
[    38.843] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so
[    38.848] (II) Module modesetting: vendor="X.Org Foundation"
[    38.848] 	compiled for 1.18.3, module version = 1.18.3
[    38.848] 	Module class: X.Org Video Driver
[    38.848] 	ABI class: X.Org Video Driver, version 20.0
[    38.849] (II) NVIDIA dlloader X Driver  390.48  Wed Mar 21 23:18:15 PDT 2018
[    38.849] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    38.850] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    38.850] (++) using VT number 7

[    38.997] (II) Loading sub module "fb"
[    38.997] (II) LoadModule: "fb"
[    38.997] (II) Loading /usr/lib64/xorg/modules/libfb.so
[    39.022] (II) Module fb: vendor="X.Org Foundation"
[    39.022] 	compiled for 1.18.3, module version = 1.0.0
[    39.022] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    39.022] (II) Loading sub module "wfb"
[    39.022] (II) LoadModule: "wfb"
[    39.022] (II) Loading /usr/lib64/xorg/modules/libwfb.so
[    39.037] (II) Module wfb: vendor="X.Org Foundation"
[    39.037] 	compiled for 1.18.3, module version = 1.0.0
[    39.037] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    39.038] (II) Loading sub module "ramdac"
[    39.038] (II) LoadModule: "ramdac"
[    39.038] (II) Module "ramdac" already built-in
[    39.097] (II) modeset(1): using drv /dev/dri/card0
[    39.097] (EE) Screen 1 deleted because of no matching config section.
[    39.097] (II) UnloadModule: "modesetting"
[    39.098] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"nvidia" for depth/fbbpp 24/32
[    39.098] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    39.098] (==) NVIDIA(0): RGB weight 888
[    39.098] (==) NVIDIA(0): Default visual is TrueColor
[    39.098] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    39.121] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    39.121] (**) NVIDIA(0): Enabling 2D acceleration
[    39.909] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    39.909] (--) NVIDIA(0):     CRT-0
[    39.909] (--) NVIDIA(0):     DFP-0
[    39.909] (--) NVIDIA(0):     DFP-1 (boot)
[    39.909] (--) NVIDIA(0):     DFP-2
[    39.909] (--) NVIDIA(0):     DFP-3
[    39.909] (--) NVIDIA(0):     DFP-4
[    39.910] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 950 (GM206-A) at PCI:1:0:0 (GPU-0)
[    39.910] (--) NVIDIA(0): Memory: 2097152 kBytes
[    39.910] (--) NVIDIA(0): VideoBIOS: 84.06.2f.00.7d
[    39.910] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    39.913] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    39.913] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    39.913] (--) NVIDIA(GPU-0): 
[    39.915] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    39.915] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[    39.915] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[    39.915] (--) NVIDIA(GPU-0): 
[    39.952] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): connected
[    39.952] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): Internal TMDS
[    39.952] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): 600.0 MHz maximum pixel clock
[    39.952] (--) NVIDIA(GPU-0): 
[    39.952] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    39.952] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    39.952] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    39.952] (--) NVIDIA(GPU-0): 
[    39.952] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    39.952] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    39.952] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    39.952] (--) NVIDIA(GPU-0): 
[    39.952] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    39.952] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    39.952] (--) NVIDIA(GPU-0): DFP-4: 330.0 MHz maximum pixel clock
[    39.952] (--) NVIDIA(GPU-0): 
[    39.955] (==) NVIDIA(0): 
[    39.955] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    39.955] (==) NVIDIA(0):     will be used as the requested mode.
[    39.955] (==) NVIDIA(0): 
[    39.955] (II) NVIDIA(0): Validated MetaModes:
[    39.955] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select"
[    39.955] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1080
[    39.969] (--) NVIDIA(0): DPI set to (81, 80); computed from "UseEdidDpi" X config
[    39.969] (--) NVIDIA(0):     option
[    39.969] (--) Depth 24 pixmap format is 32 bpp
[    39.970] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[    39.970] (II) NVIDIA:     access.
[    40.006] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select"
[    40.082] (==) NVIDIA(0): Disabling shared memory pixmaps
[    40.082] (==) NVIDIA(0): Backing store enabled
[    40.082] (==) NVIDIA(0): Silken mouse enabled
[    40.083] (==) NVIDIA(0): DPMS enabled
[    40.084] (II) Loading sub module "dri2"
[    40.084] (II) LoadModule: "dri2"
[    40.084] (II) Module "dri2" already built-in
[    40.084] (II) NVIDIA(0): [DRI2] Setup complete
[    40.084] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    40.084] (--) RandR disabled
[    40.085] (II) Initializing extension GLX
[    40.085] (II) Indirect GLX disabled.
[    40.645] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[    40.645] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    40.645] (**) Power Button: Applying InputClass "keyboard-all"
[    40.645] (II) LoadModule: "evdev"
[    40.645] (II) Loading /usr/lib64/xorg/modules/input/evdev_drv.so
[    40.676] (II) Module evdev: vendor="X.Org Foundation"
[    40.676] 	compiled for 1.18.3, module version = 2.10.3
[    40.677] 	Module class: X.Org XInput Driver
[    40.677] 	ABI class: X.Org XInput driver, version 22.1
[    40.677] (II) Using input driver 'evdev' for 'Power Button'
[    40.677] (**) Power Button: always reports core events
[    40.677] (**) evdev: Power Button: Device: "/dev/input/event5"
[    40.677] (--) evdev: Power Button: Vendor 0 Product 0x1
[    40.677] (--) evdev: Power Button: Found keys
[    40.677] (II) evdev: Power Button: Configuring as keyboard
[    40.677] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input7/event5"
[    40.677] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    40.677] (**) Option "xkb_rules" "evdev"
[    40.677] (**) Option "xkb_layout" "us"
[    40.677] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.690] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[    40.690] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    40.690] (**) Video Bus: Applying InputClass "keyboard-all"
[    40.690] (II) Using input driver 'evdev' for 'Video Bus'
[    40.690] (**) Video Bus: always reports core events
[    40.690] (**) evdev: Video Bus: Device: "/dev/input/event6"
[    40.690] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    40.690] (--) evdev: Video Bus: Found keys
[    40.690] (II) evdev: Video Bus: Configuring as keyboard
[    40.690] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8/event6"
[    40.690] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    40.690] (**) Option "xkb_rules" "evdev"
[    40.690] (**) Option "xkb_layout" "us"
[    40.690] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.690] (II) config/udev: Adding input device Power Button (/dev/input/event4)
[    40.690] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    40.690] (**) Power Button: Applying InputClass "keyboard-all"
[    40.690] (II) Using input driver 'evdev' for 'Power Button'
[    40.690] (**) Power Button: always reports core events
[    40.690] (**) evdev: Power Button: Device: "/dev/input/event4"
[    40.690] (--) evdev: Power Button: Vendor 0 Product 0x1
[    40.690] (--) evdev: Power Button: Found keys
[    40.690] (II) evdev: Power Button: Configuring as keyboard
[    40.690] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input6/event4"
[    40.690] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    40.690] (**) Option "xkb_rules" "evdev"
[    40.690] (**) Option "xkb_layout" "us"
[    40.690] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.691] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[    40.691] (II) No input driver specified, ignoring this device.
[    40.691] (II) This device may have been added with another device file.
[    40.691] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[    40.691] (II) No input driver specified, ignoring this device.
[    40.691] (II) This device may have been added with another device file.
[    40.691] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[    40.691] (II) No input driver specified, ignoring this device.
[    40.691] (II) This device may have been added with another device file.
[    40.691] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[    40.691] (II) No input driver specified, ignoring this device.
[    40.691] (II) This device may have been added with another device file.
[    40.691] (II) config/udev: Adding input device HID-compliant Mouse HID-compliant Mouse (/dev/input/event0)
[    40.691] (**) HID-compliant Mouse HID-compliant Mouse: Applying InputClass "evdev keyboard catchall"
[    40.691] (**) HID-compliant Mouse HID-compliant Mouse: Applying InputClass "keyboard-all"
[    40.691] (II) Using input driver 'evdev' for 'HID-compliant Mouse HID-compliant Mouse'
[    40.691] (**) HID-compliant Mouse HID-compliant Mouse: always reports core events
[    40.691] (**) evdev: HID-compliant Mouse HID-compliant Mouse: Device: "/dev/input/event0"
[    40.691] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Vendor 0x1d57 Product 0x6
[    40.691] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Found keys
[    40.691] (II) evdev: HID-compliant Mouse HID-compliant Mouse: Configuring as keyboard
[    40.691] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:1D57:0006.0001/input/input2/event0"
[    40.691] (II) XINPUT: Adding extended input device "HID-compliant Mouse HID-compliant Mouse" (type: KEYBOARD, id 9)
[    40.691] (**) Option "xkb_rules" "evdev"
[    40.691] (**) Option "xkb_layout" "us"
[    40.691] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.692] (II) config/udev: Adding input device HID-compliant Mouse HID-compliant Mouse (/dev/input/event1)
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: Applying InputClass "evdev pointer catchall"
[    40.692] (II) Using input driver 'evdev' for 'HID-compliant Mouse HID-compliant Mouse'
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: always reports core events
[    40.692] (**) evdev: HID-compliant Mouse HID-compliant Mouse: Device: "/dev/input/event1"
[    40.692] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Vendor 0x1d57 Product 0x6
[    40.692] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Found 9 mouse buttons
[    40.692] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Found scroll wheel(s)
[    40.692] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Found relative axes
[    40.692] (--) evdev: HID-compliant Mouse HID-compliant Mouse: Found x and y relative axes
[    40.692] (II) evdev: HID-compliant Mouse HID-compliant Mouse: Configuring as mouse
[    40.692] (II) evdev: HID-compliant Mouse HID-compliant Mouse: Adding scrollwheel support
[    40.692] (**) evdev: HID-compliant Mouse HID-compliant Mouse: YAxisMapping: buttons 4 and 5
[    40.692] (**) evdev: HID-compliant Mouse HID-compliant Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    40.692] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:1D57:0006.0002/input/input3/event1"
[    40.692] (II) XINPUT: Adding extended input device "HID-compliant Mouse HID-compliant Mouse" (type: MOUSE, id 10)
[    40.692] (II) evdev: HID-compliant Mouse HID-compliant Mouse: initialized for relative axes.
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: (accel) keeping acceleration scheme 1
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: (accel) acceleration profile 0
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: (accel) acceleration factor: 2.000
[    40.692] (**) HID-compliant Mouse HID-compliant Mouse: (accel) acceleration threshold: 4
[    40.692] (II) config/udev: Adding input device HID-compliant Mouse HID-compliant Mouse (/dev/input/mouse0)
[    40.692] (II) No input driver specified, ignoring this device.
[    40.692] (II) This device may have been added with another device file.
[    40.692] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/event2)
[    40.692] (**) USB USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    40.692] (**) USB USB Keyboard: Applying InputClass "keyboard-all"
[    40.692] (II) Using input driver 'evdev' for 'USB USB Keyboard'
[    40.692] (**) USB USB Keyboard: always reports core events
[    40.692] (**) evdev: USB USB Keyboard: Device: "/dev/input/event2"
[    40.692] (--) evdev: USB USB Keyboard: Vendor 0x1a2c Product 0xc21
[    40.692] (--) evdev: USB USB Keyboard: Found keys
[    40.692] (II) evdev: USB USB Keyboard: Configuring as keyboard
[    40.692] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:1A2C:0C21.0003/input/input4/event2"
[    40.692] (II) XINPUT: Adding extended input device "USB USB Keyboard" (type: KEYBOARD, id 11)
[    40.692] (**) Option "xkb_rules" "evdev"
[    40.692] (**) Option "xkb_layout" "us"
[    40.692] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.693] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/event3)
[    40.693] (**) USB USB Keyboard: Applying InputClass "evdev pointer catchall"
[    40.693] (**) USB USB Keyboard: Applying InputClass "evdev keyboard catchall"
[    40.693] (**) USB USB Keyboard: Applying InputClass "keyboard-all"
[    40.693] (II) Using input driver 'evdev' for 'USB USB Keyboard'
[    40.693] (**) USB USB Keyboard: always reports core events
[    40.693] (**) evdev: USB USB Keyboard: Device: "/dev/input/event3"
[    40.693] (--) evdev: USB USB Keyboard: Vendor 0x1a2c Product 0xc21
[    40.693] (--) evdev: USB USB Keyboard: Found 3 mouse buttons
[    40.693] (--) evdev: USB USB Keyboard: Found scroll wheel(s)
[    40.693] (--) evdev: USB USB Keyboard: Found relative axes
[    40.693] (--) evdev: USB USB Keyboard: Found x and y relative axes
[    40.693] (--) evdev: USB USB Keyboard: Found absolute axes
[    40.693] (II) evdev: USB USB Keyboard: Forcing absolute x/y axes to exist.
[    40.693] (--) evdev: USB USB Keyboard: Found keys
[    40.693] (II) evdev: USB USB Keyboard: Configuring as mouse
[    40.693] (II) evdev: USB USB Keyboard: Configuring as keyboard
[    40.693] (II) evdev: USB USB Keyboard: Adding scrollwheel support
[    40.693] (**) evdev: USB USB Keyboard: YAxisMapping: buttons 4 and 5
[    40.693] (**) evdev: USB USB Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    40.693] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:1A2C:0C21.0004/input/input5/event3"
[    40.693] (II) XINPUT: Adding extended input device "USB USB Keyboard" (type: KEYBOARD, id 12)
[    40.693] (**) Option "xkb_rules" "evdev"
[    40.693] (**) Option "xkb_layout" "us"
[    40.693] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    40.693] (II) evdev: USB USB Keyboard: initialized for relative axes.
[    40.693] (WW) evdev: USB USB Keyboard: ignoring absolute axes.
[    40.693] (**) USB USB Keyboard: (accel) keeping acceleration scheme 1
[    40.693] (**) USB USB Keyboard: (accel) acceleration profile 0
[    40.693] (**) USB USB Keyboard: (accel) acceleration factor: 2.000
[    40.693] (**) USB USB Keyboard: (accel) acceleration threshold: 4
[    40.693] (II) config/udev: Adding input device USB USB Keyboard (/dev/input/mouse1)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.693] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event7)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.693] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event8)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.693] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event9)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.693] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event10)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.693] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event11)
[    40.693] (II) No input driver specified, ignoring this device.
[    40.693] (II) This device may have been added with another device file.
[    40.694] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event16)
[    40.694] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[    40.694] (**) Eee PC WMI hotkeys: Applying InputClass "keyboard-all"
[    40.694] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[    40.694] (**) Eee PC WMI hotkeys: always reports core events
[    40.694] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event16"
[    40.694] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[    40.694] (--) evdev: Eee PC WMI hotkeys: Found keys
[    40.694] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[    40.694] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input19/event16"
[    40.694] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 13)
[    40.694] (**) Option "xkb_rules" "evdev"
[    40.694] (**) Option "xkb_layout" "us"
[    40.694] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   421.784] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   421.784] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   421.784] (--) NVIDIA(GPU-0): 
[   421.787] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   421.787] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   421.787] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   421.787] (--) NVIDIA(GPU-0): 
[   421.821] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): connected
[   421.821] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): Internal TMDS
[   421.821] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): 600.0 MHz maximum pixel clock
[   421.821] (--) NVIDIA(GPU-0): 
[   421.821] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   421.821] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   421.821] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[   421.821] (--) NVIDIA(GPU-0): 
[   421.821] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   421.821] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   421.821] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   421.821] (--) NVIDIA(GPU-0): 
[   421.822] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   421.822] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[   421.822] (--) NVIDIA(GPU-0): DFP-4: 330.0 MHz maximum pixel clock
[   421.822] (--) NVIDIA(GPU-0): 
[   423.456] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   423.456] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   423.456] (--) NVIDIA(GPU-0): 
[   423.458] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   423.458] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   423.458] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   423.458] (--) NVIDIA(GPU-0): 
[   423.492] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): connected
[   423.492] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): Internal TMDS
[   423.492] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): 600.0 MHz maximum pixel clock
[   423.492] (--) NVIDIA(GPU-0): 
[   423.492] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   423.492] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[   423.492] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[   423.492] (--) NVIDIA(GPU-0): 
[   423.493] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   423.493] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   423.493] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[   423.493] (--) NVIDIA(GPU-0): 
[   423.493] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   423.493] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[   423.493] (--) NVIDIA(GPU-0): DFP-4: 330.0 MHz maximum pixel clock
[   423.493] (--) NVIDIA(GPU-0): 
[   425.452] (--) NVIDIA(GPU-0): CRT-0: disconnected
[   425.452] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[   425.452] (--) NVIDIA(GPU-0):
I omited last lines because they are repeated and its caracters are more than i can post.
Full log: https://pastebin.com/raw/x24BgApT

Last edited by frushiyama; 04-08-2018 at 06:18 PM. Reason: add information
 
Old 04-08-2018, 06:46 PM   #28
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Quote:
I have the same hardware but this time xrandr does not list VGA as an output.
From /var/log/Xorg.0.log
Quote:
[ 39.097] (EE) Screen 1 deleted because of no matching config section.
From /etc/X11/xorg.conf
Quote:
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection
From http://uk.download.nvidia.com/XFree8...E/randr14.html
Quote:
The X server does not automatically enable displays attached to the non-NVIDIA graphics device in this configuration. To do that, use the xrandr command line tool:

$ xrandr --setprovideroutputsource modesetting NVIDIA-0
$ xrandr --auto

This pair of commands can be added to your X session startup scripts, for example by putting them in $HOME/.xinitrc before running startx.

Use the

$ xrandr --listproviders

command to query the capabilities of the graphics devices. If the system requirements are met and the X server is configured correctly, there should be a provider named NVIDIA-0 with the Source Output capability and one named modesetting with the Sink Output capability. If either provider is missing or doesn't have the expected capability, check your system configuration.

Last edited by allend; 04-08-2018 at 06:51 PM.
 
1 members found this post helpful.
Old 04-08-2018, 09:44 PM   #29
frushiyama
Member
 
Registered: Oct 2010
Location: Brazil, SP - Cosmópolis
Distribution: Slackware
Posts: 171

Original Poster
Rep: Reputation: 40
I managed it to work it again with your help thank you very much
Working xorg.conf:
Code:
#Generated with the aid of http://www.linuxquestions.org/questions/slackware-14/dual-monitor-hdmi-and-vga-4175602604/page2.html

Section "ServerLayout"
    Identifier          "Desktop"
    Screen      0       "Screen0" 0 0
    Screen      1       "Screen1" LeftOf "Screen0"
EndSection

Section "Monitor"
    Identifier          "Monitor0"
EndSection

Section "Monitor"
    Identifier          "Monitor1"
EndSection

Section "Screen"
    Identifier          "Screen0"
    Device              "nvidia"
    Monitor             "Monitor0"
    DefaultDepth        24
    SubSection "Display
        Depth           24
        Virtual         2560 1080
    EndSubSection
EndSection

Section "Screen"
    Identifier          "Screen1"
    Device              "intel"
    Monitor             "Monitor1"
    DefaultDepth        24
    SubSection "Display
        Depth           24
        Virtual         1280 1024
    EndSubSection
EndSection

Section "Files"
	ModulePath   "/usr/lib64/xorg/modules"
	FontPath     "/usr/share/fonts/TTF"
	FontPath     "/usr/share/fonts/OTF"
	FontPath     "/usr/share/fonts/Type1"
	FontPath     "/usr/share/fonts/misc"
	FontPath     "/usr/share/fonts/75dpi/:unscaled"
	FontPath     "/usr/share/fonts/100dpi/:unscaled"
	FontPath     "/usr/share/fonts/75dpi"
	FontPath     "/usr/share/fonts/100dpi"
	FontPath     "/usr/share/fonts/cyrillic"
EndSection

Section "Module"
	Load  "glx"
#	Load  "nvidia"
#	Load  "intel"
EndSection

#Section "ServerFlags"
#	Option "Xinerama" "True"
#EndSection

#Section "Extensions"
#	Option	"Composite"	"Disable"
#EndSection

#Section "InputDevice"
#	Identifier  "Keyboard0"
#	Driver      "kbd"
#	Option       "XkbVariant" ",dvorak"
#EndSection

Section "InputClass"
	Identifier "keyboard-all"
	MatchIsKeyboard "on"
	MatchDevicePath "/dev/input/event*"
	Driver "evdev"
	Option "XkbLayout" "dvorak"
	#Option "XkbVariant" ""
	Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection

Section "InputDevice"
	Identifier  "Mouse0"
	Driver      "mouse"
	Option	    "Protocol" "auto"
	Option	    "Device" "/dev/input/mice"
	Option	    "ZAxisMapping" "4 5 6 7"
EndSection

Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
#    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection

Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration"
EndSection

Section "Device"
    Identifier "intel"
    Driver "intel"
#    Driver "modesetting"
    BusID "PCI:0:2:0"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection
 
1 members found this post helpful.
Old 04-09-2018, 07:47 AM   #30
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Glad you got it working to your satisfaction.
Thanks for the feedback. Your resolution may help someone else.
 
  


Reply

Tags
dual monitor, hdmi, vga



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Dell XPS M1330 HDMI and VGA as external monitor Flowaone Linux - Laptop and Netbook 1 03-02-2017 01:28 PM
vga to usb Dual Monitor marcussr Linux - Newbie 19 09-25-2013 02:46 AM
Intel Graphics - Image on monitor not correct using HDMI, VGA works fine. rrrssssss Linux - Hardware 3 05-20-2013 03:33 AM
Dual Monitors VGA + DVI (HDMI) Lenovo T410 in docking st - DVI no output??? Berwhale Linux - Hardware 7 03-18-2013 01:34 AM
Converting HDMI computer output to VGA monitor input JMJ_coder Linux - Hardware 3 12-31-2010 01:41 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 04:48 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration