wildtruc / nvidia-prime-select

This a fork of FedoraPrime enhanced for all linux distributions
GNU General Public License v3.0
132 stars 15 forks source link

Solus Linux - Not switching #3

Closed JeffLabonte closed 6 years ago

JeffLabonte commented 6 years ago

Hi,

I would like to use your script but it doesn't switch cards for me. I might need your help to figure out what is up.

This is the ouput I get when I do :

> sudo nvidia-prime-select intel

<br />cat: /boot/grub2/grub.cfg: No such file or directory <br />cat: /boot/grub2/grub.cfg: No such file or directory <br />sed: can't read /boot/grub2/grub.cfg: No such file or directory <br />

wildtruc commented 6 years ago

Hello, I'm on Fedora 27 too (mate-compiz with lightdm) When script can't read /etc/boot/grub2/grub.cfg, that mean command is not launch as admin. Your user is probably not recognize as admin.

First, look is you have 'git pull' last little fixes (is going to have many this week, I think), then use nvidia-prime-ui because it get auth from polkit or use directly from admin terminal wtih 'su'. You can use the bash -x command prefix to get full code execution display:

bash -x nvidia-prime-select intel

It finally a good point, grub check has nothing to do with intel set, I'm going to fix this.

JeffLabonte commented 6 years ago

In the meantime, I switched to Solus. But still I have tried your command.

  • set -e
  • [[ 1000 -ne 0 ]]
  • printf 'Script must be executed as root or sudo :\n' Script must be executed as root or sudo :
  • exit 1
wildtruc commented 6 years ago

You run the script in none root user.

Find the nvidia-prime-ui in menu > system > settings. And launch it from there. Or type nvidia-prime-ui directly in terminal as normal user.

Le Mon, 23 Apr 2018 06:29:09 -0700, Jeff Labonte notifications@github.com a écrit :

In the meantime, I switched to Solus. But still I have tried your command. ``

  • set -e
  • [[ 1000 -ne 0 ]]
  • printf 'Script must be executed as root or sudo :\n' Script must be executed as root or sudo :
  • exit 1 ``
JeffLabonte commented 6 years ago

I understand that. I have used root all along. I will give a shot to the UI

JeffLabonte commented 6 years ago

I tried to go with the UI, Once I boot up, I am still on the nvidia GPU. Is there a way that I can send a log of what's going on so I can help you troubleshoot the issue. Or is there documentation on your solution so I can try to troubleshoot it myself?

wildtruc commented 6 years ago

yes, there is. Use bash -x nvidia-prime-select intel, and copy the result in file and attach it here.

JeffLabonte commented 6 years ago
  • set -e
  • [[ 0 -ne 0 ]]
  • install_dir=/etc/nvidia-prime
  • nvidia32_lib_file=/etc/ld.so.conf.d/nvidia-lib32.conf
  • nvidia64_lib_file=/etc/ld.so.conf.d/nvidia-lib64.conf
  • conf=intel
  • nv_drv_32=/usr/lib/nvidia
  • nv_drv_64=/usr/lib64/nvidia
  • nv_xorg_path=/usr/lib64/nvidia/xorg
  • '[' -s /etc/nvidia-prime/library.conf ']' ++ cat /etc/nvidia-prime/library.conf ++ sed -En 's/^(.)='\''(.)'\''$/\2/g;p' ++ grep -c .
  • '[' 0 -gt 0 ']'
  • grub_config ++ uname -r
  • boot_key=/boot/vmlinuz-4.15.17-65.current ++ cat /boot/grub2/grub.cfg ++ egrep -c '^./boot/vmlinuz-4.15.17-65.current.nvidia-drm.modeset=1.*$' cat: /boot/grub2/grub.cfg: No such file or directory
  • '[' 0 -eq 0 ']' ++ cat /boot/grub2/grub.cfg ++ egrep -c '^./boot/vmlinuz-4.15.17-65.current.blacklist=nouveau.*$' cat: /boot/grub2/grub.cfg: No such file or directory
  • '[' 0 -eq 0 ']'
  • blacklist=' nouveau.modeset=0 rd.driver.blacklist=nouveau'
  • modset='nvidia-drm.modeset=1 nouveau.modeset=0 rd.driver.blacklist=nouveau'
  • [[ -s /etc/modprobe.d/blacklist-nouveau.conf ]]
  • echo 'blacklist nouveau' nvidia-prime-select: line 60: /etc/modprobe.d/blacklist-nouveau.conf: No such file or directory>

that is what I am getting on Solus. /etc/modprobe.d doesn't exists on Solus BTW

** EDIT I will ask Solus if /etc/modprobe.d is going to be used in Solus

JeffLabonte commented 6 years ago
  • set -e
  • [[ 0 -ne 0 ]]
  • install_dir=/etc/nvidia-prime
  • nvidia32_lib_file=/etc/ld.so.conf.d/nvidia-lib32.conf
  • nvidia64_lib_file=/etc/ld.so.conf.d/nvidia-lib64.conf
  • conf=intel
  • nv_drv_32=/usr/lib/nvidia
  • nv_drv_64=/usr/lib64/nvidia
  • nv_xorg_path=/usr/lib64/nvidia/xorg
  • '[' -s /etc/nvidia-prime/library.conf ']' ++ sed -En 's/^(.)='\''(.)'\''$/\2/g;p' ++ grep -c . ++ cat /etc/nvidia-prime/library.conf
  • '[' 0 -gt 0 ']'
  • grub_config ++ uname -r
  • boot_key=/boot/vmlinuz-4.15.17-65.current ++ cat /boot/grub2/grub.cfg ++ egrep -c '^./boot/vmlinuz-4.15.17-65.current.nvidia-drm.modeset=1.*$' cat: /boot/grub2/grub.cfg: No such file or directory
  • '[' 0 -eq 0 ']' ++ cat /boot/grub2/grub.cfg ++ egrep -c '^./boot/vmlinuz-4.15.17-65.current.blacklist=nouveau.*$' cat: /boot/grub2/grub.cfg: No such file or directory
  • '[' 0 -eq 0 ']'
  • blacklist=' nouveau.modeset=0 rd.driver.blacklist=nouveau'
  • modset='nvidia-drm.modeset=1 nouveau.modeset=0 rd.driver.blacklist=nouveau'
  • [[ -s /etc/modprobe.d/blacklist-nouveau.conf ]]
  • sed -Eni -e 's|(linux./boot/vmlinuz-4.15.17-65.current.ro)(.*)$|\1 nvidia-drm.modeset=1 nouveau.modeset=0 rd.driver.blacklist=nouveau \2|g;p' /boot/grub2/grub.cfg sed: can't read /boot/grub2/grub.cfg: No such file or directory
wildtruc commented 6 years ago

ok, I got it. Apparently Solus don't put usual grub path, or have no grub at all. Try find /boot /etc -iname "*grub*", you will probably need su right for this, because grub is not user readable. In your particular case I need a ls -1 /boot/, too. It looks like uname -r return an unusual line.

I've just write a report sample, if you can feed it, it would be very useful:

Main:

distro: cat /proc/version. Help to get distro name and get a tip for possible per distro auto conf.

session-manager:

grub.cfg: default menuentry 'linux/linux16' whole line. As su or sudo -S prompt, cat /boot/grub2/grub.cfg| grep "linux.*$(uname -r)".

xrandr providers: xrandr --listproviders, respectively under intel, then nvidia device (if can be started).

xrandr displays: xrandr --query

Optional:

xorg log: cat /var/log/Xorg.0.log

lsmod: to get intel, nvidia, bbswitch (if any) loaded modules. lsmod | grep "nvidia\|bbswitch\|intel"

JeffLabonte commented 6 years ago

Solus doesn't use grub at all when using UEFI. I will write you a report using your sample.

JeffLabonte commented 6 years ago

Boot Parameters :

resume=UUID=ad3d9f82-f8b0-4af7-96f5-10328f004c2a nouveau.modeset=0 acpi_osi=! acpi_osi='Windows 2009' pcie_port_pm=off

distro : Linux version 4.15.17-65.current (root@builder.solus-project.com) (gcc version 7.3.0 (Solus)) #1 SMP PREEMPT Fri Apr 20 11:36:00 UTC 2018

xrandr providers :

Providers: number : 2 Provider 0: id: 0x20a cap: 0x1, Source Output crtcs: 0 outputs: 0 associated providers: 1 name:NVIDIA-0 Provider 1: id: 0x47 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 5 associated providers: 1 name:modesetting

xrandr displays

Screen 0: minimum 8 x 8, current 5240 x 1080, maximum 32767 x 32767 eDP-1-1 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 346mm x 194mm 3840x2160 60.00 + 2048x1536 60.00
1920x1440 60.00
1856x1392 60.01
1792x1344 60.01
1600x1200 60.00
1400x1050 59.98
1280x1024 60.02
1280x960 60.00
1024x768 60.04 60.00
960x720 60.00
928x696 60.05
896x672 60.01
800x600 60.00 60.32 56.25
700x525 59.98
640x512 60.02
640x480 60.00 59.94
512x384 60.00
400x300 60.32 56.34
320x240 60.05
1920x1080_60.00 59.96 DP-1-1 disconnected (normal left inverted right x axis y axis) HDMI-1-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 458mm x 258mm 1920x1080 60.00+ 1680x1050 59.88
1280x1024 60.02
1440x900 59.90
1280x800 59.91
1152x864 75.00
1280x720 60.00
1024x768 70.07 60.00
800x600 60.32 56.25
640x480 66.67 59.94
720x400 70.08
DP-1-2 connected 1400x1050+3840+0 (normal left inverted right x axis y axis) 408mm x 306mm 1400x1050 59.98*+ 1280x1024 75.02 60.02
1280x960 60.00
1152x864 75.00
1024x768 75.03 70.07 60.00
832x624 74.55
800x600 72.19 75.00 60.32 56.25
640x480 75.00 72.81 66.67 59.94
720x400 70.08
HDMI-1-2 disconnected (normal left inverted right x axis y axis) 1920x1080_60.00 (0x22d) 173.000MHz -HSync h: width 1920 start 2048 end 2248 total 2576 skew 0 clock 67.16KHz v: height 1080 start 1083 end 1088 total 1120 clock 59.96Hz

lsmod

btintel 20480 1 btusb bluetooth 417792 33 btrtl,btintel,bnep,btbcm,rfcomm,btusb nvidia_uvm 823296 0 nvidia_drm 45056 8 nvidia_modeset 1093632 7 nvidia_drm nvidia 14295040 589 nvidia_modeset,nvidia_uvm intel_wmi_thunderbolt 16384 0 intel_rapl 24576 0 snd_hda_intel 36864 5 intel_powerclamp 16384 0 drm_kms_helper 155648 2 i915,nvidia_drm snd_hda_codec 126976 4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek kvm_intel 221184 0 snd_hda_core 73728 5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek kvm 626688 1 kvm_intel snd_pcm 106496 5 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi drm 389120 10 i915,nvidia_drm,drm_kms_helper snd 86016 17 snd_hda_intel,snd_hwdep,snd_hda_codec,snd_timer,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek,snd_pcm ipmi_msghandler 53248 2 nvidia,ipmi_devintf wmi 24576 6 dell_wmi,wmi_bmof,intel_wmi_thunderbolt,dell_wmi_descriptor,mxm_wmi,dell_smbios_wmi

xorg log

[ 9.468] (--) Log file renamed from "/var/log/Xorg.pid-1512.log" to "/var/log/Xorg.0.log" [ 9.468] X.Org X Server 1.19.6 Release Date: 2017-12-20 [ 9.468] X Protocol Version 11, Revision 0 [ 9.468] Build Operating System: Linux 4.13.0-32-generic x86_64 [ 9.468] Current Operating System: Linux jeff-laptop 4.15.17-65.current #1 SMP PREEMPT Fri Apr 20 11:36:00 UTC 2018 x86_64 [ 9.468] Kernel command line: initrd=\EFI\com.solus-project\initrd-com.solus-project.current.4.15.17-65 root=UUID=543b8201-e965-4757-bb61-57d4b39f2a55 quiet loglevel=3 splash systemd.show_status=false rw radeon.si_support=0 radeon.cik_support=0 amdgpu.si_support=1 amdgpu.cik_support=1 resume=UUID=ad3d9f82-f8b0-4af7-96f5-10328f004c2a nouveau.modeset=0 acpi_osi=! acpi_osi='Windows 2009' pcie_port_pm=off [ 9.468] Build Date: 23 March 2018 09:32:31PM [ 9.468]
[ 9.468] Current version of pixman: 0.34.0 [ 9.468] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 9.468] Markers: (--) probed, () from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 9.468] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Apr 23 12:21:17 2018 [ 9.469] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 9.469] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 9.471] (==) No Layout section. Using the first Screen section. [ 9.471] (==) No screen section available. Using defaults. [ 9.471] () |-->Screen "Default Screen Section" (0) [ 9.471] () | |-->Monitor "" [ 9.471] (==) No device specified for screen "Default Screen Section". Using the first device section listed. [ 9.471] () | |-->Device "NVIDIA Card" [ 9.471] (==) No monitor specified for screen "Default Screen Section". Using a default monitor configuration. [ 9.471] (==) Automatically adding devices [ 9.471] (==) Automatically enabling devices [ 9.471] (==) Automatically adding GPU devices [ 9.471] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 9.471] (WW) The directory "/usr/share/fonts/misc/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (WW) The directory "/usr/share/fonts/TTF/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (WW) The directory "/usr/share/fonts/OTF/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (WW) The directory "/usr/share/fonts/Type1/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (WW) The directory "/usr/share/fonts/100dpi/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (WW) The directory "/usr/share/fonts/75dpi/" does not exist. [ 9.471] Entry deleted from font path. [ 9.471] (==) FontPath set to:

[ 9.471] (==) ModulePath set to "/usr/lib64/xorg/modules" [ 9.471] (II) The server relies on udev to provide the list of input devices. If no devices become available, reconfigure udev or disable AutoAddDevices. [ 9.472] (II) Loader magic: 0x629d40 [ 9.472] (II) Module ABI versions: [ 9.472] X.Org ANSI C Emulation: 0.4 [ 9.472] X.Org Video Driver: 23.0 [ 9.472] X.Org XInput driver : 24.1 [ 9.472] X.Org Server Extension : 10.0 [ 9.472] (++) using VT number 7

[ 9.473] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c2 [ 9.474] (II) xfree86: Adding drm device (/dev/dri/card0) [ 9.474] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 12 paused 0 [ 9.474] (II) xfree86: Adding drm device (/dev/dri/card1) [ 9.475] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0 [ 9.476] (*) OutputClass "NVIDIA Card + DRM" ModulePath extended to "/usr/lib64/nvidia/modules,/usr/lib64/xorg/modules,/usr/lib64/xorg/modules" [ 9.477] (--) PCI:(0:0:2:0) 8086:591b:1028:07be rev 4, Mem @ 0xeb000000/16777216, 0x80000000/268435456, I/O @ 0x0000f000/64, BIOS @ 0x????????/131072 [ 9.477] (--) PCI: (0:1:0:0) 10de:1c8d:1028:07be rev 161, Mem @ 0xec000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288 [ 9.477] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory) [ 9.477] (II) "glx" will be loaded by default. [ 9.477] (II) LoadModule: "modesetting" [ 9.477] (II) Loading /usr/lib64/xorg/modules/drivers/modesetting_drv.so [ 9.478] (II) Module modesetting: vendor="X.Org Foundation" [ 9.478] compiled for 1.19.6, module version = 1.19.6 [ 9.478] Module class: X.Org Video Driver [ 9.478] ABI class: X.Org Video Driver, version 23.0 [ 9.478] (II) LoadModule: "glx" [ 9.478] (II) Loading /usr/lib64/nvidia/modules/libglx.so [ 9.497] (II) Module glx: vendor="NVIDIA Corporation" [ 9.497] compiled for 4.0.2, module version = 1.0.0 [ 9.497] Module class: X.Org Server Extension [ 9.498] (II) NVIDIA GLX Module 390.48 Wed Mar 21 23:42:56 PDT 2018 [ 9.498] (II) LoadModule: "nvidia" [ 9.498] (II) Loading /usr/lib64/xorg/modules/drivers/nvidia_drv.so [ 9.500] (II) Module nvidia: vendor="NVIDIA Corporation" [ 9.500] compiled for 4.0.2, module version = 1.0.0 [ 9.500] Module class: X.Org Video Driver [ 9.501] (II) modesetting: Driver for Modesetting Kernel Drivers: kms [ 9.501] (II) NVIDIA dlloader X Driver 390.48 Wed Mar 21 23:18:15 PDT 2018 [ 9.501] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [ 9.501] (WW) Falling back to old probe method for modesetting [ 9.501] (II) systemd-logind: releasing fd for 226:0 [ 9.502] (II) Loading sub module "fb" [ 9.502] (II) LoadModule: "fb" [ 9.502] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 9.503] (II) Module fb: vendor="X.Org Foundation" [ 9.503] compiled for 1.19.6, module version = 1.0.0 [ 9.503] ABI class: X.Org ANSI C Emulation, version 0.4 [ 9.503] (II) Loading sub module "wfb" [ 9.503] (II) LoadModule: "wfb" [ 9.503] (II) Loading /usr/lib64/xorg/modules/libwfb.so [ 9.503] (II) Module wfb: vendor="X.Org Foundation" [ 9.503] compiled for 1.19.6, module version = 1.0.0 [ 9.503] ABI class: X.Org ANSI C Emulation, version 0.4 [ 9.503] (II) Loading sub module "ramdac" [ 9.503] (II) LoadModule: "ramdac" [ 9.503] (II) Module "ramdac" already built-in [ 9.504] (II) modeset(G0): using drv /dev/dri/card1 [ 9.504] (II) NVIDIA(0): Creating default Display subsection in Screen section "Default Screen Section" for depth/fbbpp 24/32 [ 9.504] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32 [ 9.504] (==) NVIDIA(0): RGB weight 888 [ 9.504] (==) NVIDIA(0): Default visual is TrueColor [ 9.504] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0) [ 9.504] () NVIDIA(0): Option "AllowEmptyInitialConfiguration" [ 9.504] () NVIDIA(0): Enabling 2D acceleration [ 9.506] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1050 (GP107-A) at PCI:1:0:0 (GPU-0) [ 9.506] (--) NVIDIA(0): Memory: 4194304 kBytes [ 9.506] (--) NVIDIA(0): VideoBIOS: 86.07.3e.00.1c [ 9.506] (II) NVIDIA(0): Detected PCI Express Link width: 16X [ 9.506] (II) NVIDIA(0): Validated MetaModes: [ 9.506] (II) NVIDIA(0): "NULL" [ 9.506] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480 [ 9.506] (WW) NVIDIA(0): Unable to get display device for DPI computation. [ 9.507] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default [ 9.507] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32 [ 9.507] (==) modeset(G0): RGB weight 888 [ 9.507] (==) modeset(G0): Default visual is TrueColor [ 9.507] (II) Loading sub module "glamoregl" [ 9.507] (II) LoadModule: "glamoregl" [ 9.507] (II) Loading /usr/lib64/xorg/modules/libglamoregl.so [ 9.508] (II) Module glamoregl: vendor="X.Org Foundation" [ 9.508] compiled for 1.19.6, module version = 1.0.0 [ 9.508] ABI class: X.Org ANSI C Emulation, version 0.4 [ 9.508] (II) glamor: OpenGL accelerated X.org driver based. [ 9.529] (II) glamor: EGL version 1.4 (DRI2): [ 9.534] (II) modeset(G0): glamor initialized [ 9.536] (II) modeset(G0): Output eDP-1-1 has no monitor section [ 9.536] (II) modeset(G0): Output DP-1-1 has no monitor section [ 9.547] (II) modeset(G0): Output HDMI-1-1 has no monitor section [ 9.547] (II) modeset(G0): Output DP-1-2 has no monitor section [ 9.558] (II) modeset(G0): Output HDMI-1-2 has no monitor section [ 9.560] (II) modeset(G0): EDID for output eDP-1-1 [ 9.560] (II) modeset(G0): Manufacturer: SHP Model: 1476 Serial#: 0 [ 9.560] (II) modeset(G0): Year: 2016 Week: 49 [ 9.560] (II) modeset(G0): EDID Version: 1.4 [ 9.560] (II) modeset(G0): Digital Display Input [ 9.560] (II) modeset(G0): 8 bits per channel [ 9.560] (II) modeset(G0): Digital interface is DisplayPort [ 9.560] (II) modeset(G0): Max Image Size [cm]: horiz.: 35 vert.: 19 [ 9.560] (II) modeset(G0): Gamma: 2.20 [ 9.560] (II) modeset(G0): No DPMS capabilities specified [ 9.560] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 [ 9.560] (II) modeset(G0): Default color space is primary color space [ 9.560] (II) modeset(G0): First detailed timing is preferred mode [ 9.560] (II) modeset(G0): Preferred mode is native pixel format and refresh rate [ 9.560] (II) modeset(G0): redX: 0.652 redY: 0.331 greenX: 0.207 greenY: 0.732 [ 9.560] (II) modeset(G0): blueX: 0.145 blueY: 0.045 whiteX: 0.295 whiteY: 0.339 [ 9.560] (II) modeset(G0): Manufacturer's mask: 0 [ 9.560] (II) modeset(G0): Supported detailed timing: [ 9.560] (II) modeset(G0): clock: 533.2 MHz Image Size: 346 x 194 mm [ 9.560] (II) modeset(G0): h_active: 3840 h_sync: 3888 h_sync_end 3920 h_blank_end 4000 h_border: 0 [ 9.560] (II) modeset(G0): v_active: 2160 v_sync: 2163 v_sync_end 2168 v_blanking: 2222 v_border: 0 [ 9.560] (II) modeset(G0): Y2XND\80LQ156D1 [ 9.560] (II) modeset(G0): Unknown vendor-specific block 0 [ 9.560] (II) modeset(G0): EDID (in hex): [ 9.561] (II) modeset(G0): 00ffffffffffff004d10761400000000 [ 9.561] (II) modeset(G0): 311a0104a52313780e322ba75435bb25 [ 9.561] (II) modeset(G0): 0b4b5600000001010101010101010101 [ 9.561] (II) modeset(G0): 0101010101014dd000a0f0703e803020 [ 9.561] (II) modeset(G0): 35005ac2100000180000000000000000 [ 9.561] (II) modeset(G0): 00000000000000000000000000fe0059 [ 9.561] (II) modeset(G0): 32584e44804c51313536443100000000 [ 9.561] (II) modeset(G0): 0002410328001200000b010a2020002a [ 9.561] (II) modeset(G0): Printing probed modes for output eDP-1-1 [ 9.561] (II) modeset(G0): Modeline "3840x2160"x60.0 533.25 3840 3888 3920 4000 2160 2163 2168 2222 -hsync -vsync (133.3 kHz eP) [ 9.561] (II) modeset(G0): Modeline "2048x1536"x60.0 266.95 2048 2200 2424 2800 1536 1537 1540 1589 -hsync +vsync (95.3 kHz d) [ 9.561] (II) modeset(G0): Modeline "1920x1440"x60.0 234.00 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync (90.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "1856x1392"x60.0 218.30 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync (86.4 kHz d) [ 9.561] (II) modeset(G0): Modeline "1792x1344"x60.0 204.80 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync (83.7 kHz d) [ 9.561] (II) modeset(G0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d) [ 9.561] (II) modeset(G0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "1024x768"x120.1 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d) [ 9.561] (II) modeset(G0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d) [ 9.561] (II) modeset(G0): Modeline "960x720"x120.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "928x696"x120.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d) [ 9.561] (II) modeset(G0): Modeline "896x672"x120.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d) [ 9.561] (II) modeset(G0): Modeline "800x600"x120.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d) [ 9.561] (II) modeset(G0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d) [ 9.561] (II) modeset(G0): Modeline "700x525"x120.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d) [ 9.561] (II) modeset(G0): Modeline "640x512"x120.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "640x480"x120.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d) [ 9.561] (II) modeset(G0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d) [ 9.561] (II) modeset(G0): Modeline "512x384"x120.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d) [ 9.561] (II) modeset(G0): Modeline "400x300"x120.6 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d) [ 9.561] (II) modeset(G0): Modeline "400x300"x112.7 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d) [ 9.561] (II) modeset(G0): Modeline "320x240"x120.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d) [ 9.561] (II) modeset(G0): EDID for output DP-1-1 [ 9.572] (II) modeset(G0): EDID for output HDMI-1-1 [ 9.572] (II) modeset(G0): EDID for output DP-1-2 [ 9.584] (II) modeset(G0): EDID for output HDMI-1-2 [ 9.584] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0) [ 9.584] (==) modeset(G0): DPI set to (96, 96) [ 9.584] (II) Loading sub module "fb" [ 9.584] (II) LoadModule: "fb" [ 9.584] (II) Loading /usr/lib64/xorg/modules/libfb.so [ 9.584] (II) Module fb: vendor="X.Org Foundation" [ 9.584] compiled for 1.19.6, module version = 1.0.0 [ 9.584] ABI class: X.Org ANSI C Emulation, version 0.4 [ 9.584] (--) Depth 24 pixmap format is 32 bpp [ 9.652] (==) modeset(G0): Backing store enabled [ 9.652] (==) modeset(G0): Silken mouse enabled [ 9.652] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message. [ 9.711] (==) modeset(G0): DPMS enabled [ 9.712] (II) modeset(G0): [DRI2] Setup complete [ 9.712] (II) modeset(G0): [DRI2] DRI driver: i965 [ 9.712] (II) modeset(G0): [DRI2] VDPAU driver: i965 [ 9.712] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory [ 9.712] (II) NVIDIA: access. [ 9.726] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon [ 9.726] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X [ 9.726] (II) NVIDIA(0): configuration option may not be set correctly. When the [ 9.726] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will [ 9.726] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For [ 9.726] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and [ 9.726] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X [ 9.726] (II) NVIDIA(0): Config Options in the README. [ 9.759] (II) NVIDIA(0): Setting mode "NULL" [ 9.762] (==) NVIDIA(0): Disabling shared memory pixmaps [ 9.762] (==) NVIDIA(0): Backing store enabled [ 9.762] (==) NVIDIA(0): Silken mouse enabled [ 9.762] (==) NVIDIA(0): DPMS enabled [ 9.762] (II) Loading sub module "dri2" [ 9.762] (II) LoadModule: "dri2" [ 9.762] (II) Module "dri2" already built-in [ 9.762] (II) NVIDIA(0): [DRI2] Setup complete [ 9.762] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia [ 9.762] (--) RandR disabled [ 9.765] (II) Initializing extension GLX [ 9.765] (II) Indirect GLX disabled. [ 10.037] (II) modeset(G0): Damage tracking initialized [ 10.103] (II) config/udev: Adding input device Power Button (/dev/input/event4) [ 10.103] () Power Button: Applying InputClass "libinput keyboard catchall" [ 10.103] () Power Button: Applying InputClass "system-keyboard" [ 10.103] (II) LoadModule: "libinput" [ 10.103] (II) Loading /usr/lib64/xorg/modules/input/libinput_drv.so [ 10.104] (II) Module libinput: vendor="X.Org Foundation" [ 10.104] compiled for 1.19.5, module version = 0.26.0 [ 10.104] Module class: X.Org XInput Driver [ 10.104] ABI class: X.Org XInput driver, version 24.1 [ 10.104] (II) Using input driver 'libinput' for 'Power Button' [ 10.105] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 39 paused 0 [ 10.105] () Power Button: always reports core events [ 10.105] () Option "Device" "/dev/input/event4" [ 10.105] () Option "_source" "server/udev" [ 10.105] (II) event4 - Power Button: is tagged by udev as: Keyboard [ 10.105] (II) event4 - Power Button: device is a keyboard [ 10.105] (II) event4 - Power Button: device removed [ 10.105] () Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input5/event4" [ 10.105] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 10.106] () Option "xkb_model" "pc104" [ 10.106] () Option "xkb_layout" "ca+eng" [ 10.113] (EE) Error loading keymap /tmp/server-0.xkm [ 10.113] (EE) XKB: Failed to load keymap. Loading default keymap instead. [ 10.125] (II) event4 - Power Button: is tagged by udev as: Keyboard [ 10.125] (II) event4 - Power Button: device is a keyboard [ 10.125] (II) config/udev: Adding input device Power Button (/dev/input/event2) [ 10.125] () Power Button: Applying InputClass "libinput keyboard catchall" [ 10.125] () Power Button: Applying InputClass "system-keyboard" [ 10.125] (II) Using input driver 'libinput' for 'Power Button' [ 10.126] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 42 paused 0 [ 10.126] () Power Button: always reports core events [ 10.126] () Option "Device" "/dev/input/event2" [ 10.126] () Option "_source" "server/udev" [ 10.126] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 10.126] (II) event2 - Power Button: device is a keyboard [ 10.126] (II) event2 - Power Button: device removed [ 10.126] () Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event2" [ 10.126] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7) [ 10.126] () Option "xkb_model" "pc104" [ 10.126] () Option "xkb_layout" "ca+eng" [ 10.127] (II) event2 - Power Button: is tagged by udev as: Keyboard [ 10.127] (II) event2 - Power Button: device is a keyboard [ 10.127] (II) config/udev: Adding input device Lid Switch (/dev/input/event1) [ 10.127] (II) No input driver specified, ignoring this device. [ 10.127] (II) This device may have been added with another device file. [ 10.127] (II) config/udev: Adding input device Sleep Button (/dev/input/event3) [ 10.127] () Sleep Button: Applying InputClass "libinput keyboard catchall" [ 10.127] () Sleep Button: Applying InputClass "system-keyboard" [ 10.127] (II) Using input driver 'libinput' for 'Sleep Button' [ 10.128] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 43 paused 0 [ 10.128] () Sleep Button: always reports core events [ 10.128] () Option "Device" "/dev/input/event3" [ 10.128] () Option "_source" "server/udev" [ 10.128] (II) event3 - Sleep Button: is tagged by udev as: Keyboard [ 10.128] (II) event3 - Sleep Button: device is a keyboard [ 10.128] (II) event3 - Sleep Button: device removed [ 10.128] () Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input4/event3" [ 10.128] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8) [ 10.128] () Option "xkb_model" "pc104" [ 10.128] () Option "xkb_layout" "ca+eng" [ 10.129] (II) event3 - Sleep Button: is tagged by udev as: Keyboard [ 10.129] (II) event3 - Sleep Button: device is a keyboard [ 10.130] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event7) [ 10.130] () Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall" [ 10.130] () Integrated_Webcam_HD: Integrate: Applying InputClass "system-keyboard" [ 10.130] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate' [ 10.130] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 44 paused 0 [ 10.130] () Integrated_Webcam_HD: Integrate: always reports core events [ 10.130] () Option "Device" "/dev/input/event7" [ 10.130] () Option "_source" "server/udev" [ 10.131] (II) event7 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard [ 10.131] (II) event7 - Integrated_Webcam_HD: Integrate: device is a keyboard [ 10.131] (II) event7 - Integrated_Webcam_HD: Integrate: device removed [ 10.131] () Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12:1.0/input/input12/event7" [ 10.131] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 9) [ 10.131] () Option "xkb_model" "pc104" [ 10.131] () Option "xkb_layout" "ca+eng" [ 10.131] (II) event7 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard [ 10.131] (II) event7 - Integrated_Webcam_HD: Integrate: device is a keyboard [ 10.131] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input/event6) [ 10.131] () ELAN Touchscreen: Applying InputClass "libinput touchscreen catchall" [ 10.132] (II) Using input driver 'libinput' for 'ELAN Touchscreen' [ 10.132] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 45 paused 0 [ 10.132] () ELAN Touchscreen: always reports core events [ 10.132] () Option "Device" "/dev/input/event6" [ 10.132] () Option "_source" "server/udev" [ 10.133] (II) event6 - ELAN Touchscreen: is tagged by udev as: Touchscreen [ 10.133] (II) event6 - ELAN Touchscreen: device is a touch device [ 10.133] (II) event6 - ELAN Touchscreen: device removed [ 10.133] () Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-9/1-9:1.0/0003:04F3:24A1.0001/input/input8/event6" [ 10.133] (II) XINPUT: Adding extended input device "ELAN Touchscreen" (type: TOUCHSCREEN, id 10) [ 10.133] () Option "AccelerationScheme" "none" [ 10.133] () ELAN Touchscreen: (accel) selected scheme none/0 [ 10.133] () ELAN Touchscreen: (accel) acceleration factor: 2.000 [ 10.133] () ELAN Touchscreen: (accel) acceleration threshold: 4 [ 10.133] (II) event6 - ELAN Touchscreen: is tagged by udev as: Touchscreen [ 10.133] (II) event6 - ELAN Touchscreen: device is a touch device [ 10.133] (II) config/udev: Adding input device ELAN Touchscreen (/dev/input/mouse0) [ 10.133] (II) No input driver specified, ignoring this device. [ 10.133] (II) This device may have been added with another device file. [ 10.134] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event5) [ 10.134] () Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall" [ 10.134] () Dell WMI hotkeys: Applying InputClass "system-keyboard" [ 10.134] (II) Using input driver 'libinput' for 'Dell WMI hotkeys' [ 10.134] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 46 paused 0 [ 10.134] () Dell WMI hotkeys: always reports core events [ 10.134] () Option "Device" "/dev/input/event5" [ 10.134] () Option "_source" "server/udev" [ 10.135] (II) event5 - Dell WMI hotkeys: is tagged by udev as: Keyboard [ 10.135] (II) event5 - Dell WMI hotkeys: device is a keyboard [ 10.135] (II) event5 - Dell WMI hotkeys: device removed [ 10.135] () Option "config_info" "udev:/sys/devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input7/event5" [ 10.135] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 11) [ 10.135] () Option "xkb_model" "pc104" [ 10.135] () Option "xkb_layout" "ca+eng" [ 10.135] (II) event5 - Dell WMI hotkeys: is tagged by udev as: Keyboard [ 10.135] (II) event5 - Dell WMI hotkeys: device is a keyboard [ 10.136] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0) [ 10.136] () AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall" [ 10.136] () AT Translated Set 2 keyboard: Applying InputClass "system-keyboard" [ 10.136] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard' [ 10.136] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 47 paused 0 [ 10.136] () AT Translated Set 2 keyboard: always reports core events [ 10.136] () Option "Device" "/dev/input/event0" [ 10.136] () Option "_source" "server/udev" [ 10.137] (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 10.137] (II) event0 - AT Translated Set 2 keyboard: device is a keyboard [ 10.137] (II) event0 - AT Translated Set 2 keyboard: device removed [ 10.137] () Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0" [ 10.137] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12) [ 10.137] () Option "xkb_model" "pc104" [ 10.137] () Option "xkb_layout" "ca+eng" [ 10.137] (II) event0 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard [ 10.137] (II) event0 - AT Translated Set 2 keyboard: device is a keyboard [ 10.138] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event8) [ 10.138] () SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall" [ 10.138] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad' [ 10.138] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 48 paused 0 [ 10.138] () SynPS/2 Synaptics TouchPad: always reports core events [ 10.138] () Option "Device" "/dev/input/event8" [ 10.138] () Option "_source" "server/udev" [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: no resolution or size hints, assuming a size of 69x50mm [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: device removed [ 10.139] () Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event8" [ 10.139] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13) [ 10.139] () Option "AccelerationScheme" "none" [ 10.139] () SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0 [ 10.139] () SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000 [ 10.139] () SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4 [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: no resolution or size hints, assuming a size of 69x50mm [ 10.139] (II) event8 - SynPS/2 Synaptics TouchPad: device is a touchpad [ 10.140] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/ttyS0) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/ttyS1) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/ttyS2) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/ttyS3) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/input/mice) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/console) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.140] (II) config/udev: Adding input device (unnamed) (/dev/ptmx) [ 10.140] (II) No input driver specified, ignoring this device. [ 10.140] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty0) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty1) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty10) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty11) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty12) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty13) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty14) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty15) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty16) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.141] (II) config/udev: Adding input device (unnamed) (/dev/tty17) [ 10.141] (II) No input driver specified, ignoring this device. [ 10.141] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty18) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty19) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty2) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty20) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty21) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty22) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty23) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty24) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty25) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty26) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.142] (II) config/udev: Adding input device (unnamed) (/dev/tty27) [ 10.142] (II) No input driver specified, ignoring this device. [ 10.142] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty28) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty29) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty3) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty30) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty31) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty32) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty33) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty34) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty35) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty36) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.143] (II) config/udev: Adding input device (unnamed) (/dev/tty37) [ 10.143] (II) No input driver specified, ignoring this device. [ 10.143] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty38) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty39) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty4) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty40) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty41) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty42) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty43) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty44) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty45) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty46) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.144] (II) config/udev: Adding input device (unnamed) (/dev/tty47) [ 10.144] (II) No input driver specified, ignoring this device. [ 10.144] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty48) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty49) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty5) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty50) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty51) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty52) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty53) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty54) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty55) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.145] (II) config/udev: Adding input device (unnamed) (/dev/tty56) [ 10.145] (II) No input driver specified, ignoring this device. [ 10.145] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty57) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty58) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty59) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty6) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty60) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty61) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty62) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty63) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty7) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty8) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.146] (II) config/udev: Adding input device (unnamed) (/dev/tty9) [ 10.146] (II) No input driver specified, ignoring this device. [ 10.146] (II) This device may have been added with another device file. [ 10.379] randr: falling back to unsynchronized pixmap sharing [ 11.921] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event9) [ 11.921] (II) No input driver specified, ignoring this device. [ 11.921] (II) This device may have been added with another device file. [ 11.939] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event13) [ 11.939] (II) No input driver specified, ignoring this device. [ 11.939] (II) This device may have been added with another device file. [ 11.940] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event10) [ 11.940] (II) No input driver specified, ignoring this device. [ 11.940] (II) This device may have been added with another device file. [ 11.941] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event14) [ 11.941] (II) No input driver specified, ignoring this device. [ 11.941] (II) This device may have been added with another device file. [ 11.941] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event12) [ 11.941] (II) No input driver specified, ignoring this device. [ 11.941] (II) This device may have been added with another device file. [ 11.941] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event11) [ 11.941] (II) No input driver specified, ignoring this device. [ 11.941] (II) This device may have been added with another device file. [ 18.097] () Option "fd" "39" [ 18.098] (II) event4 - Power Button: device removed [ 18.098] () Option "fd" "42" [ 18.098] (II) event2 - Power Button: device removed [ 18.099] () Option "fd" "43" [ 18.099] (II) event3 - Sleep Button: device removed [ 18.100] () Option "fd" "44" [ 18.100] (II) event7 - Integrated_Webcam_HD: Integrate: device removed [ 18.101] () Option "fd" "45" [ 18.101] (II) event6 - ELAN Touchscreen: device removed [ 18.101] () Option "fd" "46" [ 18.101] (II) event5 - Dell WMI hotkeys: device removed [ 18.102] () Option "fd" "47" [ 18.102] (II) event0 - AT Translated Set 2 keyboard: device removed [ 18.102] () Option "fd" "48" [ 18.102] (II) event8 - SynPS/2 Synaptics TouchPad: device removed [ 18.105] (II) systemd-logind: got pause for 13:70 [ 18.105] (II) systemd-logind: got pause for 13:64 [ 18.105] (II) systemd-logind: got pause for 13:68 [ 18.105] (II) systemd-logind: got pause for 13:71 [ 18.105] (II) systemd-logind: got pause for 226:1 [ 18.105] (II) systemd-logind: got pause for 13:66 [ 18.105] (II) systemd-logind: got pause for 13:72 [ 18.105] (II) systemd-logind: got pause for 13:69 [ 18.105] (II) systemd-logind: got pause for 13:67

JeffLabonte commented 6 years ago

I will make another report once I can reboot my laptop. I might to wait till this evening.

wildtruc commented 6 years ago

Ok, all looks fine, but... How did you get on NVIDIA-0 provider in first place? Is it with nvidia-prime-select or an other tool or manual configuration?

For boot options, I'm not familiar with UEFI boot code (I've none), need to seek deeper. Where is located boot parameters in Solus? And cat the file, please.

What's return: cat /etc/nvidia-prime/xinitrc.prime cat /etc/nvidia-prime/display.prime ls -l /etc/X11/xorg.conf

I've just upload fixes allowing to unset grub detection and configuration. Use the GUI tool to not allow grub part, is really easier.

JeffLabonte commented 6 years ago

The boot parameters are in /etc/kernel in differents files. Those are the parameter I had;

Boot Parameters resume=UUID=ad3d9f82-f8b0-4af7-96f5-10328f004c2a nouveau.modeset=0 acpi_osi=! acpi_osi='Windows 2009' pcie_port_pm=off

I am a distro hopper and Solus had some serious issues for me during work so I went back to Ubuntu. I hope the info I gave you helped you improve your script a bit more!

wildtruc commented 6 years ago

I assume you don't have Solus anymore. Too bad, I seek deeper and I had a few more question about Solus UEFI boot system. There's maybe a solution for you there.

JeffLabonte commented 6 years ago

oh nice, thank you. I will look into it!

You can have a look on this page

JeffLabonte commented 6 years ago

@wildtruc I got back to Solus and the link the gave me worked. It works like a charm with Solus UEFI system. I got back to Solus since I am a Rolling Release fan and the community is awesome!!! :grinning:

wildtruc commented 6 years ago

Good! Well, you're back on Solus. Could you do 2 last thinks? The result of xrandr --listproviders when you are on intel device and a tar.gz of the /mnt directory that will very help me to understand how it works and maybe add it to the script.

JeffLabonte commented 6 years ago

This is what comes up when I execute xrandr --listproviders :

Providers: number : 1 Provider 0: id: 0x47 cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 3 outputs: 5 associated providers: 0 name:modesetting

My /mnt folder is empty .... well not anymore, it has an empty folder called Systemd-Nvidia-Entry

If you have any other questions, don't be shy to poke me.

wildtruc commented 6 years ago

It seems that @TimRichardson was right. On intel session provider is not intel, but modesetting. I will do some test this WE and see how it goes. Thanks. And I wont be shy :)

JeffLabonte commented 6 years ago

you are most welcome! happy to help!