You are not logged in.

#1 2012-11-16 21:00:51

skiabox
Member
Registered: 2012-11-15
Posts: 23

[SOLVED] Errors when trying to start the X

When I try to start x using startx command , I get three lines with errors (taken from /var/log/Xorg.0.log) :

(EE) Failed to load module "vesa" (module does not exist, 0)
(EE) Failed to load module "modesetting" (module does not exist, 0)
(EE) Failed to load module "fbdev" (module does not exist, 0)

Last edited by skiabox (2012-11-17 00:07:27)

Offline

#2 2012-11-16 21:07:46

FlyingHappy
Member
From: Cincinnati, OH
Registered: 2011-04-18
Posts: 192

Re: [SOLVED] Errors when trying to start the X

Did you install your graphics drivers?

Offline

#3 2012-11-16 21:24:37

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

Yes, I have already did a 'pacman -S xf86-video-ati'.
My graphics card (taken from 'lspci | grep VGA') is Mobility Radeon HD 3650

Offline

#4 2012-11-16 21:55:21

FlyingHappy
Member
From: Cincinnati, OH
Registered: 2011-04-18
Posts: 192

Re: [SOLVED] Errors when trying to start the X

Can you post your xorg.conf?

Offline

#5 2012-11-16 22:17:38

cfr
Member
From: Cymru
Registered: 2011-11-27
Posts: 7,132

Re: [SOLVED] Errors when trying to start the X

Have you just installed or Arch or is this something which used to work?

Is the system up to date?


CLI Paste | How To Ask Questions

Arch Linux | x86_64 | GPT | EFI boot | refind | stub loader | systemd | LVM2 on LUKS
Lenovo x270 | Intel(R) Core(TM) i5-7200U CPU @ 2.50GHz | Intel Wireless 8265/8275 | US keyboard w/ Euro | 512G NVMe INTEL SSDPEKKF512G7L

Offline

#6 2012-11-16 22:19:42

drobole
Member
From: Norway
Registered: 2012-07-23
Posts: 125

Re: [SOLVED] Errors when trying to start the X

nm

Last edited by drobole (2012-11-16 22:22:06)

Offline

#7 2012-11-16 22:22:56

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: [SOLVED] Errors when trying to start the X

Those are potential fallback drivers. Their purpose is that if the main driver (xf86-video-ati in your case) fails to load, one of the fallbacks (if they're installed) loads to at least give you some form of X. There's nothing wrong in not having them installed.

Offline

#8 2012-11-16 22:32:37

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

FlyingHappy : whereis xorg.conf returns 4 directories : /lib/xorg   /usr/lib/xorg   /lib64/xorg   /usr/include/xorg

Offline

#9 2012-11-16 22:42:21

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: [SOLVED] Errors when trying to start the X

There's no xorg.conf by default and you don't need it.

Offline

#10 2012-11-16 22:45:21

drobole
Member
From: Norway
Registered: 2012-07-23
Posts: 125

Re: [SOLVED] Errors when trying to start the X

It is usually under /etc/X11 when using the proprietary driver, but you are using the open source driver.

You could see if the radeon driver is loaded with this command

# lsmod | grep radeon

if it is not, you can try to load it manually with

# modprobe radeon

and see if you get any errors...

edit:
For some reason I thought your X failed to start. If it works, you can forget about the above

Last edited by drobole (2012-11-16 22:55:02)

Offline

#11 2012-11-16 22:49:08

karol
Archivist
Registered: 2009-05-06
Posts: 25,440

Re: [SOLVED] Errors when trying to start the X

As Gusar said, these errors are harmless. Installing xf86-video-modesetting, xf86-video-vesa and xf86-video-fbdev should get rid of them.

Offline

#12 2012-11-16 23:08:57

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

In fact X server fails to start.
These are the errors I get :

/etc/X11/xinit/xinitrc: line 52: twm: command not found
/etc/X11/xinit/xinitrc: line 54: xterm: command not found
/etc/X11/xinit/xinitrc: line 56: exec: xterm: not found
xinit: connection to X server lost
waiting for X server to shut down Server terminated successfully (0). Closing log file.

Offline

#13 2012-11-16 23:10:38

Gusar
Member
Registered: 2009-08-25
Posts: 3,605

Re: [SOLVED] Errors when trying to start the X

It doesn't fail to start. It shuts down because it has nothing to do, because you haven't installed anything to run in it.

Last edited by Gusar (2012-11-16 23:11:31)

Offline

#14 2012-11-16 23:24:40

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

I've installed the proper packages with (pacman -S xorg-twm xorg-xclock xterm) to get rid of these errors and I have installed Gnome, but I don't know how to start it.

Last edited by skiabox (2012-11-16 23:25:11)

Offline

#15 2012-11-16 23:25:00

drobole
Member
From: Norway
Registered: 2012-07-23
Posts: 125

Re: [SOLVED] Errors when trying to start the X

the command
# startx
should start twm if you have installed it.

To run the gnome environment you probably want to install gdm
https://wiki.archlinux.org/index.php/GDM

but I suggest you get twm working first with the startx command just to make sure xorg is configured correctly before moving on to gnome

Last edited by drobole (2012-11-16 23:29:10)

Offline

#16 2012-11-16 23:48:26

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

I've just installed and enabled GDM but I still cannot see Gnome Environment.
Doing an ls -la I can't see a .xinitrc at my home directory.
Is it right?

Offline

#17 2012-11-16 23:53:51

drobole
Member
From: Norway
Registered: 2012-07-23
Posts: 125

Re: [SOLVED] Errors when trying to start the X

You need to copy it to your home directory

$ cp /etc/skel/.xinitrc ~

https://wiki.archlinux.org/index.php/Xinitrc

I though you already did that since your error message earlier  tried to start twm, but maybe it used /etc/skel as a fallback.

Are you getting any error messages with the startx command?

Last edited by drobole (2012-11-16 23:55:34)

Offline

#18 2012-11-16 23:54:42

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: [SOLVED] Errors when trying to start the X

Please read the wiki before posting here. If you work your way through it slowly and methodically, it will work.


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#19 2012-11-16 23:55:49

skiabox
Member
Registered: 2012-11-15
Posts: 23

Re: [SOLVED] Errors when trying to start the X

Copied .xinitrc to my home directory and also installed dbus .. and voila!
I am running gnome now!
smile

Offline

#20 2012-11-17 00:01:48

drobole
Member
From: Norway
Registered: 2012-07-23
Posts: 125

Re: [SOLVED] Errors when trying to start the X

Grats smile

Offline

#21 2016-06-16 02:58:42

jayendra
Member
Registered: 2016-06-10
Posts: 39

Re: [SOLVED] Errors when trying to start the X

I am facing the same issue. Trying to start GNOME DE, I have installed gnome and gnome-extra.

Here is lspci output

00:02.0 VGA compatible controller: Intel Corporation Skylake Integrated Graphics (rev 06)
	Subsystem: Dell Device 0708
	Kernel driver in use: i915
--
01:00.0 3D controller: NVIDIA Corporation GM204M [GeForce GTX 970M] (rev a1)
	Subsystem: Dell Device 0708
	Kernel driver in use: nvidia

I have installed nvidia drivers, with the help of pacman.

Here is my xinitrc, from my $HOME

#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
    xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then
    xrdb -merge "$userresources"
fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f
fi

exec gnome-session

when I type startx, screen become black, and after some time I get back my terminal with the following log.

X.Org X Server 1.18.3
Release Date: 2016-04-04
X Protocol Version 11, Revision 0
Build Operating System: Linux 4.5.1-ARCH x86_64
Current Operating System: Linux alienware 4.6.2-1-ARCH #1 SMP PREEMPT Wed Jun 8 08:40:59 CEST 2016 x86_64
Kernel command line: initrd=\initramfs-linux.img 
BUILD Date: 03 June 2016 07:28:24AM

Current Version of pixman: 0.34.0
	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) Warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 16 13:49:47 2016
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
waiting for X server to shutdown (II) Server terminated successfully (0). closing log file.

Here is my X-server log too.

[  1644.555] 
X.Org X Server 1.18.3
Release Date: 2016-04-04
[  1644.557] X Protocol Version 11, Revision 0
[  1644.557] Build Operating System: Linux 4.5.1-1-ARCH x86_64 
[  1644.557] Current Operating System: Linux alienware 4.6.2-1-ARCH #1 SMP PREEMPT Wed Jun 8 08:40:59 CEST 2016 x86_64
[  1644.557] Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=ae620d68-c949-4317-9e4a-390305cee607 rw
[  1644.558] Build Date: 03 June 2016  07:28:24AM
[  1644.558]  
[  1644.558] Current version of pixman: 0.34.0
[  1644.559] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1644.559] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1644.560] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jun 16 13:49:47 2016
[  1644.560] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1644.560] (==) No Layout section.  Using the first Screen section.
[  1644.560] (==) No screen section available. Using defaults.
[  1644.560] (**) |-->Screen "Default Screen Section" (0)
[  1644.560] (**) |   |-->Monitor "<default monitor>"
[  1644.561] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[  1644.561] (==) Automatically adding devices
[  1644.561] (==) Automatically enabling devices
[  1644.561] (==) Automatically adding GPU devices
[  1644.561] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1644.561] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1644.561] 	Entry deleted from font path.
[  1644.561] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1644.561] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1644.561] 	Entry deleted from font path.
[  1644.561] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1644.561] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[  1644.561] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1644.561] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1644.561] (II) Loader magic: 0x821d20
[  1644.561] (II) Module ABI versions:
[  1644.561] 	X.Org ANSI C Emulation: 0.4
[  1644.561] 	X.Org Video Driver: 20.0
[  1644.561] 	X.Org XInput driver : 22.1
[  1644.561] 	X.Org Server Extension : 9.0
[  1644.561] (++) using VT number 1

[  1644.561] (--) controlling tty is VT number 1, auto-enabling KeepTty
[  1644.562] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[  1644.563] (II) xfree86: Adding drm device (/dev/dri/card1)
[  1644.563] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 8 paused 0
[  1644.563] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1644.564] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
[  1644.565] (--) PCI:*(0:0:2:0) 8086:191b:1028:0708 rev 6, Mem @ 0xdb000000/16777216, 0x70000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072
[  1644.565] (--) PCI: (0:1:0:0) 10de:13d8:1028:0708 rev 161, Mem @ 0xdc000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[  1644.565] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1644.565] (II) LoadModule: "glx"
[  1644.565] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1644.567] (II) Module glx: vendor="NVIDIA Corporation"
[  1644.567] 	compiled for 4.0.2, module version = 1.0.0
[  1644.567] 	Module class: X.Org Server Extension
[  1644.567] (II) NVIDIA GLX Module  367.27  Thu Jun  9 18:19:55 PDT 2016
[  1644.567] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[  1644.567] 	loading driver: nvidia
[  1644.567] (==) Matched intel as autoconfigured driver 0
[  1644.567] (==) Matched nvidia as autoconfigured driver 1
[  1644.567] (==) Matched nouveau as autoconfigured driver 2
[  1644.567] (==) Matched nv as autoconfigured driver 3
[  1644.567] (==) Matched intel as autoconfigured driver 4
[  1644.567] (==) Matched modesetting as autoconfigured driver 5
[  1644.567] (==) Matched fbdev as autoconfigured driver 6
[  1644.567] (==) Matched vesa as autoconfigured driver 7
[  1644.567] (==) Assigned the driver to the xf86ConfigLayout
[  1644.567] (II) LoadModule: "intel"
[  1644.568] (WW) Warning, couldn't open module intel
[  1644.568] (II) UnloadModule: "intel"
[  1644.568] (II) Unloading intel
[  1644.568] (EE) Failed to load module "intel" (module does not exist, 0)
[  1644.568] (II) LoadModule: "nvidia"
[  1644.568] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  1644.568] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1644.568] 	compiled for 4.0.2, module version = 1.0.0
[  1644.568] 	Module class: X.Org Video Driver
[  1644.568] (II) LoadModule: "nouveau"
[  1644.568] (WW) Warning, couldn't open module nouveau
[  1644.568] (II) UnloadModule: "nouveau"
[  1644.568] (II) Unloading nouveau
[  1644.568] (EE) Failed to load module "nouveau" (module does not exist, 0)
[  1644.568] (II) LoadModule: "nv"
[  1644.568] (WW) Warning, couldn't open module nv
[  1644.568] (II) UnloadModule: "nv"
[  1644.568] (II) Unloading nv
[  1644.568] (EE) Failed to load module "nv" (module does not exist, 0)
[  1644.568] (II) LoadModule: "modesetting"
[  1644.568] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[  1644.568] (II) Module modesetting: vendor="X.Org Foundation"
[  1644.568] 	compiled for 1.18.3, module version = 1.18.3
[  1644.568] 	Module class: X.Org Video Driver
[  1644.568] 	ABI class: X.Org Video Driver, version 20.0
[  1644.568] (II) LoadModule: "fbdev"
[  1644.568] (WW) Warning, couldn't open module fbdev
[  1644.568] (II) UnloadModule: "fbdev"
[  1644.568] (II) Unloading fbdev
[  1644.568] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  1644.568] (II) LoadModule: "vesa"
[  1644.568] (WW) Warning, couldn't open module vesa
[  1644.568] (II) UnloadModule: "vesa"
[  1644.568] (II) Unloading vesa
[  1644.568] (EE) Failed to load module "vesa" (module does not exist, 0)
[  1644.568] (II) NVIDIA dlloader X Driver  367.27  Thu Jun  9 17:57:30 PDT 2016
[  1644.568] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1644.568] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  1644.568] (II) systemd-logind: releasing fd for 226:1
[  1644.569] (II) modeset(0): using drv /dev/dri/card0
[  1644.569] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  1644.569] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[  1644.569] (==) modeset(0): RGB weight 888
[  1644.569] (==) modeset(0): Default visual is TrueColor
[  1644.569] (II) Loading sub module "glamoregl"
[  1644.569] (II) LoadModule: "glamoregl"
[  1644.569] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[  1644.571] (II) Module glamoregl: vendor="X.Org Foundation"
[  1644.571] 	compiled for 1.18.3, module version = 1.0.0
[  1644.571] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1644.571] (II) glamor: OpenGL accelerated X.org driver based.
[  1644.578] (EE) modeset(0): eglInitialize() failed
[  1644.578] (EE) modeset(0): glamor initialization failed
[  1644.578] (II) modeset(0): ShadowFB: preferred YES, enabled YES
[  1644.578] (II) modeset(0): Output eDP-1 has no monitor section
[  1644.581] (II) modeset(0): Output DP-1 has no monitor section
[  1644.686] (II) modeset(0): Output HDMI-1 has no monitor section
[  1644.688] (II) modeset(0): Output DP-2 has no monitor section
[  1644.793] (II) modeset(0): Output HDMI-2 has no monitor section
[  1644.794] (II) modeset(0): EDID for output eDP-1
[  1644.794] (II) modeset(0): Manufacturer: LGD  Model: 4b9  Serial#: 0
[  1644.794] (II) modeset(0): Year: 2015  Week: 0
[  1644.794] (II) modeset(0): EDID Version: 1.4
[  1644.794] (II) modeset(0): Digital Display Input
[  1644.794] (II) modeset(0): 6 bits per channel
[  1644.794] (II) modeset(0): Digital interface is DisplayPort
[  1644.794] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[  1644.794] (II) modeset(0): Gamma: 2.20
[  1644.794] (II) modeset(0): DPMS capabilities: StandBy Suspend Off
[  1644.794] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[  1644.794] (II) modeset(0): First detailed timing is preferred mode
[  1644.794] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[  1644.794] (II) modeset(0): redX: 0.580 redY: 0.350   greenX: 0.340 greenY: 0.560
[  1644.794] (II) modeset(0): blueX: 0.155 blueY: 0.125   whiteX: 0.313 whiteY: 0.329
[  1644.794] (II) modeset(0): Manufacturer's mask: 0
[  1644.794] (II) modeset(0): Supported detailed timing:
[  1644.794] (II) modeset(0): clock: 138.7 MHz   Image Size:  344 x 194 mm
[  1644.794] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[  1644.794] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1111 v_border: 0
[  1644.794] (II) modeset(0): Supported detailed timing:
[  1644.794] (II) modeset(0): clock: 111.0 MHz   Image Size:  344 x 194 mm
[  1644.794] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[  1644.794] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1111 v_border: 0
[  1644.794] (II) modeset(0):  KFKV0\80156WF6
[  1644.794] (II) modeset(0): Unknown vendor-specific block 0
[  1644.794] (II) modeset(0): EDID (in hex):
[  1644.794] (II) modeset(0): 	00ffffffffffff0030e4b90400000000
[  1644.794] (II) modeset(0): 	0019010495221378eaa1c59459578f27
[  1644.794] (II) modeset(0): 	20505400000001010101010101010101
[  1644.794] (II) modeset(0): 	0101010101012e3680a070381f403020
[  1644.794] (II) modeset(0): 	350058c21000001a5c2b80a070381f40
[  1644.794] (II) modeset(0): 	3020350058c21000001a000000fe004b
[  1644.794] (II) modeset(0): 	464b5630803135365746360a00000000
[  1644.794] (II) modeset(0): 	0000413196001000000a010a20200026
[  1644.794] (II) modeset(0): Printing probed modes for output eDP-1
[  1644.794] (II) modeset(0): Modeline "1920x1080"x60.0  138.70  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.7 kHz eP)
[  1644.794] (II) modeset(0): Modeline "1920x1080"x48.0  111.00  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (53.4 kHz e)
[  1644.794] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[  1644.794] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[  1644.794] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[  1644.794] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[  1644.794] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[  1644.794] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[  1644.794] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[  1644.794] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[  1644.794] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[  1644.794] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[  1644.795] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[  1644.795] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[  1644.795] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[  1644.795] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[  1644.797] (II) modeset(0): EDID for output DP-1
[  1644.903] (II) modeset(0): EDID for output HDMI-1
[  1644.905] (II) modeset(0): EDID for output DP-2
[  1645.009] (II) modeset(0): EDID for output HDMI-2
[  1645.010] (II) modeset(0): Output eDP-1 connected
[  1645.010] (II) modeset(0): Output DP-1 disconnected
[  1645.010] (II) modeset(0): Output HDMI-1 disconnected
[  1645.010] (II) modeset(0): Output DP-2 disconnected
[  1645.010] (II) modeset(0): Output HDMI-2 disconnected
[  1645.010] (II) modeset(0): Using exact sizes for initial modes
[  1645.010] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[  1645.010] (II) modeset(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[  1645.010] (==) modeset(0): DPI set to (96, 96)
[  1645.010] (II) Loading sub module "fb"
[  1645.010] (II) LoadModule: "fb"
[  1645.010] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1645.010] (II) Module fb: vendor="X.Org Foundation"
[  1645.010] 	compiled for 1.18.3, module version = 1.0.0
[  1645.010] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1645.010] (II) Loading sub module "shadow"
[  1645.010] (II) LoadModule: "shadow"
[  1645.010] (II) Loading /usr/lib/xorg/modules/libshadow.so
[  1645.011] (II) Module shadow: vendor="X.Org Foundation"
[  1645.011] 	compiled for 1.18.3, module version = 1.1.0
[  1645.011] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1645.011] (==) Depth 24 pixmap format is 32 bpp
[  1645.011] (==) modeset(0): Backing store enabled
[  1645.011] (==) modeset(0): Silken mouse enabled
[  1645.011] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[  1645.011] (==) modeset(0): DPMS enabled
[  1645.029] (--) RandR disabled
[  1645.032] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
[  1645.032] (II) modeset(0): Damage tracking initialized
[  1645.032] (II) modeset(0): Setting screen physical size to 508 x 285
[  1645.054] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[  1645.054] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1645.054] (II) LoadModule: "evdev"
[  1645.054] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1645.054] (II) Module evdev: vendor="X.Org Foundation"
[  1645.054] 	compiled for 1.18.3, module version = 2.10.3
[  1645.054] 	Module class: X.Org XInput Driver
[  1645.054] 	ABI class: X.Org XInput driver, version 22.1
[  1645.055] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 15 paused 0
[  1645.055] (II) Using input driver 'evdev' for 'Power Button'
[  1645.055] (**) Power Button: always reports core events
[  1645.055] (**) evdev: Power Button: Device: "/dev/input/event3"
[  1645.055] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1645.055] (--) evdev: Power Button: Found keys
[  1645.055] (II) evdev: Power Button: Configuring as keyboard
[  1645.055] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
[  1645.055] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1645.055] (**) Option "xkb_rules" "evdev"
[  1645.055] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[  1645.055] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  1645.056] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 16 paused 0
[  1645.056] (II) Using input driver 'evdev' for 'Video Bus'
[  1645.056] (**) Video Bus: always reports core events
[  1645.056] (**) evdev: Video Bus: Device: "/dev/input/event7"
[  1645.056] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  1645.056] (--) evdev: Video Bus: Found keys
[  1645.056] (II) evdev: Video Bus: Configuring as keyboard
[  1645.056] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input8/event7"
[  1645.056] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[  1645.056] (**) Option "xkb_rules" "evdev"
[  1645.056] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[  1645.056] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[  1645.056] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 17 paused 0
[  1645.056] (II) Using input driver 'evdev' for 'Video Bus'
[  1645.057] (**) Video Bus: always reports core events
[  1645.057] (**) evdev: Video Bus: Device: "/dev/input/event8"
[  1645.057] (--) evdev: Video Bus: Vendor 0 Product 0x6
[  1645.057] (--) evdev: Video Bus: Found keys
[  1645.057] (II) evdev: Video Bus: Configuring as keyboard
[  1645.057] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:12/LNXVIDEO:01/input/input9/event8"
[  1645.057] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[  1645.057] (**) Option "xkb_rules" "evdev"
[  1645.057] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[  1645.057] (II) No input driver specified, ignoring this device.
[  1645.057] (II) This device may have been added with another device file.
[  1645.057] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[  1645.057] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1645.057] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 18 paused 0
[  1645.057] (II) Using input driver 'evdev' for 'Power Button'
[  1645.057] (**) Power Button: always reports core events
[  1645.058] (**) evdev: Power Button: Device: "/dev/input/event2"
[  1645.058] (--) evdev: Power Button: Vendor 0 Product 0x1
[  1645.058] (--) evdev: Power Button: Found keys
[  1645.058] (II) evdev: Power Button: Configuring as keyboard
[  1645.058] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event2"
[  1645.058] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[  1645.058] (**) Option "xkb_rules" "evdev"
[  1645.058] (II) config/udev: Adding input device Integrated_Webcam_HD (/dev/input/event9)
[  1645.058] (**) Integrated_Webcam_HD: Applying InputClass "evdev keyboard catchall"
[  1645.059] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 19 paused 0
[  1645.059] (II) Using input driver 'evdev' for 'Integrated_Webcam_HD'
[  1645.059] (**) Integrated_Webcam_HD: always reports core events
[  1645.059] (**) evdev: Integrated_Webcam_HD: Device: "/dev/input/event9"
[  1645.059] (--) evdev: Integrated_Webcam_HD: Vendor 0x1bcf Product 0x2b8c
[  1645.059] (--) evdev: Integrated_Webcam_HD: Found keys
[  1645.059] (II) evdev: Integrated_Webcam_HD: Configuring as keyboard
[  1645.059] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input10/event9"
[  1645.059] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD" (type: KEYBOARD, id 10)
[  1645.059] (**) Option "xkb_rules" "evdev"
[  1645.059] (II) config/udev: Adding input device HDA Intel PCH Front Line Out (/dev/input/event10)
[  1645.059] (II) No input driver specified, ignoring this device.
[  1645.059] (II) This device may have been added with another device file.
[  1645.059] (II) config/udev: Adding input device HDA Intel PCH Line Out (/dev/input/event11)
[  1645.059] (II) No input driver specified, ignoring this device.
[  1645.059] (II) This device may have been added with another device file.
[  1645.059] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event12)
[  1645.059] (II) No input driver specified, ignoring this device.
[  1645.059] (II) This device may have been added with another device file.
[  1645.059] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event13)
[  1645.059] (II) No input driver specified, ignoring this device.
[  1645.059] (II) This device may have been added with another device file.
[  1645.059] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event14)
[  1645.059] (II) No input driver specified, ignoring this device.
[  1645.059] (II) This device may have been added with another device file.
[  1645.060] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[  1645.060] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  1645.060] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 20 paused 0
[  1645.060] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[  1645.060] (**) AT Translated Set 2 keyboard: always reports core events
[  1645.060] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[  1645.060] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[  1645.060] (--) evdev: AT Translated Set 2 keyboard: Found keys
[  1645.060] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[  1645.060] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[  1645.060] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[  1645.060] (**) Option "xkb_rules" "evdev"
[  1645.060] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event6)
[  1645.060] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[  1645.060] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchscreen catchall"
[  1645.060] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[  1645.060] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[  1645.060] (II) LoadModule: "synaptics"
[  1645.061] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[  1645.061] (II) Module synaptics: vendor="X.Org Foundation"
[  1645.061] 	compiled for 1.18.3, module version = 1.8.99
[  1645.061] 	Module class: X.Org XInput Driver
[  1645.061] 	ABI class: X.Org XInput driver, version 22.1
[  1645.061] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 21 paused 0
[  1645.061] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[  1645.061] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  1645.061] (**) Option "Device" "/dev/input/event6"
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1274 - 5668 (res 43)
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1098 - 4756 (res 68)
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1645.061] (**) SynPS/2 Synaptics TouchPad: always reports core events
[  1645.061] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
[  1645.061] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
[  1645.061] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[  1645.061] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[  1645.061] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[  1645.061] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[  1645.061] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[  1645.061] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[  1645.061] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[  1645.061] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[  1645.061] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[  1645.061] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[  1645.062] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[  1645.062] (II) No input driver specified, ignoring this device.
[  1645.062] (II) This device may have been added with another device file.
[  1645.062] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5)
[  1645.062] (**) Dell WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[  1645.062] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 22 paused 0
[  1645.062] (II) Using input driver 'evdev' for 'Dell WMI hotkeys'
[  1645.062] (**) Dell WMI hotkeys: always reports core events
[  1645.062] (**) evdev: Dell WMI hotkeys: Device: "/dev/input/event5"
[  1645.062] (--) evdev: Dell WMI hotkeys: Vendor 0 Product 0
[  1645.062] (--) evdev: Dell WMI hotkeys: Found keys
[  1645.062] (II) evdev: Dell WMI hotkeys: Configuring as keyboard
[  1645.062] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event5"
[  1645.062] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 13)
[  1645.062] (**) Option "xkb_rules" "evdev"
[  1657.185] (II) evdev: Dell WMI hotkeys: Close
[  1657.185] (II) UnloadModule: "evdev"
[  1657.185] (II) systemd-logind: releasing fd for 13:69
[  1657.206] (II) UnloadModule: "synaptics"
[  1657.206] (II) systemd-logind: releasing fd for 13:70
[  1657.233] (II) evdev: AT Translated Set 2 keyboard: Close
[  1657.233] (II) UnloadModule: "evdev"
[  1657.233] (II) systemd-logind: releasing fd for 13:64
[  1657.259] (II) evdev: Integrated_Webcam_HD: Close
[  1657.259] (II) UnloadModule: "evdev"
[  1657.260] (II) systemd-logind: releasing fd for 13:73
[  1657.286] (II) evdev: Power Button: Close
[  1657.286] (II) UnloadModule: "evdev"
[  1657.286] (II) systemd-logind: releasing fd for 13:66
[  1657.299] (II) evdev: Video Bus: Close
[  1657.300] (II) UnloadModule: "evdev"
[  1657.300] (II) systemd-logind: releasing fd for 13:72
[  1657.313] (II) evdev: Video Bus: Close
[  1657.313] (II) UnloadModule: "evdev"
[  1657.313] (II) systemd-logind: releasing fd for 13:71
[  1657.326] (II) evdev: Power Button: Close
[  1657.326] (II) UnloadModule: "evdev"
[  1657.326] (II) systemd-logind: releasing fd for 13:67
[  1657.349] (II) Server terminated successfully (0). Closing log file.

Offline

#22 2016-06-16 03:24:07

jayendra
Member
Registered: 2016-06-10
Posts: 39

Re: [SOLVED] Errors when trying to start the X

I solved my issue after installing the bumblebee
https://bbs.archlinux.org/viewtopic.php?id=189898

Offline

#23 2016-06-16 09:47:18

WorMzy
Forum Moderator
From: Scotland
Registered: 2010-06-16
Posts: 11,857
Website

Re: [SOLVED] Errors when trying to start the X

jayendra, please search before posting in the future, and please don't necrobump old, solved topics.

https://wiki.archlinux.org/index.php/Co … bumping.22

Closing.


Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD

Making lemonade from lemons since 2015.

Offline

Board footer

Powered by FluxBB