[solved] remove grub timeout doesn't work

i am trying to remove the grub timeout by editing /etc/default/grub and setting grub_timeout to 0, but it doesn't work, is there anything else i should change?
p.s. should i run grub-mkconfig?
Last edited by aldoiljazi (2013-09-18 07:35:11)

okay i run 'sudo grub-mkconfig'
this is my /etc/default/grub
GRUB_DEFAULT=0
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""
# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"
# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true
# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console
# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto
# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep
# Uncomment if you want GRUB to pass to the Linux kernel the old parameter
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx"
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true
# Uncomment and set to the desired menu colors. Used by normal and wallpaper
# modes only. Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"
# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"
# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"
#GRUB_SAVEDEFAULT="true"
and this is my /boot/grub/grub.cfg
# DO NOT EDIT THIS FILE
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 6b44daaa-610c-4f23-a632-569d091e4d43
else
search --no-floppy --fs-uuid --set=root 6b44daaa-610c-4f23-a632-569d091e4d43
fi
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
set timeout=5
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-core repo kernel-true-6b44daaa-610c-4f23-a632-569d091e4d43' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 6b44daaa-610c-4f23-a632-569d091e4d43
else
search --no-floppy --fs-uuid --set=root 6b44daaa-610c-4f23-a632-569d091e4d43
fi
echo 'Loading Linux core repo kernel ...'
linux /boot/vmlinuz-linux root=UUID=6b44daaa-610c-4f23-a632-569d091e4d43 rw quiet
echo 'Loading initial ramdisk ...'
initrd /boot/initramfs-linux.img
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###
p.s. i didn't think you needed those, because i thought they had default values.
edit: i guess i need 'grub-mkconfig -o /boot/grub/grub.cfg '
Last edited by aldoiljazi (2013-09-18 07:31:39)

Similar Messages

  • [SOLVED]Xorg 1.8 doesn't work

    Hello, I've just upgraded to linux-firmware and the newest X.org, which doesn't work.
    Xorg.0.log tells me:
    [ 934.318]
    X.Org X Server 1.8.1
    Release Date: 2010-05-11
    [ 934.322] X Protocol Version 11, Revision 0
    [ 934.323] Build Operating System: Linux 2.6.33-ARCH x86_64
    [ 934.325] Current Operating System: Linux staerseus 2.6.34-ARCH #1 SMP PREEMPT Sat Jun 19 00:07:49 CEST 2010 x86_64
    [ 934.326] Kernel command line: root=/dev/disk/by-uuid/727c4683-ee4c-4b32-8a59-370264cb7d9f ro i915.modeset=1 init=/sbin/bootchartd
    [ 934.327] Build Date: 26 May 2010 07:50:07PM
    [ 934.329]
    [ 934.330] Current version of pixman: 0.18.2
    [ 934.331] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 934.334] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 934.338] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 21 10:15:38 2010
    [ 934.340] (==) Using config file: "/etc/X11/xorg.conf"
    [ 934.341] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 934.343] (==) No Layout section. Using the first Screen section.
    [ 934.343] (==) No screen section available. Using defaults.
    [ 934.343] (**) |-->Screen "Default Screen Section" (0)
    [ 934.343] (**) | |-->Monitor "<default monitor>"
    [ 934.343] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 934.343] (==) Automatically adding devices
    [ 934.343] (==) Automatically enabling devices
    [ 934.343] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 934.343] Entry deleted from font path.
    [ 934.343] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 934.343] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 934.343] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 934.343] (II) Loader magic: 0x7ce880
    [ 934.343] (II) Module ABI versions:
    [ 934.343] X.Org ANSI C Emulation: 0.4
    [ 934.343] X.Org Video Driver: 7.0
    [ 934.343] X.Org XInput driver : 9.0
    [ 934.343] X.Org Server Extension : 3.0
    [ 934.352] (--) PCI:*(0:0:2:0) 8086:2a42:1734:113f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf2400000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8
    [ 934.352] (--) PCI: (0:0:2:1) 8086:2a43:1734:113f Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller rev 7, Mem @ 0xf2100000/1048576
    [ 934.352] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 934.352] (II) LoadModule: "extmod"
    [ 934.352] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 934.352] (II) Module extmod: vendor="X.Org Foundation"
    [ 934.352] compiled for 1.8.1, module version = 1.0.0
    [ 934.352] Module class: X.Org Server Extension
    [ 934.352] ABI class: X.Org Server Extension, version 3.0
    [ 934.352] (II) Loading extension MIT-SCREEN-SAVER
    [ 934.352] (II) Loading extension XFree86-VidModeExtension
    [ 934.352] (II) Loading extension XFree86-DGA
    [ 934.352] (II) Loading extension DPMS
    [ 934.352] (II) Loading extension XVideo
    [ 934.352] (II) Loading extension XVideo-MotionCompensation
    [ 934.352] (II) Loading extension X-Resource
    [ 934.352] (II) LoadModule: "dbe"
    [ 934.352] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 934.352] (II) Module dbe: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] Module class: X.Org Server Extension
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension DOUBLE-BUFFER
    [ 934.353] (II) LoadModule: "glx"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 934.353] (II) Module glx: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (==) AIGLX enabled
    [ 934.353] (II) Loading extension GLX
    [ 934.353] (II) LoadModule: "record"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 934.353] (II) Module record: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.13.0
    [ 934.353] Module class: X.Org Server Extension
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension RECORD
    [ 934.353] (II) LoadModule: "dri"
    [ 934.353] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 934.353] (II) Module dri: vendor="X.Org Foundation"
    [ 934.353] compiled for 1.8.1, module version = 1.0.0
    [ 934.353] ABI class: X.Org Server Extension, version 3.0
    [ 934.353] (II) Loading extension XFree86-DRI
    [ 934.354] (II) LoadModule: "dri2"
    [ 934.354] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 934.354] (II) Module dri2: vendor="X.Org Foundation"
    [ 934.354] compiled for 1.8.1, module version = 1.2.0
    [ 934.354] ABI class: X.Org Server Extension, version 3.0
    [ 934.354] (II) Loading extension DRI2
    [ 934.354] (==) Matched intel as autoconfigured driver 0
    [ 934.354] (==) Matched vesa as autoconfigured driver 1
    [ 934.354] (==) Matched fbdev as autoconfigured driver 2
    [ 934.354] (==) Assigned the driver to the xf86ConfigLayout
    [ 934.354] (II) LoadModule: "intel"
    [ 934.354] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 934.354] (II) Module intel: vendor="X.Org Foundation"
    [ 934.354] compiled for 1.7.6, module version = 2.11.0
    [ 934.354] Module class: X.Org Video Driver
    [ 934.354] ABI class: X.Org Video Driver, version 6.0
    [ 934.354] (EE) module ABI major version (6) doesn't match the server's version (7)
    [ 934.356] (II) UnloadModule: "intel"
    [ 934.356] (II) Unloading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 934.356] (EE) Failed to load module "intel" (module requirement mismatch, 0)
    [ 934.357] (II) LoadModule: "vesa"
    [ 934.357] (WW) Warning, couldn't open module vesa
    [ 934.357] (II) UnloadModule: "vesa"
    [ 934.357] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 934.359] (II) LoadModule: "fbdev"
    [ 934.359] (WW) Warning, couldn't open module fbdev
    [ 934.359] (II) UnloadModule: "fbdev"
    [ 934.359] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 934.360] (EE) No drivers available.
    [ 934.362]
    Fatal server error:
    [ 934.364] no screens found
    [ 934.365]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 934.370] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 934.372]
    What does the problem with modules mean? Archlinux was warning me, that "in future releases /etc/modprobe.d/framebuffer_blacklist.conf.save will be ignored, but it is the same file as /etc/modprobe.d/framebuffer_blacklist.conf.
    I don't understand, why it cannot find any screens (I use a laptop screen)
    I tried to start with and without xorg.conf, which is:
    Section "Device"
    Identifier "Intel X4500MHD"
    Driver "intel"
    VendorName "Intel Corporation"
    BoardName "Mobile 4 Series Chipset Integrated Graphics Controller"
    BusID "PCI:0:2:0"
    Option "DRI" "true"
    Option "AccelMethod" "uxa"
    Option "MigrationHeuristic" "greedy"
    EndSection
    The graphic driver I use is xf86-video-intel-newest from archstuff, but it is the same version as xf86-video-intel.
    I am not sure if I provided all needed info, but I hope so. Thank you for your help.SOLVED
    Last edited by Staerseus (2010-06-21 09:18:03)

    Use the arch version.   It is actually built against the xorg version that you are using...  here is the relevant section of your log:
    [ 934.354] (EE) module ABI major version (6) doesn't match the server's version (7)

  • [SOLVED] - xset at startup doesn't work

    I use the following command to set my screensaver options
    xset dpms 30 60 300
    After reading the Arch wiki, I found out that this can be made permanent by adding this to the xorg.conf or putting it in ~/.xprofile
    Contents of xorg.conf
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 1.0 (buildmeister@builder75) Tue Dec 8 21:04:28 PST 2009
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "Mouse0" "CorePointer"
    Option "StandbyTime" "2"
    Option "SuspendTime" "3"
    Option "OffTime" "5"
    EndSection
    Section "Files"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    EndSection
    Section "InputDevice"
    # generated from default
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "Monitor"
    Identifier "Dell Inspiron 1520 WXGA+ LCD"
    VendorName "Dell"
    ModelName "Unknown"
    HorizSync 28.0 - 33.0
    VertRefresh 43.0 - 72.0
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "InputDevice"
    Identifier "Touchpad"
    Driver "synaptics"
    Option "Device" "/dev/input/mouse0"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    Option "CircularScrolling" "1"
    Option "CircScrollTrigger" "0"
    EndSection
    Section "ServerFlags"
    Option "DontZap" "false"
    Option "BlankTime" "0.1"
    Option "StandbyTime" "0.5"
    Option "SuspendTime" "1"
    Option "OffTime" "5"
    EndSection
    Contents of ~/.xprofile
    xset dpms 30 60 300
    I even added this to crontab
    0 * * * * ~/Wallpapers/change-background-folder.py
    0 * * * * /usr/bin/xset s 30
    0 * * * * /usr/bin/xset dpms 60 120 300
    @reboot ID=screensaver AFTER=2m /usr/bin/xset s 30
    @reboot ID=monitor AFTER=2m /usr/bin/xset dpms 60 120 300
    @reboot ID=vu AFTER=1m vuze
    Still after doing all this, when I give xset q after a reboot, I get
    [theta@boolean-pc ~]$ xset q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000000
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: off 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 30
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 3/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 600 cycle: 600
    Colors:
    default colormap: 0x20 BlackPixel: 0 WhitePixel: 16777215
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,/usr/share/fonts/100dpi/,/usr/share/fonts/75dpi/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    Font cache:
    Server does not have the FontCache Extension
    The parameters are still all 0.
    Please suggest a solution.
    Apoorv
    Last edited by theta (2011-08-02 15:56:06)

    jasonwryan wrote:
    If you have set up your .xinitrc the way karol suggests and it still doesn't work, you could delay it kicking in until X has finished loading
    (sleep 15s && xset dpms 30 60 300) &
    exec yourwm
    That may get around the problem bernarcher describes...
    Thank you! This works very well for me.
    It's the only way I can get it to work.
    For the records, so the smart people can find the problem, here is my xorg.conf:
    Section "ServerLayout"
    Identifier "ServerLayout0"
    Screen 0 "BenQ" 0 0
    #Option "BlankTime" "0"
    Option "StandbyTime" "10"
    Option "SuspendTime" "20"
    Option "OffTime" "30"
    EndSection
    Section "Screen"
    Identifier "BenQ"
    Device "Intel4000"
    Monitor "HDMI2"
    DefaultDepth 24
    SubSection "Display"
    #Depth "24"
    EndSubSection
    EndSection
    Section "Monitor"
    Identifier "HDMI2"
    Option "DPMS" "true"
    EndSection
    Section "Device"
    Identifier "Intel4000"
    Driver "intel"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "sna"
    Option "TearFree" "true"
    EndSection
    # Read and parsed by systemd-localed. It's probably wise not to edit this manually too freely.
    Section "InputClass"
    Identifier "system-keyboard"
    MatchIsKeyboard "on"
    Option "XkbLayout" "se"
    EndSection
    # Catch-all evdev loader for udev-based systems
    # We don't simply match on any device since that also adds accelerometers
    # and other devices that we don't really want to use. The list below
    # matches everything but joysticks.
    Section "InputClass"
    Identifier "evdev pointer catchall"
    MatchIsPointer "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev keyboard catchall"
    MatchIsKeyboard "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchpad catchall"
    MatchIsTouchpad "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev tablet catchall"
    MatchIsTablet "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Section "InputClass"
    Identifier "evdev touchscreen catchall"
    MatchIsTouchscreen "on"
    MatchDevicePath "/dev/input/event*"
    Driver "evdev"
    EndSection
    Xorg seems to not care about my settings in xorg.conf and sets DPMS values to "0":
    $ xset -q
    Keyboard Control:
    auto repeat: on key click percent: 0 LED mask: 00000002
    XKB indicators:
    00: Caps Lock: off 01: Num Lock: on 02: Scroll Lock: off
    03: Compose: off 04: Kana: off 05: Sleep: off
    06: Suspend: off 07: Mute: off 08: Misc: off
    09: Mail: off 10: Charging: off 11: Shift Lock: off
    12: Group 2: off 13: Mouse Keys: off
    auto repeat delay: 500 repeat rate: 33
    auto repeating keys: 00ffffffdffffbbf
    fadfffefffedffff
    9fffffffffffffff
    fff7ffffffffffff
    bell percent: 50 bell pitch: 400 bell duration: 100
    Pointer Control:
    acceleration: 2/1 threshold: 4
    Screen Saver:
    prefer blanking: yes allow exposures: yes
    timeout: 0 cycle: 0
    Colors:
    default colormap: 0x22 BlackPixel: 0x0 WhitePixel: 0xffffff
    Font Path:
    /usr/share/fonts/misc/,/usr/share/fonts/TTF/,/usr/share/fonts/Type1/,built-ins
    DPMS (Energy Star):
    Standby: 0 Suspend: 0 Off: 0
    DPMS is Enabled
    Monitor is On
    And the xorg log:
    [ 17738.153]
    X.Org X Server 1.15.1
    Release Date: 2014-04-13
    [ 17738.194] X Protocol Version 11, Revision 0
    [ 17738.208] Build Operating System: Linux 3.14.0-4-ARCH x86_64
    [ 17738.223] Current Operating System: Linux arch6 3.14.1-1-ARCH #1 SMP PREEMPT Mon Apr 14 20:40:47 CEST 2014 x86_64
    [ 17738.223] Kernel command line: console=tty0 xen-pciback.hide=(01:00.0)(01:00.1)(03:00.0)(02:00.0)(00:14.0)(00:1d.0) root=/dev/VG/Aroot rw
    [ 17738.254] Build Date: 14 April 2014 08:39:09AM
    [ 17738.269]
    [ 17738.285] Current version of pixman: 0.32.4
    [ 17738.314] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 17738.314] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 17738.375] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Apr 29 22:10:19 2014
    [ 17738.390] (==) Using config file: "/etc/X11/xorg.conf"
    [ 17738.406] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 17738.406] (==) ServerLayout "ServerLayout0"
    [ 17738.406] (**) |-->Screen "BenQ" (0)
    [ 17738.406] (**) | |-->Monitor "HDMI2"
    [ 17738.406] (**) | |-->Device "Intel4000"
    [ 17738.406] (**) Option "StandbyTime" "10"
    [ 17738.406] (**) Option "SuspendTime" "20"
    [ 17738.406] (**) Option "OffTime" "30"
    [ 17738.406] (==) Automatically adding devices
    [ 17738.406] (==) Automatically enabling devices
    [ 17738.406] (==) Automatically adding GPU devices
    [ 17738.406] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 17738.406] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 17738.406] Entry deleted from font path.
    [ 17738.406] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 17738.406] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 17738.406] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 17738.406] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 17738.406] (II) Loader magic: 0x804c80
    [ 17738.406] (II) Module ABI versions:
    [ 17738.406] X.Org ANSI C Emulation: 0.4
    [ 17738.406] X.Org Video Driver: 15.0
    [ 17738.406] X.Org XInput driver : 20.0
    [ 17738.406] X.Org Server Extension : 8.0
    [ 17738.406] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 17738.408] (--) PCI:*(0:0:2:0) 8086:0162:1458:d000 rev 9, Mem @ 0xf4400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
    [ 17738.408] (--) PCI: (0:1:0:0) 1002:67b1:1002:0b00 rev 0, Mem @ 0xd0000000/268435456, 0xe0000000/8388608, 0xf4b00000/262144, I/O @ 0x0000e000/256, BIOS @ 0x????????/131072
    [ 17738.408] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 17738.424] Initializing built-in extension Generic Event Extension
    [ 17738.439] Initializing built-in extension SHAPE
    [ 17738.454] Initializing built-in extension MIT-SHM
    [ 17738.468] Initializing built-in extension XInputExtension
    [ 17738.482] Initializing built-in extension XTEST
    [ 17738.495] Initializing built-in extension BIG-REQUESTS
    [ 17738.509] Initializing built-in extension SYNC
    [ 17738.523] Initializing built-in extension XKEYBOARD
    [ 17738.536] Initializing built-in extension XC-MISC
    [ 17738.548] Initializing built-in extension SECURITY
    [ 17738.561] Initializing built-in extension XINERAMA
    [ 17738.573] Initializing built-in extension XFIXES
    [ 17738.585] Initializing built-in extension RENDER
    [ 17738.597] Initializing built-in extension RANDR
    [ 17738.608] Initializing built-in extension COMPOSITE
    [ 17738.620] Initializing built-in extension DAMAGE
    [ 17738.631] Initializing built-in extension MIT-SCREEN-SAVER
    [ 17738.643] Initializing built-in extension DOUBLE-BUFFER
    [ 17738.654] Initializing built-in extension RECORD
    [ 17738.665] Initializing built-in extension DPMS
    [ 17738.677] Initializing built-in extension Present
    [ 17738.688] Initializing built-in extension DRI3
    [ 17738.700] Initializing built-in extension X-Resource
    [ 17738.711] Initializing built-in extension XVideo
    [ 17738.722] Initializing built-in extension XVideo-MotionCompensation
    [ 17738.734] Initializing built-in extension XFree86-VidModeExtension
    [ 17738.746] Initializing built-in extension XFree86-DGA
    [ 17738.757] Initializing built-in extension XFree86-DRI
    [ 17738.769] Initializing built-in extension DRI2
    [ 17738.769] (II) "glx" will be loaded by default.
    [ 17738.769] (II) LoadModule: "dri2"
    [ 17738.769] (II) Module "dri2" already built-in
    [ 17738.769] (II) LoadModule: "glamoregl"
    [ 17738.769] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 17738.770] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.0, module version = 0.6.0
    [ 17738.770] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 17738.770] (II) LoadModule: "glx"
    [ 17738.770] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 17738.770] (II) Module glx: vendor="X.Org Foundation"
    [ 17738.770] compiled for 1.15.1, module version = 1.0.0
    [ 17738.771] ABI class: X.Org Server Extension, version 8.0
    [ 17738.771] (==) AIGLX enabled
    [ 17738.782] Loading extension GLX
    [ 17738.782] (II) LoadModule: "intel"
    [ 17738.782] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    [ 17738.782] (II) Module intel: vendor="X.Org Foundation"
    [ 17738.783] compiled for 1.15.0, module version = 2.99.911
    [ 17738.783] Module class: X.Org Video Driver
    [ 17738.783] ABI class: X.Org Video Driver, version 15.0
    [ 17738.783] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    [ 17738.783] (II) intel: Driver for Intel(R) HD Graphics: 2000-5000
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100
    [ 17738.783] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200
    [ 17738.783] (++) using VT number 1
    [ 17738.783] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4000
    [ 17738.783] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    [ 17738.783] (**) intel(0): Depth 24, (--) framebuffer bpp 32
    [ 17738.783] (==) intel(0): RGB weight 888
    [ 17738.783] (==) intel(0): Default visual is TrueColor
    [ 17738.783] (**) intel(0): Option "AccelMethod" "sna"
    [ 17738.783] (**) intel(0): Option "TearFree" "true"
    [ 17738.783] (**) intel(0): Framebuffer tiled
    [ 17738.784] (**) intel(0): Pixmaps tiled
    [ 17738.784] (**) intel(0): "Tear free" enabled
    [ 17738.784] (**) intel(0): Forcing per-crtc-pixmaps? no
    [ 17738.784] (II) intel(0): Output VGA1 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output HDMI1 has no monitor section
    [ 17738.784] (II) intel(0): Output DP1 has no monitor section
    [ 17738.784] (II) intel(0): Output HDMI2 using monitor section HDMI2
    [ 17738.784] (II) intel(0): Output DP2 has no monitor section
    [ 17738.784] (II) intel(0): Output VIRTUAL1 has no monitor section
    [ 17738.784] (--) intel(0): Output HDMI2 using initial mode 1920x1080 on pipe 0
    [ 17738.784] (==) intel(0): DPI set to (96, 96)
    [ 17738.784] (II) Loading sub module "dri2"
    [ 17738.784] (II) LoadModule: "dri2"
    [ 17738.784] (II) Module "dri2" already built-in
    [ 17738.784] (==) Depth 24 pixmap format is 32 bpp
    [ 17738.784] (II) intel(0): SNA initialized with Ivybridge (gen7, gt2) backend
    [ 17738.784] (==) intel(0): Backing store enabled
    [ 17738.784] (==) intel(0): Silken mouse enabled
    [ 17738.784] (II) intel(0): HW Cursor enabled
    [ 17738.784] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 17738.784] (**) intel(0): DPMS enabled
    [ 17738.784] (II) intel(0): [DRI2] Setup complete
    [ 17738.784] (II) intel(0): [DRI2] DRI driver: i965
    [ 17738.784] (II) intel(0): [DRI2] VDPAU driver: i965
    [ 17738.784] (II) intel(0): direct rendering: DRI2 Enabled
    [ 17738.784] (==) intel(0): hotplug detection: "enabled"
    [ 17738.784] (--) RandR disabled
    [ 17738.789] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 17738.789] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 17738.789] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 17738.789] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 17738.789] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 17738.789] (II) AIGLX: enabled GLX_ARB_create_context_robustness
    [ 17738.789] (II) AIGLX: Loaded and initialized i965
    [ 17738.789] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 17738.791] (II) intel(0): switch to mode [email protected] on HDMI2 using pipe 0, position (0, 0), rotation normal, reflection none
    [ 17738.801] (II) intel(0): Setting screen physical size to 508 x 285
    [ 17738.839] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 17738.839] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.839] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.839] (II) LoadModule: "evdev"
    [ 17738.839] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 17738.840] (II) Module evdev: vendor="X.Org Foundation"
    [ 17738.840] compiled for 1.15.0, module version = 2.8.2
    [ 17738.840] Module class: X.Org XInput Driver
    [ 17738.840] ABI class: X.Org XInput driver, version 20.0
    [ 17738.840] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.840] (**) Power Button: always reports core events
    [ 17738.840] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 17738.840] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.840] (--) evdev: Power Button: Found keys
    [ 17738.840] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.840] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 17738.840] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 17738.840] (**) Option "xkb_rules" "evdev"
    [ 17738.840] (**) Option "xkb_model" "pc104"
    [ 17738.840] (**) Option "xkb_layout" "se"
    [ 17738.870] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
    [ 17738.870] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 17738.870] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 17738.870] (II) Using input driver 'evdev' for 'Video Bus'
    [ 17738.870] (**) Video Bus: always reports core events
    [ 17738.870] (**) evdev: Video Bus: Device: "/dev/input/event2"
    [ 17738.871] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 17738.871] (--) evdev: Video Bus: Found keys
    [ 17738.871] (II) evdev: Video Bus: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input2/event2"
    [ 17738.871] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 17738.871] (**) Power Button: Applying InputClass "system-keyboard"
    [ 17738.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 17738.871] (II) Using input driver 'evdev' for 'Power Button'
    [ 17738.871] (**) Power Button: always reports core events
    [ 17738.871] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 17738.871] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 17738.871] (--) evdev: Power Button: Found keys
    [ 17738.871] (II) evdev: Power Button: Configuring as keyboard
    [ 17738.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 17738.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 17738.871] (**) Option "xkb_rules" "evdev"
    [ 17738.871] (**) Option "xkb_model" "pc104"
    [ 17738.871] (**) Option "xkb_layout" "se"
    [ 17738.871] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event3)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event3"
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/0003:045E:0750.0001/input/input5/event3"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 9)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/event4)
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.872] (**) Microsoft Wired Keyboard 600: Applying InputClass "evdev keyboard catchall"
    [ 17738.872] (II) Using input driver 'evdev' for 'Microsoft Wired Keyboard 600'
    [ 17738.872] (**) Microsoft Wired Keyboard 600: always reports core events
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: Device: "/dev/input/event4"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Using mtdev for this device
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Vendor 0x45e Product 0x750
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found 1 mouse buttons
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found scroll wheel(s)
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found relative axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found absolute multitouch axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found x and y absolute axes
    [ 17738.872] (--) evdev: Microsoft Wired Keyboard 600: Found keys
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Forcing relative x/y axes to exist.
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as mouse
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Configuring as keyboard
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: Adding scrollwheel support
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: YAxisMapping: buttons 4 and 5
    [ 17738.872] (**) evdev: Microsoft Wired Keyboard 600: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.872] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.1/0003:045E:0750.0002/input/input6/event4"
    [ 17738.872] (II) XINPUT: Adding extended input device "Microsoft Wired Keyboard 600" (type: KEYBOARD, id 10)
    [ 17738.872] (**) Option "xkb_rules" "evdev"
    [ 17738.872] (**) Option "xkb_model" "pc104"
    [ 17738.872] (**) Option "xkb_layout" "se"
    [ 17738.872] (II) evdev: Microsoft Wired Keyboard 600: initialized for relative axes.
    [ 17738.873] (WW) evdev: Microsoft Wired Keyboard 600: ignoring absolute axes.
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration profile 0
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration factor: 2.000
    [ 17738.873] (**) Microsoft Wired Keyboard 600: (accel) acceleration threshold: 4
    [ 17738.873] (II) config/udev: Adding input device Microsoft Wired Keyboard 600 (/dev/input/js0)
    [ 17738.873] (**) Microsoft Wired Keyboard 600: Applying InputClass "system-keyboard"
    [ 17738.873] (II) No input driver specified, ignoring this device.
    [ 17738.873] (II) This device may have been added with another device file.
    [ 17738.873] (II) config/udev: Adding input device A..... G3 (/dev/input/event5)
    [ 17738.873] (**) A..... G3: Applying InputClass "evdev pointer catchall"
    [ 17738.873] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.873] (**) A..... G3: always reports core events
    [ 17738.873] (**) evdev: A..... G3: Device: "/dev/input/event5"
    [ 17738.873] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.873] (--) evdev: A..... G3: Found 12 mouse buttons
    [ 17738.873] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.873] (--) evdev: A..... G3: Found relative axes
    [ 17738.873] (--) evdev: A..... G3: Found x and y relative axes
    [ 17738.873] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.873] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.873] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.873] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.0/0003:E0FF:0002.0003/input/input7/event5"
    [ 17738.873] (II) XINPUT: Adding extended input device "A..... G3" (type: MOUSE, id 11)
    [ 17738.873] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.873] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.873] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.873] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.873] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/mouse0)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.874] (II) config/udev: Adding input device A..... G3 (/dev/input/event6)
    [ 17738.874] (**) A..... G3: Applying InputClass "system-keyboard"
    [ 17738.874] (**) A..... G3: Applying InputClass "evdev keyboard catchall"
    [ 17738.874] (II) Using input driver 'evdev' for 'A..... G3'
    [ 17738.874] (**) A..... G3: always reports core events
    [ 17738.874] (**) evdev: A..... G3: Device: "/dev/input/event6"
    [ 17738.874] (--) evdev: A..... G3: Vendor 0xe0ff Product 0x2
    [ 17738.874] (--) evdev: A..... G3: Found 1 mouse buttons
    [ 17738.874] (--) evdev: A..... G3: Found scroll wheel(s)
    [ 17738.874] (--) evdev: A..... G3: Found relative axes
    [ 17738.874] (II) evdev: A..... G3: Forcing relative x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found absolute axes
    [ 17738.874] (II) evdev: A..... G3: Forcing absolute x/y axes to exist.
    [ 17738.874] (--) evdev: A..... G3: Found keys
    [ 17738.874] (II) evdev: A..... G3: Configuring as mouse
    [ 17738.874] (II) evdev: A..... G3: Configuring as keyboard
    [ 17738.874] (II) evdev: A..... G3: Adding scrollwheel support
    [ 17738.874] (**) evdev: A..... G3: YAxisMapping: buttons 4 and 5
    [ 17738.874] (**) evdev: A..... G3: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 17738.874] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6:1.1/0003:E0FF:0002.0004/input/input8/event6"
    [ 17738.874] (II) XINPUT: Adding extended input device "A..... G3" (type: KEYBOARD, id 12)
    [ 17738.874] (**) Option "xkb_rules" "evdev"
    [ 17738.874] (**) Option "xkb_model" "pc104"
    [ 17738.874] (**) Option "xkb_layout" "se"
    [ 17738.874] (II) evdev: A..... G3: initialized for relative axes.
    [ 17738.874] (WW) evdev: A..... G3: ignoring absolute axes.
    [ 17738.874] (**) A..... G3: (accel) keeping acceleration scheme 1
    [ 17738.874] (**) A..... G3: (accel) acceleration profile 0
    [ 17738.874] (**) A..... G3: (accel) acceleration factor: 2.000
    [ 17738.874] (**) A..... G3: (accel) acceleration threshold: 4
    [ 17738.874] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event13)
    [ 17738.874] (II) No input driver specified, ignoring this device.
    [ 17738.874] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event12)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event11)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event10)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event8)
    [ 17738.875] (II) No input driver specified, ignoring this device.
    [ 17738.875] (II) This device may have been added with another device file.
    [ 17738.875] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event7)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event14)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17738.876] (II) config/udev: Adding input device PC Speaker (/dev/input/event15)
    [ 17738.876] (II) No input driver specified, ignoring this device.
    [ 17738.876] (II) This device may have been added with another device file.
    [ 17739.315] (II) intel(0): EDID vendor "BNQ", prod id 32517
    [ 17739.315] (II) intel(0): Using EDID range info for horizontal sync
    [ 17739.315] (II) intel(0): Using EDID range info for vertical refresh
    [ 17739.315] (II) intel(0): Printing DDC gathered Modelines:
    [ 17739.315] (II) intel(0): Modeline "1920x1080"x0.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 17739.315] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2008 2052 2200 1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x480"x0.0 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 17739.315] (II) intel(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 17739.315] (II) intel(0): Modeline "832x624"x0.0 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x100.0 43.16 640 680 744 848 480 481 484 509 -hsync +vsync (50.9 kHz e)
    [ 17739.316] (II) intel(0): Modeline "640x480"x120.0 52.41 640 680 744 848 480 481 484 515 -hsync +vsync (61.8 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x100.0 68.18 800 848 936 1072 600 601 604 636 -hsync +vsync (63.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "800x600"x0.0 73.25 800 848 880 960 600 603 607 636 +hsync -vsync (76.3 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x100.0 113.31 1024 1096 1208 1392 768 769 772 814 -hsync +vsync (81.4 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1024x768"x0.0 115.50 1024 1072 1104 1184 768 771 775 813 +hsync -vsync (97.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x900"x0.0 182.75 1440 1488 1520 1600 900 903 909 953 +hsync -vsync (114.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x60.0 172.80 1920 2040 2248 2576 1080 1081 1084 1118 -hsync +vsync (67.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "720x576"x0.0 27.00 720 732 796 864 576 581 586 625 -hsync -vsync (31.2 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x480i"x0.0 27.00 1440 1478 1602 1716 480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1280x720"x0.0 74.25 1280 1720 1760 1980 720 725 730 750 +hsync +vsync (37.5 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080i"x0.0 74.25 1920 2448 2492 2640 1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x576i"x0.0 27.00 1440 1464 1590 1728 576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x240"x0.0 27.00 1440 1478 1602 1716 240 244 247 262 -hsync -vsync (15.7 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1440x288"x0.0 27.00 1440 1464 1590 1728 288 290 293 312 -hsync -vsync (15.6 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2558 2602 2750 1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
    [ 17739.316] (II) intel(0): Modeline "1920x1080"x0.0 74.25 1920 2448 2492 2640 1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
    It would be nice to find out why the settings was being set to "0".
    Last edited by Sne (2014-04-29 20:40:50)

  • [SOLVED] External USB mouse doesn't work

    I've installed Arch on my laptop and today faced with a problem. When I boot with AC off my external USB mouse doesn't work. Also it looks like USB ports don't work. If I detached AC when working mouse works fine.
    I can suppose there is some problem with laptop mode. May be it turns off usb ports to save energy. Anyway quick search doesn't brings any results. If someone give me a hint how to solve this problem I'll be very grateful.
    Last edited by avli (2011-07-14 16:53:15)

    Well, after diving into configs solution has been founded. The point was to disable auto suspend feature in laptop-mode-tools config by setting BATT_SUSPEND_USB variable to 0 in /etc/laptop-mode/conf.d/usb-autosuspend.conf
    Hope this information will be helpful for users who probably faced with the same problem. Thank you!

  • [SOLVED] openbox menu command doesn't work with &&

    I'm now using openbox-session only.
    I'd like to run a program after something was done correctly:
    zenity --question && killall openbox
    I used "obmenu" and it seems that it fixes & to & correctly in the menu.xml.
    However, the previous command "zenity" is run only.
    In terminal, there's no problem, but it doesn't work with "command" in openbox menu.
    <item label="Exit">
    <action name="Execute">
    <execute>
    zenity --question --title="Exit" --text="Are you sure to go back to console?" && killall openbox
    </execute>
    </action>
    </item>
    Please, give me any idea. Thank you.
    Last edited by mairoo (2009-09-09 10:06:17)

    hbekel wrote:
    You'll need to use a shell explicitly:
    <execute>
    sh -c 'command1 && command2'
    </execute>
    I flagged "solved" thanks to your help. It works good. Thank you.

  • (SOLVED) Lock screen suddenly doesn't work as expected

    It doesn't matter which lock screen (PIN, swipe, etc.) I choose, after the first unlock (after a reboot or change of lock screen), the phone no longer locks. Using the power button to lock doesn't work and I have the phone set to lock right away on sleep. It was working fine a few hours ago and there wasn't anything new I did to the phone.
    Any ideas?
    Solved!
    Go to Solution.

    Hello, I feel pretty dumb. I must've hit the "Disable lock screen" option in the BatteryBot Pro app by accident...I forgot it even had that option.
    If anyone's curious how I solved this, I inspected system messages using OS Monitor while reproducing the problem (ie, flipping through lock screen options and turning off/on the screen) and kept seeing the app's name coming up as well as a few others. I'm not sure why it started disabling the lock screen today though; I'm pretty sure I didn't touch the app in the last couple days.
    Anyway, sorry for any inconvenience.

  • [solved] My Optical Drive doesn't work.

    Hello, first i should thank the community for the awesome job they've made on arch linux and everything around it.
    Secondly, i installed arch linux two days ago, it was my first attempt and it seems to work flawlessly with gnome, compiz, etc. i even managed to master pacman and yaourt.
    But i have a little issue my optical doesn't work in gnome, i can't even see it on the devices. (It worked great on the installation). Any ideas?
    Last edited by 1lj4z1 (2011-03-25 17:36:20)

    OK, so start with creating a mount point, like
    sudo mkdir -p /media/dvd
    -- and then feed your drive with a disk, and see what happens. (I suppose it will mount it automatically, but lets see...)
    Edit: Just in case your system needs a cdrom directory, you can create a symlink to your /media/dvd,  like this:
    sudo ln -s /media/dvd /media/cdrom
    Last edited by bohoomil (2011-03-25 14:27:53)

  • [Solved]Openbox: Autostart.sh doesn't work

    Hello
    I just made a fresh install of arch with openbox but I can't launch my applications at start
    xterm &
    nitrogen --restore &
    This doesn't work in ~/.config/openbox/autostart.sh neither in /etc/xdg/openbox/autostart.sh
    Can someone help me plz ?
    thanks and sorry for my bad english
    Last edited by Jeager (2010-05-16 20:48:43)

    Sorry I'm new with linux. Thanks you for your time
    Last edited by Jeager (2010-05-16 20:40:26)

  • [SOLVED]kdeplasma-applets-menubar doesn't work.

    I've just installed the following applications:
        kdeplasma-applets-menubar,
        libdbusmenu,
        libdbusmenu-qt,
        appmenu-gtk,
        appmenu-qt.
    But kdeplasma-applets-menubar doesn't work on my KDE4.10. The menu still show in the window and the applet only has the onmipresent "File" menu.
    Last edited by mert (2013-06-22 14:22:20)

    Go to 'System Settings' -> 'Application Appearance' -> 'Style' -> 'Fine Tuning' and change 'Menubar style' to 'Only export'. Just checked, works fine with qt applications.
    I'm not sure about gtk apps, though. I recall reading somewhere that, in addition to installing appmenu-gtk and its dependencies, one needed to specify something in the .gtkrc and/or .config/gtk-3.0/settings.ini file(s). Well that or my memory might just be playing tricks on me.
    EDIT:
    If for some reason gtk apps refuse to export their menus, you might want to look at this webupd8 article. Good luck!
    Last edited by andy_v (2013-06-22 12:36:50)

  • [Solved] archiso UEFI boot doesn't work.

    I just followed the instruction on https://wiki.archlinux.org/index.php/UE … B_from_ISO, but it doesn't work as intended. It shows just 3 menu,
    Arch Linux archiso x86_64 UEFI USB
    UEFI Shell x86_64 v1
    UEFI Shell x86_64 v2
    I thought, the first option is the way to go, but
    Error loading \arch\boot\x86_64\vmlinuz: Not found
    In fact, there is no \arch directory. The iso file downloaded was not broken, so I think something's missing either in the article or in the iso file.
    edit : I found that, the name of 'arch' directory was changed to something like "?????????". I don't know why, but when I changed it to "arch" again, it works like a charm.
    Last edited by kreoso (2012-11-01 16:54:57)

    Exactly the same thing happened to me. I think there's some filename encoding issue because I wasn't able to rename ????????? to arch, instead I moved to arch2 then renamed arch2 to arch. Happy to say that worked for me too.
    I should add that the same USB stick worked first time with my laptop, it was only when trying to boot my desktop in the same way that I hit this issue, so it seems sensitive to BIOS manufacturer/version.
    Last edited by malcolmsparks (2012-11-04 19:46:32)

  • [Solved] ASUS F3Ka bluetooth doesn't work

    Hi everybody!
    Can anybody help me with getting bluetooth to work on ASUS F3Ka please?
    Here is the dmesg output:
    [n0ne@darkstar ~]$ dmesg | grep Blue
    Bluetooth: Core ver 2.11
    Bluetooth: HCI device and connection manager initialized
    Bluetooth: HCI socket layer initialized
    Bluetooth: L2CAP ver 2.9
    Bluetooth: L2CAP socket layer initialized
    Bluetooth: HIDP (Human Interface Emulation) ver 1.2
    I've got bluetooth daemon in my DAEMONS array in /etc/rc.conf
    BUT it still doesn't work:
    [n0ne@darkstar ~]$ sudo -s
    [root@darkstar ~]# hcitool inq
    Inquiring ...
    Inquiry failed.: No such device
    Any ideas, please?
    Last edited by alcazoid (2008-03-29 22:48:00)

    some stuff ive noticed with laptops and bluetooth...
    - bluetooth/wireless works in a lenovo i recently installed ubuntu in only after I suspend to ram. This is due to some weird Radio kill switch bug
    - sometimes leaving bluetooth and wireless turned  on on wiindows has its effects in linux, because windows drivers sometimes do not release control of the hardware. So try a cold boot, and if that doesn't work, a reboot from windows...'
    - try variants of leaving the bluetooth switch on/off during the boot process
    none of these actually seem like logical solutions, but thats how bluetooth/wireless and linux sometimes is..good luck!

  • ARP TIMEOUT doesn't work

                           Hi All,
    I have devices which don’t send gratuitous arp when they plugged into a L3 switch. A problem occurs when one of this devices fails - and is replaced by another one (with another mac -- IP the same). The l3 switch doesn't update his ARP Table with the new mac and so the ping fails. When I clear the arp cache -> the arp table is updated by a new arp - request and the ping works.
    The next workaround was to modify the ARP TIMEOUT to 60 sec. So when is swap an failed device - this takes longer then 60 sec - I thought that the arp cache is cleared in the meanwhile for this interface BUT it wasn't
    How affect's the arp timeout - timer on the arp cache. I modified it many different values but the arp entry does not disappear??
    thx
    max

    I believe that you are confusing the arp table and the cam table. You are correct that the associated entries in the cam for an interface are purged if the switch interface goes down. And in my experience the entries in the arp table are purged if the interface on which they are learned goes down. But frequently the device doing the arp is the layer 3 router and not the switch to which the PC or server was connected. So the old PC is removed, the replacement PC is booted up and configured, and the entry in the arp table does not change.
    Max
    I am surprised to read your post. In my experience setting the arp timeout has been effective. Would it be possible for you to recreate the issue and to post some outputs of events during the test? In particular I would be interested to see the output of debug arp and the output of show ip interface for the interface where the test device is connected (to verify the arp setting).
    HTH
    Rick

  • [solved] mmg from mkvtoolnix doesn't work

    Hi guys
    I just wanted to use mmg to make a mkv video file, but starting it from terminal, it only shows the following
    % locale
    LANG=de_DE.utf8
    LC_CTYPE="de_DE.utf8"
    LC_NUMERIC="de_DE.utf8"
    LC_TIME="de_DE.utf8"
    LC_COLLATE="de_DE.utf8"
    LC_MONETARY="de_DE.utf8"
    LC_MESSAGES="de_DE.utf8"
    LC_PAPER="de_DE.utf8"
    LC_NAME="de_DE.utf8"
    LC_ADDRESS="de_DE.utf8"
    LC_TELEPHONE="de_DE.utf8"
    LC_MEASUREMENT="de_DE.utf8"
    LC_IDENTIFICATION="de_DE.utf8"
    LC_ALL=
    % mmg
    Fehler: Die Sprachumgebung konnte nicht erfolgreich gesetzt werden. Bitte überprüfen Sie die Umgebungsvariablen LANG, LC_ALL und LC_MESSAGES.
    For the non german guys here:
    % locale
    LANG=C
    LC_CTYPE="C"
    LC_NUMERIC="C"
    LC_TIME="C"
    LC_COLLATE="C"
    LC_MONETARY="C"
    LC_MESSAGES="C"
    LC_PAPER="C"
    LC_NAME="C"
    LC_ADDRESS="C"
    LC_TELEPHONE="C"
    LC_MEASUREMENT="C"
    LC_IDENTIFICATION="C"
    LC_ALL=
    % mmg
    Error: The locale could not be set properly. Check the LANG, LC_ALL and LC_MESSAGES environment variables.
    Do you guys have the same error messages? I just want to be sure, that it's not my fault, before I post a bug report.
    Here I found, that this was already fixed at a much earlier version of mkvtoolnix, so I really have no idea, what's best to do. I recompiled it, didn't change a thing.
    Thanks for your help :-)
    Last edited by Army (2010-01-10 00:33:52)

    Ok, solved! I created a testuser and it worked for this user. So I removed all unneeded config files from my home directory and now it works again. Don't know what exactly caused this, but well, everything's fine again :-)

  • [SOLVED] Jmicron ethernet card doesn't work

    HI there,
    I am installing Arch64 on Sager NP8170 laptop. Networking card is Jmicron PCI Express Gigabit Ethernet Adapter, which is controlled by kernel-build module JME.
    Command
    lsmod | grep jme
    shows that module is loaded. Ping to sites does not work.
    dhcpcd eth0
    is timed out.
    I loaded the latest module from www.jmicron.com. The driver is compiled by the following Makefile:
    MODNAME := jme
    TEMPFILES := $(MODNAME).o $(MODNAME).mod.c $(MODNAME).mod.o Module.symvers .$(MODNAME).*.cmd .tmp_versions modules.order
    EXTRA_CFLAGS += -Wall -O3
    #EXTRA_CFLAGS += -DTX_DEBUG
    #EXTRA_CFLAGS += -DREG_DEBUG
    obj-m := $(MODNAME).o
    ifeq (,$(BUILD_KERNEL))
    BUILD_KERNEL=$(shell uname -r)
    endif
    KSRC ?= /lib/modules/$(BUILD_KERNEL)/build
    MODULE_INSTALLDIR = /lib/modules/$(BUILD_KERNEL)/kernel/drivers/net
    all:
        @$(MAKE) -C $(KSRC) SUBDIRS=$(shell pwd) modules
        @rm -rf $(TEMPFILES)
    checkstack:
        $(MAKE) -C $(KSRC) SUBDIRS=$(shell pwd) modules
        objdump -d $(obj-m) | perl $(KSRC)/scripts/checkstack.pl i386
        @rm -rf $(TEMPFILES)
    namespacecheck:
        $(MAKE) -C $(KSRC) SUBDIRS=$(shell pwd) modules
        perl $(KSRC)/scripts/namespace.pl
        @rm -rf $(TEMPFILES)
    clean:
        @rm -rf $(MODNAME).ko $(TEMPFILES)
    install: all
        install -c -m 644 *.ko $(MODULE_INSTALLDIR)
        /sbin/depmod -ae
    When I am doing
    make install
    I have the following error:
    make: *** /lib/modules/2.6.33-ARCH/build :  No such file or directory. Stop
    I am working with the problem for 2 days and googling does not help either.
    Please help.
    Last edited by Fixed (2011-05-24 15:45:03)

    Here are the replies to the commands:
    ifconfig -a
    eth0 Link encap:Ethernet HWaddr 00:90:F5:B8:10:8A
    UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:1000
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    Interrupt:31
    lo Link encap:Local Loopback
    inet addr:127.0.0.1 Mask:255.0.0.0
    UP LOOPBACK RUNNING MTU:16436 Metric:1
    RX packets:0 errors:0 dropped:0 overruns:0 frame:0
    TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
    collisions:0 txqueuelen:0
    RX bytes:0 (0.0 b) TX bytes:0 (0.0 b)
    #dmesg | tail -50
    usb 1-1: new high speed USB device using ehci_hcd and address 2
    HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
    HDA Intel 0000:00:1b.0: irq 30 for MSI/MSI-X
    HDA Intel 0000:00:1b.0: setting latency timer to 64
    firewire_core: created device fw0: GUID ea6410b8f5900058, S400
    hub 1-1:1.0: USB hub found
    hub 1-1:1.0: 6 ports detected
    hda_codec: ALC892: BIOS auto-probing.
    Too many connections
    input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input8
    Too many connections
    usb 3-1: new high speed USB device using ehci_hcd and address 2
    Synaptics Touchpad, model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04731/0xa40000
    input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input9
    hub 3-1:1.0: USB hub found
    hub 3-1:1.0: 8 ports detected
    EXT3-fs (sdb1): using internal journal
    usb 3-1.1: new full speed USB device using ehci_hcd and address 3
    usb 3-1.5: new full speed USB device using ehci_hcd and address 4
    usbcore: registered new interface driver hiddev
    input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.1/3-1.1:1.0/input/input10
    generic-usb 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input0
    input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.1/3-1.1:1.1/input/input11
    generic-usb 0003:046D:C52B.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input1
    generic-usb 0003:046D:C52B.0003: hiddev1,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input2
    usbcore: registered new interface driver usbhid
    usbhid: USB HID core driver
    usb 3-1.6: new high speed USB device using ehci_hcd and address 5
    Linux video capture interface: v2.00
    uvcvideo: Found UVC 1.00 device BisonCam, NB Pro (5986:0343)
    input: BisonCam, NB Pro as /devices/pci0000:00/0000:00:1d.0/usb3/3-1/3-1.6/3-1.6:1.0/input/input12
    usbcore: registered new interface driver uvcvideo
    USB Video Class driver (v0.1.0)
    jme 0000:03:00.0: irq 31 for MSI/MSI-X
    eth0: Link is down.
    usb 3-1.2: new high speed USB device using ehci_hcd and address 6
    Initializing USB Mass Storage driver...
    scsi6 : usb-storage 3-1.2:1.0
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    scsi 6:0:0:0: Direct-Access HP v125w PMAP PQ: 0 ANSI: 0 CCS
    sd 6:0:0:0: Attached scsi generic sg3 type 0
    sd 6:0:0:0: [sdc] 15667200 512-byte logical blocks: (8.02 GB/7.47 GiB)
    sd 6:0:0:0: [sdc] Write Protect is off
    sd 6:0:0:0: [sdc] Mode Sense: 23 00 00 00
    sd 6:0:0:0: [sdc] Assuming drive cache: write through
    sd 6:0:0:0: [sdc] Assuming drive cache: write through
    sdc: sdc1
    sd 6:0:0:0: [sdc] Assuming drive cache: write through
    sd 6:0:0:0: [sdc] Attached SCSI removable disk
    #ip link
    command not found
    #lspci -vvv
    00:00.0 Host bridge: Intel Corporation Device 0104 (rev 09)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    00:01.0 PCI bridge: Intel Corporation Device 0101 (rev 09) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
    I/O behind bridge: 0000e000-0000efff
    Memory behind bridge: f4000000-f60fffff
    Prefetchable memory behind bridge: 00000000e8000000-00000000f3ffffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR- NoISA- VGA+ MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [88] Subsystem: CLEVO/KAPOK Computer Device 7100
    Capabilities: [80] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4169
    Capabilities: [a0] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #2, Speed 5GT/s, Width x16, ASPM L0s L1, Latency L0 <256ns, L1 <4us
    ClockPM- Surprise- LLActRep- BwNot+
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt+ ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
    Slot #1, PowerLimit 75.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
    Changed: MRL- PresDet+ LinkState-
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Not Supported, TimeoutDis- ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -3.5dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [140 v1] Root Complex Link
    Desc: PortNumber=02 ComponentID=01 EltType=Config
    Link0: Desc: TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
    Addr: 00000000fed19000
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:16.0 Communication controller: Intel Corporation Cougar Point HECI Controller #1 (rev 04)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 11
    Region 0: Memory at f650a000 (64-bit, non-prefetchable) [size=16]
    Capabilities: [50] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    00:1a.0 USB Controller: Intel Corporation Cougar Point USB Enhanced Host Controller #2 (rev 05) (prog-if 20 [EHCI])
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 16
    Region 0: Memory at f6508000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1b.0 Audio device: Intel Corporation Cougar Point High Definition Audio Controller (rev 05)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 30
    Region 0: Memory at f6500000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
    Address: 00000000feeff00c Data: 41a9
    Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE- FLReset+
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed unknown, Width x0, ASPM unknown, Latency L0 <64ns, L1 <1us
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; Disabled- Retrain- CommClk-
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed unknown, Width x0, TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01
    Status: NegoPending- InProgress-
    VC1: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=1 ArbSelect=Fixed TC/VC=22
    Status: NegoPending- InProgress-
    Capabilities: [130 v1] Root Complex Link
    Desc: PortNumber=0f ComponentID=00 EltType=Config
    Link0: Desc: TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+
    Addr: 00000000fed1c000
    Kernel driver in use: HDA Intel
    Kernel modules: snd-hda-intel
    00:1c.0 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 1 (rev b5) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
    I/O behind bridge: 0000f000-00000fff
    Memory behind bridge: f6400000-f64fffff
    Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #1, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
    Slot #0, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
    Changed: MRL- PresDet- LinkState+
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -6dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4171
    Capabilities: [90] Subsystem: CLEVO/KAPOK Computer Device 7100
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.1 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 2 (rev b5) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
    I/O behind bridge: 0000d000-0000dfff
    Memory behind bridge: f6300000-f63fffff
    Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #2, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
    Slot #1, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
    Changed: MRL- PresDet- LinkState+
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4179
    Capabilities: [90] Subsystem: CLEVO/KAPOK Computer Device 7100
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.2 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 3 (rev b5) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
    I/O behind bridge: 0000c000-0000cfff
    Memory behind bridge: f6200000-f62fffff
    Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
    BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #3, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
    Slot #2, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
    Changed: MRL- PresDet- LinkState+
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4181
    Capabilities: [90] Subsystem: CLEVO/KAPOK Computer Device 7100
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1c.3 PCI bridge: Intel Corporation Cougar Point PCI Express Root Port 4 (rev b5) (prog-if 00 [Normal decode])
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
    I/O behind bridge: 0000f000-00000fff
    Memory behind bridge: f6100000-f61fffff
    Prefetchable memory behind bridge: 00000000fff00000-00000000000fffff
    Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
    BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-
    PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
    Capabilities: [40] Express (v2) Root Port (Slot+), MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 128 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #4, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <16us
    ClockPM- Surprise- LLActRep+ BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive+ BWMgmt+ ABWMgmt-
    SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
    Slot #3, PowerLimit 10.000W; Interlock- NoCompl+
    SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
    Control: AttnInd Unknown, PwrInd Unknown, Power- Interlock-
    SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
    Changed: MRL- PresDet- LinkState+
    RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
    RootCap: CRSVisible-
    RootSta: PME ReqID 0000, PMEStatus- PMEPending-
    DevCap2: Completion Timeout: Range BC, TimeoutDis+ ARIFwd-
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4189
    Capabilities: [90] Subsystem: CLEVO/KAPOK Computer Device 7100
    Capabilities: [a0] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Kernel driver in use: pcieport
    Kernel modules: shpchp
    00:1d.0 USB Controller: Intel Corporation Cougar Point USB Enhanced Host Controller #1 (rev 05) (prog-if 20 [EHCI])
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin A routed to IRQ 23
    Region 0: Memory at f6507000 (32-bit, non-prefetchable) [size=1K]
    Capabilities: [50] Power Management version 2
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [58] Debug port: BAR=1 offset=00a0
    Capabilities: [98] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ehci_hcd
    Kernel modules: ehci-hcd
    00:1f.0 ISA bridge: Intel Corporation Device 1c4b (rev 05)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Capabilities: [e0] Vendor Specific Information: Len=0c <?>
    Kernel modules: iTCO_wdt
    00:1f.2 SATA controller: Intel Corporation Cougar Point 6 port SATA AHCI Controller (rev 05) (prog-if 01 [AHCI 1.0])
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0
    Interrupt: pin B routed to IRQ 29
    Region 0: I/O ports at f070 [size=8]
    Region 1: I/O ports at f060 [size=4]
    Region 2: I/O ports at f050 [size=8]
    Region 3: I/O ports at f040 [size=4]
    Region 4: I/O ports at f020 [size=32]
    Region 5: Memory at f6506000 (32-bit, non-prefetchable) [size=2K]
    Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
    Address: feeff00c Data: 4191
    Capabilities: [70] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [a8] SATA HBA v1.0 BAR4 Offset=00000004
    Capabilities: [b0] PCI Advanced Features
    AFCap: TP+ FLR+
    AFCtrl: FLR-
    AFStatus: TP-
    Kernel driver in use: ahci
    Kernel modules: ahci
    00:1f.3 SMBus: Intel Corporation Cougar Point SMBus Controller (rev 05)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap- 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Interrupt: pin C routed to IRQ 18
    Region 0: Memory at f6505000 (64-bit, non-prefetchable) [size=256]
    Region 4: I/O ports at f000 [size=32]
    Kernel modules: i2c-i801
    01:00.0 VGA compatible controller: nVidia Corporation Device 0dd1 (rev a1) (prog-if 00 [VGA controller])
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 11
    Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=16M]
    Region 1: Memory at e8000000 (64-bit, prefetchable) [size=128M]
    Region 3: Memory at f0000000 (64-bit, prefetchable) [size=32M]
    Region 5: I/O ports at e000 [size=128]
    Expansion ROM at f6000000 [disabled] [size=512K]
    Capabilities: [60] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [78] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #0, Speed 5GT/s, Width x16, ASPM L0s L1, Latency L0 <512ns, L1 <4us
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Not Supported, TimeoutDis+
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
    LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    Capabilities: [b4] Vendor Specific Information: Len=14 <?>
    Capabilities: [100 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [128 v1] Power Budgeting <?>
    Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
    Kernel modules: nvidiafb
    01:00.1 Audio device: nVidia Corporation Device 0be9 (rev a1)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 10
    Region 0: Memory at f6080000 (32-bit, non-prefetchable) [size=16K]
    Capabilities: [60] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [78] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
    ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #0, Speed 5GT/s, Width x16, ASPM L0s L1, Latency L0 <512ns, L1 <4us
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 128 bytes Disabled- Retrain- CommClk-
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 5GT/s, Width x16, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Not Supported, TimeoutDis+
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -3.5dB
    02:00.0 USB Controller: NEC Corporation Device 0194 (rev 03) (prog-if 30)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 16
    Region 0: Memory at f6400000 (64-bit, non-prefetchable) [size=8K]
    Capabilities: [50] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [70] MSI: Enable- Count=1/8 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [90] MSI-X: Enable- Count=8 Masked-
    Vector table: BAR=0 offset=00001000
    PBA: BAR=0 offset=00001080
    Capabilities: [a0] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Latency L0 <4us, L1 unlimited
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Not Supported, TimeoutDis+
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
    LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -6dB
    Capabilities: [100 v1] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    AERCap: First Error Pointer: 00, GenCap- CGenEn- ChkCap- ChkEn-
    Capabilities: [140 v1] Device Serial Number ff-ff-ff-ff-ff-ff-ff-ff
    Capabilities: [150 v1] #18
    Kernel driver in use: xhci_hcd
    Kernel modules: xhci
    03:00.0 Ethernet controller: JMicron Technology Corp. JMC250 PCI Express Gigabit Ethernet Controller (rev 05)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin C routed to IRQ 31
    Region 0: Memory at f6320000 (32-bit, non-prefetchable) [size=16K]
    Region 2: I/O ports at d100 [size=128]
    Region 3: I/O ports at d000 [size=256]
    Region 4: Memory at f6310000 (32-bit, non-prefetchable) [size=64K]
    Expansion ROM at f6300000 [disabled] [size=64K]
    Capabilities: [68] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [50] Express (v1) Legacy Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <64ns, L1 <1us
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    Capabilities: [40] MSI-X: Enable- Count=8 Masked-
    Vector table: BAR=0 offset=00002000
    PBA: BAR=0 offset=00003000
    Capabilities: [70] MSI: Enable+ Count=1/8 Maskable+ 64bit+
    Address: 00000000feeff00c Data: 41b1
    Masking: 000000fe Pending: 00000000
    Capabilities: [100 v1] Device Serial Number 8a-10-b8-ff-ff-f5-90-00
    Kernel driver in use: jme
    Kernel modules: jme
    03:00.1 System peripheral: JMicron Technology Corp. SD/MMC Host Controller (rev 90)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 4
    Region 0: Memory at f6326000 (32-bit, non-prefetchable) [size=256]
    Capabilities: [a4] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [80] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
    Address: 00000000 Data: 0000
    Capabilities: [100 v1] Device Serial Number 8a-10-b8-ff-ff-f5-90-00
    03:00.2 SD Host controller: JMicron Technology Corp. Standard SD Host Controller (rev 90) (prog-if 01)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 18
    Region 0: Memory at f6325000 (32-bit, non-prefetchable) [size=256]
    Capabilities: [a4] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [80] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
    Address: fffffffc Data: 0000
    Capabilities: [100 v1] Device Serial Number 8a-10-b8-ff-ff-f5-90-00
    Kernel driver in use: sdhci-pci
    Kernel modules: sdhci-pci
    03:00.3 System peripheral: JMicron Technology Corp. MS Host Controller (rev 90)
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin B routed to IRQ 4
    Region 0: Memory at f6324000 (32-bit, non-prefetchable) [size=256]
    Capabilities: [a4] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [80] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
    Address: fffffffc Data: 0000
    Capabilities: [100 v1] Device Serial Number 8a-10-b8-ff-ff-f5-90-00
    04:00.0 Network controller: Realtek Semiconductor Co., Ltd. Device 8176 (rev 01)
    Subsystem: Realtek Semiconductor Co., Ltd. Device 9196
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 4
    Region 0: I/O ports at c000 [size=256]
    Region 2: Memory at f6200000 (64-bit, non-prefetchable) [size=16K]
    Capabilities: [40] Power Management version 3
    Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
    Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
    Address: 0000000000000000 Data: 0000
    Capabilities: [70] Express (v2) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq- AuxPwr+ TransPend-
    LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 <512ns, L1 <64us
    ClockPM+ Surprise- LLActRep- BwNot-
    LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    DevCap2: Completion Timeout: Not Supported, TimeoutDis+
    DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
    LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
    Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
    Compliance De-emphasis: -6dB
    LnkSta2: Current De-emphasis Level: -6dB
    Capabilities: [100 v1] Advanced Error Reporting
    UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-
    UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-
    CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-
    CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+
    AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-
    Capabilities: [140 v1] Virtual Channel
    Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
    Arb: Fixed- WRR32- WRR64- WRR128-
    Ctrl: ArbSelect=Fixed
    Status: InProgress-
    VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
    Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
    Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
    Status: NegoPending- InProgress-
    Capabilities: [160 v1] Device Serial Number 01-91-81-fe-ff-4c-e0-00
    05:00.0 FireWire (IEEE 1394): JMicron Technology Corp. IEEE 1394 Host Controller (rev 30) (prog-if 10 [OHCI])
    Subsystem: CLEVO/KAPOK Computer Device 7100
    Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
    Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
    Latency: 0, Cache Line Size: 64 bytes
    Interrupt: pin A routed to IRQ 19
    Region 0: Memory at f6101000 (32-bit, non-prefetchable) [size=2K]
    Region 1: Memory at f6100000 (32-bit, non-prefetchable) [size=256]
    Capabilities: [44] Power Management version 3
    Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
    Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME+
    Capabilities: [80] Express (v1) Endpoint, MSI 00
    DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
    ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset-
    DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-
    RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
    MaxPayload 128 bytes, MaxReadReq 512 bytes
    DevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-
    LnkCap: Port #1, Speed 2.5GT/s, Width x1, ASPM L0s L1, Latency L0 unlimited, L1 unlimited
    ClockPM- Surprise- LLActRep- BwNot-
    LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- Retrain- CommClk+
    ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
    LnkSta: Speed 2.5GT/s, Width x1, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
    Capabilities: [94] MSI: Enable- Count=1/1 Maskable- 64bit-
    Address: fffffffc Data: 0000
    Kernel driver in use: firewire_ohci
    Kernel modules: firewire-ohci

  • [SOLVED]PulseAudio EQ (qpaeq) doesn't work

    So I can't get the built-in systemwide PulseAudio equalizer "qpaeq" to work. I have installed all the required dependencies but if I try to load it it throws the error:
    Traceback (most recent call last):
    File "/usr/bin/qpaeq", line 560, in <module>
    main()
    File "/usr/bin/qpaeq", line 555, in main
    qpaeq_main=QPaeq()
    File "/usr/bin/qpaeq", line 80, in __init__
    self.set_connection()
    File "/usr/bin/qpaeq", line 232, in set_connection
    self.sinks=manager_props.Get(self.manager_iface,'EqualizedSinks')
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 143, in __call__
    **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/connection.py", line 630, in call_blocking
    message, timeout)
    dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist
    And if I add 
    load-module module-equalizer-sink
    in $HOME/.pulse/default.pa PulseAudio fails to start completely. I tried this on Chakra too and the exactly same happened. PulseAudio was compiled without support for qpaeq in both Kubuntu and Pardus if I'm not mistaken so I couldn't try it there. How should I proceed?
    Last edited by Teho (2012-04-13 04:41:02)

    Up
    Same problem here.
    As root :
    [root@B43EDI xavier]# qpaeq
    No protocol specified
    qpaeq: cannot connect to X server :0
    As non-root :
    [xavier@B43EDI ~]$ qpaeq
    Traceback (most recent call last):
    File "/usr/bin/qpaeq", line 560, in <module>
    main()
    File "/usr/bin/qpaeq", line 555, in main
    qpaeq_main=QPaeq()
    File "/usr/bin/qpaeq", line 80, in __init__
    self.set_connection()
    File "/usr/bin/qpaeq", line 232, in set_connection
    self.sinks=manager_props.Get(self.manager_iface,'EqualizedSinks')
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 68, in __call__
    return self._proxy_method(*args, **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/proxies.py", line 143, in __call__
    **keywords)
    File "/usr/lib/python2.7/site-packages/dbus/connection.py", line 630, in call_blocking
    message, timeout)
    dbus.exceptions.DBusException: org.freedesktop.DBus.Error.UnknownMethod: Method "Get" with signature "ss" on interface "org.freedesktop.DBus.Properties" doesn't exist

Maybe you are looking for