Coder Social home page Coder Social logo

razercommander's Introduction

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

screenshot

Razer device manager for Linux

Supported hardware

Any of the devices supported by the driver stack should work fine in razerCommander.

For a detailed list of supported devices refer to this page

  • Keyboards
  • Macro keypads (Tartarus, Orbweaver)
  • Mice
  • Laptops (keyboards only)
  • Headsets (possibly, untested)
  • Mousepads (Firefly)

Requirements

To install this software the first thing you need is to install the Openrazer driver. You can find installation instructions on the Openrazer website.

You need 3 packages provided by openrazer-drivers:

  • openrazer-driver-dkms: the actual driver, best if installed using DKMS
  • openrazer-daemon: a daemon that interfaces with the driver, providing a higher level interface for it
  • python3-openrazer: a python library that interfaces with the daemon, it's used by razerCommander, thus it's a direct dependency.

Installing

Installing on Arch Linux/Antergos/Manjaro

You can find razerCommander on AUR, as razercommander-git (AUR page). If you use an AUR helper, it should automatically pull openrazer-driver-dkms, openrazer-daemon and python-openrazer as dependencies.

Alternatively you can install these packages manually, or even opt for the git version of the driver stack (openrazer-driver-dkms-git, openrazer-daemon-git, python-openrazer-git).

Installing on Ubuntu/Debian

Note: you will need python 3.6+ to run razerCommander. Here's how to install python 3.6 on Ubuntu 16.04

Go to the releases page and download the latest release available for your platform.

Alternatively you can build a .deb package following the instructions below.

Installing on Fedora/RHEL/CentOS

Go to the releases page and download the latest release available for your platform.

Alternatively you can build a .rpm package following the instructions below.

Other distros

You can either run razerCommander without installing it (refer to the Building for testing section), or install it in your system (refer to the Installing systemwide directly section).

Building

Building for testing

This is the best practice to test razerCommander without installing using meson and ninja.

First time

git clone https://github.com/gabmus/razercommander
cd razercommander
mkdir builddir
cd builddir
meson ..
meson configure -Dprefix=$(pwd)/testdir
ninja install # This will actually install in razercommander/builddir/testdir
ninja run

Later on

cd razercommander/builddir
ninja install # This will actually install in razercommander/builddir/testdir
ninja run

Building for Debian/Ubuntu

Build dependencies: libglib2.0-dev pkg-config libappstream-glib-dev

WIP

Building for Fedora/RHEL/CentOS

WIP

Building for Flatpak

First install flatpak and flatpak-builder from your distro repository. Although it's not necessary, you may also want to install gnome-software.

Create a directory somewhere in your home, I suggest something like ~/razercommanderflatpak.

Either clone the whole razerCommander repo (git clone https://github.com/gabmus/razercommander) or just download the flatpak manifest file from this repo in dist/flatpak/org.gabmus.razercommander.json. In either case, put the files inside the directory you created before.

Run the following: flatpak-builder --repo=repo razercommander $PATH_TO_MANIFEST where $PATH_TO_MANIFEST is the path to the org.gabmus.razercommander.json flatpak manifest. If everything works correctly, this command should create two directories repo and razercommander with flatpak stuff inside of your present working directory (again, I suggest to run everything inside a specifically designated directory).

Now you'll be creating a flatpak bundle, so that you can install it and distribute it without messing with flatpak repos. To do this you run flatpak build-bundle repo razercommander.flatpak org.gabmus.razercommander. This will give you a razercommander.flatpak file inside your present working directory. To install it, either open it with gnome-software or run flatpak install razercommander.flatpak.

Note: I am a just a beginner with flatpak, and probably some of the instructions I gave in this section of the readme are wrong or could be done better. If you know a better way of doing this, please don't hesitate to make a pull request or open an issue.

Build and install systemwide directly

This approach is discouraged, since it will manually copy all the files in your system. Uninstalling could be difficult and/or dangerous.

But if you know what you're doing, here you go:

git clone https://github.com/gabmus/razercommander
cd razercommander
mkdir builddir
cd builddir
meson ..
ninja install

How can you help?

Please, fill up issues and help me test this little piece of software with as much hardware as possible.

razercommander's People

Contributors

agrendalath avatar cravacuore avatar fschaupp avatar gabmus avatar torild avatar z3ntu avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

razercommander's Issues

broken Ripple on Late 2016 RBS Ubuntu 10.16

Installed from the .deb release:

Traceback (most recent call last):
  File "/usr/share/razercommander/main.py", line 607, in on_fxListBox_row_selected
    if row.value in settingsPanes.keys():
AttributeError: 'NoneType' object has no attribute 'value'

deb package installs for python3.6 by default

I did not have a straightforward path to the using the deb package. At first, I thought I was missing Python GTK/GObject, but turns out the bootstrap script is using python 3.6 specific stuff such as:

sys.path.insert(1, '/usr/lib/python3.6/site-packages')
# and
    gi.require_versions({
        'Gtk': '3.0',
    })

My python3.5 package only supported gi.require_version('Gtk', '3.0'). So in the spirit of saving time for a non python established end-user, we may wanna recommend a python3.6 install. Thoughts?

Translation?

Some of the translations are just weird. It would be nice to also have community translations, but glade may be a problem here. I can do a bit of basic Czech and English. BTW you should change "Pipette" to "eyedropper"

Unresolved Dependencies for Arch Linux

Hi,

Installing razercommander-git from aur via yaourt

$ yaourt -S razercommander-git

I get

==> Continue installing razer-drivers ? [Y/n]
==> [v]iew package contents [c]heck package with namcap
==> ---------------------------------------------------
==> y

loading packages...
resolving dependencies...
warning: cannot resolve "python-notify2", a dependency of "razer-daemon"
warning: cannot resolve "razer-daemon", a dependency of "openrazer-meta"
warning: cannot resolve "python-notify2", a dependency of "razer-daemon"
warning: cannot resolve "razer-daemon", a dependency of "python-razer"
warning: cannot resolve "python-razer", a dependency of "openrazer-meta"
warning: cannot resolve "python-notify2", a dependency of "razer-daemon"
warning: cannot resolve "razer-daemon", a dependency of "python-razer"
warning: cannot resolve "python-notify2", a dependency of "razer-daemon"
:: The following packages cannot be upgraded due to unresolvable dependencies:
      openrazer-meta  python-razer  razer-daemon

:: Do you want to skip the above packages for this upgrade? [y/N] 

Means there is no way to get the required dependencies.

Get you tell where we get those dependencies for arch linux? the official razer drivers are already installed by manual installation from the source code (no pacman package). Maybe thats the problem?

Thank you

Macros don't respect local keyboard layout

At first, thank you for all the work you've done, the tool is incredibly useful! :)

While the macros work great, there is a problem with keyboard layouts though. I live in Germany when recording keys like "ä", "ö" or "ü", some different signs are displayed (probably those from the American layout).

dBus throwing exceptions

Arch gnulinux:
Linux Maquinon64 4.8.13-1-ARCH #1 SMP PREEMPT Fri Dec 9 07:24:34 CET 2016 x86_64 GNU/Linux

+razer orbveawer and deathadder chroma

The razer-service is always running, already tryed everything. "razercfg" and "razerd" always worked fine. I uninstalled them, but now I am in trouble with all that razer-driver stuff. I can run razerCommander, only DA chroma is detected, and I can see only light value, nothing more, when I apply setting (even nothing is changed), in devices it adds another DA chroma after every apply.

[vita@Maquinon64 ~]$ /usr/bin/razercommander
ERROR:dbus.proxies:Introspect error on :1.53:/org/razer: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
DEBUG:dbus.proxies:Executing introspect queue due to error
Traceback (most recent call last):
File "/usr/share/razercommander/main.py", line 7, in
import device
File "/usr/share/razercommander/device.py", line 10, in
device_manager = rclient.DeviceManager()
File "/usr/lib/python3.6/site-packages/razer/client/init.py", line 30, in init
self._device_serials = self._dbus_devices.getDevices()
File "/usr/lib/python3.6/site-packages/dbus/proxies.py", line 70, in call
return self._proxy_method(*args, **keywords)
File "/usr/lib/python3.6/site-packages/dbus/proxies.py", line 145, in call
**keywords)
File "/usr/lib/python3.6/site-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
[vita@Maquinon64 ~]$ ps -aux | grep razer-service
vita 975 0.1 0.5 381712 31172 pts/1 Sl+ 04:20 0:03 razer-service
vita 1206 0.0 0.0 11052 2192 pts/2 S+ 05:05 0:00 grep razer-service

Syntax / Property Error

There is a syntax error on this line with the string formatting. Also, I think because of some of the rewrite, there is no longer a device.name... it's device.device.name. I know you can't really test this particular line without an unsupported device. This replacement for the line should fix the issue.

print('Skipping device: {}'.format(device.device.name))

print('Skipping device: %s', % device.name)

RazerMouse object has no attribute 'macro'

I get this error when starting razercommander

Traceback (most recent call last):
  File "/usr/bin/razercommander", line 74, in <module>
    refreshDevices()
  File "/usr/bin/razercommander", line 70, in refreshDevices
    initDevices()
  File "/usr/bin/razercommander", line 36, in initDevices
    newdev = device.Device(dev)
  File "/usr/share/razercommander/device.py", line 30, in __init__
    self.device)
  File "/usr/share/razercommander/macro_logic.py", line 73, in make_device
    n_device = MacroDevice(mk_arr, device_uid, device)
  File "/usr/share/razercommander/macro_logic.py", line 14, in __init__
    self.set_all_current_macros()
  File "/usr/share/razercommander/macro_logic.py", line 32, in set_all_current_macros
    key.set_current_macro(self.device)
  File "/usr/share/razercommander/macro_logic.py", line 50, in set_current_macro
    self._set_macro(device, self.macro)
  File "/usr/share/razercommander/macro_logic.py", line 43, in _set_macro
    device.macro.del_macro(self.key)
AttributeError: 'RazerMouse' object has no attribute 'macro'

I'm on Archlinux using razercommander-git-1.1.0.r3.g17407d6-1
Razer Naga Hex v2

Wont "open"

First shot, loads then errors out something about pyhton 3.5 - updated to python 3.6, even though python3 command shows 3.5.2 - reboot, now no message, just appears to load then disappears.

Ubuntu 16.04

Thanks!

Awsome

Sorry open this issue and my bad english, but i need talk this, YOU ARE AWSOME!
Thank you so much for dev this. The Razer need see this work.

Prepare for rename to OpenRazer (2.0.0)

Heads up! terrycain/razer-drivers is now openrazer/openrazer with a new version of 2.0.0. Some new packages will be released this week, ideally alongside front-end apps.

  • Any Python library imports for razer are now openrazer.
  • For Ubuntu packaging (at least), the packages should depend on openrazer-daemon, python3-openrazer, etc and not simply razer-daemon, python3-razer anymore.

Redesign

Hello,
I don't own a Razer device but was impressed by your work, thank you for making a re-implantation of something that will probably never be ported to Linux.

I wanted to provide some suggestions on improving the ui.
razercommander - redesign 0 1

The main changes are:

  • The layout, adding spacing to improve readability
  • Using a single "Apply" button instead of two
  • Move the game mode switch to the header bar saving space in the application
  • Using a headerbar pop-over for the devices instead of a dropdown box.

You could also make the Breath Mode section a combo box/pop-over to save more room for more features later on.

You can view the original svg here

Error thrown if no supported device is available

I am just working to integrate support for the Razer Blade 2016 keyboard into the razer chroma drivers. I really like your small application! I experienced a crash if no supported device is available...

Traceback (most recent call last):
  File "/usr/share/razercommander/main.py", line 61, in <module>
    fillDevicesList()
  File "/usr/share/razercommander/main.py", line 56, in fillDevicesList
    popoverDevicesListBox.get_row_at_index(0).value.name
AttributeError: 'NoneType' object has no attribute 'value'

By the way: Great UI design!

Manjaro 17.0.6 Gellivara - Razer Naga Chroma

Still new to all of this, so please forgive me if I'm in the wrong spot, or if I'm posting the wrong information. I tried to do as much troubleshooting on my own, and, it may be that I have done everything right, but that the issue is elsewhere unrelated to this project. I'll let you be the judge of that, and hopefully we can get my issue resolved together.

Issue: Installed (what feels like everything), however I can't open the RazerCommander program to modify the side buttons on my Razer Naga Chroma. According to OpenRazer and RazerCommander, after I have installed everything, I should be able to configure my mouse - right? Maybe? Polychromatic and Razergenie both seem to be recognizing my device without issue.
When I say it 'won't open, I mean exactly that. I click the icon, and it acts like it's going to open for just a moment, then it goes away. Below is my system details, installs regarding this, and logs gathered up from other people's questions - hopefully they help.

My setup:

Manjaro 17.0.6 Gellivara
x86_64 Linux 4.9.60-1-MANJARO
KDE 5.39.0 / Plasma 5.11.2
Razer Naga Chroma

Installed headers using:
pacman -S linux49-headers

plugdev:
sudo gpasswd -a meihua plugdev

Rebooted

Installed:
Polychromatic
Razercommander-git
Razergenie-git

rebooted

Output of:
sudo dkms install razer_chroma_driver/1.0.0
Module razer_chroma_driver/1.0.0 already installed on kernel 4.9.60-1-MANJARO/x86_64

Output of:
python3 -c "from razer.client import DeviceManager; a = DeviceManager(); print(a.devices)"

Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'razer'

Output of:
sudo modprobe razermouse && lsmod | grep razer

razermouse             65536  0
hid                   114688  5 i2c_hid,razermouse,hid_generic,usbhid,hid_multitouch
usbcore               208896  9 razermouse,uvcvideo,usbhid,ehci_hcd,xhci_pci,rtsx_usb,btusb,xhci_hcd,ehci_pci

Output of:
sudo udevadm test /sys/bus/hid/devices/0*:1532:0053.*

calling: test
version 235
This program is for debugging only, it does not run any program
specified by a RUN key. It may show incorrect results, because
some values may be different, or not available at a simulation run.

=== trie on-disk ===
tool version:          235
file size:         8988132 bytes
header size             80 bytes
strings            1930108 bytes
nodes              7057944 bytes
Load module index
Found container virtualization none.
timestamp of '/etc/systemd/network' changed
timestamp of '/usr/lib/systemd/network' changed
Ignoring /usr/lib/systemd/network/80-container-host0.network, because it's not a regular file with suffix .link.
Ignoring /usr/lib/systemd/network/80-container-vz.network, because it's not a regular file with suffix .link.
Ignoring /usr/lib/systemd/network/80-container-ve.network, because it's not a regular file with suffix .link.
Parsed configuration file /usr/lib/systemd/network/99-default.link
Created link configuration context.
timestamp of '/etc/udev/rules.d' changed
timestamp of '/usr/lib/udev/rules.d' changed
Reading rules file: /usr/lib/udev/rules.d/10-dm.rules
Reading rules file: /usr/lib/udev/rules.d/11-dm-lvm.rules
Reading rules file: /usr/lib/udev/rules.d/13-dm-disk.rules
Reading rules file: /usr/lib/udev/rules.d/39-usbmuxd.rules
Reading rules file: /usr/lib/udev/rules.d/40-gphoto.rules
Reading rules file: /usr/lib/udev/rules.d/40-hpet-permissions.rules
Reading rules file: /usr/lib/udev/rules.d/40-usb-media-players.rules
Reading rules file: /usr/lib/udev/rules.d/40-usb_modeswitch.rules
Reading rules file: /usr/lib/udev/rules.d/49-sane.rules
Reading rules file: /usr/lib/udev/rules.d/50-udev-default.rules
Reading rules file: /usr/lib/udev/rules.d/51-android.rules
Reading rules file: /usr/lib/udev/rules.d/56-hpmud.rules
Reading rules file: /usr/lib/udev/rules.d/60-block.rules
Reading rules file: /usr/lib/udev/rules.d/60-cdrom_id.rules
Reading rules file: /usr/lib/udev/rules.d/60-drm.rules
Reading rules file: /usr/lib/udev/rules.d/60-evdev.rules
Reading rules file: /usr/lib/udev/rules.d/60-input-id.rules
Reading rules file: /usr/lib/udev/rules.d/60-pcmcia.rules
Reading rules file: /usr/lib/udev/rules.d/60-persistent-alsa.rules
Reading rules file: /usr/lib/udev/rules.d/60-persistent-input.rules
Reading rules file: /usr/lib/udev/rules.d/60-persistent-storage-tape.rules
Reading rules file: /usr/lib/udev/rules.d/60-persistent-storage.rules
Reading rules file: /usr/lib/udev/rules.d/60-persistent-v4l.rules
Reading rules file: /usr/lib/udev/rules.d/60-sensor.rules
Reading rules file: /usr/lib/udev/rules.d/60-serial.rules
Reading rules file: /usr/lib/udev/rules.d/61-kde-bluetooth-rfkill.rules
Reading rules file: /usr/lib/udev/rules.d/63-md-raid-arrays.rules
Reading rules file: /usr/lib/udev/rules.d/64-btrfs-dm.rules
Reading rules file: /usr/lib/udev/rules.d/64-btrfs.rules
Reading rules file: /usr/lib/udev/rules.d/64-md-raid-assembly.rules
Reading rules file: /usr/lib/udev/rules.d/65-libwacom.rules
Reading rules file: /usr/lib/udev/rules.d/69-cd-sensors.rules
Reading rules file: /usr/lib/udev/rules.d/69-dm-lvm-metad.rules
Reading rules file: /usr/lib/udev/rules.d/69-libftdi.rules
Reading rules file: /usr/lib/udev/rules.d/69-libmtp.rules
Reading rules file: /usr/lib/udev/rules.d/70-htc-vive.rules
Reading rules file: /usr/lib/udev/rules.d/70-infrared.rules
Reading rules file: /usr/lib/udev/rules.d/70-joystick.rules
Reading rules file: /usr/lib/udev/rules.d/70-mouse.rules
Reading rules file: /usr/lib/udev/rules.d/70-power-switch.rules
Reading rules file: /usr/lib/udev/rules.d/70-printers.rules
Reading rules file: /usr/lib/udev/rules.d/70-steam-controller.rules
Reading rules file: /usr/lib/udev/rules.d/70-touchpad.rules
Reading rules file: /usr/lib/udev/rules.d/70-uaccess.rules
Reading rules file: /usr/lib/udev/rules.d/71-seat.rules
Reading rules file: /usr/lib/udev/rules.d/73-seat-late.rules
Reading rules file: /usr/lib/udev/rules.d/75-net-description.rules
Reading rules file: /usr/lib/udev/rules.d/75-probe_mtd.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-cinterion-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-dell-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-ericsson-mbm.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-haier-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-huawei-net-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-longcheer-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-mtk-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-nokia-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-pcmcia-device-blacklist.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-simtech-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-telit-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-usb-device-blacklist.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-usb-serial-adapters-greylist.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-x22x-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/77-mm-zte-port-types.rules
Reading rules file: /usr/lib/udev/rules.d/78-sound-card.rules
Reading rules file: /usr/lib/udev/rules.d/80-drivers.rules
Reading rules file: /usr/lib/udev/rules.d/80-libinput-device-groups.rules
Reading rules file: /usr/lib/udev/rules.d/80-mm-candidate.rules
Reading rules file: /usr/lib/udev/rules.d/80-net-setup-link.rules
Reading rules file: /usr/lib/udev/rules.d/80-udisks2.rules
Reading rules file: /usr/lib/udev/rules.d/84-nm-drivers.rules
Reading rules file: /usr/lib/udev/rules.d/85-nm-unmanaged.rules
Reading rules file: /usr/lib/udev/rules.d/85-regulatory.rules
Reading rules file: /usr/lib/udev/rules.d/85-tlp.rules
Reading rules file: /usr/lib/udev/rules.d/90-alsa-restore.rules
Reading rules file: /usr/lib/udev/rules.d/90-libgpod.rules
Reading rules file: /usr/lib/udev/rules.d/90-libinput-model-quirks.rules
Reading rules file: /usr/lib/udev/rules.d/90-pulseaudio.rules
Reading rules file: /usr/lib/udev/rules.d/90-vconsole.rules
Reading rules file: /usr/lib/udev/rules.d/95-cd-devices.rules
Reading rules file: /usr/lib/udev/rules.d/95-dm-notify.rules
Reading rules file: /usr/lib/udev/rules.d/95-upower-csr.rules
Reading rules file: /usr/lib/udev/rules.d/95-upower-hid.rules
Reading rules file: /usr/lib/udev/rules.d/95-upower-wup.rules
Reading rules file: /usr/lib/udev/rules.d/99-fuse3.rules
Reading rules file: /usr/lib/udev/rules.d/99-razer.rules
Reading rules file: /usr/lib/udev/rules.d/99-systemd.rules
rules contain 393216 bytes tokens (32768 * 12 bytes), 38746 bytes strings
30949 strings (251378 bytes), 26897 de-duplicated (216685 bytes), 4053 trie nodes used
IMPORT builtin 'hwdb' /usr/lib/udev/rules.d/50-udev-default.rules:14
IMPORT builtin 'hwdb' returned non-zero
RUN 'kmod load $env{MODALIAS}' /usr/lib/udev/rules.d/80-drivers.rules:5
RUN 'razer_mount $env{RAZER_DRIVER} $kernel' /usr/lib/udev/rules.d/99-razer.rules:47
created db file '/run/udev/data/+hid:0003:1532:0053.0009' for '/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009'
.MM_USBIFNUM=00
ACTION=add
DEVPATH=/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009
DRIVER=razermouse
HID_ID=0003:00001532:00000053
HID_NAME=Razer Razer Naga Chroma
HID_PHYS=usb-0000:00:14.0-1/input0
HID_UNIQ=
ID_RAZER_CHROMA=1
MODALIAS=hid:b0003g0001v00001532p00000053
RAZER_DRIVER=razermouse
SUBSYSTEM=hid
USEC_INITIALIZED=778889017
run: 'kmod load hid:b0003g0001v00001532p00000053'
run: 'razer_mount razermouse 0003:1532:0053.0009'
Unload module index
Unloaded link configuration context.

Output of:
openrazer-daemon -Fv

2017-11-07 04:52:59 | razer                          | INFO     | Initialising Daemon (v2.0.0). Pid: 7721
2017-11-07 04:52:59 | razer.screensaver              | INFO     | Initialising DBus Screensaver Monitor
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerAbyssus ---------------------------- (1532:0042)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerAbyssusV2 -------------------------- (1532:005B)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerAnansi ----------------------------- (1532:010F)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2012 --------------------- (1532:010D)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2013 --------------------- (1532:011A)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2016 --------------------- (1532:0214)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChroma ------------------- (1532:0203)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaOverwatch ---------- (1532:0211)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaTournamentEdition -- (1532:0209)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaV2 ----------------- (1532:0221)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowClassic ------------------ (1532:011B)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowClassicAlternate --------- (1532:010E)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXChroma ------------------ (1532:0216)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXChromaTournamentEdition - (1532:021A)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXUltimate ---------------- (1532:0217)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeLate2016 ---------------------- (1532:0224)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeProLate2016 ------------------- (1532:0210)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeQHD --------------------------- (1532:020F)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeStealth ----------------------- (1532:0205)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeStealthLate2016 --------------- (1532:0220)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerBladeStealthMid2017 ---------------- (1532:022D)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerChromaMugHolder -------------------- (1532:0F07)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerCore ------------------------------- (1532:0215)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerDeathStalkerChroma ----------------- (1532:0204)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerDeathStalkerExpert ----------------- (1532:0202)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerDeathadderChroma ------------------- (1532:0043)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerDeathadderElite -------------------- (1532:005C)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerDiamondbackChroma ------------------ (1532:004C)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerFireFly ---------------------------- (1532:0C00)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerImperator -------------------------- (1532:002F)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerKraken ----------------------------- (1532:0504)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerKrakenClassic ---------------------- (1532:0501)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerKrakenV2 --------------------------- (1532:0510)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerMamba2012Wired --------------------- (1532:0024)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerMamba2012Wireless ------------------ (1532:0025)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaTE ---------------------- (1532:0046)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaWired ------------------- (1532:0044)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaWireless ---------------- (1532:0045)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNaga2014 --------------------------- (1532:0040)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNagaChroma ------------------------- (1532:0053)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNagaHex ---------------------------- (1532:0041)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNagaHexRed ------------------------- (1532:0036)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNagaHexV2 -------------------------- (1532:0050)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerNostromo --------------------------- (1532:0111)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrbweaver -------------------------- (1532:0113)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrbweaverChroma -------------------- (1532:0207)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrnata ----------------------------- (1532:021F)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrnataChroma ----------------------- (1532:021E)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrochi2011 ------------------------- (1532:0013)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrochi2013 ------------------------- (1532:0039)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOrochiWired ------------------------ (1532:0048)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerOuroboros -------------------------- (1532:0032)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerTaipan ----------------------------- (1532:0034)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerTartarus --------------------------- (1532:0201)
2017-11-07 04:52:59 | razer                          | DEBUG    | Loaded device specification: RazerTartarusChroma --------------------- (1532:0208)
2017-11-07 04:52:59 | razer                          | INFO     | Found device.0: 0003:1532:0053.0009
2017-11-07 04:52:59 | razer.device0                  | INFO     | Initialising device.0 RazerNagaChroma
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding getSerial method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.suspendDevice method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getDeviceMode method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getRazerUrls method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.setDeviceMode method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.resumeDevice method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getVidPid method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.version method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.hasDedicatedMacroKeys method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getFirmware method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getMatrixDimensions method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.hasMatrix method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getDeviceName method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getDeviceType method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.dpi.getDPI method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.dpi.setDPI method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.getPollRate method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.misc.setPollRate method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.getLogoBrightness method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoBrightness method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.getScrollBrightness method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollBrightness method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setStatic method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setSpectrum method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setReactive method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setNone method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setBreathRandom method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setBreathSingle method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setBreathDual method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoStatic method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoSpectrum method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoNone method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoReactive method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoBreathRandom method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoBreathSingle method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.logo.setLogoBreathDual method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollStatic method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollSpectrum method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollNone method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollReactive method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollBreathRandom method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollBreathSingle method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.scroll.setScrollBreathDual method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.macro.getMacros method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.macro.deleteMacro method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.macro.addMacro method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setCustom method to DBus
2017-11-07 04:52:59 | razer.device0                  | DEBUG    | Adding razer.device.lighting.chroma.setKeyRow method to DBus
2017-11-07 04:52:59 | razer.device0.keymanager       | DEBUG    | Starting KeyWatcher
Traceback (most recent call last):
  File "/usr/bin/openrazer-daemon", line 110, in <module>
    run()
  File "/usr/bin/openrazer-daemon", line 104, in run
    daemonize(**daemon_args)
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/daemon.py", line 114, in daemonize
    daemon = RazerDaemon(verbose, log_dir, console_log, run_dir, config_file, test_dir=test_dir)
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/daemon.py", line 239, in __init__
    self._load_devices(first_run=True)
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/daemon.py", line 469, in _load_devices
    razer_device = device_class(sys_path, device_number, self._config, testing=self._test_dir is not None, additional_interfaces=sorted(additional_interfaces))
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/hardware/mouse.py", line 427, in __init__
    self.key_manager = _NagaHexV2KeyManager(self._device_number, self.event_files, self, use_epoll=True, testing=self._testing, should_grab_event_files=True)
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/misc/key_event_management.py", line 270, in __init__
    self.grab_event_files(True)
  File "/usr/lib/python3.6/site-packages/openrazer_daemon/misc/key_event_management.py", line 329, in grab_event_files
    fcntl.ioctl(event_file.fileno(), EVIOCGRAB, int(grab))
OSError: [Errno 16] Device or resource busy

Output of:
dmesg

[    0.546754] pci 0000:06:00.0: reg 0x10: [mem 0xf7d00000-0xf7d01fff 64bit]
[    0.546919] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.546977] pci 0000:06:00.0: System wakeup disabled by ACPI
[    0.554786] pci 0000:00:1c.2: PCI bridge to [bus 06]
[    0.554791] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.554927] pci 0000:07:00.0: [10ec:8136] type 00 class 0x020000
[    0.554955] pci 0000:07:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.554989] pci 0000:07:00.0: reg 0x18: [mem 0xf7c00000-0xf7c00fff 64bit]
[    0.555011] pci 0000:07:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[    0.555121] pci 0000:07:00.0: supports D1 D2
[    0.555122] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.555441] pci 0000:07:00.0: System wakeup disabled by ACPI
[    0.564786] pci 0000:00:1c.3: PCI bridge to [bus 07]
[    0.564789] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.564792] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.564797] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.564881] pci 0000:00:1c.4: PCI bridge to [bus 08]
[    0.567378] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.567421] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567462] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.567505] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.567545] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567585] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 10 11 12 14 15)
[    0.567625] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.567665] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.570378] ACPI: Enabled 3 GPEs in block 00 to 7F
[    0.570434] ACPI : EC: interrupt unblocked
[    0.570441] ACPI : EC: event unblocked
[    0.570456] ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0xa, EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.570457] ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions and events
[    0.570579] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.570580] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.570582] vgaarb: loaded
[    0.570583] vgaarb: bridge control possible 0000:00:02.0
[    0.570621] Registered efivars operations
[    0.573496] PCI: Using ACPI for IRQ routing
[    0.575673] PCI: pci_cache_line_size set to 64 bytes
[    0.575736] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.575737] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.575737] e820: reserve RAM buffer [mem 0xc8ae1000-0xcbffffff]
[    0.575738] e820: reserve RAM buffer [mem 0xdb320000-0xdbffffff]
[    0.575739] e820: reserve RAM buffer [mem 0x21fe00000-0x21fffffff]
[    0.575820] NetLabel: Initializing
[    0.575821] NetLabel:  domain hash size = 128
[    0.575821] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.575833] NetLabel:  unlabeled traffic allowed by default
[    0.575881] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.575885] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.577905] clocksource: Switched to clocksource hpet
[    0.583557] VFS: Disk quotas dquot_6.6.0
[    0.583573] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.583643] pnp: PnP ACPI init
[    0.583850] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.583852] system 00:00: [io  0xffff] has been reserved
[    0.583853] system 00:00: [io  0xffff] has been reserved
[    0.583854] system 00:00: [io  0xffff] has been reserved
[    0.583855] system 00:00: [io  0x1800-0x18fe] has been reserved
[    0.583856] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.583857] system 00:00: [io  0xfd40-0xfd6f] has been reserved
[    0.583860] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.583900] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.583933] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.583935] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.583963] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.583979] pnp 00:04: Plug and Play ACPI device, IDs DLLb6ad PNP0f13 (active)
[    0.584112] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.584113] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.584114] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.584115] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.584116] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.584117] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.584118] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.584119] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.584121] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.584122] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.584123] system 00:05: [mem 0xf7fe0000-0xf7feffff] has been reserved
[    0.584124] system 00:05: [mem 0xf7ff0000-0xf7ffffff] has been reserved
[    0.584126] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.584524] system 00:06: [mem 0xfe104000-0xfe104fff] has been reserved
[    0.584525] system 00:06: [mem 0xfe106000-0xfe106fff] has been reserved
[    0.584527] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.587482] pnp: PnP ACPI: found 7 devices
[    0.593680] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.593691] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    0.593693] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    0.593695] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[    0.593713] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.593714] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.593715] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.593716] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.593717] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.593718] pci 0000:00:1c.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.593722] pci 0000:00:1c.0: BAR 14: assigned [mem 0xdf200000-0xdf3fffff]
[    0.593725] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593727] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.593729] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    0.593731] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.593734] pci 0000:00:1c.0:   bridge window [mem 0xdf200000-0xdf3fffff]
[    0.593737] pci 0000:00:1c.0:   bridge window [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593741] pci 0000:00:1c.2: PCI bridge to [bus 06]
[    0.593745] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.593750] pci 0000:00:1c.3: PCI bridge to [bus 07]
[    0.593752] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.593755] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.593758] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.593762] pci 0000:00:1c.4: PCI bridge to [bus 08]
[    0.593772] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.593773] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.593774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.593775] pci_bus 0000:00: resource 7 [mem 0xdf200000-0xfeafffff window]
[    0.593776] pci_bus 0000:04: resource 0 [io  0x2000-0x2fff]
[    0.593777] pci_bus 0000:04: resource 1 [mem 0xdf200000-0xdf3fffff]
[    0.593778] pci_bus 0000:04: resource 2 [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593779] pci_bus 0000:06: resource 1 [mem 0xf7d00000-0xf7dfffff]
[    0.593780] pci_bus 0000:07: resource 0 [io  0xe000-0xefff]
[    0.593781] pci_bus 0000:07: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.593782] pci_bus 0000:07: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.593889] NET: Registered protocol family 2
[    0.594023] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.594121] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.594236] TCP: Hash tables configured (established 65536 bind 65536)
[    0.594255] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.594277] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.594319] NET: Registered protocol family 1
[    0.594331] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.614724] PCI: CLS 64 bytes, default 64
[    0.614774] Unpacking initramfs...
[    0.715259] Freeing initrd memory: 8028K
[    0.715266] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.715268] software IO TLB [mem 0xc0f1a000-0xc4f1a000] (64MB) mapped at [ffff8800c0f1a000-ffff8800c4f19fff]
[    0.715440] Scanning for low memory corruption every 60 seconds
[    0.715939] Initialise system trusted keyrings
[    0.716016] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.717275] zbud: loaded
[    0.717605] Key type asymmetric registered
[    0.717631] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.717652] io scheduler noop registered
[    0.717653] io scheduler deadline registered
[    0.717660] io scheduler cfq registered
[    0.717683] io scheduler bfq registered (default)
[    0.717684] BFQ I/O-scheduler: v8r12 (with cgroups support)
[    0.718212] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.718215] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.718225] efifb: probing for efifb
[    0.718241] efifb: framebuffer at 0xe0000000, using 8128k, total 8128k
[    0.718242] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.718243] efifb: scrolling: redraw
[    0.718244] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.723241] Console: switching to colour frame buffer device 240x67
[    0.728143] fb0: EFI VGA frame buffer device
[    0.728150] intel_idle: MWAIT substates: 0x11142120
[    0.728150] intel_idle: v0.4.1 model 0x45
[    0.728322] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.728436] GHES: HEST is not enabled!
[    0.728495] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.728858] Linux agpgart interface v0.103
[    0.729119] rtc_cmos 00:01: RTC can wake from S4
[    0.729244] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.729269] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.729278] intel_pstate: Intel P-state driver initializing
[    0.729438] ledtrig-cpu: registered to indicate activity on CPUs
[    0.729931] NET: Registered protocol family 10
[    0.730433] NET: Registered protocol family 17
[    0.730890] microcode: sig=0x40651, pf=0x40, revision=0x20
[    0.731064] microcode: Microcode Update Driver: v2.01 <[email protected]>, Peter Oruba
[    0.731406] registered taskstats version 1
[    0.731419] Loading compiled-in X.509 certificates
[    0.731446] zswap: loaded using pool lzo/zbud
[    0.732516]   Magic number: 9:676:221
[    0.732581] acpi device:3f: hash matches
[    0.732689] rtc_cmos 00:01: setting system clock to 2017-11-07 09:12:39 UTC (1510045959)
[    0.732833] PM: Checking hibernation image partition UUID=012a7920-3244-413d-99f9-c5964b98d3fa
[    0.732838] PM: Hibernation image not present or could not be loaded.
[    0.735311] Freeing unused kernel memory: 1280K
[    0.735313] Write protecting the kernel read-only data: 10240k
[    0.736385] Freeing unused kernel memory: 1892K
[    0.736945] Freeing unused kernel memory: 80K
[    0.812841] sdhci: Secure Digital Host Controller Interface driver
[    0.812842] sdhci: Copyright(c) Pierre Ossman
[    0.814962] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.837109] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.837175] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.837332] SCSI subsystem initialized
[    0.838376] ACPI: bus type USB registered
[    0.838406] usbcore: registered new interface driver usbfs
[    0.838419] usbcore: registered new interface driver hub
[    0.838506] usbcore: registered new device driver usb
[    0.839033] libata version 3.00 loaded.
[    0.839973] ahci 0000:00:1f.2: version 3.0
[    0.840383] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.840591] ehci-pci: EHCI PCI platform driver
[    0.850256] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
[    0.850259] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
[    0.850913] scsi host0: ahci
[    0.851072] scsi host1: ahci
[    0.851196] scsi host2: ahci
[    0.851351] scsi host3: ahci
[    0.851429] ata1: SATA max UDMA/133 abar m2048@0xf7e19000 port 0xf7e19100 irq 40
[    0.851432] ata2: SATA max UDMA/133 abar m2048@0xf7e19000 port 0xf7e19180 irq 40
[    0.851433] ata3: DUMMY
[    0.851434] ata4: DUMMY
[    0.851684] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.851690] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.852758] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0004b810
[    0.852762] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.852971] hub 1-0:1.0: USB hub found
[    0.852984] hub 1-0:1.0: 9 ports detected
[    0.855026] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.855029] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.855151] hub 2-0:1.0: USB hub found
[    0.855160] hub 2-0:1.0: 4 ports detected
[    0.856358] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.856367] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    0.856377] ehci-pci 0000:00:1d.0: debug port 2
[    0.860272] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.860282] ehci-pci 0000:00:1d.0: irq 21, io mem 0xf7e1a000
[    0.871294] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.871599] hub 3-0:1.0: USB hub found
[    0.871606] hub 3-0:1.0: 2 ports detected
[    0.875071] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.165497] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.168773] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.171821] ata1.00: ATA-8: ST1000LM024 HN-M101MBB, 2BA30003, max UDMA/133
[    1.171823] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.172364] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5LH, DD11, max UDMA/133
[    1.173271] ata2.00: configured for UDMA/133
[    1.174590] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    1.178215] ata1.00: configured for UDMA/133
[    1.178563] scsi 0:0:0:0: Direct-Access     ATA      ST1000LM024 HN-M 0003 PQ: 0 ANSI: 5
[    1.191263] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    1.218604] scsi 1:0:0:0: CD-ROM            PLDS     DVD+-RW DU-8A5LH DD11 PQ: 0 ANSI: 5
[    1.240650] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.240652] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.240725] sd 0:0:0:0: [sda] Write Protect is off
[    1.240728] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.240748] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.262773] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.262775] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.263052] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.299500]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
[    1.300430] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.307153] hidraw: raw HID events driver (C) Jiri Kosina
[    1.309003] usbcore: registered new interface driver usbhid
[    1.309004] usbhid: USB HID core driver
[    1.309469] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0001/input/input2
[    1.309519] hid-generic 0003:1532:0053.0001: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[    1.310170] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.0002/input/input3
[    1.331842] hub 3-1:1.0: USB hub found
[    1.331919] hub 3-1:1.0: 8 ports detected
[    1.364646] hid-generic 0003:1532:0053.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[    1.364940] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.0003/input/input4
[    1.421309] hid-generic 0003:1532:0053.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[    1.474562] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    1.721186] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    1.721804] random: fast init done
[    1.737896] tsc: Refined TSC clocksource calibration: 2394.456 MHz
[    1.737906] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2283c236f90, max_idle_ns: 440795217409 ns
[    2.041161] usb 1-6: new full-speed USB device number 5 using xhci_hcd
[    2.341175] usb 1-7: new full-speed USB device number 6 using xhci_hcd
[    2.400419] PM: Starting manual resume from disk
[    2.400426] PM: Hibernation image partition 8:6 present
[    2.400427] PM: Looking for hibernation image.
[    2.400624] PM: Image not found (code -22)
[    2.400626] PM: Hibernation image not present or could not be loaded.
[    2.475244] hid-generic 0003:1FD2:5001.0005: hiddev0,hidraw3: USB HID v1.00 Device [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input1
[    2.478299] input: Melfas LGD AIT Touch Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1FD2:5001.0004/input/input5
[    2.478457] hid-multitouch 0003:1FD2:5001.0004: input,hiddev0,hidraw4: USB HID v1.00 Mouse [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input0
[    2.587827] usb 1-8: new high-speed USB device number 7 using xhci_hcd
[    2.648377] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    2.751191] clocksource: Switched to clocksource tsc
[    3.325091] random: crng init done
[    3.769782] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.775516] cgroup: cgroup2: unknown option "nsdelegate"
[    3.820690] systemd[1]: systemd 235 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    3.820938] systemd[1]: Detected architecture x86-64.
[    3.841884] systemd[1]: Set hostname to <FuguKDE>.
[    5.718617] systemd[1]: File /usr/lib/systemd/system/systemd-journald.service:33 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    5.718621] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    5.764587] systemd[1]: File /usr/lib/systemd/system/systemd-udevd.service:32 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    5.764590] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    6.117953] systemd[1]: File /usr/lib/systemd/system/systemd-logind.service:34 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    6.117956] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    6.134805] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    6.556568] EXT4-fs (sda7): re-mounted. Opts: (null)
[    6.644608] systemd-journald[175]: Received request to flush runtime journal from PID 1
[    7.023886] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.023970] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    8.743004] ACPI: AC Adapter [AC] (on-line)
[    8.744158] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input7
[    8.745125] ACPI: Lid Switch [LID0]
[    8.745169] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[    8.745171] ACPI: Power Button [PBTN]
[    8.745202] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[    8.745203] ACPI: Sleep Button [SBTN]
[    8.745240] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[    8.745241] ACPI: Power Button [PWRF]
[    8.842120] input: DELL Wireless hotkeys as /devices/virtual/input/input11
[    8.956141] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    9.046541] input: DLLC6AD:00 06CB:75BF Touchpad as /devices/pci0000:00/INT33C3:00/i2c-1/i2c-DLLC6AD:00/0018:06CB:75BF.0006/input/input12
[    9.046605] hid-multitouch 0018:06CB:75BF.0006: input,hidraw5: I2C HID v1.00 Mouse [DLLC6AD:00 06CB:75BF] on i2c-DLLC6AD:00
[    9.118614] thermal LNXTHERM:00: registered as thermal_zone0
[    9.118617] ACPI: Thermal Zone [THM] (25 C)
[    9.136298] ACPI: Battery Slot [BAT0] (battery present)
[    9.136496] wmi: Mapper loaded
[    9.423453] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[    9.423479] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    9.456391] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.994387] Intel(R) Wireless WiFi driver for Linux
[    9.994389] Copyright(c) 2003- 2015 Intel Corporation
[    9.994439] iwlwifi 0000:06:00.0: enabling device (0000 -> 0002)
[   10.177981] iwlwifi 0000:06:00.0: loaded firmware version 17.459231.0 op_mode iwlmvm
[   10.413031] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   10.413047] r8169 0000:07:00.0: can't disable ASPM; OS doesn't have ASPM control
[   10.413906] r8169 0000:07:00.0 eth0: RTL8106e at 0xffffc90000df9000, 20:47:47:ea:2d:d7, XID 04900000 IRQ 44
[   10.424112] iwlwifi 0000:06:00.0: Detected Intel(R) Dual Band Wireless AC 3160, REV=0x164
[   10.426067] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   10.426317] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   10.552768] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   10.905289] [drm] Initialized
[   11.378442] mousedev: PS/2 mouse device common for all mice
[   11.396410] usbcore: registered new interface driver rtsx_usb
[   11.434463] media: Linux media interface: v0.10
[   11.472130] razermouse: loading out-of-tree module taints kernel.
[   11.501081] Linux video capture interface: v2.00
[   11.625579] input: PC Speaker as /devices/platform/pcspkr/input/input15
[   11.644334] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0001/input/input16
[   11.679942] snd_hda_intel 0000:00:03.0: enabling device (0000 -> 0002)
[   11.680146] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   11.712908] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.0002/input/input17
[   11.769456] Bluetooth: Core ver 2.22
[   11.769475] NET: Registered protocol family 31
[   11.769476] Bluetooth: HCI device and connection manager initialized
[   11.769479] Bluetooth: HCI socket layer initialized
[   11.769481] Bluetooth: L2CAP socket layer initialized
[   11.769486] Bluetooth: SCO socket layer initialized
[   11.786551] i915 0000:00:02.0: can't derive routing for PCI INT A
[   11.786553] i915 0000:00:02.0: PCI INT A: not connected
[   11.786701] [drm] Memory usable by graphics device = 2048M
[   11.786703] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
[   11.786704] fb: switching to inteldrmfb from EFI VGA
[   11.786723] Console: switching to colour dummy device 80x25
[   11.786816] [drm] Replacing VGA console driver
[   11.792460] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   11.792461] [drm] Driver supports precise vblank timestamp query.
[   11.794124] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   11.794403] razermouse 0003:1532:0053.0001: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[   11.796452] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.0003/input/input18
[   11.806581] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   11.807934] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input19
[   11.810790] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3234: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   11.810792] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   11.810794] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   11.810796] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   11.810797] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   11.810799] snd_hda_codec_realtek hdaudioC1D0:      Headset Mic=0x19
[   11.810801] snd_hda_codec_realtek hdaudioC1D0:      Headphone Mic=0x1a
[   11.810803] snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
[   11.850596] razermouse 0003:1532:0053.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[   11.907336] razermouse 0003:1532:0053.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[   11.907487] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   11.907498] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[   11.908605] fbcon: inteldrmfb (fb0) is primary device
[   11.913617] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   12.176357] usb 1-7: USB disconnect, device number 6
[   12.417949] dell_wmi: Detected Dell WMI interface version 1
[   12.417995] input: Dell WMI hotkeys as /devices/virtual/input/input21
[   12.653084] r8169 0000:07:00.0 enp7s0: renamed from eth0
[   12.660555] iTCO_vendor_support: vendor-support=0
[   12.674122] iwlwifi 0000:06:00.0 wlp6s0: renamed from wlan0
[   12.694867] uvcvideo: Found UVC 1.00 device Integrated_Webcam_HD (0c45:6712)
[   12.734279] uvcvideo 1-5:1.0: Entity type for entity Extension 4 was not initialized!
[   12.734283] uvcvideo 1-5:1.0: Entity type for entity Extension 3 was not initialized!
[   12.734285] uvcvideo 1-5:1.0: Entity type for entity Processing 2 was not initialized!
[   12.734287] uvcvideo 1-5:1.0: Entity type for entity Camera 1 was not initialized!
[   12.734416] input: Integrated_Webcam_HD as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/input/input22
[   12.734523] usbcore: registered new interface driver uvcvideo
[   12.734524] USB Video Class driver (1.1.1)
[   12.895621] Adding 4194300k swap on /dev/sda6.  Priority:-1 extents:1 across:4194300k FS
[   13.045208] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input20
[   13.045879] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input23
[   13.047633] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[   13.047633] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   13.047634] RAPL PMU: hw unit of domain package 2^-14 Joules
[   13.047634] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   13.047635] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   13.079907] Console: switching to colour frame buffer device 240x67
[   13.094668] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   13.094709] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
[   13.094868] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   13.100942] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   13.247499] usbcore: registered new interface driver btusb
[   13.263090] Bluetooth: hci0: read Intel version: 3707100100012d0d00
[   13.281421] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input24
[   13.281501] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input25
[   13.281576] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input26
[   13.360307] usb 1-7: new full-speed USB device number 8 using xhci_hcd
[   13.420515] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
[   13.494333] input: Melfas LGD AIT Touch Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1FD2:5001.0007/input/input27
[   13.494491] hid-multitouch 0003:1FD2:5001.0007: input,hiddev0,hidraw3: USB HID v1.00 Mouse [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input0
[   13.495123] hid-generic 0003:1FD2:5001.0008: hiddev0,hidraw4: USB HID v1.00 Device [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input1
[   13.544064] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
[   13.821387] AVX2 version of gcm_enc/dec engaged.
[   13.821390] AES CTR mode by8 optimization enabled
[   14.903004] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
[   15.808813] intel_rapl: Found RAPL domain package
[   15.808815] intel_rapl: Found RAPL domain core
[   15.808816] intel_rapl: Found RAPL domain uncore
[   15.808818] intel_rapl: Found RAPL domain dram
[   15.808821] intel_rapl: RAPL package 0 domain package locked by BIOS
[   15.808826] intel_rapl: RAPL package 0 domain dram locked by BIOS
[   18.364581] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.364583] Bluetooth: BNEP filters: protocol multicast
[   18.364587] Bluetooth: BNEP socket layer initialized
[   20.931693] IPv6: ADDRCONF(NETDEV_UP): enp7s0: link is not ready
[   21.130857] r8169 0000:07:00.0 enp7s0: link down
[   21.130932] IPv6: ADDRCONF(NETDEV_UP): enp7s0: link is not ready
[   21.160413] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   21.162534] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.162777] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.265125] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.265368] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.280069] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   21.287445] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.287694] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.389525] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.389785] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.403600] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   22.269135] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.738707] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.744463] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.748262] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   57.168985] Bluetooth: RFCOMM TTY layer initialized
[   57.168993] Bluetooth: RFCOMM socket layer initialized
[   57.168999] Bluetooth: RFCOMM ver 1.11
[   73.235577] fuse init (API version 7.26)
[  106.502219] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[  110.141379] wlp6s0: authenticate with e0:88:5d:9b:0f:fb
[  110.144136] wlp6s0: send auth to e0:88:5d:9b:0f:fb (try 1/3)
[  110.144885] wlp6s0: authenticated
[  110.149658] wlp6s0: associate with e0:88:5d:9b:0f:fb (try 1/3)
[  110.150546] wlp6s0: RX AssocResp from e0:88:5d:9b:0f:fb (capab=0x1011 status=0 aid=2)
[  110.151983] wlp6s0: associated
[  110.152032] IPv6: ADDRCONF(NETDEV_CHANGE): wlp6s0: link becomes ready
[  775.190777] usb 1-1: USB disconnect, device number 2
[  775.224917] usbhid 1-1:1.0: Razer Device disconnected
[  775.298286] usbhid 1-1:1.1: Razer Device disconnected
[  775.375923] usbhid 1-1:1.2: Razer Device disconnected
[  778.064546] usb 1-1: new full-speed USB device number 9 using xhci_hcd
[  778.196875] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009/input/input29
[  778.197249] hid-generic 0003:1532:0053.0009: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[  778.198535] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.000A/input/input30
[  778.254667] hid-generic 0003:1532:0053.000A: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[  778.255266] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.000B/input/input31
[  778.311382] hid-generic 0003:1532:0053.000B: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[  778.900117] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.000A/input/input32
[  778.944834] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009/input/input33
[  779.040717] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.000B/input/input34
[  779.094754] razermouse 0003:1532:0053.000A: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[  779.095293] razermouse 0003:1532:0053.0009: input,hidraw1: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[  779.151932] razermouse 0003:1532:0053.000B: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[    0.546754] pci 0000:06:00.0: reg 0x10: [mem 0xf7d00000-0xf7d01fff 64bit]
[    0.546919] pci 0000:06:00.0: PME# supported from D0 D3hot D3cold
[    0.546977] pci 0000:06:00.0: System wakeup disabled by ACPI
[    0.554786] pci 0000:00:1c.2: PCI bridge to [bus 06]
[    0.554791] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.554927] pci 0000:07:00.0: [10ec:8136] type 00 class 0x020000
[    0.554955] pci 0000:07:00.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.554989] pci 0000:07:00.0: reg 0x18: [mem 0xf7c00000-0xf7c00fff 64bit]
[    0.555011] pci 0000:07:00.0: reg 0x20: [mem 0xf0000000-0xf0003fff 64bit pref]
[    0.555121] pci 0000:07:00.0: supports D1 D2
[    0.555122] pci 0000:07:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.555441] pci 0000:07:00.0: System wakeup disabled by ACPI
[    0.564786] pci 0000:00:1c.3: PCI bridge to [bus 07]
[    0.564789] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.564792] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.564797] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.564881] pci 0000:00:1c.4: PCI bridge to [bus 08]
[    0.567378] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.567421] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567462] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.567505] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.567545] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.567585] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 *4 5 6 10 11 12 14 15)
[    0.567625] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.567665] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.570378] ACPI: Enabled 3 GPEs in block 00 to 7F
[    0.570434] ACPI : EC: interrupt unblocked
[    0.570441] ACPI : EC: event unblocked
[    0.570456] ACPI: \_SB_.PCI0.LPCB.ECDV: GPE=0xa, EC_CMD/EC_SC=0x934, EC_DATA=0x930
[    0.570457] ACPI: \_SB_.PCI0.LPCB.ECDV: Used as boot DSDT EC to handle transactions and events
[    0.570579] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.570580] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.570582] vgaarb: loaded
[    0.570583] vgaarb: bridge control possible 0000:00:02.0
[    0.570621] Registered efivars operations
[    0.573496] PCI: Using ACPI for IRQ routing
[    0.575673] PCI: pci_cache_line_size set to 64 bytes
[    0.575736] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[    0.575737] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[    0.575737] e820: reserve RAM buffer [mem 0xc8ae1000-0xcbffffff]
[    0.575738] e820: reserve RAM buffer [mem 0xdb320000-0xdbffffff]
[    0.575739] e820: reserve RAM buffer [mem 0x21fe00000-0x21fffffff]
[    0.575820] NetLabel: Initializing
[    0.575821] NetLabel:  domain hash size = 128
[    0.575821] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.575833] NetLabel:  unlabeled traffic allowed by default
[    0.575881] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.575885] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.577905] clocksource: Switched to clocksource hpet
[    0.583557] VFS: Disk quotas dquot_6.6.0
[    0.583573] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.583643] pnp: PnP ACPI init
[    0.583850] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.583852] system 00:00: [io  0xffff] has been reserved
[    0.583853] system 00:00: [io  0xffff] has been reserved
[    0.583854] system 00:00: [io  0xffff] has been reserved
[    0.583855] system 00:00: [io  0x1800-0x18fe] has been reserved
[    0.583856] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.583857] system 00:00: [io  0xfd40-0xfd6f] has been reserved
[    0.583860] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.583900] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.583933] system 00:02: [io  0x1854-0x1857] has been reserved
[    0.583935] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.583963] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.583979] pnp 00:04: Plug and Play ACPI device, IDs DLLb6ad PNP0f13 (active)
[    0.584112] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.584113] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.584114] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.584115] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.584116] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.584117] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.584118] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.584119] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.584121] system 00:05: [mem 0xff000000-0xffffffff] has been reserved
[    0.584122] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.584123] system 00:05: [mem 0xf7fe0000-0xf7feffff] has been reserved
[    0.584124] system 00:05: [mem 0xf7ff0000-0xf7ffffff] has been reserved
[    0.584126] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.584524] system 00:06: [mem 0xfe104000-0xfe104fff] has been reserved
[    0.584525] system 00:06: [mem 0xfe106000-0xfe106fff] has been reserved
[    0.584527] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.587482] pnp: PnP ACPI: found 7 devices
[    0.593680] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.593691] pci 0000:00:1c.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[    0.593693] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[    0.593695] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[    0.593713] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.593714] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
[    0.593715] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.593716] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
[    0.593717] pci 0000:00:1c.0: res[13]=[io  0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
[    0.593718] pci 0000:00:1c.0: res[13]=[io  0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
[    0.593722] pci 0000:00:1c.0: BAR 14: assigned [mem 0xdf200000-0xdf3fffff]
[    0.593725] pci 0000:00:1c.0: BAR 15: assigned [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593727] pci 0000:00:1c.0: BAR 13: assigned [io  0x2000-0x2fff]
[    0.593729] pci 0000:00:1c.0: PCI bridge to [bus 04]
[    0.593731] pci 0000:00:1c.0:   bridge window [io  0x2000-0x2fff]
[    0.593734] pci 0000:00:1c.0:   bridge window [mem 0xdf200000-0xdf3fffff]
[    0.593737] pci 0000:00:1c.0:   bridge window [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593741] pci 0000:00:1c.2: PCI bridge to [bus 06]
[    0.593745] pci 0000:00:1c.2:   bridge window [mem 0xf7d00000-0xf7dfffff]
[    0.593750] pci 0000:00:1c.3: PCI bridge to [bus 07]
[    0.593752] pci 0000:00:1c.3:   bridge window [io  0xe000-0xefff]
[    0.593755] pci 0000:00:1c.3:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.593758] pci 0000:00:1c.3:   bridge window [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.593762] pci 0000:00:1c.4: PCI bridge to [bus 08]
[    0.593772] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.593773] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.593774] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.593775] pci_bus 0000:00: resource 7 [mem 0xdf200000-0xfeafffff window]
[    0.593776] pci_bus 0000:04: resource 0 [io  0x2000-0x2fff]
[    0.593777] pci_bus 0000:04: resource 1 [mem 0xdf200000-0xdf3fffff]
[    0.593778] pci_bus 0000:04: resource 2 [mem 0xdf400000-0xdf5fffff 64bit pref]
[    0.593779] pci_bus 0000:06: resource 1 [mem 0xf7d00000-0xf7dfffff]
[    0.593780] pci_bus 0000:07: resource 0 [io  0xe000-0xefff]
[    0.593781] pci_bus 0000:07: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.593782] pci_bus 0000:07: resource 2 [mem 0xf0000000-0xf00fffff 64bit pref]
[    0.593889] NET: Registered protocol family 2
[    0.594023] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.594121] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.594236] TCP: Hash tables configured (established 65536 bind 65536)
[    0.594255] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.594277] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.594319] NET: Registered protocol family 1
[    0.594331] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.614724] PCI: CLS 64 bytes, default 64
[    0.614774] Unpacking initramfs...
[    0.715259] Freeing initrd memory: 8028K
[    0.715266] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.715268] software IO TLB [mem 0xc0f1a000-0xc4f1a000] (64MB) mapped at [ffff8800c0f1a000-ffff8800c4f19fff]
[    0.715440] Scanning for low memory corruption every 60 seconds
[    0.715939] Initialise system trusted keyrings
[    0.716016] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    0.717275] zbud: loaded
[    0.717605] Key type asymmetric registered
[    0.717631] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
[    0.717652] io scheduler noop registered
[    0.717653] io scheduler deadline registered
[    0.717660] io scheduler cfq registered
[    0.717683] io scheduler bfq registered (default)
[    0.717684] BFQ I/O-scheduler: v8r12 (with cgroups support)
[    0.718212] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.718215] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.718225] efifb: probing for efifb
[    0.718241] efifb: framebuffer at 0xe0000000, using 8128k, total 8128k
[    0.718242] efifb: mode is 1920x1080x32, linelength=7680, pages=1
[    0.718243] efifb: scrolling: redraw
[    0.718244] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.723241] Console: switching to colour frame buffer device 240x67
[    0.728143] fb0: EFI VGA frame buffer device
[    0.728150] intel_idle: MWAIT substates: 0x11142120
[    0.728150] intel_idle: v0.4.1 model 0x45
[    0.728322] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.728436] GHES: HEST is not enabled!
[    0.728495] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.728858] Linux agpgart interface v0.103
[    0.729119] rtc_cmos 00:01: RTC can wake from S4
[    0.729244] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.729269] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    0.729278] intel_pstate: Intel P-state driver initializing
[    0.729438] ledtrig-cpu: registered to indicate activity on CPUs
[    0.729931] NET: Registered protocol family 10
[    0.730433] NET: Registered protocol family 17
[    0.730890] microcode: sig=0x40651, pf=0x40, revision=0x20
[    0.731064] microcode: Microcode Update Driver: v2.01 <[email protected]>, Peter Oruba
[    0.731406] registered taskstats version 1
[    0.731419] Loading compiled-in X.509 certificates
[    0.731446] zswap: loaded using pool lzo/zbud
[    0.732516]   Magic number: 9:676:221
[    0.732581] acpi device:3f: hash matches
[    0.732689] rtc_cmos 00:01: setting system clock to 2017-11-07 09:12:39 UTC (1510045959)
[    0.732833] PM: Checking hibernation image partition UUID=012a7920-3244-413d-99f9-c5964b98d3fa
[    0.732838] PM: Hibernation image not present or could not be loaded.
[    0.735311] Freeing unused kernel memory: 1280K
[    0.735313] Write protecting the kernel read-only data: 10240k
[    0.736385] Freeing unused kernel memory: 1892K
[    0.736945] Freeing unused kernel memory: 80K
[    0.812841] sdhci: Secure Digital Host Controller Interface driver
[    0.812842] sdhci: Copyright(c) Pierre Ossman
[    0.814962] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    0.837109] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.837175] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.837332] SCSI subsystem initialized
[    0.838376] ACPI: bus type USB registered
[    0.838406] usbcore: registered new interface driver usbfs
[    0.838419] usbcore: registered new interface driver hub
[    0.838506] usbcore: registered new device driver usb
[    0.839033] libata version 3.00 loaded.
[    0.839973] ahci 0000:00:1f.2: version 3.0
[    0.840383] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.840591] ehci-pci: EHCI PCI platform driver
[    0.850256] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x3 impl SATA mode
[    0.850259] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst
[    0.850913] scsi host0: ahci
[    0.851072] scsi host1: ahci
[    0.851196] scsi host2: ahci
[    0.851351] scsi host3: ahci
[    0.851429] ata1: SATA max UDMA/133 abar m2048@0xf7e19000 port 0xf7e19100 irq 40
[    0.851432] ata2: SATA max UDMA/133 abar m2048@0xf7e19000 port 0xf7e19180 irq 40
[    0.851433] ata3: DUMMY
[    0.851434] ata4: DUMMY
[    0.851684] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.851690] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[    0.852758] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0004b810
[    0.852762] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    0.852971] hub 1-0:1.0: USB hub found
[    0.852984] hub 1-0:1.0: 9 ports detected
[    0.855026] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    0.855029] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[    0.855151] hub 2-0:1.0: USB hub found
[    0.855160] hub 2-0:1.0: 4 ports detected
[    0.856358] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    0.856367] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    0.856377] ehci-pci 0000:00:1d.0: debug port 2
[    0.860272] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    0.860282] ehci-pci 0000:00:1d.0: irq 21, io mem 0xf7e1a000
[    0.871294] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    0.871599] hub 3-0:1.0: USB hub found
[    0.871606] hub 3-0:1.0: 2 ports detected
[    0.875071] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.165497] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[    1.168773] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.171821] ata1.00: ATA-8: ST1000LM024 HN-M101MBB, 2BA30003, max UDMA/133
[    1.171823] ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    1.172364] ata2.00: ATAPI: PLDS DVD+/-RW DU-8A5LH, DD11, max UDMA/133
[    1.173271] ata2.00: configured for UDMA/133
[    1.174590] usb 1-1: new full-speed USB device number 2 using xhci_hcd
[    1.178215] ata1.00: configured for UDMA/133
[    1.178563] scsi 0:0:0:0: Direct-Access     ATA      ST1000LM024 HN-M 0003 PQ: 0 ANSI: 5
[    1.191263] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    1.218604] scsi 1:0:0:0: CD-ROM            PLDS     DVD+-RW DU-8A5LH DD11 PQ: 0 ANSI: 5
[    1.240650] sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[    1.240652] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    1.240725] sd 0:0:0:0: [sda] Write Protect is off
[    1.240728] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.240748] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.262773] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.262775] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.263052] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    1.299500]  sda: sda1 sda2 sda3 sda4 sda5 sda6 sda7 sda8
[    1.300430] sd 0:0:0:0: [sda] Attached SCSI disk
[    1.307153] hidraw: raw HID events driver (C) Jiri Kosina
[    1.309003] usbcore: registered new interface driver usbhid
[    1.309004] usbhid: USB HID core driver
[    1.309469] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0001/input/input2
[    1.309519] hid-generic 0003:1532:0053.0001: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[    1.310170] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.0002/input/input3
[    1.331842] hub 3-1:1.0: USB hub found
[    1.331919] hub 3-1:1.0: 8 ports detected
[    1.364646] hid-generic 0003:1532:0053.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[    1.364940] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.0003/input/input4
[    1.421309] hid-generic 0003:1532:0053.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[    1.474562] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[    1.721186] usb 1-5: new high-speed USB device number 4 using xhci_hcd
[    1.721804] random: fast init done
[    1.737896] tsc: Refined TSC clocksource calibration: 2394.456 MHz
[    1.737906] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2283c236f90, max_idle_ns: 440795217409 ns
[    2.041161] usb 1-6: new full-speed USB device number 5 using xhci_hcd
[    2.341175] usb 1-7: new full-speed USB device number 6 using xhci_hcd
[    2.400419] PM: Starting manual resume from disk
[    2.400426] PM: Hibernation image partition 8:6 present
[    2.400427] PM: Looking for hibernation image.
[    2.400624] PM: Image not found (code -22)
[    2.400626] PM: Hibernation image not present or could not be loaded.
[    2.475244] hid-generic 0003:1FD2:5001.0005: hiddev0,hidraw3: USB HID v1.00 Device [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input1
[    2.478299] input: Melfas LGD AIT Touch Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1FD2:5001.0004/input/input5
[    2.478457] hid-multitouch 0003:1FD2:5001.0004: input,hiddev0,hidraw4: USB HID v1.00 Mouse [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input0
[    2.587827] usb 1-8: new high-speed USB device number 7 using xhci_hcd
[    2.648377] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    2.751191] clocksource: Switched to clocksource tsc
[    3.325091] random: crng init done
[    3.769782] ip_tables: (C) 2000-2006 Netfilter Core Team
[    3.775516] cgroup: cgroup2: unknown option "nsdelegate"
[    3.820690] systemd[1]: systemd 235 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    3.820938] systemd[1]: Detected architecture x86-64.
[    3.841884] systemd[1]: Set hostname to <FuguKDE>.
[    5.718617] systemd[1]: File /usr/lib/systemd/system/systemd-journald.service:33 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    5.718621] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    5.764587] systemd[1]: File /usr/lib/systemd/system/systemd-udevd.service:32 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    5.764590] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    6.117953] systemd[1]: File /usr/lib/systemd/system/systemd-logind.service:34 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based firewalling.
[    6.117956] systemd[1]: Proceeding WITHOUT firewalling in effect!
[    6.134805] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[    6.556568] EXT4-fs (sda7): re-mounted. Opts: (null)
[    6.644608] systemd-journald[175]: Received request to flush runtime journal from PID 1
[    7.023886] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    7.023970] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    8.743004] ACPI: AC Adapter [AC] (on-line)
[    8.744158] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input7
[    8.745125] ACPI: Lid Switch [LID0]
[    8.745169] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input8
[    8.745171] ACPI: Power Button [PBTN]
[    8.745202] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input9
[    8.745203] ACPI: Sleep Button [SBTN]
[    8.745240] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input10
[    8.745241] ACPI: Power Button [PWRF]
[    8.842120] input: DELL Wireless hotkeys as /devices/virtual/input/input11
[    8.956141] FUJITSU Extended Socket Network Device Driver - version 1.1 - Copyright (c) 2015 FUJITSU LIMITED
[    9.046541] input: DLLC6AD:00 06CB:75BF Touchpad as /devices/pci0000:00/INT33C3:00/i2c-1/i2c-DLLC6AD:00/0018:06CB:75BF.0006/input/input12
[    9.046605] hid-multitouch 0018:06CB:75BF.0006: input,hidraw5: I2C HID v1.00 Mouse [DLLC6AD:00 06CB:75BF] on i2c-DLLC6AD:00
[    9.118614] thermal LNXTHERM:00: registered as thermal_zone0
[    9.118617] ACPI: Thermal Zone [THM] (25 C)
[    9.136298] ACPI: Battery Slot [BAT0] (battery present)
[    9.136496] wmi: Mapper loaded
[    9.423453] i801_smbus 0000:00:1f.3: SPD Write Disable is set
[    9.423479] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    9.456391] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    9.994387] Intel(R) Wireless WiFi driver for Linux
[    9.994389] Copyright(c) 2003- 2015 Intel Corporation
[    9.994439] iwlwifi 0000:06:00.0: enabling device (0000 -> 0002)
[   10.177981] iwlwifi 0000:06:00.0: loaded firmware version 17.459231.0 op_mode iwlmvm
[   10.413031] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   10.413047] r8169 0000:07:00.0: can't disable ASPM; OS doesn't have ASPM control
[   10.413906] r8169 0000:07:00.0 eth0: RTL8106e at 0xffffc90000df9000, 20:47:47:ea:2d:d7, XID 04900000 IRQ 44
[   10.424112] iwlwifi 0000:06:00.0: Detected Intel(R) Dual Band Wireless AC 3160, REV=0x164
[   10.426067] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   10.426317] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   10.552768] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[   10.905289] [drm] Initialized
[   11.378442] mousedev: PS/2 mouse device common for all mice
[   11.396410] usbcore: registered new interface driver rtsx_usb
[   11.434463] media: Linux media interface: v0.10
[   11.472130] razermouse: loading out-of-tree module taints kernel.
[   11.501081] Linux video capture interface: v2.00
[   11.625579] input: PC Speaker as /devices/platform/pcspkr/input/input15
[   11.644334] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0001/input/input16
[   11.679942] snd_hda_intel 0000:00:03.0: enabling device (0000 -> 0002)
[   11.680146] snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
[   11.712908] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.0002/input/input17
[   11.769456] Bluetooth: Core ver 2.22
[   11.769475] NET: Registered protocol family 31
[   11.769476] Bluetooth: HCI device and connection manager initialized
[   11.769479] Bluetooth: HCI socket layer initialized
[   11.769481] Bluetooth: L2CAP socket layer initialized
[   11.769486] Bluetooth: SCO socket layer initialized
[   11.786551] i915 0000:00:02.0: can't derive routing for PCI INT A
[   11.786553] i915 0000:00:02.0: PCI INT A: not connected
[   11.786701] [drm] Memory usable by graphics device = 2048M
[   11.786703] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
[   11.786704] fb: switching to inteldrmfb from EFI VGA
[   11.786723] Console: switching to colour dummy device 80x25
[   11.786816] [drm] Replacing VGA console driver
[   11.792460] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   11.792461] [drm] Driver supports precise vblank timestamp query.
[   11.794124] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
[   11.794403] razermouse 0003:1532:0053.0001: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[   11.796452] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.0003/input/input18
[   11.806581] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[   11.807934] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input19
[   11.810790] snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3234: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   11.810792] snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   11.810794] snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   11.810796] snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
[   11.810797] snd_hda_codec_realtek hdaudioC1D0:    inputs:
[   11.810799] snd_hda_codec_realtek hdaudioC1D0:      Headset Mic=0x19
[   11.810801] snd_hda_codec_realtek hdaudioC1D0:      Headphone Mic=0x1a
[   11.810803] snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
[   11.850596] razermouse 0003:1532:0053.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[   11.907336] razermouse 0003:1532:0053.0003: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[   11.907487] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   11.907498] [drm] Initialized i915 1.6.0 20160919 for 0000:00:02.0 on minor 0
[   11.908605] fbcon: inteldrmfb (fb0) is primary device
[   11.913617] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   12.176357] usb 1-7: USB disconnect, device number 6
[   12.417949] dell_wmi: Detected Dell WMI interface version 1
[   12.417995] input: Dell WMI hotkeys as /devices/virtual/input/input21
[   12.653084] r8169 0000:07:00.0 enp7s0: renamed from eth0
[   12.660555] iTCO_vendor_support: vendor-support=0
[   12.674122] iwlwifi 0000:06:00.0 wlp6s0: renamed from wlan0
[   12.694867] uvcvideo: Found UVC 1.00 device Integrated_Webcam_HD (0c45:6712)
[   12.734279] uvcvideo 1-5:1.0: Entity type for entity Extension 4 was not initialized!
[   12.734283] uvcvideo 1-5:1.0: Entity type for entity Extension 3 was not initialized!
[   12.734285] uvcvideo 1-5:1.0: Entity type for entity Processing 2 was not initialized!
[   12.734287] uvcvideo 1-5:1.0: Entity type for entity Camera 1 was not initialized!
[   12.734416] input: Integrated_Webcam_HD as /devices/pci0000:00/000Output of:
dmesg0:00:14.0/usb1/1-5/1-5:1.0/input/input22
[   12.734523] usbcore: registered new interface driver uvcvideo
[   12.734524] USB Video Class driver (1.1.1)
[   12.895621] Adding 4194300k swap on /dev/sda6.  Priority:-1 extents:1 across:4194300k FS
[   13.045208] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card1/input20
[   13.045879] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input23
[   13.047633] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[   13.047633] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[   13.047634] RAPL PMU: hw unit of domain package 2^-14 Joules
[   13.047634] RAPL PMU: hw unit of domain dram 2^-14 Joules
[   13.047635] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[   13.079907] Console: switching to colour frame buffer device 240x67
[   13.094668] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   13.094709] iTCO_wdt: Found a Lynx Point_LP TCO device (Version=2, TCOBASE=0x1860)
[   13.094868] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   13.100942] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[   13.247499] usbcore: registered new interface driver btusb
[   13.263090] Bluetooth: hci0: read Intel version: 3707100100012d0d00
[   13.281421] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input24
[   13.281501] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input25
[   13.281576] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input26
[   13.360307] usb 1-7: new full-speed USB device number 8 using xhci_hcd
[   13.420515] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.0.1.2d.d.bseq
[   13.494333] input: Melfas LGD AIT Touch Controller as /devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:1FD2:5001.0007/input/input27
[   13.494491] hid-multitouch 0003:1FD2:5001.0007: input,hiddev0,hidraw3: USB HID v1.00 Mouse [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input0
[   13.495123] hid-generic 0003:1FD2:5001.0008: hiddev0,hidraw4: USB HID v1.00 Device [Melfas LGD AIT Touch Controller] on usb-0000:00:14.0-7/input1
[   13.544064] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
[   13.821387] AVX2 version of gcm_enc/dec engaged.
[   13.821390] AES CTR mode by8 optimization enabled
[   14.903004] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
[   15.808813] intel_rapl: Found RAPL domain package
[   15.808815] intel_rapl: Found RAPL domain core
[   15.808816] intel_rapl: Found RAPL domain uncore
[   15.808818] intel_rapl: Found RAPL domain dram
[   15.808821] intel_rapl: RAPL package 0 domain package locked by BIOS
[   15.808826] intel_rapl: RAPL package 0 domain dram locked by BIOS
[   18.364581] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   18.364583] Bluetooth: BNEP filters: protocol multicast
[   18.364587] Bluetooth: BNEP socket layer initialized
[   20.931693] IPv6: ADDRCONF(NETDEV_UP): enp7s0: link is not ready
[   21.130857] r8169 0000:07:00.0 enp7s0: link down
[   21.130932] IPv6: ADDRCONF(NETDEV_UP): enp7s0: link is not ready
[   21.160413] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   21.162534] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.162777] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.265125] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.265368] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.280069] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   21.287445] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.287694] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.389525] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.389785] iwlwifi 0000:06:00.0: L1 Enabled - LTR Enabled
[   21.403600] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   22.269135] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.738707] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.744463] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   44.748262] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[   57.168985] Bluetooth: RFCOMM TTY layer initialized
[   57.168993] Bluetooth: RFCOMM socket layer initialized
[   57.168999] Bluetooth: RFCOMM ver 1.11
[   73.235577] fuse init (API version 7.26)
[  106.502219] IPv6: ADDRCONF(NETDEV_UP): wlp6s0: link is not ready
[  110.141379] wlp6s0: authenticate with e0:88:5d:9b:0f:fb
[  110.144136] wlp6s0: send auth to e0:88:5d:9b:0f:fb (try 1/3)
[  110.144885] wlp6s0: authenticated
[  110.149658] wlp6s0: associate with e0:88:5d:9b:0f:fb (try 1/3)
[  110.150546] wlp6s0: RX AssocResp from e0:88:5d:9b:0f:fb (capab=0x1011 status=0 aid=2)
[  110.151983] wlp6s0: associated
[  110.152032] IPv6: ADDRCONF(NETDEV_CHANGE): wlp6s0: link becomes ready
[  775.190777] usb 1-1: USB disconnect, device number 2
[  775.224917] usbhid 1-1:1.0: Razer Device disconnected
[  775.298286] usbhid 1-1:1.1: Razer Device disconnected
[  775.375923] usbhid 1-1:1.2: Razer Device disconnected
[  778.064546] usb 1-1: new full-speed USB device number 9 using xhci_hcd
[  778.196875] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009/input/input29
[  778.197249] hid-generic 0003:1532:0053.0009: input,hidraw0: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[  778.198535] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.000A/input/input30
[  778.254667] hid-generic 0003:1532:0053.000A: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[  778.255266] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.000B/input/input31
[  778.311382] hid-generic 0003:1532:0053.000B: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2
[  778.900117] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.1/0003:1532:0053.000A/input/input32
[  778.944834] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:1532:0053.0009/input/input33
[  779.040717] input: Razer Razer Naga Chroma as /devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.2/0003:1532:0053.000B/input/input34
[  779.094754] razermouse 0003:1532:0053.000A: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input1
[  779.095293] razermouse 0003:1532:0053.0009: input,hidraw1: USB HID v1.11 Mouse [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input0
[  779.151932] razermouse 0003:1532:0053.000B: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer Naga Chroma] on usb-0000:00:14.0-1/input2

Output of:
sudo journalctl -b | grep -i razer_mount

Nov 07 04:12:50 FuguKDE razer_mount[329]: Driver razermouse
Nov 07 04:12:50 FuguKDE razer_mount[330]: Driver razermouse
Nov 07 04:12:50 FuguKDE razer_mount[328]: Driver razermouse
Nov 07 04:12:50 FuguKDE razer_mount[333]: Device_ID 0003:1532:0053.0002
Nov 07 04:12:50 FuguKDE razer_mount[331]: Device_ID 0003:1532:0053.0001
Nov 07 04:12:50 FuguKDE razer_mount[332]: Device_ID 0003:1532:0053.0003
Nov 07 04:12:50 FuguKDE razer_mount[335]: Unbinding 0003:1532:0053.0001 from hid-generic
Nov 07 04:12:50 FuguKDE razer_mount[334]: Unbinding 0003:1532:0053.0002 from hid-generic
Nov 07 04:12:50 FuguKDE razer_mount[336]: Unbinding 0003:1532:0053.0003 from hid-generic
Nov 07 04:12:50 FuguKDE razer_mount[337]: Binding 0003:1532:0053.0001 to razermouse
Nov 07 04:12:50 FuguKDE razer_mount[341]: Binding 0003:1532:0053.0002 to razermouse
Nov 07 04:12:50 FuguKDE razer_mount[342]: Binding 0003:1532:0053.0003 to razermouse
Nov 07 04:12:50 FuguKDE razer_mount[351]: Finished binding 0003:1532:0053.0001
Nov 07 04:12:50 FuguKDE razer_mount[352]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0001/
Nov 07 04:12:50 FuguKDE razer_mount[357]: Finished binding 0003:1532:0053.0002
Nov 07 04:12:50 FuguKDE razer_mount[358]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0002/
Nov 07 04:12:50 FuguKDE razer_mount[364]: Finished binding 0003:1532:0053.0003
Nov 07 04:12:50 FuguKDE razer_mount[365]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0003/
Nov 07 04:12:50 FuguKDE razer_mount[368]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0001/
Nov 07 04:12:50 FuguKDE razer_mount[369]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0002/
Nov 07 04:12:50 FuguKDE razer_mount[370]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0003/
Nov 07 04:25:38 FuguKDE razer_mount[6133]: Driver razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6134]: Device_ID 0003:1532:0053.000A
Nov 07 04:25:38 FuguKDE razer_mount[6135]: Driver razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6136]: Device_ID 0003:1532:0053.0009
Nov 07 04:25:38 FuguKDE razer_mount[6137]: Unbinding 0003:1532:0053.000A from hid-generic
Nov 07 04:25:38 FuguKDE razer_mount[6139]: Unbinding 0003:1532:0053.0009 from hid-generic
Nov 07 04:25:38 FuguKDE razer_mount[6142]: Driver razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6143]: Device_ID 0003:1532:0053.000B
Nov 07 04:25:38 FuguKDE razer_mount[6144]: Unbinding 0003:1532:0053.000B from hid-generic
Nov 07 04:25:38 FuguKDE razer_mount[6145]: Binding 0003:1532:0053.000A to razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6146]: Binding 0003:1532:0053.0009 to razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6570]: Binding 0003:1532:0053.000B to razermouse
Nov 07 04:25:38 FuguKDE razer_mount[6659]: Finished binding 0003:1532:0053.000A
Nov 07 04:25:38 FuguKDE razer_mount[6660]: Finished binding 0003:1532:0053.0009
Nov 07 04:25:38 FuguKDE razer_mount[6661]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.000A/
Nov 07 04:25:38 FuguKDE razer_mount[6662]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0009/
Nov 07 04:25:38 FuguKDE razer_mount[6665]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.000A/
Nov 07 04:25:38 FuguKDE razer_mount[6667]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.0009/
Nov 07 04:25:38 FuguKDE razer_mount[6672]: Finished binding 0003:1532:0053.000B
Nov 07 04:25:38 FuguKDE razer_mount[6673]: Changing group /sys/bus/hid/drivers/razermouse/0003:1532:0053.000B/
Nov 07 04:25:38 FuguKDE razer_mount[6675]: Changed group /sys/bus/hid/drivers/razermouse/0003:1532:0053.000B/

Output of:
sudo ~/.local/share/openrazer/logs/razer.log

sudo: /home/meihua/.local/share/openrazer/logs/razer.log: command not found

I have issue running application

Hi, i installed razer drivers, and cloned your repo. When im trying to run main.py i got this error

`

Unable to init server: Could not connect: Connection refused
Unable to init server: Could not connect: Connection refused
Traceback (most recent call last):
File "main.py", line 7, in
import device
File "/home/fr1sk/razerCommander/razerCommander/device.py", line 10, in
device_manager = rclient.DeviceManager()
File "/usr/lib/python3.5/site-packages/razer/client/init.py", line 15, in init
session_bus = _dbus.SessionBus()
File "/usr/lib64/python3.5/site-packages/dbus/_dbus.py", line 211, in new
mainloop=mainloop)
File "/usr/lib64/python3.5/site-packages/dbus/_dbus.py", line 100, in new
bus = BusConnection.new(subclass, bus_type, mainloop=mainloop)
File "/usr/lib64/python3.5/site-packages/dbus/bus.py", line 122, in new
bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NotSupported: Unable to autolaunch a dbus-daemon without a $DISPLAY for X11

`

When i run razer-service nothing happends but when i cat log form /home/fr1sk/.razer-service/logs it prints this:

`

2016-12-28 01:01:39 | razer | INFO | Initialising Daemon (v1.1.3). Pid: 2021
2016-12-28 01:01:39 | razer.screensaver | INFO | Initialising DBus Screensaver Thread
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerAbyssus ---------------------------- (1532:0042)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidow2013 --------------------- (1532:011A)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidow2016 --------------------- (1532:0214)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidowChroma ------------------- (1532:0203)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidowChromaTournamentEdition -- (1532:0209)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidowXChroma ------------------ (1532:0216)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBlackWidowXChromaTournamentEdition - (1532:021A)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBladeProLate2016 ------------------- (1532:0210)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBladeQHD --------------------------- (1532:020F)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBladeStealth ----------------------- (1532:0205)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerBladeStealthLate2016 --------------- (1532:0220)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerDeathadderChroma ------------------- (1532:0043)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerFireFly ---------------------------- (1532:0C00)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerImperiator ------------------------- (1532:002F)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerMambaChromaTE ---------------------- (1532:0046)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerMambaChromaWired ------------------- (1532:0044)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerMambaChromaWireless ---------------- (1532:0045)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerOrnataChroma ----------------------- (1532:021E)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerOrochiWired ------------------------ (1532:0048)
2016-12-28 01:01:39 | razer | DEBUG | Loaded device specification: RazerTartarus --------------------------- (1532:0208)
2016-12-28 01:01:39 | razer | INFO | Adding razer.devices.getDevices method to DBus
2016-12-28 01:01:39 | razer | INFO | Adding razer.devices.enableTurnOffOnScreensaver method to DBus
2016-12-28 01:01:39 | razer | INFO | Adding razer.devices.disableTurnOffOnScreensaver method to DBus
2016-12-28 01:01:39 | razer | INFO | Adding razer.devices.syncEffects method to DBus
2016-12-28 01:01:39 | razer | INFO | Adding razer.daemon.version method to DBus
2016-12-28 01:01:39 | razer | INFO | Adding razer.daemon.stop method to DBus
2016-12-28 01:01:39 | razer | INFO | Serving DBus
2016-12-28 01:01:41 | razer.screensaver | INFO | Initialising DBus screensaver object
2016-12-28 01:01:41 | razer.screensaver | ERROR | Caught exception in run loop
Traceback (most recent call last):
File "/usr/lib/python3.5/site-packages/razer_daemon/misc/screensaver_thread.py", line 123, in run
screensaver_active = self._dbus_interface.GetActive()
File "/usr/lib64/python3.5/site-packages/dbus/proxies.py", line 70, in call
return self._proxy_method(*args, **keywords)
File "/usr/lib64/python3.5/site-packages/dbus/proxies.py", line 145, in call
**keywords)
File "/usr/lib64/python3.5/site-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NotSupported: This method is not implemented
2016-12-28 01:20:13 | razer | INFO | Stopping daemon on signal 15
2016-12-28 01:20:13 | razer.screensaver | INFO | Screensaver Thread finished
2016-12-28 01:21:04 | razer | INFO | Initialising Daemon (v1.1.3). Pid: 1996
2016-12-28 01:21:04 | razer.screensaver | INFO | Initialising DBus Screensaver Thread
2016-12-28 01:21:06 | razer.screensaver | INFO | Initialising DBus screensaver object
2016-12-28 01:21:06 | razer.screensaver | ERROR | Caught exception in run loop
Traceback (most recent call last):
File "/usr/lib/python3.5/site-packages/razer_daemon/misc/screensaver_thread.py", line 123, in run
screensaver_active = self._dbus_interface.GetActive()
File "/usr/lib64/python3.5/site-packages/dbus/proxies.py", line 70, in call
return self._proxy_method(*args, **keywords)
File "/usr/lib64/python3.5/site-packages/dbus/proxies.py", line 145, in call
**keywords)
File "/usr/lib64/python3.5/site-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NotSupported: This method is not implemented
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerAbyssus ---------------------------- (1532:0042)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidow2013 --------------------- (1532:011A)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidow2016 --------------------- (1532:0214)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidowChroma ------------------- (1532:0203)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidowChromaTournamentEdition -- (1532:0209)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidowXChroma ------------------ (1532:0216)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBlackWidowXChromaTournamentEdition - (1532:021A)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBladeProLate2016 ------------------- (1532:0210)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBladeQHD --------------------------- (1532:020F)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBladeStealth ----------------------- (1532:0205)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerBladeStealthLate2016 --------------- (1532:0220)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerDeathadderChroma ------------------- (1532:0043)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerFireFly ---------------------------- (1532:0C00)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerImperiator ------------------------- (1532:002F)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerMambaChromaTE ---------------------- (1532:0046)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerMambaChromaWired ------------------- (1532:0044)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerMambaChromaWireless ---------------- (1532:0045)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerOrnataChroma ----------------------- (1532:021E)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerOrochiWired ------------------------ (1532:0048)
2016-12-28 01:21:06 | razer | DEBUG | Loaded device specification: RazerTartarus --------------------------- (1532:0208)
2016-12-28 01:21:06 | razer | INFO | Adding razer.devices.getDevices method to DBus
2016-12-28 01:21:06 | razer | INFO | Adding razer.devices.enableTurnOffOnScreensaver method to DBus
2016-12-28 01:21:06 | razer | INFO | Adding razer.devices.disableTurnOffOnScreensaver method to DBus
2016-12-28 01:21:06 | razer | INFO | Adding razer.devices.syncEffects method to DBus
2016-12-28 01:21:06 | razer | INFO | Adding razer.daemon.version method to DBus
2016-12-28 01:21:06 | razer | INFO | Adding razer.daemon.stop method to DBus
2016-12-28 01:21:06 | razer | INFO | Serving DBus

`

BTW I am running fedora 25. Any suggestions?

Configuration applied to all devices (mouse, keyboard and headset)

Hello,
I'm using Debian 9.1, razer-daemon 1.1.16-0ubuntu1 and have installed razerCommander application from your repository (the .deb version 1.1.0).
I can select my 3 devices from razerCommander (Razer Mamba Tournament Edition, Razer Kraken 7.1v2 and Razer BlackWidow chroma v2), but when I apply the settings (color, light effect...) for one device, it set the same settings for all the others.
Also when i select my mouse, it shows the keyboard layout, as well as when i select my headset.
Is this because of an unsupported hardware version?
How can I help you to diagnose or repair this issue?

make a flatpak package

I've been trying to make a flatpak for razerCommander, so far I've stumbled upon these issues:

  • need a flatpak version of python-openrazer
  • don't know how to add python-dbus as a dependency

I'm working on it, but any help will be appreciated

NoReply error

I am getting this error:

ERROR:dbus.proxies:Introspect error on :1.624:/org/razer: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
DEBUG:dbus.proxies:Executing introspect queue due to error

razerCommander not detecting any devices

First of all I am on Antergos GNOME with a Deathadder Chroma, Blackwidow Chroma and Kraken Chroma.

I already tried multiple AUR helpers to install the razer drivers but none of them seem to work.

I tried pacaur and yaourt with yaourt having installed my current packages.

I will apologize in advance for the kind of bad formating.

Starting main.py results in:

[joker@Joker-GNOME razercommander]$ ./main.py 
Importing device logic, waiting for daemon
Device logic loaded, deamon is alive
no devices
no devices

Running "lsusb | grep '1532:'" to detect devices results in:

[joker@Joker-GNOME ~]$ lsusb | grep '1532:'
Bus 003 Device 004: ID 1532:0203 Razer USA, Ltd 
Bus 003 Device 006: ID 1532:0043 Razer USA, Ltd 
Bus 003 Device 005: ID 1532:0504 Razer USA, Ltd 

Razer Mount Log:

Aug 08 02:04:06 Joker-GNOME razer_mount[335]: Driver razerkraken
Aug 08 02:04:06 Joker-GNOME razer_mount[337]: Driver razermouse
Aug 08 02:04:06 Joker-GNOME razer_mount[339]: Driver razermouse
Aug 08 02:04:06 Joker-GNOME razer_mount[336]: Driver razermouse
Aug 08 02:04:06 Joker-GNOME systemd-udevd[259]: Process 'razer_mount razermouse 0003:1532:0043.0003' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[350]: Device_ID 0003:1532:0043.0001
Aug 08 02:04:06 Joker-GNOME systemd-udevd[252]: Process 'razer_mount razermouse 0003:1532:0043.0001' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[351]: Device_ID 0003:1532:0043.0003
Aug 08 02:04:06 Joker-GNOME systemd-udevd[241]: Process 'razer_mount razermouse 0003:1532:0043.0002' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[349]: Device_ID 0003:1532:0043.0002
Aug 08 02:04:06 Joker-GNOME systemd-udevd[254]: Process 'razer_mount razerkraken 0003:1532:0504.0007' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[352]: Device_ID 0003:1532:0504.0007
Aug 08 02:04:06 Joker-GNOME systemd-udevd[252]: Process 'razer_mount razerkbd 0003:1532:0203.0004' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[354]: Modprobing razermouse
Aug 08 02:04:06 Joker-GNOME systemd-udevd[241]: Process 'razer_mount razerkbd 0003:1532:0203.0005' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[353]: Modprobing razermouse
Aug 08 02:04:06 Joker-GNOME systemd-udevd[241]: Process 'razer_mount razerkbd 0003:1532:0203.0006' failed with exit code 1.
Aug 08 02:04:06 Joker-GNOME razer_mount[355]: Modprobing razermouse
Aug 08 02:04:06 Joker-GNOME razer_mount[356]: Modprobing razerkraken
Aug 08 02:04:06 Joker-GNOME razer_mount[362]: Driver razerkbd
Aug 08 02:04:06 Joker-GNOME razer_mount[363]: Device_ID 0003:1532:0203.0004
Aug 08 02:04:06 Joker-GNOME razer_mount[364]: Modprobing razerkbd
Aug 08 02:04:06 Joker-GNOME razer_mount[367]: Driver razerkbd
Aug 08 02:04:06 Joker-GNOME razer_mount[368]: Device_ID 0003:1532:0203.0005
Aug 08 02:04:06 Joker-GNOME razer_mount[369]: Modprobing razerkbd
Aug 08 02:04:06 Joker-GNOME razer_mount[372]: Driver razerkbd
Aug 08 02:04:06 Joker-GNOME razer_mount[373]: Device_ID 0003:1532:0203.0006
Aug 08 02:04:06 Joker-GNOME razer_mount[374]: Modprobing razerkbd

Opening the Openrazer log shows this:

2017-08-08 02:05:06 | razer                          | INFO     | Initialising Daemon (v1.1.15). Pid: 1575
2017-08-08 02:05:06 | razer.screensaver              | INFO     | Initialising DBus Screensaver Monitor
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerAbyssus ---------------------------- (1532:0042)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerAnansi ----------------------------- (1532:010F)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2012 --------------------- (1532:010D)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2013 --------------------- (1532:011A)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidow2016 --------------------- (1532:0214)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChroma ------------------- (1532:0203)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaOverwatch ---------- (1532:0211)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaTournamentEdition -- (1532:0209)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowChromaV2 ----------------- (1532:0221)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowClassic ------------------ (1532:011B)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowClassicAlternate --------- (1532:010E)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXChroma ------------------ (1532:0216)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXChromaTournamentEdition - (1532:021A)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBlackWidowXUltimate ---------------- (1532:0217)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBladeLate2016 ---------------------- (1532:0224)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBladeProLate2016 ------------------- (1532:0210)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBladeQHD --------------------------- (1532:020F)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBladeStealth ----------------------- (1532:0205)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerBladeStealthLate2016 --------------- (1532:0220)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerChromaMugHolder -------------------- (1532:0F07)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerCore ------------------------------- (1532:0215)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerDeathStalkerChroma ----------------- (1532:0204)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerDeathStalkerExpert ----------------- (1532:0202)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerDeathadderChroma ------------------- (1532:0043)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerDeathadderElite -------------------- (1532:005C)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerDiamondbackChroma ------------------ (1532:004C)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerFireFly ---------------------------- (1532:0C00)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerImperator -------------------------- (1532:002F)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerKraken ----------------------------- (1532:0504)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerKrakenClassic ---------------------- (1532:0501)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerKrakenV2 --------------------------- (1532:0510)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerMamba2012Wired --------------------- (1532:0024)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerMamba2012Wireless ------------------ (1532:0025)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaTE ---------------------- (1532:0046)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaWired ------------------- (1532:0044)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerMambaChromaWireless ---------------- (1532:0045)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerNaga2014 --------------------------- (1532:0040)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerNagaHex ---------------------------- (1532:0041)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerNagaHexRed ------------------------- (1532:0036)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerNagaHexV2 -------------------------- (1532:0050)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerNostromo --------------------------- (1532:0111)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrbweaver -------------------------- (1532:0113)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrbweaverChroma -------------------- (1532:0207)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrnata ----------------------------- (1532:021F)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrnataChroma ----------------------- (1532:021E)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrochi2011 ------------------------- (1532:0013)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrochi2013 ------------------------- (1532:0039)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOrochiWired ------------------------ (1532:0048)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerOuroboros -------------------------- (1532:0032)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerTaipan ----------------------------- (1532:0034)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerTartarus --------------------------- (1532:0201)
2017-08-08 02:05:06 | razer                          | DEBUG    | Loaded device specification: RazerTartarusChroma --------------------- (1532:0208)
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.devices.getDevices method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.daemon.supportedDevices method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.devices.enableTurnOffOnScreensaver method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.devices.syncEffects method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.devices.syncEffects method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.devices.syncEffects method to DBus
2017-08-08 02:05:06 | razer                          | INFO     | Adding razer.daemon.version method to DBus

'no devices connected' when launching main.py

Hi, I've installed the razer keyboard driver from: ppa:terrz/razerutils at https://github.com/terrycain/razer-drivers and the driver appears to load (using lsmod).

But when I launch main.py (with kbd plugged in):
~/razercommander$ ./main.py
no devices
no devices

Clicked 'Apply' button and get:

Traceback (most recent call last):
File "./main.py", line 547, in on_universalApplyButton_clicked
myrazerkb.setBrightness(int(newVal))
AttributeError: 'NoneType' object has no attribute 'setBrightness'

$ lsmod|grep razer
razerkbd 32768 0
hid 118784 4 i2c_hid,hid_generic,razerkbd,usbhid

$ ps -ef |grep razer
guy+ 2016 1916 0 22:25 ? 00:00:01 razerdaemon

$ modinfo razerkbd
filename: /lib/modules/4.4.0-38-generic/updates/dkms/razerkbd.ko
license: GPL v2
description: Razer Keyboard Device Driver
author: Terry Cain [email protected]
srcversion: E3B82EF2D6590930D007CA6
alias: hid:b0003g_v00001532p00000209
alias: hid:b0003g_v00001532p00000216
alias: hid:b0003g_v00001532p00000203
alias: hid:b0003g_v00001532p00000208
alias: hid:b0003g_v00001532p00000205
alias: hid:b0003g_v00001532p00000214
alias: hid:b0003g_v00001532p0000011A
alias: hid:b0003g_v00001532p0000010D
alias: hid:b0003g*v00001532p0000011B
depends: hid
vermagic: 4.4.0-38-generic SMP mod_unload modversions

$ grep razer /lib/udev/rules.d/99-razer.rules
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="011b", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="010d", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="011a", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0203", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0205", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0208", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0209", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0214", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0216", ENV{is_razer_kbd}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0042", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0044", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0045", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0046", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0048", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="002f", ENV{is_razer_mouse}="yes"
KERNEL=="????:????:????.????", DRIVERS=="usb", SUBSYSTEMS=="usb", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0c00", ENV{is_razer_firefly}="yes"
SUBSYSTEM=="hid", DRIVER=="hid-generic", ENV{is_razer_kbd}=="yes", RUN+="razer_mount razerkbd $kernel"
SUBSYSTEM=="hid", DRIVER=="hid-generic", ENV{is_razer_mouse}=="yes", ATTRS{bInterfaceNumber}=="00", RUN+="razer_mount razermouse $kernel"
SUBSYSTEM=="hid", DRIVER=="hid-generic", ENV{is_razer_firefly}=="yes", ATTRS{bInterfaceNumber}=="00", RUN+="razer_mount razerfirefly $kernel"

$ grep razer /var/log/kern.log
Sep 27 21:54:54 box kernel: [ 8.441699] razerkbd: module verification failed: signature and/or required key missing - tainting kernel
Sep 27 21:54:54 box kernel: [ 9.443990] razerkbd 0003:1532:0216.0002: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input1
Sep 27 21:54:54 box kernel: [ 9.444047] razerkbd 0003:1532:0216.0003: input,hidraw1: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input2
Sep 27 21:54:54 box kernel: [ 9.500108] razerkbd 0003:1532:0216.0001: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input0
Sep 27 21:57:06 box kernel: [ 145.185487] razerkbd 0003:1532:0216.0009: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input0
Sep 27 21:57:06 box kernel: [ 145.241389] razerkbd 0003:1532:0216.000A: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input1
Sep 27 21:57:06 box kernel: [ 145.297383] razerkbd 0003:1532:0216.000B: input,hidraw2: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input2
Sep 27 22:11:16 box kernel: [ 9.174666] razerkbd: module verification failed: signature and/or required key missing - tainting kernel
Sep 27 22:11:16 box kernel: [ 9.527264] razerkbd 0003:1532:0216.0003: input,hidraw0: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input2
Sep 27 22:11:16 box kernel: [ 9.583236] razerkbd 0003:1532:0216.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input1
Sep 27 22:11:16 box kernel: [ 9.639310] razerkbd 0003:1532:0216.0001: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input0
Sep 27 22:26:59 box kernel: [ 961.839755] razerkbd 0003:1532:0216.000B: input,hidraw0: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input2
Sep 27 22:26:59 box kernel: [ 961.955585] razerkbd 0003:1532:0216.000A: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input1
Sep 27 22:26:59 box kernel: [ 962.011676] razerkbd 0003:1532:0216.0009: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input0
Sep 28 09:07:19 box kernel: [ 8.823732] razerkbd: module verification failed: signature and/or required key missing - tainting kernel
Sep 28 09:07:19 box kernel: [ 9.943180] razerkbd 0003:1532:0216.0003: input,hidraw0: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input2
Sep 28 09:07:19 box kernel: [ 9.998891] razerkbd 0003:1532:0216.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input1
Sep 28 09:07:19 box kernel: [ 10.058973] razerkbd 0003:1532:0216.0001: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:14.0-1/input0
Sep 28 20:15:21 box kernel: [ 8.799924] razerkbd: module verification failed: signature and/or required key missing - tainting kernel
Sep 28 20:15:21 box kernel: [ 9.504786] razerkbd 0003:1532:0216.0003: input,hidraw0: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input2
Sep 28 20:15:21 box kernel: [ 9.560471] razerkbd 0003:1532:0216.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input1
Sep 28 20:15:21 box kernel: [ 9.620575] razerkbd 0003:1532:0216.0001: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input0
Sep 28 20:23:14 box kernel: [ 494.029010] razerkbd 0003:1532:0216.0004: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input0
Sep 28 20:23:14 box kernel: [ 494.084825] razerkbd 0003:1532:0216.0005: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input1
Sep 28 20:23:14 box kernel: [ 494.140786] razerkbd 0003:1532:0216.0006: input,hidraw2: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input2
Sep 28 22:24:54 box kernel: [ 9.215919] razerkbd: module verification failed: signature and/or required key missing - tainting kernel
Sep 28 22:24:54 box kernel: [ 9.907625] razerkbd 0003:1532:0216.0003: input,hidraw0: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input2
Sep 28 22:24:54 box kernel: [ 9.963565] razerkbd 0003:1532:0216.0002: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input1
Sep 28 22:24:54 box kernel: [ 10.019730] razerkbd 0003:1532:0216.0001: input,hidraw2: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input0
Sep 28 22:28:32 box kernel: [ 239.319819] razerkbd 0003:1532:0216.0008: input,hidraw0: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input0
Sep 28 22:28:32 box kernel: [ 239.375702] razerkbd 0003:1532:0216.0009: input,hidraw1: USB HID v1.11 Keyboard [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input1
Sep 28 22:28:33 box kernel: [ 239.432095] razerkbd 0003:1532:0216.000A: input,hidraw2: USB HID v1.11 Mouse [Razer Razer BlackWidow X Chroma] on usb-0000:00:1a.0-1.2/input2

razercommandernotwork

Also tried rebooting, re-plugging, reinstalling ppa, etc.

Any suggestions for how to get this working? Thanks!

Error when trying to use custom mode on Razer Blade 2016

Traceback (most recent call last):
File "/usr/bin/razercommander", line 469, in on_universalApplyButton_clicked
enableFXwSettings(currentFX)
File "/usr/bin/razercommander", line 359, in enableFXwSettings
myrazerkb.applyCustom(rkb)
File "/usr/share/razercommander/device.py", line 230, in applyCustom
rindex, cindex, self._make_color_tuple(key.color)
File "/usr/lib/python3.6/site-packages/razer/client/fx.py", line 997, in set
self.setitem((y, x), rgb)
File "/usr/lib/python3.6/site-packages/razer/client/fx.py", line 958, in setitem
assert 0 <= key[1] < self._cols, "Column out of bounds"
AssertionError: Column out of bounds

Logo wont change colors, deathadder chroma, arch

For some reason the color wont change for the logo on Arch. Im using a deathadder chroma. the color works on the scroll wheel but the logo doesnt. The effects work for both the scroll wheel and the logo. The only time the logo shows another color is during the spectrum cycle effect, it will start red and fade into to black then fade to blue, then blue will fade into red again and the cycle repeats.

Razer DeathAdder Elite Support?

I have a Razer DeathAdder Elite, which is recognized (at least, it appears in the device selector correctly). However, no lighting effects are listed besides Custom, and Brightness does nothing.

I have no idea what information might be necessary/useful to get the mouse lighting effects working properly, but I'm happy to supply any information that may be needed.

Specifically, the errors are:

WARNING:root:Brightness is not available
(0, 0, 0)
(0, 0, 0)
(0, 0, 0)
Traceback (most recent call last):
  File "/usr/bin/razercommander", line 461, in on_universalApplyButton_clicked
    enableFXwSettings(currentFX)
  File "/usr/bin/razercommander", line 351, in enableFXwSettings
    myrazerkb.applyCustom(rkb)
  File "/usr/share/razercommander/device.py", line 230, in applyCustom
    rindex, cindex, self._make_color_tuple(key.color)
  File "/usr/lib/python3.6/site-packages/razer/client/fx.py", line 870, in set
    self.__setitem__((y, x), rgb)
  File "/usr/lib/python3.6/site-packages/razer/client/fx.py", line 831, in __setitem__
    assert 0 <= key[1] < self._cols, "Column out of bounds"
AssertionError: Column out of bounds

ValueError: Key 10 is not in razer.keyboard.KEY_MAPPING

I have 5 razer devices, 4 of which are supported by razer-drivers, which I have installed as described here: https://terrycain.github.io/razer-drivers/#ubuntu

lsusb | grep '1532:'
Bus 005 Device 003: ID 1532:0208 Razer USA, Ltd
Bus 005 Device 002: ID 1532:0504 Razer USA, Ltd
Bus 003 Device 003: ID 1532:003e Razer USA, Ltd
Bus 003 Device 002: ID 1532:0203 Razer USA, Ltd
Bus 003 Device 007: ID 1532:0c00 Razer USA, Ltd

After rebooting from the razer-drivers installation, I cloned razerCommander and upon running main.py get the following error:

./main.py
Importing device logic, waiting for daemon
Device logic loaded, deamon is alive
Traceback (most recent call last):
File "./main.py", line 82, in
refreshDevices()
File "./main.py", line 78, in refreshDevices
initDevices()
File "./main.py", line 44, in initDevices
newdev = device.Device(dev)
File "/home/asdf/Projects/razerCommander/device.py", line 30, in init
self.device)
File "/home/asdf/Projects/razerCommander/macro_logic.py", line 73, in make_device
n_device = MacroDevice(mk_arr, device_uid, device)
File "/home/asdf/Projects/razerCommander/macro_logic.py", line 14, in init
self.set_all_current_macros()
File "/home/asdf/Projects/razerCommander/macro_logic.py", line 32, in set_all_current_macros
key.set_current_macro(self.device)
File "/home/asdf/Projects/razerCommander/macro_logic.py", line 50, in set_current_macro
self._set_macro(device, self.macro)
File "/home/asdf/Projects/razerCommander/macro_logic.py", line 43, in _set_macro
device.macro.del_macro(self.key)
File "/usr/lib/python3/dist-packages/razer/client/macro.py", line 66, in del_macro
raise ValueError("Key {0} is not in razer.keyboard.KEY_MAPPING".format(bind_key))
ValueError: Key 10 is not in razer.keyboard.KEY_MAPPING

Error thrown if no Razor driver is installed

The likelihood this will happen to most users is rare but if you don't have the Razer driver installed it throws an error:

$ ./main.py 
Traceback (most recent call last):
  File "./main.py", line 56, in <module>
    initDevices()
  File "./main.py", line 29, in initDevices
    cont=os.listdir(device.Device.DRIVER_PATH)
FileNotFoundError: [Errno 2] No such file or directory: '/sys/bus/hid/drivers/razerkbd/'

Might be better to warn the user with a proper message, "No Razor driver installed, please install the driver before running this software".

Since I don't own a Razer product it's kind of illogical to run the program but might be nice for other users that do have Razor products and for whatever reason don't have the driver installed.

AttributeError: model 'gi'

I installed version 1.2.0 on Linux Mint. When I start RazerCommander from the menu, nothing happens.

When I start it from the command line, I get the following error message:

Traceback (most recent call last):
  File "/usr/bin/razercommander", line 44, in <module>
    gi.require_versions({
AttributeError: module 'gi' has no attribute 'require_versions'

dbus Error

Hi, i tried to install razerCommander for maybe 10 times but everytime when I try to start it in the terminal with razercommander I get this :
ERROR:dbus.proxies:Introspect error on :1.3:/org/razer: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from message bus without replying DEBUG:dbus.proxies:Executing introspect queue due to error Traceback (most recent call last): File "/usr/share/razercommander/main.py", line 7, in <module> import device File "/usr/share/razercommander/device.py", line 11, in <module> device_manager = rclient.DeviceManager() File "/usr/lib/python3/dist-packages/razer/client/__init__.py", line 31, in __init__ self._device_serials = self._dbus_devices.getDevices() File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 70, in __call__ return self._proxy_method(*args, **keywords) File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 145, in __call__ **keywords) File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking message, timeout) dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name :1.3 was not provided by any .service files
is there any solution to solve this?

FriendlyFXlist was removed.

I'm just checking why the friendlyFXlist is missing. In the most recent commit it's still referenced at line 201

It looks like you removed it for disabling mouse support, but it negatively affects other devices. In particular for me the Anansi.

Error when trying to use razerCommander

Installed from the AUR. The razer-driver was installed manually and tested.

kuro@Horus:/sys/bus/hid/drivers/razerkbd|
⇒  pacaur -Qi razer-driver-dkms 
Name            : razer-driver-dkms
Version         : 1.0.0-2
Description     : An entirely open source driver for managing Razer peripherals on Linux. (DKMS)
Architecture    : x86_64
URL             : https://github.com/terrycain/razer_drivers
Licenses        : GPLv3
Groups          : None
Provides        : None
Depends On      : dkms  udev
Optional Deps   : None
Required By     : razer-daemon
Optional For    : None
Conflicts With  : razer-driver
Replaces        : None
Installed Size  : 187.00 KiB
Packager        : Unknown Packager
Build Date      : Thu 25 Aug 2016 04:40:18 PM CEST
Install Date    : Thu 25 Aug 2016 04:41:04 PM CEST
Install Reason  : Explicitly installed
Install Script  : Yes
Validated By    : None

kuro@Horus:/sys/bus/hid/drivers/razerkbd|
⇒  pacaur -Qi razer-daemon     
Name            : razer-daemon
Version         : 1.0.0-2
Description     : A daemon for controlling razer-driver
Architecture    : any
URL             : https://github.com/terrycain/razer_drivers
Licenses        : GPLv3
Groups          : None
Provides        : None
Depends On      : razer-driver-dkms  python  python-dbus  python-gobject  python-setproctitle  xautomation  xdotool  libdbus
Optional Deps   : python-razer: python library for controlling the daemon [installed]
Required By     : python-razer
Optional For    : None
Conflicts With  : None
Replaces        : None
Installed Size  : 188.00 KiB
Packager        : Unknown Packager
Build Date      : Thu 25 Aug 2016 04:41:53 PM CEST
Install Date    : Thu 25 Aug 2016 04:42:01 PM CEST
Install Reason  : Explicitly installed
Install Script  : Yes
Validated By    : None

kuro@Horus:/sys/bus/hid/drivers/razerkbd|
⇒  pacaur -Qi razercommander-git 
Name            : razercommander-git
Version         : 0.4-4
Description     : A simple GTK control center for managing razer peripherals on Linux. Make sure to install https://github.com/terrycain/razer_drivers first.
Architecture    : x86_64
URL             : https://github.com/gabmus/razercommander
Licenses        : GPLv3
Groups          : None
Provides        : None
Depends On      : gtk3>=3.20,python
Optional Deps   : None
Required By     : None
Optional For    : python-razer
Conflicts With  : None
Replaces        : None
Installed Size  : 951.00 KiB
Packager        : Unknown Packager
Build Date      : Thu 25 Aug 2016 04:54:16 PM CEST
Install Date    : Thu 25 Aug 2016 04:54:16 PM CEST
Install Reason  : Explicitly installed
Install Script  : No
Validated By    : None

This is the output of both razercommander and python /route/to/main.py:

** (main.py:25443): WARNING **: Couldn't register with accessibility bus: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Traceback (most recent call last):
  File "/usr/lib/python3.5/site-packages/dbus/bus.py", line 175, in activate_name_owner
    return self.get_name_owner(bus_name)
  File "/usr/lib/python3.5/site-packages/dbus/bus.py", line 361, in get_name_owner
    's', (bus_name,), **keywords)
  File "/usr/lib/python3.5/site-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.razer': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/lib/python3.5/site-packages/razer/client/__init__.py", line 15, in __init__
    self._dbus = session_bus.get_object("org.razer", "/org/razer")
  File "/usr/lib/python3.5/site-packages/dbus/bus.py", line 241, in get_object
    follow_name_owner_changes=follow_name_owner_changes)
  File "/usr/lib/python3.5/site-packages/dbus/proxies.py", line 248, in __init__
    self._named_service = conn.activate_name_owner(bus_name)
  File "/usr/lib/python3.5/site-packages/dbus/bus.py", line 180, in activate_name_owner
    self.start_service_by_name(bus_name)
  File "/usr/lib/python3.5/site-packages/dbus/bus.py", line 278, in start_service_by_name
    'su', (bus_name, flags)))
  File "/usr/lib/python3.5/site-packages/dbus/connection.py", line 651, in call_blocking
    message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.razer was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/share/razercommander/main.py", line 7, in <module>
    import device
  File "/usr/share/razercommander/device.py", line 10, in <module>
    device_manager = rclient.DeviceManager()
  File "/usr/lib/python3.5/site-packages/razer/client/__init__.py", line 17, in __init__
    raise DaemonNotFound("Could not connect to daemon")
razer.client.DaemonNotFound: Could not connect to daemon

Cannot Create Keyboard Macro

This is when trying to create a keyboard macro on my Blackwidow Chroma.

Traceback (most recent call last):
File "/home/xxxxx/Projects/razerCommander/razercommander/main.py", line 882, in on_macroShortcutDialogOk_clicked
if set_shortcut_stack.get_visible_child_name() == 'Keystroke':
NameError: name 'set_shortcut_stack' is not defined

Error

I'm on the latest Ubuntu, when i run razerCommander in my terminal here's what it says
`root@secret:~# razercommander
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/dbus/bus.py", line 175, in activate_name_owner
return self.get_name_owner(bus_name)
File "/usr/lib/python3/dist-packages/dbus/bus.py", line 361, in get_name_owner
's', (bus_name,), **keywords)
File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NameHasNoOwner: Could not get owner of name 'org.razer': no such name

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/razer/client/init.py", line 15, in init
self._dbus = session_bus.get_object("org.razer", "/org/razer")
File "/usr/lib/python3/dist-packages/dbus/bus.py", line 241, in get_object
follow_name_owner_changes=follow_name_owner_changes)
File "/usr/lib/python3/dist-packages/dbus/proxies.py", line 248, in init
self._named_service = conn.activate_name_owner(bus_name)
File "/usr/lib/python3/dist-packages/dbus/bus.py", line 180, in activate_name_owner
self.start_service_by_name(bus_name)
File "/usr/lib/python3/dist-packages/dbus/bus.py", line 278, in start_service_by_name
'su', (bus_name, flags)))
File "/usr/lib/python3/dist-packages/dbus/connection.py", line 651, in call_blocking
message, timeout)
dbus.exceptions.DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.razer was not provided by any .service files

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "/usr/share/razercommander/main.py", line 7, in
import device
File "/usr/share/razercommander/device.py", line 10, in
device_manager = rclient.DeviceManager()
File "/usr/lib/python3/dist-packages/razer/client/init.py", line 17, in init
raise DaemonNotFound("Could not connect to daemon")
razer.client.DaemonNotFound: Could not connect to daemon
`

Orbweaver support

Hi!

Tested the packages linked in openrazer/openrazer#22 - which make the Orbweaver visible to Polychromatic - but razerCommander does not seem to support it.

Hitting refresh does not make it visible.

Should this work?

Thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.