mbusb / multibootusb

Create multiboot live Linux on a USB disk...
http://multibootusb.org/
GNU General Public License v2.0
1.38k stars 199 forks source link

crash on start #164

Closed PowaBanga closed 7 years ago

PowaBanga commented 7 years ago

Hi all I am now on open86_64.

The application ask to my password but don't start by menu.

I tryed to launch it in a terminal:

multibootusb
Traceback (most recent call last):
  File "/usr/local/bin/multibootusb", line 84, in <module>
    running_from()
  File "/usr/local/bin/multibootusb", line 46, in running_from
    gen.log('Running multibootusb version ' + gen.mbusb_version() + ' from installed system...')
  File "/usr/local/lib/python3.4/dist-packages/scripts/gen.py", line 44, in log
    level=logging.DEBUG)
  File "/usr/lib64/python3.6/logging/__init__.py", line 1781, in basicConfig
    h = FileHandler(filename, mode)
  File "/usr/lib64/python3.6/logging/__init__.py", line 1030, in __init__
    StreamHandler.__init__(self, self._open())
  File "/usr/lib64/python3.6/logging/__init__.py", line 1059, in _open
    return open(self.baseFilename, self.mode, encoding=self.encoding)
PermissionError: [Errno 13] Permission denied: '/tmp/multibootusb.log'

so, I try to launch it with sudo:

sudo multibootusb
[sudo] Mot de passe de root : 
sudo: multibootusb : commande introuvable (command not found)

So I enter in my terminal in root with sudo -s

multibootusb
Running multibootusb version 8.7.1 from installed system...
Traceback (most recent call last):
  File "/usr/local/bin/multibootusb", line 147, in <module>
    start_gui()
  File "/usr/local/bin/multibootusb", line 73, in start_ogui
    from scripts import mbusb_gui
  File "/usr/local/lib/python3.4/dist-packages/scripts/mbusb_gui.py", line 13, in <module>
    from PyQt5 import QtCore, QtGui, QtWidgets
ModuleNotFoundError: No module named 'sip'

I tryed to install dependencie python3-pyqt5 parted mtools python3-dbus, and by asking on irc chan, i finaly install python3-dbus-python at the place of python3-dbus, and python-qt5-utils at the place of python3-pyqt5.

But there is no way, this change nothing in my errors :(

mbusb commented 7 years ago

What is this open86_64 distro? I never heard.

There are multiple issue out there.

PermissionError: [Errno 13] Permission denied: '/tmp/multibootusb.log' It says that you need to access the file with enough permission. You need to start multibootusb gui using multibootusb-pkexec from the terminal. It will ask for the password later.

the bin path may not be in sudo environment. Try executing path to multibootusb with sudo like this sudo /usr/bin/multibootusb. Anyway, if you use previous method, then this method is not required.

ModuleNotFoundError: No module named 'sip' your pyqt5 install is broken. Google says that you need to install python-sip as well.

mbusb commented 7 years ago

I will update the user guide accordingly (running from terminal)..

mbusb commented 7 years ago

Looks like you are using openSUSE Tumbleweed. I am really confused that why will a disto have different package name for different versions. The last time I checked was on 14.2 and it worked very well.

It is really pain in the *** to maintain packages (especially for Linux) than writing actual code for the project.

PowaBanga commented 7 years ago
 sudo apt-get install python-sip
[sudo] Mot de passe de root : 
Chargement des données du dépôt...
Lecture des paquets installés...
'python-sip' n'a pas été trouvé parmi les noms de paquets. Essai parmi les capacités. (Was not found among package names. Testing among capacities) 
'python2-sip' fournissant 'python-sip' est déjà installé. (already installed)
Résolution des dépendances des paquets...

L'application suivante va être SUPPRIMÉE :
  Desktop

Aucun espace supplémentaire ne sera utilisé ou libéré après l'opération.
Rien à faire. (nothing to do)
PowaBanga@karkatouf:/home/PowaBanga/DDaynormandyFPS> multibootusb-pkexec
Running multibootusb version 8.7.1 from installed system...
Traceback (most recent call last):
  File "/usr/local/bin/multibootusb", line 147, in <module>
    start_gui()
  File "/usr/local/bin/multibootusb", line 73, in start_gui
    from scripts import mbusb_gui
  File "/usr/local/lib/python3.4/dist-packages/scripts/mbusb_gui.py", line 13, in <module>
    from PyQt5 import QtCore, QtGui, QtWidgets
ModuleNotFoundError: No module named 'sip'

hmm 😞

mbusb commented 7 years ago

What happens whe you run multibootusb using multibootusb-pkexec?

PowaBanga commented 7 years ago

It was wrote in my last message, sorry, it was not good to look. I edit it.

mbusb commented 7 years ago

ModuleNotFoundError: No module named 'sip'

I am pretty sure that this is related to your pyqt5 install. Are you able to start any other application which uses pyqt5 as dependency?

PowaBanga commented 7 years ago

how can i find what are the application who use pyqt5 on my system ?

I finaly install this but it change nothing...

Are you on a irc channel ?

mbusb commented 7 years ago

Did you try this package?

PowaBanga commented 7 years ago

good, so it is python3-sip that i need.

But now I have a new error:

multibootusb-pkexec
Running multibootusb version 8.7.1 from installed system...
Starting multibootusb GUI...
Extracting syslinux to multibootusb directory...
Host OS is 64 bit...
Extracting syslinux 64 bit...
Extracting syslinux modules to multibootusb directory...
Using pyudev for detecting USB drives...
        /dev/sdb
Selected device /dev/sdb
fdisk: impossible d'ouvrir /dev/sdb: Aucun médium trouvé
Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 410, in details
    details = details_udev(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 225, in details_udev
    fdisk_cmd_out = subprocess.check_output('fdisk -l ' + usb_disk_part, shell=True)
  File "/usr/lib64/python3.6/subprocess.py", line 336, in check_output
    **kwargs).stdout
  File "/usr/lib64/python3.6/subprocess.py", line 418, in run
    output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'fdisk -l /dev/sdb' returned non-zero exit status 1.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/mbusb_gui.py", line 147, in onComboChange
    config.usb_details = usb.details(config.usb_disk)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 412, in details
    details = details_udisks2(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 284, in details_udisks2
    mount_point = bd.Get('org.freedesktop.UDisks2.Filesystem', 'MountPoints', dbus_interface='org.freedesktop.DBus.Properties')
  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.InvalidArgs: No such interface 'org.freedesktop.UDisks2.Filesystem'
/usr/local/bin/multibootusb-pkexec : ligne 22 : 20639 Abandon                 (core dumped)pkexec --disable-internal-agent "/usr/local/bin/multibootusb" "$@"
PowaBanga@karkatouf:~> multibootusb-pkexec
Running multibootusb version 8.7.1 from installed system...
Starting multibootusb GUI...
Cleaning old multibootusb directory...
Syslinux exist in multibootusb directory...
Using pyudev for detecting USB drives...
        /dev/sdb
Selected device /dev/sdb
fdisk: impossible d'ouvrir /dev/sdb: Aucun médium trouvé
Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 410, in details
    details = details_udev(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 225, in details_udev
    fdisk_cmd_out = subprocess.check_output('fdisk -l ' + usb_disk_part, shell=True)
  File "/usr/lib64/python3.6/subprocess.py", line 336, in check_output
    **kwargs).stdout
  File "/usr/lib64/python3.6/subprocess.py", line 418, in run
    output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'fdisk -l /dev/sdb' returned non-zero exit status 1.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/mbusb_gui.py", line 147, in onComboChange
    config.usb_details = usb.details(config.usb_disk)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 412, in details
    details = details_udisks2(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 284, in details_udisks2
    mount_point = bd.Get('org.freedesktop.UDisks2.Filesystem', 'MountPoints', dbus_interface='org.freedesktop.DBus.Properties')
  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.InvalidArgs: No such interface 'org.freedesktop.UDisks2.Filesystem'
/usr/local/bin/multibootusb-pkexec : ligne 22 : 20714 Abandon                 (core dumped)pkexec --disable-internal-agent "/usr/local/bin/multibootusb" "$@"
PowaBanga@karkatouf:~> sudo -s
[sudo] Mot de passe de root : 
karkatouf:/home/PowaBanga # multibootusb
Running multibootusb version 8.7.1 from installed system...
Starting multibootusb GUI...
QXcbConnection: Could not connect to display 
Aborted (core dumped)
mbusb commented 7 years ago

What does fdisk: impossible d'ouvrir /dev/sdb: Aucun médium trouvé mean?

mbusb commented 7 years ago

You can try start multibootusb using gksu or gksudo or kdesu instad of sudo command.

PowaBanga commented 7 years ago

impossible d'ouvrir /dev/sdb: Aucun médium trouvé = impossible to open /dev/sdb: No medium found sorry

the application sympli don't start, without answer in terminal:


PowaBanga@karkatouf:~> kdesu multibootusb
PowaBanga@karkatouf:~> kdesu multibootusb-pkexec
mbusb commented 7 years ago

Is your system detected /dev/sdb? Are you able to see files from USB disk?

PowaBanga commented 7 years ago

hmm apparently not, I do not know the command lines, so A take a screenshot with this application...

and I can open my usb key without problems.

I think that I just do not have sdb...

mbusb commented 7 years ago

I think this is the issue. I am not sure why did pyudev detected your usb disk as /dev/sdb. What is the terminal output of sudo blkid? Can you see /dev/sdb in the output? or what is the output of sudo fdisk -l?

PowaBanga commented 7 years ago

See by yourself ^^

PowaBanga@karkatouf:~>  pyudev
If 'pyudev' is not a typo you can use command-not-found to lookup the package that contains it, like this:
    cnf pyudev
PowaBanga@karkatouf:~> sudo blkid
[sudo] Mot de passe de root : 
/dev/sda1: UUID="0e34bff8-2abb-4e51-b13c-d42bbe79928b" TYPE="swap" PARTUUID="9c829d14-01"
/dev/sda3: UUID="38856569-281a-4fa2-98f8-223cb269ab72" TYPE="xfs" PARTUUID="9c829d14-03"
/dev/sda5: UUID="94f0f10c-54fa-4654-9ac9-b73e0a18df21" UUID_SUB="844ebc77-59dc-4e8f-b0d8-180c66be7beb" TYPE="btrfs" PARTUUID="9c829d14-05"
/dev/sdc1: UUID="00AD-2126" TYPE="vfat" PARTUUID="739f5885-01"
PowaBanga@karkatouf:~> sudo fdisk -l
Disque /dev/sda : 298,1 GiB, 320072933376 octets, 625142448 secteurs
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x9c829d14

Périphérique Amorçage    Début       Fin  Secteurs Taille Id Type
/dev/sda1                 2048   4208639   4206592     2G 82 partition d'échange Linux / Solaris
/dev/sda2    *         4208640  88100863  83892224    40G  f Étendue W95 (LBA)
/dev/sda3             88100864 625141759 537040896 256,1G 83 Linux
/dev/sda5              4210688  88084479  83873792    40G 83 Linux

Les entrées de la table de partitions ne sont pas dans l'ordre du disque.

Disque /dev/sdc : 28,9 GiB, 31060525056 octets, 60665088 secteurs
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x739f5885

Périphérique Amorçage Début      Fin Secteurs Taille Id Type
/dev/sdc1              2048 60663807 60661760  28,9G  c W95 FAT32 (LBA)
PowaBanga@karkatouf:~> 

I am not sure to understand if you want that i laucnh pyudev or not ... ?

mbusb commented 7 years ago

Ha ha. pyudev is not a package. It is a python library to retrieve usb information and multibootusb is depends on this library. I can conform that this is the issue. Can you try with other USB disk and check if it works?

PowaBanga commented 7 years ago

not now, with a harddrive maybe ?

mbusb commented 7 years ago

I dont recommend using hard drive for testing. Test it later and post the output here.

PowaBanga commented 7 years ago

Haaa it's for that, that my computer lag very much now hahaha

PowaBanga@karkatouf:~> sudo blkid   
[sudo] Mot de passe de root : 
/dev/sda1: UUID="0e34bff8-2abb-4e51-b13c-d42bbe79928b" TYPE="swap" PARTUUID="9c829d14-01"
/dev/sda3: UUID="38856569-281a-4fa2-98f8-223cb269ab72" TYPE="xfs" PARTUUID="9c829d14-03"
/dev/sda5: UUID="94f0f10c-54fa-4654-9ac9-b73e0a18df21" UUID_SUB="844ebc77-59dc-4e8f-b0d8-180c66be7beb" TYPE="btrfs" PARTUUID="9c829d14-05"
/dev/sdc1: UUID="00AD-2126" TYPE="vfat" PARTUUID="739f5885-01"
/dev/sdd1: LABEL="MY_NAME" UUID="2623-1134" TYPE="vfat" PARTUUID="0004a183-01"
PowaBanga@karkatouf:~> sudo fdisk -l
Disque /dev/sda : 298,1 GiB, 320072933376 octets, 625142448 secteurs
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x9c829d14

Périphérique Amorçage    Début       Fin  Secteurs Taille Id Type
/dev/sda1                 2048   4208639   4206592     2G 82 partition d'échange Linux / Solaris
/dev/sda2    *         4208640  88100863  83892224    40G  f Étendue W95 (LBA)
/dev/sda3             88100864 625141759 537040896 256,1G 83 Linux
/dev/sda5              4210688  88084479  83873792    40G 83 Linux

Les entrées de la table de partitions ne sont pas dans l'ordre du disque.
The entries in the partition table are not in the order of the disk.

Disque /dev/sdc : 28,9 GiB, 31060525056 octets, 60665088 secteurs
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x739f5885

Périphérique Amorçage Début      Fin Secteurs Taille Id Type
/dev/sdc1              2048 60663807 60661760  28,9G  c W95 FAT32 (LBA)

Disque /dev/sdd : 465,7 GiB, 500074283008 octets, 976707584 secteurs
Unités : secteur de 1 × 512 = 512 octets
Taille de secteur (logique / physique) : 512 octets / 512 octets
taille d'E/S (minimale / optimale) : 512 octets / 512 octets
Type d'étiquette de disque : dos
Identifiant de disque : 0x0004a183

Périphérique Amorçage Début       Fin  Secteurs Taille Id Type
/dev/sdd1    *         2048 976707583 976705536 465,7G  b W95 FAT32
PowaBanga@karkatouf:~> 

I find this : The entries in the partition table are not in the order of the disk. i don't know if it's important

mbusb commented 7 years ago

Just a last try can you start multibootsb again and check if still /dev/sdb printed on terminal?

PowaBanga commented 7 years ago

yep

PowaBanga@karkatouf:~> multibootusb-pkexec
Running multibootusb version 8.7.1 from installed system...
Starting multibootusb GUI...
Cleaning old multibootusb directory...
Syslinux exist in multibootusb directory...
Using pyudev for detecting USB drives...
        /dev/sdb
        /dev/sdc
        /dev/sdc1
Selected device /dev/sdb
fdisk: impossible d'ouvrir /dev/sdb: Aucun médium trouvé
Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 410, in details
    details = details_udev(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 225, in details_udev
    fdisk_cmd_out = subprocess.check_output('fdisk -l ' + usb_disk_part, shell=True)
  File "/usr/lib64/python3.6/subprocess.py", line 336, in check_output
    **kwargs).stdout
  File "/usr/lib64/python3.6/subprocess.py", line 418, in run
    output=stdout, stderr=stderr)
subprocess.CalledProcessError: Command 'fdisk -l /dev/sdb' returned non-zero exit status 1.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/usr/local/lib/python3.4/dist-packages/scripts/mbusb_gui.py", line 147, in onComboChange
    config.usb_details = usb.details(config.usb_disk)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 412, in details
    details = details_udisks2(usb_disk_part)
  File "/usr/local/lib/python3.4/dist-packages/scripts/usb.py", line 284, in details_udisks2
    mount_point = bd.Get('org.freedesktop.UDisks2.Filesystem', 'MountPoints', dbus_interface='org.freedesktop.DBus.Properties')
  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.InvalidArgs: No such interface 'org.freedesktop.UDisks2.Filesystem'
/usr/local/bin/multibootusb-pkexec : ligne 22 : 12486 Abandon                 (core dumped)pkexec --disable-internal-agent "/usr/local/bin/multibootusb" "$@"
PowaBanga@karkatouf:~> 
mbusb commented 7 years ago

Did you try with another USB drive? Is the dmesg command able to detect your device as detected by multibootusb?

What about this command ls -l /dev/disk/by-id/ and lsblk then ls -l /dev/sd*

Can you post the terminal output of above commands?

Are you able to access your USB disk using file manager?

PowaBanga commented 7 years ago

Yeah I have no problem to acces to my usb key with my file manager.

OUCH ! dmesg make me bad

[    0.733369] NetLabel:  unlabeled traffic allowed by default
[    0.733469] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.733474] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.735504] clocksource: Switched to clocksource hpet
[    0.745676] VFS: Disk quotas dquot_6.6.0
[    0.745719] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.745812] AppArmor: AppArmor Filesystem Enabled
[    0.745868] pnp: PnP ACPI init
[    0.746533] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.746535] system 00:00: [io  0x0800-0x080f] has been reserved
[    0.746537] system 00:00: [io  0xffff] has been reserved
[    0.746539] system 00:00: [io  0xffff] has been reserved
[    0.746541] system 00:00: [io  0x0400-0x047f] has been reserved
[    0.746542] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.746544] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.746545] system 00:00: [io  0x0380-0x038e] has been reserved
[    0.746550] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.746588] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.746629] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.746681] pnp 00:03: Plug and Play ACPI device, IDs SYN1e26 SYN1e00 SYN0002 PNP0f13 (active)
[    0.747156] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.747158] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.747160] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.747161] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.747163] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[    0.747164] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.747166] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
[    0.747168] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.747169] system 00:04: [mem 0xd4500000-0xd4500fff] has been reserved
[    0.747172] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.747392] pnp: PnP ACPI: found 5 devices
[    0.754691] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.754697] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.754731] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.754735] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.754741] pci 0000:00:1c.0:   bridge window [mem 0xd3400000-0xd43fffff]
[    0.754745] pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.754755] pci 0000:03:00.0: BAR 6: assigned [mem 0xd2400000-0xd240ffff pref]
[    0.754757] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.754760] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    0.754766] pci 0000:00:1c.1:   bridge window [mem 0xd2400000-0xd33fffff]
[    0.754770] pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.754777] pci 0000:00:1e.0: PCI bridge to [bus 04]
[    0.754792] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.754794] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.754795] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.754797] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff window]
[    0.754798] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.754799] pci_bus 0000:02: resource 1 [mem 0xd3400000-0xd43fffff]
[    0.754801] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.754802] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[    0.754803] pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd33fffff]
[    0.754805] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.754806] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
[    0.754808] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
[    0.754809] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.754810] pci_bus 0000:04: resource 7 [mem 0xc0000000-0xfeafffff window]
[    0.754940] NET: Registered protocol family 2
[    0.755159] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.755259] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.755405] TCP: Hash tables configured (established 32768 bind 32768)
[    0.755439] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.755460] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.755542] NET: Registered protocol family 1
[    0.755557] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.795696] PCI: CLS 64 bytes, default 64
[    0.795756] Unpacking initramfs...
[    1.990259] Freeing initrd memory: 9548K
[    1.990263] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.990266] software IO TLB [mem 0xb763f000-0xbb63f000] (64MB) mapped at [ffff94203763f000-ffff94203b63efff]
[    1.990579] Scanning for low memory corruption every 60 seconds
[    1.991012] audit: initializing netlink subsys (disabled)
[    1.991099] audit: type=2000 audit(1494485790.852:1): initialized
[    1.991691] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.991742] zbud: loaded
[    1.993971] Key type asymmetric registered
[    1.993972] Asymmetric key parser 'x509' registered
[    1.994001] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.994048] io scheduler noop registered
[    1.994049] io scheduler deadline registered
[    1.994056] io scheduler cfq registered (default)
[    1.994581] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    1.994582] vesafb: scrolling: redraw
[    1.994584] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.994597] vesafb: framebuffer at 0xc0000000, mapped to 0xffffba2041000000, using 3072k, total 3072k
[    2.121074] Console: switching to colour frame buffer device 128x48
[    2.247481] fb0: VESA VGA frame buffer device
[    2.247497] intel_idle: MWAIT substates: 0x1120
[    2.247498] intel_idle: v0.4.1 model 0x25
[    2.247686] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.247935] GHES: HEST is not enabled!
[    2.248020] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.249853] Non-volatile memory driver v1.3
[    2.249884] Linux agpgart interface v0.103
[    2.250410] ahci 0000:00:1f.2: version 3.0
[    2.250629] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
[    2.250632] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems apst 
[    2.260033] scsi host0: ahci
[    2.260434] scsi host1: ahci
[    2.260829] scsi host2: ahci
[    2.261003] scsi host3: ahci
[    2.261065] ata1: SATA max UDMA/133 abar m2048@0xd4405000 port 0xd4405100 irq 24
[    2.261067] ata2: SATA max UDMA/133 abar m2048@0xd4405000 port 0xd4405180 irq 24
[    2.261068] ata3: DUMMY
[    2.261068] ata4: DUMMY
[    2.261156] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.277255] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.277295] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.277431] mousedev: PS/2 mouse device common for all mice
[    2.278573] rtc_cmos 00:01: RTC can wake from S4
[    2.278728] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.278759] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.278822] ledtrig-cpu: registered to indicate activity on CPUs
[    2.278837] hidraw: raw HID events driver (C) Jiri Kosina
[    2.279032] NET: Registered protocol family 10
[    2.283368] Segment Routing with IPv6
[    2.283779] microcode: sig=0x20655, pf=0x10, revision=0x4
[    2.283951] microcode: Microcode Update Driver: v2.2.
[    2.284332] registered taskstats version 1
[    2.284373] zswap: loaded using pool lzo/zbud
[    2.298722] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    2.300146] Key type big_key registered
[    2.302433] Key type encrypted registered
[    2.302436] AppArmor: AppArmor sha1 policy hashing enabled
[    2.303005]   Magic number: 1:345:923
[    2.303217] rtc_cmos 00:01: setting system clock to 2017-05-11 06:56:31 UTC (1494485791)
[    2.303282] PM: Checking hibernation image partition /dev/disk/by-uuid/0e34bff8-2abb-4e51-b13c-d42bbe79928b
[    2.575505] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.575540] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.585178] ata2.00: ATAPI: hp      DVD RW AD-7586H, KH04, max UDMA/100
[    2.585722] ata1.00: ATA-8: ST9320325AS, 0005HPM1, max UDMA/100
[    2.585725] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.596766] ata2.00: configured for UDMA/100
[    2.608704] ata1.00: configured for UDMA/100
[    2.609335] scsi 0:0:0:0: Direct-Access     ATA      ST9320325AS      HPM1 PQ: 0 ANSI: 5
[    2.640060] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    2.640107] sd 0:0:0:0: [sda] Write Protect is off
[    2.640110] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.640270] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.642437] scsi 1:0:0:0: CD-ROM            hp       DVD RW AD-7586H  KH04 PQ: 0 ANSI: 5
[    2.727192]  sda: sda1 sda2 < sda5 > sda3
[    2.728197] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.007644] tsc: Refined TSC clocksource calibration: 2261.391 MHz
[    3.007652] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2098bcacd1a, max_idle_ns: 440795311585 ns
[    3.364259] psmouse serio1: synaptics: queried max coordinates: x [..5888], y [..4844]
[    3.481737] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0xa0400/0x0, board id: 0, fw id: 639099
[    3.556102] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
[    3.561356] PM: Hibernation image not present or could not be loaded.
[    3.563484] Freeing unused kernel memory: 1804K
[    3.563485] Write protecting the kernel read-only data: 14336k
[    3.564051] Freeing unused kernel memory: 868K
[    3.566703] Freeing unused kernel memory: 1028K
[    3.571226] random: systemd: uninitialized urandom read (16 bytes read)
[    3.571477] random: systemd: uninitialized urandom read (16 bytes read)
[    3.571489] random: systemd: uninitialized urandom read (16 bytes read)
[    3.573096] systemd[1]: systemd 232 running in system mode. (+PAM -AUDIT +SELINUX -IMA +APPARMOR -SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    3.573250] systemd[1]: Detected architecture x86-64.
[    3.573252] systemd[1]: Running in initial RAM disk.
[    3.573268] systemd[1]: Set hostname to <karkatouf>.
[    3.622741] random: systemd: uninitialized urandom read (16 bytes read)
[    3.622762] random: systemd: uninitialized urandom read (16 bytes read)
[    3.622788] random: systemd: uninitialized urandom read (16 bytes read)
[    3.622840] random: systemd: uninitialized urandom read (16 bytes read)
[    3.623814] random: systemd: uninitialized urandom read (16 bytes read)
[    3.623881] random: systemd: uninitialized urandom read (16 bytes read)
[    3.623981] random: systemd: uninitialized urandom read (16 bytes read)
[    3.628681] systemd[1]: Listening on udev Control Socket.
[    3.628778] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.628866] systemd[1]: Listening on Journal Audit Socket.
[    3.628912] systemd[1]: Listening on udev Kernel Socket.
[    3.628938] systemd[1]: Reached target Swap.
[    3.628989] systemd[1]: Listening on Journal Socket.
[    3.634632] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.634693] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[    3.814995] ACPI: bus type USB registered
[    3.815040] usbcore: registered new interface driver usbfs
[    3.815057] usbcore: registered new interface driver hub
[    3.815108] usbcore: registered new device driver usb
[    3.816704] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.817054] ehci-pci: EHCI PCI platform driver
[    3.817365] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.817375] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.817393] ehci-pci 0000:00:1a.0: debug port 2
[    3.823217] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    3.825514] [drm] Initialized
[    3.827714] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.827744] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd4405c00
[    3.829308] ACPI: Power Button [PWRB]
[    3.829930] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
[    3.830001] ACPI: Lid Switch [LID0]
[    3.830122] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    3.830172] ACPI: Power Button [PWRF]
[    3.843668] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.844139] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.844141] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.844143] usb usb1: Product: EHCI Host Controller
[    3.844145] usb usb1: Manufacturer: Linux 4.10.13-1-default ehci_hcd
[    3.844146] usb usb1: SerialNumber: 0000:00:1a.0
[    3.844392] hub 1-0:1.0: USB hub found
[    3.844404] hub 1-0:1.0: 3 ports detected
[    3.844882] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.844890] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.844912] ehci-pci 0000:00:1d.0: debug port 2
[    3.849129] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.849152] ehci-pci 0000:00:1d.0: irq 21, io mem 0xd4405800
[    3.863653] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.863745] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.863747] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.863749] usb usb2: Product: EHCI Host Controller
[    3.863751] usb usb2: Manufacturer: Linux 4.10.13-1-default ehci_hcd
[    3.863752] usb usb2: SerialNumber: 0000:00:1d.0
[    3.863997] hub 2-0:1.0: USB hub found
[    3.864011] hub 2-0:1.0: 3 ports detected
[    3.867267] pci 0000:00:00.0: Intel HD Graphics Chipset
[    3.868126] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    3.868823] pci 0000:00:00.0: detected 32768K stolen memory
[    3.868875] [drm] Memory usable by graphics device = 2048M
[    3.868878] checking generic (c0000000 300000) vs hw (c0000000 10000000)
[    3.868880] fb: switching to inteldrmfb from VESA VGA
[    3.869384] Console: switching to colour dummy device 80x25
[    3.869607] [drm] Replacing VGA console driver
[    3.878577] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.878579] [drm] Driver supports precise vblank timestamp query.
[    3.880344] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.894297] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.894302] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.894522] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    3.926991] [drm] RC6 disabled, disabling runtime PM support
[    3.934574] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.936047] acpi device:01: registered as cooling_device4
[    3.936203] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
[    3.936764] [drm] Initialized i915 1.6.0 20161121 for 0000:00:02.0 on minor 0
[    3.963051] fbcon: inteldrmfb (fb0) is primary device
[    4.031713] clocksource: Switched to clocksource tsc
[    4.095570] random: fast init done
[    4.171643] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    4.191646] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    4.320115] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
[    4.320117] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.320349] hub 1-1:1.0: USB hub found
[    4.320909] hub 1-1:1.0: 6 ports detected
[    4.340111] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
[    4.340113] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.340409] hub 2-1:1.0: USB hub found
[    4.340908] hub 2-1:1.0: 8 ports detected
[    4.384178] random: crng init done
[    4.443416] PM: Starting manual resume from disk
[    4.443419] PM: Hibernation image partition 8:1 present
[    4.443420] PM: Looking for hibernation image.
[    4.568979] PM: Image not found (code -22)
[    4.568981] PM: Hibernation image not present or could not be loaded.
[    4.607715] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    4.627647] raid6: sse2x1   gen()  5422 MB/s
[    4.631709] usb 2-1.2: new full-speed USB device number 3 using ehci-pci
[    4.695647] raid6: sse2x1   xor()  4292 MB/s
[    4.721003] usb 1-1.1: New USB device found, idVendor=248a, idProduct=8367
[    4.721004] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.721005] usb 1-1.1: Product: Wireless Receiver
[    4.721006] usb 1-1.1: Manufacturer: Telink
[    4.728625] usbcore: registered new interface driver usbhid
[    4.728626] usbhid: USB HID core driver
[    4.729564] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:248A:8367.0001/input/input7
[    4.731738] Console: switching to colour frame buffer device 170x48
[    4.743601] usb 2-1.2: New USB device found, idVendor=046d, idProduct=c52b
[    4.743603] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.743604] usb 2-1.2: Product: USB Receiver
[    4.743605] usb 2-1.2: Manufacturer: Logitech
[    4.752272] logitech-djreceiver 0003:046D:C52B.0005: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.2/input2
[    4.753885] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.763664] raid6: sse2x2   gen()  5954 MB/s
[    4.831661] raid6: sse2x2   xor()  3406 MB/s
[    4.831666] usb 1-1.5: new high-speed USB device number 4 using ehci-pci
[    4.831685] usb 2-1.5: new high-speed USB device number 4 using ehci-pci
[    4.833972] hid-generic 0003:248A:8367.0001: input,hidraw1: USB HID v1.11 Mouse [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input0
[    4.834202] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:248A:8367.0002/input/input8
[    4.899669] raid6: sse2x4   gen()  4405 MB/s
[    4.906278] input: Logitech K360 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:4004.0006/input/input9
[    4.908177] input: Logitech M185 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:4008.0007/input/input10
[    4.944634] usb 2-1.5: New USB device found, idVendor=090c, idProduct=37bc
[    4.944636] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.944638] usb 2-1.5: Product: HP Webcam-101
[    4.944640] usb 2-1.5: Manufacturer: Image Processor
[    4.944641] usb 2-1.5: SerialNumber: Integrated Camera
[    4.951491] usb 1-1.5: New USB device found, idVendor=0bda, idProduct=0158
[    4.951493] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.951494] usb 1-1.5: Product: USB2.0-CRW
[    4.951495] usb 1-1.5: Manufacturer: Generic
[    4.951496] usb 1-1.5: SerialNumber: 20071114173400000
[    4.952207] hid-generic 0003:248A:8367.0002: input,hidraw2: USB HID v1.11 Keyboard [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input1
[    4.967712] raid6: sse2x4   xor()  4928 MB/s
[    4.967714] raid6: using algorithm sse2x2 gen() 5954 MB/s
[    4.967715] raid6: .... xor() 3406 MB/s, rmw enabled
[    4.967716] raid6: using ssse3x2 recovery algorithm
[    4.967888] logitech-hidpp-device 0003:046D:4004.0006: input,hidraw3: USB HID v1.11 Keyboard [Logitech K360] on usb-0000:00:1d.0-1.2:1
[    4.968033] xor: measuring software checksum speed
[    4.968519] logitech-hidpp-device 0003:046D:4008.0007: input,hidraw4: USB HID v1.11 Mouse [Logitech M185] on usb-0000:00:1d.0-1.2:2
[    4.972201] input: Logitech M305 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:101F.0008/input/input11
[    4.973866] usbcore: registered new interface driver usb-storage
[    4.974035] logitech-hidpp-device 0003:046D:101F.0008: input,hidraw5: USB HID v1.11 Mouse [Logitech M305] on usb-0000:00:1d.0-1.2:3
[    5.007666]    prefetch64-sse:  8845.000 MB/sec
[    5.007812] usbcore: registered new interface driver uas
[    5.008277] ums-realtek 1-1.5:1.0: USB Mass Storage device detected
[    5.020037] scsi host4: usb-storage 1-1.5:1.0
[    5.020150] usbcore: registered new interface driver ums-realtek
[    5.047664]    generic_sse:  8385.000 MB/sec
[    5.047666] xor: using function: prefetch64-sse (8845.000 MB/sec)
[    5.053714] Btrfs loaded, crc32c=crc32c-intel, assert=on
[    5.106827] BTRFS: device fsid 94f0f10c-54fa-4654-9ac9-b73e0a18df21 devid 1 transid 24304 /dev/sda5
[    5.317624] BTRFS info (device sda5): disk space caching is enabled
[    5.317626] BTRFS info (device sda5): has skinny extents
[    5.924426] systemd-journald[162]: Received SIGTERM from PID 1 (systemd).
[    6.054692] scsi 4:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    6.055080] sd 4:0:0:0: Attached scsi generic sg2 type 0
[    6.144833] systemd: 18 output lines suppressed due to ratelimiting
[   10.595377] BTRFS info (device sda5): disk space caching is enabled
[   11.749776] audit: type=1400 audit(1494485800.940:2): apparmor="STATUS" operation="profile_load" name="ping" pid=510 comm="apparmor_parser"
[   11.771930] audit: type=1400 audit(1494485800.960:3): apparmor="STATUS" operation="profile_load" name="klogd" pid=523 comm="apparmor_parser"
[   11.957250] audit: type=1400 audit(1494485801.148:4): apparmor="STATUS" operation="profile_load" name="syslog-ng" pid=528 comm="apparmor_parser"
[   13.152801] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[   13.192686] audit: type=1400 audit(1494485802.384:5): apparmor="STATUS" operation="profile_load" name="syslogd" pid=533 comm="apparmor_parser"
[   13.307242] audit: type=1400 audit(1494485802.496:6): apparmor="STATUS" operation="profile_load" name="/usr/bin/lessopen.sh" pid=539 comm="apparmor_parser"
[   13.401388] audit: type=1400 audit(1494485802.592:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2" pid=556 comm="apparmor_parser"
[   13.401394] audit: type=1400 audit(1494485802.592:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//DEFAULT_URI" pid=556 comm="apparmor_parser"
[   13.401397] audit: type=1400 audit(1494485802.592:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//HANDLING_UNTRUSTED_INPUT" pid=556 comm="apparmor_parser"
[   13.401398] audit: type=1400 audit(1494485802.592:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//phpsysinfo" pid=556 comm="apparmor_parser"
[   13.482661] ACPI: AC Adapter [ACAD] (on-line)
[   13.486002] ACPI: Battery Slot [BAT0] (battery absent)
[   13.622556] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   13.623459] thermal LNXTHERM:00: registered as thermal_zone0
[   13.623461] ACPI: Thermal Zone [TZ01] (40 C)
[   13.699732] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
[   13.700070] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
[   13.700620] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.745380] audit: type=1400 audit(1494485802.936:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/anvil" pid=628 comm="apparmor_parser"
[   13.902851] input: PC Speaker as /devices/platform/pcspkr/input/input12
[   13.971073] wmi: Mapper loaded
[   14.227509] FUJITSU Extended Socket Network Device Driver - version 1.2 - Copyright (c) 2015 FUJITSU LIMITED
[   14.639575] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[   15.186624] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20160930/utaddress-247)
[   15.186634] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.186637] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   15.186643] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.186644] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   15.186648] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.186649] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   15.186654] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   15.186655] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   15.212421] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   15.372393] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   15.372411] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   15.372991] r8169 0000:03:00.0 eth0: RTL8102e at 0xffffba2040725000, 78:ac:c0:45:a8:0e, XID 04e00000 IRQ 27
[   15.374113] r8169 0000:03:00.0 enp3s0: renamed from eth0
[   16.285392] iTCO_vendor_support: vendor-support=0
[   16.355325] input: HP WMI hotkeys as /devices/virtual/input/input13
[   16.365279] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5390, rev 0502 detected
[   16.369473] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 5390 detected
[   16.525537] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   16.525600] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
[   16.525757] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   16.826575] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k FS
[   17.114945] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   17.117263] rt2800pci 0000:02:00.0 wlo1: renamed from wlan0
[   17.163724] systemd-journald[463]: Received request to flush runtime journal from PID 1
[   17.443089] kauditd_printk_skb: 1 callbacks suppressed
[   17.443091] audit: type=1400 audit(1494485806.636:13): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/config" pid=773 comm="apparmor_parser"
[   19.083375] audit: type=1400 audit(1494485808.276:14): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/deliver" pid=925 comm="apparmor_parser"
[   19.624716] audit: type=1400 audit(1494485808.816:15): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dict" pid=979 comm="apparmor_parser"
[   20.315231] Linux video capture interface: v2.00
[   20.588832] uvcvideo: Found UVC 1.00 device HP Webcam-101 (090c:37bc)
[   20.590560] input: HP Webcam-101 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input14
[   20.590701] usbcore: registered new interface driver uvcvideo
[   20.590704] USB Video Class driver (1.1.1)
[   20.625007] audit: type=1400 audit(1494485809.816:16): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-auth" pid=984 comm="apparmor_parser"
[   20.650655] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC270: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   20.650658] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   20.650660] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   20.650661] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   20.650662] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   20.650664] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[   20.650665] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[   20.772287] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[   20.791370] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   20.844242] XFS (sda3): Mounting V5 Filesystem
[   20.903047] audit: type=1400 audit(1494485810.092:17): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-lda" pid=1010 comm="apparmor_parser"
[   20.903049] audit: type=1400 audit(1494485810.092:18): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-lda///usr/sbin/sendmail" pid=1010 comm="apparmor_parser"
[   20.929372] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   20.930264] audit: type=1400 audit(1494485810.120:19): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/imap" pid=1017 comm="apparmor_parser"
[   20.930367] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[   20.933629] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[   20.933923] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
[   21.167148] audit: type=1400 audit(1494485810.360:20): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/imap-login" pid=1024 comm="apparmor_parser"
[   21.178916] audit: type=1400 audit(1494485810.368:21): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/lmtp" pid=1031 comm="apparmor_parser"
[   21.195460] audit: type=1400 audit(1494485810.384:22): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/log" pid=1036 comm="apparmor_parser"
[   21.351889] XFS (sda3): Ending clean mount
[   24.445877] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   24.834396] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   24.977762] ip_tables: (C) 2000-2006 Netfilter Core Team
[   29.457375] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   29.469886] r8169 0000:03:00.0 enp3s0: link down
[   29.469937] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   29.474083] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   29.474150] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2860.bin'
[   29.811149] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.40
[   29.969266] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   30.049328] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   30.429567] NET: Registered protocol family 17
[   30.468996] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  130.392885] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  130.400656] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  130.480599] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  131.784845] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  131.792393] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  131.880910] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  179.193503] fuse init (API version 7.26)
[  180.816506] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU pipe A FIFO underrun
[  180.816598] [drm:ironlake_irq_handler [i915]] *ERROR* PCH transcoder A FIFO underrun
[  201.731485] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  206.947902] wlo1: authenticate with 00:37:b7:5b:ba:66
[  206.971837] wlo1: send auth to 00:37:b7:5b:ba:66 (try 1/3)
[  206.973330] wlo1: authenticated
[  206.978905] wlo1: associate with 00:37:b7:5b:ba:66 (try 1/3)
[  206.982260] wlo1: RX AssocResp from 00:37:b7:5b:ba:66 (capab=0x411 status=0 aid=2)
[  206.982372] wlo1: associated
[  206.982479] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[  275.065872] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=330 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=310 
[  275.073664] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=321 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=301 
[  275.074552] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=373 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=353 
[  275.075217] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=385 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=365 
[  275.076013] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=387 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=367 
[  335.271818] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=330 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=310 
[  335.273235] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=321 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=301 
[  335.273274] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=373 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=353 
[  395.369777] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=330 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=310 
[  395.370851] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=321 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=301 
[  395.370930] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=373 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=353 
[  455.480846] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=330 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=310 
[  455.481502] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=321 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=301 
[  455.481562] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=373 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=353 
[  515.581327] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=330 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=310 
[  515.581936] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=321 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=301 
[  515.609150] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=192.168.1.1 DST=239.255.255.250 LEN=373 TOS=0x00 PREC=0x00 TTL=4 ID=0 DF PROTO=UDP SPT=1900 DPT=1900 LEN=353 
[ 2519.369135] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=178.207.79.239 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=113 ID=1593 PROTO=UDP SPT=64165 DPT=51413 LEN=112 
[ 2519.679668] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60143 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 2611.467160] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60144 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 2638.477386] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60145 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 3446.613244] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60131 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 3537.990069] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60133 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 3588.905162] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60134 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 3683.898969] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60135 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[ 3813.861054] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22837 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3815.834092] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22838 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3817.832894] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22839 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3817.834060] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22840 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3817.834480] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22841 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3835.833324] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22851 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3880.917072] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22856 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3882.916302] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22857 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3896.038661] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22864 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3916.907203] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=46.47.31.215 DST=192.168.1.36 LEN=141 TOS=0x18 PREC=0x20 TTL=112 ID=22876 PROTO=UDP SPT=49001 DPT=51413 LEN=121 
[ 3971.131825] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=173.212.202.248 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=55 ID=23280 DF PROTO=UDP SPT=51508 DPT=51413 LEN=66 
[ 3986.936635] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=173.212.202.248 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=55 ID=25708 DF PROTO=UDP SPT=51508 DPT=51413 LEN=66 
[ 6726.006875] CPU2: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 6726.006880] CPU3: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 6726.006901] mce: [Hardware Error]: Machine check events logged
[ 6726.007922] CPU3: Core temperature/speed normal
[ 6726.007923] CPU2: Core temperature/speed normal
[ 6726.007927] mce: [Hardware Error]: Machine check events logged
[ 6990.431727] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=49659 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[ 7065.178111] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=50863 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[ 7163.506175] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=56927 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[ 7763.602572] CPU2: Core temperature above threshold, cpu clock throttled (total events = 15180)
[ 7763.602573] CPU3: Core temperature above threshold, cpu clock throttled (total events = 15180)
[ 7763.602588] mce: [Hardware Error]: Machine check events logged
[ 7763.603625] CPU2: Core temperature/speed normal
[ 7763.603626] CPU3: Core temperature/speed normal
[ 7763.603630] mce: [Hardware Error]: Machine check events logged
[ 8065.286688] CPU2: Core temperature above threshold, cpu clock throttled (total events = 24318)
[ 8065.286690] CPU3: Core temperature above threshold, cpu clock throttled (total events = 24318)
[ 8065.286704] mce: [Hardware Error]: Machine check events logged
[ 8065.288796] CPU3: Core temperature/speed normal
[ 8065.288797] CPU2: Core temperature/speed normal
[ 8065.288804] mce: [Hardware Error]: Machine check events logged
[ 8246.219781] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.122.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=11503 PROTO=UDP SPT=29573 DPT=51413 LEN=112 
[ 8324.094366] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.58.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=32375 PROTO=UDP SPT=27746 DPT=51413 LEN=112 
[ 8349.169173] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.58.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=674 PROTO=UDP SPT=27746 DPT=51413 LEN=112 
[ 8552.574272] CPU2: Core temperature above threshold, cpu clock throttled (total events = 33050)
[ 8552.574274] CPU3: Core temperature above threshold, cpu clock throttled (total events = 33050)
[ 8552.574303] mce: [Hardware Error]: Machine check events logged
[ 8552.577422] CPU3: Core temperature/speed normal
[ 8552.577423] CPU2: Core temperature/speed normal
[ 8552.577440] mce: [Hardware Error]: Machine check events logged
[ 8854.820971] CPU3: Core temperature above threshold, cpu clock throttled (total events = 46231)
[ 8854.820972] CPU2: Core temperature above threshold, cpu clock throttled (total events = 46231)
[ 8854.821012] mce: [Hardware Error]: Machine check events logged
[ 8854.822027] CPU2: Core temperature/speed normal
[ 8854.822029] CPU3: Core temperature/speed normal
[ 8854.822034] mce: [Hardware Error]: Machine check events logged
[ 9154.831246] CPU3: Core temperature/speed normal
[ 9154.831247] CPU2: Core temperature/speed normal
[ 9154.831266] mce: [Hardware Error]: Machine check events logged
[ 9451.275669] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.122.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=19394 PROTO=UDP SPT=29573 DPT=51413 LEN=112 
[ 9830.024620] CPU3: Core temperature above threshold, cpu clock throttled (total events = 49821)
[ 9830.024622] CPU2: Core temperature above threshold, cpu clock throttled (total events = 49821)
[ 9830.024654] mce: [Hardware Error]: Machine check events logged
[ 9830.025658] CPU2: Core temperature/speed normal
[ 9830.025659] CPU3: Core temperature/speed normal
[ 9830.025662] mce: [Hardware Error]: Machine check events logged
[10471.091971] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=104.244.225.109 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=48 ID=42404 DF PROTO=UDP SPT=17451 DPT=51413 LEN=112 
[10494.140885] CPU2: Core temperature above threshold, cpu clock throttled (total events = 49825)
[10494.140891] CPU3: Core temperature above threshold, cpu clock throttled (total events = 49825)
[10494.140904] mce: [Hardware Error]: Machine check events logged
[10494.141935] CPU2: Core temperature/speed normal
[10494.141937] CPU3: Core temperature/speed normal
[10494.141941] mce: [Hardware Error]: Machine check events logged
[10846.241732] CPU3: Core temperature above threshold, cpu clock throttled (total events = 49945)
[10846.241734] CPU2: Core temperature above threshold, cpu clock throttled (total events = 49945)
[10846.241747] mce: [Hardware Error]: Machine check events logged
[10846.242776] CPU2: Core temperature/speed normal
[10846.242778] CPU3: Core temperature/speed normal
[10846.242780] mce: [Hardware Error]: Machine check events logged
[11319.421799] CPU2: Core temperature above threshold, cpu clock throttled (total events = 57050)
[11319.421801] CPU3: Core temperature above threshold, cpu clock throttled (total events = 57050)
[11319.421814] mce: [Hardware Error]: Machine check events logged
[11319.422851] CPU3: Core temperature/speed normal
[11319.422853] CPU2: Core temperature/speed normal
[11319.422858] mce: [Hardware Error]: Machine check events logged
[11725.906195] CPU3: Core temperature above threshold, cpu clock throttled (total events = 57092)
[11725.906197] CPU2: Core temperature above threshold, cpu clock throttled (total events = 57092)
[11725.906210] mce: [Hardware Error]: Machine check events logged
[11725.907249] CPU3: Core temperature/speed normal
[11725.907250] CPU2: Core temperature/speed normal
[11725.907254] mce: [Hardware Error]: Machine check events logged
[13798.089990] CPU3: Core temperature above threshold, cpu clock throttled (total events = 57282)
[13798.089991] CPU2: Core temperature above threshold, cpu clock throttled (total events = 57282)
[13798.090005] mce: [Hardware Error]: Machine check events logged
[13798.091039] CPU3: Core temperature/speed normal
[13798.091040] CPU2: Core temperature/speed normal
[13798.091043] mce: [Hardware Error]: Machine check events logged
[14334.860099] CPU3: Core temperature above threshold, cpu clock throttled (total events = 57536)
[14334.860100] CPU2: Core temperature above threshold, cpu clock throttled (total events = 57536)
[14334.860117] mce: [Hardware Error]: Machine check events logged
[14334.861151] CPU3: Core temperature/speed normal
[14334.861152] CPU2: Core temperature/speed normal
[14334.861156] mce: [Hardware Error]: Machine check events logged
[14639.833109] CPU2: Core temperature above threshold, cpu clock throttled (total events = 58678)
[14639.833111] CPU3: Core temperature above threshold, cpu clock throttled (total events = 58678)
[14639.833201] mce: [Hardware Error]: Machine check events logged
[14639.834158] CPU2: Core temperature/speed normal
[14639.834160] CPU3: Core temperature/speed normal
[14639.834183] mce: [Hardware Error]: Machine check events logged
[14957.206234] CPU2: Core temperature above threshold, cpu clock throttled (total events = 59884)
[14957.206235] CPU3: Core temperature above threshold, cpu clock throttled (total events = 59884)
[14957.206252] mce: [Hardware Error]: Machine check events logged
[14957.207284] CPU2: Core temperature/speed normal
[14957.207285] CPU3: Core temperature/speed normal
[14957.207289] mce: [Hardware Error]: Machine check events logged
[15261.178601] CPU2: Core temperature above threshold, cpu clock throttled (total events = 63793)
[15261.178602] CPU3: Core temperature above threshold, cpu clock throttled (total events = 63793)
[15261.178617] mce: [Hardware Error]: Machine check events logged
[15261.180706] CPU2: Core temperature/speed normal
[15261.180707] CPU3: Core temperature/speed normal
[15261.180730] mce: [Hardware Error]: Machine check events logged
[15301.401457] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60137 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[15391.742057] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60138 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[15563.006729] CPU0: Core temperature above threshold, cpu clock throttled (total events = 14964)
[15563.006730] CPU1: Core temperature above threshold, cpu clock throttled (total events = 14964)
[15563.006745] mce: [Hardware Error]: Machine check events logged
[15563.007782] CPU0: Core temperature/speed normal
[15563.007783] CPU1: Core temperature/speed normal
[15563.007788] mce: [Hardware Error]: Machine check events logged
[15864.804077] CPU3: Core temperature above threshold, cpu clock throttled (total events = 138473)
[15864.804079] CPU2: Core temperature above threshold, cpu clock throttled (total events = 138473)
[15864.804103] mce: [Hardware Error]: Machine check events logged
[15864.805119] CPU2: Core temperature/speed normal
[15864.805120] CPU3: Core temperature/speed normal
[15864.805127] mce: [Hardware Error]: Machine check events logged
[15958.330909] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=178.207.79.239 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=113 ID=31023 PROTO=UDP SPT=64165 DPT=51413 LEN=112 
[15992.888847] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=178.207.79.239 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=113 ID=31411 PROTO=UDP SPT=64165 DPT=51413 LEN=112 
[16164.814160] CPU3: Core temperature/speed normal
[16164.814163] CPU2: Core temperature/speed normal
[16164.814182] mce: [Hardware Error]: Machine check events logged
[16464.828322] CPU2: Core temperature/speed normal
[16464.828324] CPU3: Core temperature/speed normal
[16464.828358] mce: [Hardware Error]: Machine check events logged
[16764.835910] CPU2: Core temperature above threshold, cpu clock throttled (total events = 270669)
[16764.835912] CPU3: Core temperature above threshold, cpu clock throttled (total events = 270668)
[16764.835930] mce: [Hardware Error]: Machine check events logged
[16764.835930] mce: [Hardware Error]: Machine check events logged
[16764.836946] CPU2: Core temperature/speed normal
[16764.836947] CPU3: Core temperature/speed normal
[17049.144792] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[17066.436311] CPU3: Core temperature above threshold, cpu clock throttled (total events = 286114)
[17066.436313] CPU2: Core temperature above threshold, cpu clock throttled (total events = 286115)
[17066.436353] mce_notify_irq: 1 callbacks suppressed
[17066.436355] mce: [Hardware Error]: Machine check events logged
[17066.437358] CPU3: Core temperature/speed normal
[17066.437359] CPU2: Core temperature/speed normal
[17066.437383] mce: [Hardware Error]: Machine check events logged
[17396.196550] CPU3: Core temperature above threshold, cpu clock throttled (total events = 305985)
[17396.196551] CPU2: Core temperature above threshold, cpu clock throttled (total events = 305986)
[17396.196605] mce: [Hardware Error]: Machine check events logged
[17396.199678] CPU3: Core temperature/speed normal
[17396.199679] CPU2: Core temperature/speed normal
[17396.199702] mce: [Hardware Error]: Machine check events logged
[17696.210964] CPU3: Core temperature above threshold, cpu clock throttled (total events = 308113)
[17696.210970] CPU2: Core temperature above threshold, cpu clock throttled (total events = 308114)
[17696.210989] mce: [Hardware Error]: Machine check events logged
[17696.213069] CPU3: Core temperature/speed normal
[17696.213071] CPU2: Core temperature/speed normal
[17696.213078] mce: [Hardware Error]: Machine check events logged
[17754.186531] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=1219 DF PROTO=TCP SPT=49238 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[17756.200607] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=1223 DF PROTO=TCP SPT=49238 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[17762.201149] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=1249 DF PROTO=TCP SPT=49238 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[17976.997435] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.58.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=25496 PROTO=UDP SPT=27746 DPT=51413 LEN=112 
[18963.565582] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=3091 DF PROTO=TCP SPT=51302 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[18966.533454] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=3665 DF PROTO=TCP SPT=51302 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[18972.539651] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=3937 DF PROTO=TCP SPT=51302 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[18984.555674] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=8730 DF PROTO=TCP SPT=51313 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[18987.588249] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=9144 DF PROTO=TCP SPT=51313 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[18993.569815] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:80:3f:5d:93:97:cb:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=9198 DF PROTO=TCP SPT=51313 DPT=36591 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[20265.401203] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.122.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=31925 PROTO=UDP SPT=29573 DPT=51413 LEN=112 
[20323.670579] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=178.214.188.235 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=116 ID=18099 PROTO=UDP SPT=58203 DPT=51413 LEN=112 
[21261.727816] wlo1: deauthenticating from 00:37:b7:5b:ba:66 by local choice (Reason: 3=DEAUTH_LEAVING)
[21261.844920] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[21263.408813] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[21265.741121] wlo1: authenticate with 80:3f:5d:93:97:cb
[21265.764765] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[21265.766978] wlo1: authenticated
[21265.768859] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[21265.772477] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[21265.772581] wlo1: associated
[21265.772639] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[21270.930474] IPv4: martian source 255.255.255.255 from 192.168.1.1, on dev wlo1
[21270.930481] ll header: 00000000: ff ff ff ff ff ff 00 37 b7 5b ba 63 08 00        .......7.[.c..
[21275.231807] IPv4: martian source 255.255.255.255 from 192.168.1.1, on dev wlo1
[21275.231812] ll header: 00000000: ff ff ff ff ff ff 00 37 b7 5b ba 63 08 00        .......7.[.c..
[21286.212820] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=3781 DF PROTO=TCP SPT=49502 DPT=33849 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21288.687838] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=3785 DF PROTO=TCP SPT=49502 DPT=33849 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21294.688784] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=3788 DF PROTO=TCP SPT=49502 DPT=33849 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[21297.871892] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:1c:4b:d6:f8:d6:1c:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=30922 DF PROTO=TCP SPT=51689 DPT=33849 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[21299.934674] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:1c:4b:d6:f8:d6:1c:08:00 SRC=192.168.1.2 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=30924 DF PROTO=TCP SPT=51689 DPT=33849 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030801010402) 
[22533.734802] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=57038 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[22555.168635] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=125.82.188.254 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=113 ID=19755 PROTO=UDP SPT=15952 DPT=51413 LEN=111 
[22593.047421] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=60611 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[22678.154424] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=65450 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[23605.268755] CPU3: Core temperature above threshold, cpu clock throttled (total events = 308128)
[23605.268756] CPU2: Core temperature above threshold, cpu clock throttled (total events = 308129)
[23605.268770] mce: [Hardware Error]: Machine check events logged
[23605.269807] CPU3: Core temperature/speed normal
[23605.269808] CPU2: Core temperature/speed normal
[23605.269812] mce: [Hardware Error]: Machine check events logged
[23939.144515] CPU3: Core temperature above threshold, cpu clock throttled (total events = 310937)
[23939.144516] CPU2: Core temperature above threshold, cpu clock throttled (total events = 310938)
[23939.144530] mce: [Hardware Error]: Machine check events logged
[23939.146617] CPU3: Core temperature/speed normal
[23939.146618] CPU2: Core temperature/speed normal
[23939.146623] mce: [Hardware Error]: Machine check events logged
[24239.154463] CPU3: Core temperature above threshold, cpu clock throttled (total events = 320258)
[24239.154465] CPU2: Core temperature above threshold, cpu clock throttled (total events = 320259)
[24239.154524] mce: [Hardware Error]: Machine check events logged
[24239.156513] CPU2: Core temperature/speed normal
[24239.156515] CPU3: Core temperature/speed normal
[24239.156539] mce: [Hardware Error]: Machine check events logged
[24551.862886] CPU2: Core temperature above threshold, cpu clock throttled (total events = 334664)
[24551.862887] CPU3: Core temperature above threshold, cpu clock throttled (total events = 334663)
[24551.862903] mce: [Hardware Error]: Machine check events logged
[24551.863937] CPU3: Core temperature/speed normal
[24551.863939] CPU2: Core temperature/speed normal
[24551.863944] mce: [Hardware Error]: Machine check events logged
[24869.532148] CPU2: Core temperature above threshold, cpu clock throttled (total events = 334877)
[24869.532154] CPU3: Core temperature above threshold, cpu clock throttled (total events = 334876)
[24869.532170] mce: [Hardware Error]: Machine check events logged
[24869.533202] CPU2: Core temperature/speed normal
[24869.533203] CPU3: Core temperature/speed normal
[24869.533208] mce: [Hardware Error]: Machine check events logged
[25723.989224] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.89.73.56 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=112 ID=2895 PROTO=UDP SPT=63853 DPT=51413 LEN=111 
[25795.784980] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60128 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[26061.802151] CPU2: Core temperature above threshold, cpu clock throttled (total events = 336210)
[26061.802153] CPU3: Core temperature above threshold, cpu clock throttled (total events = 336209)
[26061.802168] mce: [Hardware Error]: Machine check events logged
[26061.804259] CPU2: Core temperature/speed normal
[26061.804260] CPU3: Core temperature/speed normal
[26061.804265] mce: [Hardware Error]: Machine check events logged
[26524.174829] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=95.244.240.52 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=50 ID=17204 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[26554.035648] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=95.244.240.52 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=50 ID=19961 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[26587.212386] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=95.244.240.52 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=50 ID=21977 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[26780.346278] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=178.214.188.235 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=116 ID=27137 PROTO=UDP SPT=58203 DPT=51413 LEN=112 
[27093.789218] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60131 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[27349.052685] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=104.244.225.109 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=48 ID=49617 DF PROTO=UDP SPT=17451 DPT=51413 LEN=112 
[31116.473828] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60148 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[31253.665131] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60149 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[31317.711493] CPU2: Core temperature above threshold, cpu clock throttled (total events = 336380)
[31317.711498] CPU3: Core temperature above threshold, cpu clock throttled (total events = 336379)
[31317.711514] mce: [Hardware Error]: Machine check events logged
[31317.712535] CPU2: Core temperature/speed normal
[31317.712537] CPU3: Core temperature/speed normal
[31317.712541] mce: [Hardware Error]: Machine check events logged
[31349.475422] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60150 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[31443.070225] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60151 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[34275.119746] CPU1: Core temperature above threshold, cpu clock throttled (total events = 35728)
[34275.119747] CPU0: Core temperature above threshold, cpu clock throttled (total events = 35728)
[34275.119837] mce: [Hardware Error]: Machine check events logged
[34275.120792] CPU1: Core temperature/speed normal
[34275.120793] CPU0: Core temperature/speed normal
[34275.120796] mce: [Hardware Error]: Machine check events logged
[34796.344579] CPU3: Core temperature above threshold, cpu clock throttled (total events = 347329)
[34796.344580] CPU2: Core temperature above threshold, cpu clock throttled (total events = 347330)
[34796.344623] mce: [Hardware Error]: Machine check events logged
[34796.345635] CPU3: Core temperature/speed normal
[34796.345637] CPU2: Core temperature/speed normal
[34796.345652] mce: [Hardware Error]: Machine check events logged
[34937.586214] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=188.16.122.60 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=115 ID=4882 PROTO=UDP SPT=29573 DPT=51413 LEN=112 
[35121.032579] CPU2: Core temperature above threshold, cpu clock throttled (total events = 351532)
[35121.032584] CPU3: Core temperature above threshold, cpu clock throttled (total events = 351531)
[35121.032595] mce: [Hardware Error]: Machine check events logged
[35121.033629] CPU3: Core temperature/speed normal
[35121.033630] CPU2: Core temperature/speed normal
[35121.033635] mce: [Hardware Error]: Machine check events logged
[35421.679929] CPU2: Core temperature above threshold, cpu clock throttled (total events = 354089)
[35421.679931] CPU3: Core temperature above threshold, cpu clock throttled (total events = 354088)
[35421.679948] mce: [Hardware Error]: Machine check events logged
[35421.680980] CPU3: Core temperature/speed normal
[35421.680981] CPU2: Core temperature/speed normal
[35421.680985] mce: [Hardware Error]: Machine check events logged
[35732.000485] CPU2: Core temperature above threshold, cpu clock throttled (total events = 355543)
[35732.000486] CPU3: Core temperature above threshold, cpu clock throttled (total events = 355542)
[35732.000503] mce: [Hardware Error]: Machine check events logged
[35732.002584] CPU2: Core temperature/speed normal
[35732.002586] CPU3: Core temperature/speed normal
[35732.002593] mce: [Hardware Error]: Machine check events logged
[36411.680712] CPU2: Core temperature above threshold, cpu clock throttled (total events = 356687)
[36411.680717] CPU3: Core temperature above threshold, cpu clock throttled (total events = 356686)
[36411.680732] mce: [Hardware Error]: Machine check events logged
[36411.683874] CPU2: Core temperature/speed normal
[36411.683876] CPU3: Core temperature/speed normal
[36411.683882] mce: [Hardware Error]: Machine check events logged
[36862.008907] CPU3: Core temperature above threshold, cpu clock throttled (total events = 363031)
[36862.008909] CPU2: Core temperature above threshold, cpu clock throttled (total events = 363032)
[36862.008927] mce: [Hardware Error]: Machine check events logged
[36862.009952] CPU2: Core temperature/speed normal
[36862.009954] CPU3: Core temperature/speed normal
[36862.009957] mce: [Hardware Error]: Machine check events logged
[36863.084861] usb 2-1.2: USB disconnect, device number 3
[36864.074084] usb 2-1.2: new full-speed USB device number 5 using ehci-pci
[36864.186066] usb 2-1.2: New USB device found, idVendor=046d, idProduct=c52b
[36864.186071] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[36864.186074] usb 2-1.2: Product: USB Receiver
[36864.186077] usb 2-1.2: Manufacturer: Logitech
[36864.194263] logitech-djreceiver 0003:046D:C52B.000B: hiddev0,hidraw3: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.2/input2
[36864.326410] input: Logitech K360 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.000B/0003:046D:4004.000C/input/input19
[36864.326881] logitech-hidpp-device 0003:046D:4004.000C: input,hidraw4: USB HID v1.11 Keyboard [Logitech K360] on usb-0000:00:1d.0-1.2:1
[36864.394324] input: Logitech M185 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.000B/0003:046D:4008.000D/input/input20
[36864.394680] logitech-hidpp-device 0003:046D:4008.000D: input,hidraw5: USB HID v1.11 Mouse [Logitech M185] on usb-0000:00:1d.0-1.2:2
[36864.400318] input: Logitech M305 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.000B/0003:046D:101F.000E/input/input21
[36864.400573] logitech-hidpp-device 0003:046D:101F.000E: input,hidraw6: USB HID v1.11 Mouse [Logitech M305] on usb-0000:00:1d.0-1.2:3
[36865.110946] usb 1-1.1: USB disconnect, device number 3
[36975.526030] usb 1-1.1: new full-speed USB device number 5 using ehci-pci
[36975.639344] usb 1-1.1: New USB device found, idVendor=248a, idProduct=8367
[36975.639348] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[36975.639350] usb 1-1.1: Product: Wireless Receiver
[36975.639352] usb 1-1.1: Manufacturer: Telink
[36975.645055] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:248A:8367.000F/input/input22
[36975.702338] hid-generic 0003:248A:8367.000F: input,hidraw0: USB HID v1.11 Mouse [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input0
[36975.705045] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:248A:8367.0010/input/input23
[36975.762615] hid-generic 0003:248A:8367.0010: input,hidraw1: USB HID v1.11 Keyboard [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input1
[38527.300706] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.89.73.56 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=112 ID=2933 PROTO=UDP SPT=63853 DPT=51413 LEN=111 
[38553.899431] wlo1: authenticate with 80:3f:5d:93:97:cb
[38553.923152] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[38553.927994] wlo1: authenticated
[38553.930702] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[38553.934358] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[38553.934666] wlo1: associated
[38560.739993] wlo1: authenticate with 80:3f:5d:93:97:cb
[38560.763456] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[38560.767513] wlo1: authenticated
[38560.770720] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[38560.774369] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[38560.774525] wlo1: associated
[38794.012519] CPU3: Core temperature above threshold, cpu clock throttled (total events = 381549)
[38794.012524] CPU2: Core temperature above threshold, cpu clock throttled (total events = 381550)
[38794.012543] mce: [Hardware Error]: Machine check events logged
[38794.014613] CPU3: Core temperature/speed normal
[38794.014614] CPU2: Core temperature/speed normal
[38794.014619] mce: [Hardware Error]: Machine check events logged
[39830.205906] CPU0: Core temperature above threshold, cpu clock throttled (total events = 40401)
[39830.205907] CPU1: Core temperature above threshold, cpu clock throttled (total events = 40401)
[39830.205958] mce: [Hardware Error]: Machine check events logged
[39830.206958] CPU0: Core temperature/speed normal
[39830.206959] CPU1: Core temperature/speed normal
[39830.206963] mce: [Hardware Error]: Machine check events logged
[40086.093965] BTRFS info (device sda5): qgroup scan completed (inconsistency flag cleared)
[40329.269052] CPU3: Core temperature above threshold, cpu clock throttled (total events = 395461)
[40329.269053] CPU2: Core temperature above threshold, cpu clock throttled (total events = 395462)
[40329.269071] mce: [Hardware Error]: Machine check events logged
[40329.270104] CPU3: Core temperature/speed normal
[40329.270105] CPU2: Core temperature/speed normal
[40329.270109] mce: [Hardware Error]: Machine check events logged
[40683.148147] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=50 ID=60139 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[41785.540078] CPU2: Core temperature above threshold, cpu clock throttled (total events = 395605)
[41785.540079] CPU3: Core temperature above threshold, cpu clock throttled (total events = 395604)
[41785.540097] mce: [Hardware Error]: Machine check events logged
[41785.541129] CPU2: Core temperature/speed normal
[41785.541130] CPU3: Core temperature/speed normal
[41785.541134] mce: [Hardware Error]: Machine check events logged
[43546.597413] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=31.147.126.5 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=112 ID=465 PROTO=UDP SPT=51594 DPT=51413 LEN=111 
[44286.388971] CPU2: Core temperature above threshold, cpu clock throttled (total events = 395638)
[44286.388973] CPU3: Core temperature above threshold, cpu clock throttled (total events = 395637)
[44286.389006] mce: [Hardware Error]: Machine check events logged
[44286.390006] CPU2: Core temperature/speed normal
[44286.390007] CPU3: Core temperature/speed normal
[44286.390032] mce: [Hardware Error]: Machine check events logged
[45112.965988] wlo1: authenticate with 80:3f:5d:93:97:cb
[45112.989748] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[45112.994537] wlo1: authenticated
[45113.001103] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[45113.004864] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[45113.004977] wlo1: associated
[45490.031965] wlo1: authenticate with 80:3f:5d:93:97:cb
[45490.055002] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[45490.059839] wlo1: authenticated
[45490.062565] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[45490.066215] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[45490.066443] wlo1: associated
[45591.946415] CPU3: Core temperature above threshold, cpu clock throttled (total events = 395647)
[45591.946417] CPU2: Core temperature above threshold, cpu clock throttled (total events = 395648)
[45591.946439] mce: [Hardware Error]: Machine check events logged
[45591.947459] CPU3: Core temperature/speed normal
[45591.947461] CPU2: Core temperature/speed normal
[45591.947468] mce: [Hardware Error]: Machine check events logged
[46101.706099] CPU0: Core temperature above threshold, cpu clock throttled (total events = 44558)
[46101.706100] CPU1: Core temperature above threshold, cpu clock throttled (total events = 44558)
[46101.706120] mce: [Hardware Error]: Machine check events logged
[46101.709255] CPU0: Core temperature/speed normal
[46101.709256] CPU1: Core temperature/speed normal
[46101.709261] mce: [Hardware Error]: Machine check events logged
[46343.050077] wlo1: authenticate with 80:3f:5d:93:97:cb
[46343.073491] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[46343.078333] wlo1: authenticated
[46343.081109] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[46343.084782] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[46343.084946] wlo1: associated
[46401.988017] wlo1: authenticate with 80:3f:5d:93:97:cb
[46402.011666] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[46402.015735] wlo1: authenticated
[46402.019187] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[46402.022854] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[46402.022957] wlo1: associated
[46404.288915] CPU2: Core temperature above threshold, cpu clock throttled (total events = 396655)
[46404.288916] CPU3: Core temperature above threshold, cpu clock throttled (total events = 396654)
[46404.288939] mce: [Hardware Error]: Machine check events logged
[46404.289965] CPU2: Core temperature/speed normal
[46404.289967] CPU3: Core temperature/speed normal
[46404.289970] mce: [Hardware Error]: Machine check events logged
[46735.043946] wlo1: authenticate with 80:3f:5d:93:97:cb
[46735.067388] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[46735.072750] wlo1: authenticated
[46735.075132] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[46735.078827] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[46735.079066] wlo1: associated
[46740.048510] wlo1: authenticate with 80:3f:5d:93:97:cb
[46740.071948] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[46740.075047] wlo1: authenticated
[46740.079281] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[46740.082960] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[46740.083151] wlo1: associated
[46948.020268] wlo1: authenticate with 80:3f:5d:93:97:cb
[46948.047279] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[46948.051270] wlo1: authenticated
[46948.058744] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[46948.064082] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=3)
[46948.064242] wlo1: associated
[46995.499148] CPU2: Core temperature above threshold, cpu clock throttled (total events = 405114)
[46995.499150] CPU3: Core temperature above threshold, cpu clock throttled (total events = 405113)
[46995.499166] mce: [Hardware Error]: Machine check events logged
[46995.500185] CPU3: Core temperature/speed normal
[46995.500186] CPU2: Core temperature/speed normal
[46995.500189] mce: [Hardware Error]: Machine check events logged
ls -l /dev/disk/by-id/
total 0
lrwxrwxrwx 1 root root  9 11 mai 08:56 ata-hp_DVD_RW_AD-7586H_SEA4616702 -> ../../sr0
lrwxrwxrwx 1 root root  9 11 mai 08:56 ata-ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 ata-ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 ata-ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 ata-ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 ata-ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 11 mai 08:56 scsi-0ATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-0ATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-0ATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-0ATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-0ATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 11 mai 08:56 scsi-1ATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-1ATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-1ATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-1ATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-1ATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 11 mai 08:56 scsi-35000c5003090b299 -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-35000c5003090b299-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-35000c5003090b299-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-35000c5003090b299-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-35000c5003090b299-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 11 mai 08:56 scsi-SATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-SATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-SATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-SATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 scsi-SATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 11 mai 22:04 usb-Generic-_Multi-Card_20071114173400000-0:0 -> ../../sdb
lrwxrwxrwx 1 root root  9 11 mai 08:56 wwn-0x5000c5003090b299 -> ../../sda
lrwxrwxrwx 1 root root 10 11 mai 08:56 wwn-0x5000c5003090b299-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 11 mai 08:56 wwn-0x5000c5003090b299-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 11 mai 08:56 wwn-0x5000c5003090b299-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 11 mai 08:56 wwn-0x5000c5003090b299-part5 -> ../../sda5
lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 298,1G  0 disk 
├─sda1   8:1    0     2G  0 part [SWAP]
├─sda2   8:2    0     1K  0 part 
├─sda3   8:3    0 256,1G  0 part /home
└─sda5   8:5    0    40G  0 part /tmp
sr0     11:0    1  1024M  0 rom  
ls -l /dev/sd*
brw-rw---- 1 root disk 8,  0 11 mai 08:56 /dev/sda
brw-rw---- 1 root disk 8,  1 11 mai 08:56 /dev/sda1
brw-rw---- 1 root disk 8,  2 11 mai 08:56 /dev/sda2
brw-rw---- 1 root disk 8,  3 11 mai 08:56 /dev/sda3
brw-rw---- 1 root disk 8,  5 11 mai 08:56 /dev/sda5
brw-rw---- 1 root disk 8, 16 11 mai 22:06 /dev/sdb
mbusb commented 7 years ago

dmesg shows [ 13.152801] sd 4:0:0:0: [sdb] Attached SCSI removable disk

ls -l /dev/disk/by-id/ shows lrwxrwxrwx 1 root root 9 11 mai 22:04 usb-Generic-_Multi-Card_20071114173400000-0:0 -> ../../sdb

ls -l /dev/sd* shows brw-rw---- 1 root disk 8, 16 11 mai 22:06 /dev/sdb

If you do not have any disk inserted, then why should above command shows up the disk?

However, lsblk does not show the disk which is confusing me.

mbusb commented 7 years ago

Meanwhile, can you confirm if you use any sort of USB hub?

mbusb commented 7 years ago

Execute this command udevadm monitor in terminal and do not close it. Remove your usb and reconnect it. What does printed on the terminal?

PowaBanga commented 7 years ago

In my last message, my usb was not in my computer. If no, my usb key is a usb key Sony, it's the same key that I use every time for create my live usb bootable... I am not sure to understand your last message, because english is not my native langue, butmy key, is just one key that I insert directly in my computer...

I am sorry, i did not understand that I must have my usb key in computer to launch multibootusb, same if this change nothing in my case.

so I reprint the commands with my key connected:

[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Memory: 3827488K/3987312K available (7310K kernel code, 1284K rwdata, 5116K rodata, 1804K init, 1468K bss, 159824K reserved, 0K cma-reserved)
[    0.000000] Preemptible hierarchical RCU implementation.
[    0.000000]  Build-time adjustment of leaf fanout to 64.
[    0.000000]  RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=8
[    0.000000] NR_IRQS:33024 nr_irqs:488 16
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2261.379 MHz processor
[    0.000029] Calibrating delay loop (skipped), value calculated using timer frequency.. 4522.75 BogoMIPS (lpj=9045516)
[    0.000031] pid_max: default: 32768 minimum: 301
[    0.000052] ACPI: Core revision 20160930
[    0.027398] ACPI: 2 ACPI AML tables successfully acquired and loaded
[    0.027456] Security Framework initialized
[    0.027462] AppArmor: AppArmor initialized
[    0.027756] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.028990] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.029582] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.029588] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.029918] CPU: Physical Processor ID: 0
[    0.029919] CPU: Processor Core ID: 0
[    0.029924] mce: CPU supports 9 MCE banks
[    0.029933] CPU0: Thermal monitoring enabled (TM1)
[    0.029942] process: using mwait in idle threads
[    0.029946] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
[    0.029947] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.030101] Freeing SMP alternatives memory: 28K
[    0.058762] ftrace: allocating 28868 entries in 113 pages
[    0.072770] smpboot: Max logical packages: 4
[    0.073286] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.219565] smpboot: CPU0: Intel(R) Core(TM) i3 CPU       M 350  @ 2.27GHz (family: 0x6, model: 0x25, stepping: 0x5)
[    0.231578] Performance Events: PEBS fmt1+, Westmere events, 16-deep LBR, Intel PMU driver.
[    0.231620] core: CPUID marked event: 'bus cycles' unavailable
[    0.231624] ... version:                3
[    0.231626] ... bit width:              48
[    0.231627] ... generic registers:      4
[    0.231628] ... value mask:             0000ffffffffffff
[    0.231630] ... max period:             000000007fffffff
[    0.231631] ... fixed-purpose events:   3
[    0.231632] ... event mask:             000000070000000f
[    0.259821] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.267571] smp: Bringing up secondary CPUs ...
[    0.299635] x86: Booting SMP configuration:
[    0.299641] .... node  #0, CPUs:      #1 #2 #3
[    0.605633] smp: Brought up 1 node, 4 CPUs
[    0.605636] smpboot: Total of 4 processors activated (18090.91 BogoMIPS)
[    0.608242] devtmpfs: initialized
[    0.608325] x86/mm: Memory block size: 128MB
[    0.611067] PM: Registering ACPI NVS region [mem 0xbb6bf000-0xbb7befff] (1048576 bytes)
[    0.611182] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.611198] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.611275] pinctrl core: initialized pinctrl subsystem
[    0.611342] RTC time:  7:58:13, date: 05/12/17
[    0.611452] NET: Registered protocol family 16
[    0.629607] cpuidle: using governor ladder
[    0.645604] cpuidle: using governor menu
[    0.645608] PCCT header not found.
[    0.645680] Simple Boot Flag at 0x44 set to 0x1
[    0.645691] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.645693] ACPI: bus type PCI registered
[    0.645694] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.645778] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.645824] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.645837] PCI: Using configuration type 1 for base access
[    0.646081] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.646082] mtrr: probably your BIOS does not setup all CPUs.
[    0.646082] mtrr: corrected configuration.
[    0.659761] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.660039] ACPI: Added _OSI(Module Device)
[    0.660040] ACPI: Added _OSI(Processor Device)
[    0.660041] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.660041] ACPI: Added _OSI(Processor Aggregator Device)
[    0.666439] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.667108] ACPI: Dynamic OEM Table Load:
[    0.667115] ACPI: SSDT 0xFFFF93AE72B98C00 0003F0 (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
[    0.667590] ACPI: Dynamic OEM Table Load:
[    0.667596] ACPI: SSDT 0xFFFF93AE734C1000 000891 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
[    0.668640] ACPI: Dynamic OEM Table Load:
[    0.668645] ACPI: SSDT 0xFFFF93AE734C0400 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
[    0.669102] ACPI: Dynamic OEM Table Load:
[    0.669106] ACPI: SSDT 0xFFFF93AE72B9AE00 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
[    0.670413] ACPI : EC: EC started
[    0.670413] ACPI : EC: interrupt blocked
[    0.684284] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
[    0.684286] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.684287] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
[    0.684288] ACPI: Interpreter enabled
[    0.684328] ACPI: (supports S0 S3 S4 S5)
[    0.684329] ACPI: Using IOAPIC for interrupt routing
[    0.684376] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.697413] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[    0.697420] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.697483] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.698366] PCI host bridge to bus 0000:00
[    0.698369] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.698370] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.698372] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.698373] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfeafffff window]
[    0.698375] pci_bus 0000:00: root bus resource [bus 00-fe]
[    0.698383] pci 0000:00:00.0: [8086:0044] type 00 class 0x060000
[    0.698406] DMAR: BIOS has allocated no shadow GTT; disabling IOMMU for graphics
[    0.698514] pci 0000:00:02.0: [8086:0046] type 00 class 0x030000
[    0.698524] pci 0000:00:02.0: reg 0x10: [mem 0xd0000000-0xd03fffff 64bit]
[    0.698530] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.698534] pci 0000:00:02.0: reg 0x20: [io  0x4050-0x4057]
[    0.698688] pci 0000:00:16.0: [8086:3b64] type 00 class 0x078000
[    0.698715] pci 0000:00:16.0: reg 0x10: [mem 0xd4406100-0xd440610f 64bit]
[    0.698808] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.698935] pci 0000:00:1a.0: [8086:3b3c] type 00 class 0x0c0320
[    0.699314] pci 0000:00:1a.0: reg 0x10: [mem 0xd4405c00-0xd4405fff]
[    0.701542] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.701647] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.701702] pci 0000:00:1b.0: [8086:3b56] type 00 class 0x040300
[    0.701727] pci 0000:00:1b.0: reg 0x10: [mem 0xd4400000-0xd4403fff 64bit]
[    0.701835] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.701921] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.701969] pci 0000:00:1c.0: [8086:3b42] type 01 class 0x060400
[    0.702070] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.702149] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.702198] pci 0000:00:1c.1: [8086:3b44] type 01 class 0x060400
[    0.702296] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.702375] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.702432] pci 0000:00:1d.0: [8086:3b34] type 00 class 0x0c0320
[    0.702810] pci 0000:00:1d.0: reg 0x10: [mem 0xd4405800-0xd4405bff]
[    0.705040] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.705140] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.705189] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.705327] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.705376] pci 0000:00:1f.0: [8086:3b09] type 00 class 0x060100
[    0.705588] pci 0000:00:1f.2: [8086:3b29] type 00 class 0x010601
[    0.705611] pci 0000:00:1f.2: reg 0x10: [io  0x4048-0x404f]
[    0.705622] pci 0000:00:1f.2: reg 0x14: [io  0x405c-0x405f]
[    0.705632] pci 0000:00:1f.2: reg 0x18: [io  0x4040-0x4047]
[    0.705643] pci 0000:00:1f.2: reg 0x1c: [io  0x4058-0x405b]
[    0.705653] pci 0000:00:1f.2: reg 0x20: [io  0x4020-0x403f]
[    0.705664] pci 0000:00:1f.2: reg 0x24: [mem 0xd4405000-0xd44057ff]
[    0.705727] pci 0000:00:1f.2: PME# supported from D3hot
[    0.705835] pci 0000:00:1f.3: [8086:3b30] type 00 class 0x0c0500
[    0.705855] pci 0000:00:1f.3: reg 0x10: [mem 0xd4406000-0xd44060ff 64bit]
[    0.705885] pci 0000:00:1f.3: reg 0x20: [io  0x4000-0x401f]
[    0.706022] pci 0000:00:1f.6: [8086:3b32] type 00 class 0x118000
[    0.706047] pci 0000:00:1f.6: reg 0x10: [mem 0xd4404000-0xd4404fff 64bit]
[    0.706320] pci 0000:02:00.0: [1814:5390] type 00 class 0x028000
[    0.706349] pci 0000:02:00.0: reg 0x10: [mem 0xd3400000-0xd340ffff]
[    0.715611] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.715619] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.715626] pci 0000:00:1c.0:   bridge window [mem 0xd3400000-0xd43fffff]
[    0.715638] pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.715781] pci 0000:03:00.0: [10ec:8136] type 00 class 0x020000
[    0.715858] pci 0000:03:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.715971] pci 0000:03:00.0: reg 0x18: [mem 0xd1410000-0xd1410fff 64bit pref]
[    0.716003] pci 0000:03:00.0: reg 0x20: [mem 0xd1400000-0xd140ffff 64bit pref]
[    0.716048] pci 0000:03:00.0: reg 0x30: [mem 0xffff0000-0xffffffff pref]
[    0.716357] pci 0000:03:00.0: supports D1 D2
[    0.716358] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.716490] pci 0000:03:00.0: System wakeup disabled by ACPI
[    0.716616] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.716621] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    0.716625] pci 0000:00:1c.1:   bridge window [mem 0xd2400000-0xd33fffff]
[    0.716632] pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.716716] pci 0000:00:1e.0: PCI bridge to [bus 04] (subtractive decode)
[    0.716729] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.716730] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.716732] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.716733] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xfeafffff window] (subtractive decode)
[    0.717479] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 7 10 12 14 15) *0
[    0.717570] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 7 *11 12 14 15)
[    0.717664] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    0.717754] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 7 11 12 14 15) *10
[    0.717842] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 7 10 12 14 15) *0, disabled.
[    0.717930] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 *7 11 12 14 15)
[    0.718019] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 7 10 12 14 15) *11
[    0.718107] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 7 11 12 14 15) *0, disabled.
[    0.718268] ACPI: PCI Root Bridge [CPBG] (domain 0000 [bus ff])
[    0.718272] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.718277] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.718403] PCI host bridge to bus 0000:ff
[    0.718406] pci_bus 0000:ff: root bus resource [bus ff]
[    0.718411] pci 0000:ff:00.0: [8086:2c62] type 00 class 0x060000
[    0.718467] pci 0000:ff:00.1: [8086:2d01] type 00 class 0x060000
[    0.718530] pci 0000:ff:02.0: [8086:2d10] type 00 class 0x060000
[    0.718585] pci 0000:ff:02.1: [8086:2d11] type 00 class 0x060000
[    0.718637] pci 0000:ff:02.2: [8086:2d12] type 00 class 0x060000
[    0.718689] pci 0000:ff:02.3: [8086:2d13] type 00 class 0x060000
[    0.718823] ACPI: Enabled 7 GPEs in block 00 to 3F
[    0.718908] ACPI : EC: interrupt unblocked
[    0.718916] ACPI : EC: event unblocked
[    0.718924] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x16, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.718925] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.719149] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.719150] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.719154] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.719154] vgaarb: loaded
[    0.719252] SCSI subsystem initialized
[    0.719317] libata version 3.00 loaded.
[    0.719382] PCI: Using ACPI for IRQ routing
[    0.729272] PCI: pci_cache_line_size set to 64 bytes
[    0.729358] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
[    0.729360] e820: reserve RAM buffer [mem 0xbb63f000-0xbbffffff]
[    0.729361] e820: reserve RAM buffer [mem 0xbb800000-0xbbffffff]
[    0.729481] NetLabel: Initializing
[    0.729482] NetLabel:  domain hash size = 128
[    0.729482] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.729506] NetLabel:  unlabeled traffic allowed by default
[    0.729604] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.729609] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.731640] clocksource: Switched to clocksource hpet
[    0.741803] VFS: Disk quotas dquot_6.6.0
[    0.741847] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.741941] AppArmor: AppArmor Filesystem Enabled
[    0.741997] pnp: PnP ACPI init
[    0.742685] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.742687] system 00:00: [io  0x0800-0x080f] has been reserved
[    0.742689] system 00:00: [io  0xffff] has been reserved
[    0.742690] system 00:00: [io  0xffff] has been reserved
[    0.742692] system 00:00: [io  0x0400-0x047f] has been reserved
[    0.742694] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.742695] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.742697] system 00:00: [io  0x0380-0x038e] has been reserved
[    0.742701] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.742740] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.742780] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.742832] pnp 00:03: Plug and Play ACPI device, IDs SYN1e26 SYN1e00 SYN0002 PNP0f13 (active)
[    0.743311] system 00:04: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.743313] system 00:04: [mem 0xfed10000-0xfed13fff] has been reserved
[    0.743314] system 00:04: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.743316] system 00:04: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.743318] system 00:04: [mem 0xe0000000-0xefffffff] has been reserved
[    0.743319] system 00:04: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.743321] system 00:04: [mem 0xff000000-0xffffffff] could not be reserved
[    0.743323] system 00:04: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.743324] system 00:04: [mem 0xd4500000-0xd4500fff] has been reserved
[    0.743327] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.743545] pnp: PnP ACPI: found 5 devices
[    0.750861] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.750868] pci 0000:03:00.0: can't claim BAR 6 [mem 0xffff0000-0xffffffff pref]: no compatible bridge window
[    0.750902] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.750905] pci 0000:00:1c.0:   bridge window [io  0x3000-0x3fff]
[    0.750911] pci 0000:00:1c.0:   bridge window [mem 0xd3400000-0xd43fffff]
[    0.750916] pci 0000:00:1c.0:   bridge window [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.750926] pci 0000:03:00.0: BAR 6: assigned [mem 0xd2400000-0xd240ffff pref]
[    0.750928] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.750931] pci 0000:00:1c.1:   bridge window [io  0x2000-0x2fff]
[    0.750936] pci 0000:00:1c.1:   bridge window [mem 0xd2400000-0xd33fffff]
[    0.750940] pci 0000:00:1c.1:   bridge window [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.750948] pci 0000:00:1e.0: PCI bridge to [bus 04]
[    0.750963] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.750965] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.750966] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.750968] pci_bus 0000:00: resource 7 [mem 0xc0000000-0xfeafffff window]
[    0.750969] pci_bus 0000:02: resource 0 [io  0x3000-0x3fff]
[    0.750970] pci_bus 0000:02: resource 1 [mem 0xd3400000-0xd43fffff]
[    0.750972] pci_bus 0000:02: resource 2 [mem 0xd0400000-0xd13fffff 64bit pref]
[    0.750973] pci_bus 0000:03: resource 0 [io  0x2000-0x2fff]
[    0.750974] pci_bus 0000:03: resource 1 [mem 0xd2400000-0xd33fffff]
[    0.750976] pci_bus 0000:03: resource 2 [mem 0xd1400000-0xd23fffff 64bit pref]
[    0.750977] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
[    0.750979] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
[    0.750980] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.750981] pci_bus 0000:04: resource 7 [mem 0xc0000000-0xfeafffff window]
[    0.751113] NET: Registered protocol family 2
[    0.751331] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.751431] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.751578] TCP: Hash tables configured (established 32768 bind 32768)
[    0.751612] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.751633] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.751714] NET: Registered protocol family 1
[    0.751729] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.791853] PCI: CLS 64 bytes, default 64
[    0.791912] Unpacking initramfs...
[    1.976974] Freeing initrd memory: 9488K
[    1.976978] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.976981] software IO TLB [mem 0xb763f000-0xbb63f000] (64MB) mapped at [ffff93adf763f000-ffff93adfb63efff]
[    1.977283] Scanning for low memory corruption every 60 seconds
[    1.977710] audit: initializing netlink subsys (disabled)
[    1.977805] audit: type=2000 audit(1494575893.844:1): initialized
[    1.978349] workingset: timestamp_bits=37 max_order=20 bucket_order=0
[    1.978404] zbud: loaded
[    1.980473] Key type asymmetric registered
[    1.980474] Asymmetric key parser 'x509' registered
[    1.980504] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251)
[    1.980543] io scheduler noop registered
[    1.980544] io scheduler deadline registered
[    1.980551] io scheduler cfq registered (default)
[    1.981058] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    1.981058] vesafb: scrolling: redraw
[    1.981060] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    1.981074] vesafb: framebuffer at 0xc0000000, mapped to 0xffffb953c1000000, using 3072k, total 3072k
[    2.107558] Console: switching to colour frame buffer device 128x48
[    2.233965] fb0: VESA VGA frame buffer device
[    2.233982] intel_idle: MWAIT substates: 0x1120
[    2.233983] intel_idle: v0.4.1 model 0x25
[    2.234166] intel_idle: lapic_timer_reliable_states 0xffffffff
[    2.234410] GHES: HEST is not enabled!
[    2.234495] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.236368] Non-volatile memory driver v1.3
[    2.236399] Linux agpgart interface v0.103
[    2.236920] ahci 0000:00:1f.2: version 3.0
[    2.237142] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
[    2.237145] ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck pm led clo pio slum part ems apst 
[    2.248117] scsi host0: ahci
[    2.248333] scsi host1: ahci
[    2.248764] scsi host2: ahci
[    2.248911] scsi host3: ahci
[    2.248970] ata1: SATA max UDMA/133 abar m2048@0xd4405000 port 0xd4405100 irq 24
[    2.248973] ata2: SATA max UDMA/133 abar m2048@0xd4405000 port 0xd4405180 irq 24
[    2.248973] ata3: DUMMY
[    2.248974] ata4: DUMMY
[    2.249054] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    2.265672] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.265710] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.265969] mousedev: PS/2 mouse device common for all mice
[    2.266777] rtc_cmos 00:01: RTC can wake from S4
[    2.267128] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.267170] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    2.267513] ledtrig-cpu: registered to indicate activity on CPUs
[    2.267558] hidraw: raw HID events driver (C) Jiri Kosina
[    2.267856] NET: Registered protocol family 10
[    2.272122] Segment Routing with IPv6
[    2.272491] microcode: sig=0x20655, pf=0x10, revision=0x4
[    2.272555] microcode: Microcode Update Driver: v2.2.
[    2.272709] registered taskstats version 1
[    2.272732] zswap: loaded using pool lzo/zbud
[    2.286030] Key type big_key registered
[    2.287732] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    2.289145] Key type encrypted registered
[    2.289153] AppArmor: AppArmor sha1 policy hashing enabled
[    2.289583]   Magic number: 1:79:976
[    2.289691] memory memory23: hash matches
[    2.289749] rtc_cmos 00:01: setting system clock to 2017-05-12 07:58:14 UTC (1494575894)
[    2.289812] PM: Checking hibernation image partition /dev/disk/by-uuid/0e34bff8-2abb-4e51-b13c-d42bbe79928b
[    2.563536] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.563570] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.572992] ata2.00: ATAPI: hp      DVD RW AD-7586H, KH04, max UDMA/100
[    2.573653] ata1.00: ATA-8: ST9320325AS, 0005HPM1, max UDMA/100
[    2.573656] ata1.00: 625142448 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.584863] ata2.00: configured for UDMA/100
[    2.596545] ata1.00: configured for UDMA/100
[    2.597015] scsi 0:0:0:0: Direct-Access     ATA      ST9320325AS      HPM1 PQ: 0 ANSI: 5
[    2.628115] sd 0:0:0:0: [sda] 625142448 512-byte logical blocks: (320 GB/298 GiB)
[    2.628161] sd 0:0:0:0: [sda] Write Protect is off
[    2.628165] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.628333] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.630487] scsi 1:0:0:0: CD-ROM            hp       DVD RW AD-7586H  KH04 PQ: 0 ANSI: 5
[    2.713025]  sda: sda1 sda2 < sda5 > sda3
[    2.714971] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.007736] tsc: Refined TSC clocksource calibration: 2261.390 MHz
[    3.007742] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2098bba32f1, max_idle_ns: 440795230994 ns
[    3.344209] psmouse serio1: synaptics: queried max coordinates: x [..5888], y [..4844]
[    3.462098] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04773/0xe40000/0xa0400/0x0, board id: 0, fw id: 639099
[    3.536173] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input2
[    3.542549] PM: Hibernation image not present or could not be loaded.
[    3.544708] Freeing unused kernel memory: 1804K
[    3.544709] Write protecting the kernel read-only data: 14336k
[    3.545202] Freeing unused kernel memory: 868K
[    3.547873] Freeing unused kernel memory: 1028K
[    3.552382] random: systemd: uninitialized urandom read (16 bytes read)
[    3.552633] random: systemd: uninitialized urandom read (16 bytes read)
[    3.552646] random: systemd: uninitialized urandom read (16 bytes read)
[    3.554198] systemd[1]: systemd 232 running in system mode. (+PAM -AUDIT +SELINUX -IMA +APPARMOR -SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    3.554345] systemd[1]: Detected architecture x86-64.
[    3.554347] systemd[1]: Running in initial RAM disk.
[    3.554363] systemd[1]: Set hostname to <karkatouf>.
[    3.595237] random: systemd: uninitialized urandom read (16 bytes read)
[    3.595257] random: systemd: uninitialized urandom read (16 bytes read)
[    3.595285] random: systemd: uninitialized urandom read (16 bytes read)
[    3.595330] random: systemd: uninitialized urandom read (16 bytes read)
[    3.596290] random: systemd: uninitialized urandom read (16 bytes read)
[    3.596357] random: systemd: uninitialized urandom read (16 bytes read)
[    3.596460] random: systemd: uninitialized urandom read (16 bytes read)
[    3.601107] systemd[1]: Listening on udev Kernel Socket.
[    3.601174] systemd[1]: Reached target Timers.
[    3.601229] systemd[1]: Listening on udev Control Socket.
[    3.601299] systemd[1]: Listening on Journal Socket.
[    3.601387] systemd[1]: Listening on Journal Audit Socket.
[    3.601444] systemd[1]: Listening on Journal Socket (/dev/log).
[    3.615709] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.619349] scsi 1:0:0:0: Attached scsi generic sg1 type 5
[    3.809664] ACPI: bus type USB registered
[    3.809704] usbcore: registered new interface driver usbfs
[    3.809719] usbcore: registered new interface driver hub
[    3.809772] usbcore: registered new device driver usb
[    3.809893] [drm] Initialized
[    3.811118] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    3.816042] ehci-pci: EHCI PCI platform driver
[    3.816510] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
[    3.816517] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    3.816527] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    3.816544] ehci-pci 0000:00:1a.0: debug port 2
[    3.816704] ACPI: Power Button [PWRB]
[    3.823094] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    3.823120] ehci-pci 0000:00:1a.0: irq 16, io mem 0xd4405c00
[    3.826535] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
[    3.826617] ACPI: Lid Switch [LID0]
[    3.826746] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    3.826933] ACPI: Power Button [PWRF]
[    3.837359] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    3.837440] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    3.837442] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.837444] usb usb1: Product: EHCI Host Controller
[    3.837445] usb usb1: Manufacturer: Linux 4.10.13-1-default ehci_hcd
[    3.837447] usb usb1: SerialNumber: 0000:00:1a.0
[    3.839880] hub 1-0:1.0: USB hub found
[    3.839894] hub 1-0:1.0: 3 ports detected
[    3.840450] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    3.840459] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    3.840483] ehci-pci 0000:00:1d.0: debug port 2
[    3.847591] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    3.847624] ehci-pci 0000:00:1d.0: irq 21, io mem 0xd4405800
[    3.859748] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    3.859903] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    3.859905] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    3.859907] usb usb2: Product: EHCI Host Controller
[    3.859908] usb usb2: Manufacturer: Linux 4.10.13-1-default ehci_hcd
[    3.859909] usb usb2: SerialNumber: 0000:00:1d.0
[    3.860162] hub 2-0:1.0: USB hub found
[    3.860176] hub 2-0:1.0: 3 ports detected
[    3.860909] pci 0000:00:00.0: Intel HD Graphics Chipset
[    3.860936] pci 0000:00:00.0: detected gtt size: 2097152K total, 262144K mappable
[    3.861464] pci 0000:00:00.0: detected 32768K stolen memory
[    3.861521] [drm] Memory usable by graphics device = 2048M
[    3.861526] checking generic (c0000000 300000) vs hw (c0000000 10000000)
[    3.861527] fb: switching to inteldrmfb from VESA VGA
[    3.861588] Console: switching to colour dummy device 80x25
[    3.861787] [drm] Replacing VGA console driver
[    3.869941] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    3.869943] [drm] Driver supports precise vblank timestamp query.
[    3.872189] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    3.883585] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    3.883589] cdrom: Uniform CD-ROM driver Revision: 3.20
[    3.884224] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    3.916420] [drm] RC6 disabled, disabling runtime PM support
[    3.919525] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    3.920888] acpi device:01: registered as cooling_device4
[    3.921024] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
[    3.921471] [drm] Initialized i915 1.6.0 20161121 for 0000:00:02.0 on minor 0
[    3.945049] fbcon: inteldrmfb (fb0) is primary device
[    4.031831] clocksource: Switched to clocksource tsc
[    4.069163] random: fast init done
[    4.167674] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    4.187697] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    4.316082] usb 1-1: New USB device found, idVendor=8087, idProduct=0020
[    4.316084] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.316381] hub 1-1:1.0: USB hub found
[    4.316420] hub 1-1:1.0: 6 ports detected
[    4.336071] usb 2-1: New USB device found, idVendor=8087, idProduct=0020
[    4.336074] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    4.336342] hub 2-1:1.0: USB hub found
[    4.336419] hub 2-1:1.0: 8 ports detected
[    4.378953] random: crng init done
[    4.441177] PM: Starting manual resume from disk
[    4.441180] PM: Hibernation image partition 8:1 present
[    4.441181] PM: Looking for hibernation image.
[    4.441558] PM: Image not found (code -22)
[    4.441559] PM: Hibernation image not present or could not be loaded.
[    4.603727] usb 1-1.1: new full-speed USB device number 3 using ehci-pci
[    4.623693] usb 2-1.2: new full-speed USB device number 3 using ehci-pci
[    4.623695] raid6: sse2x1   gen()  5493 MB/s
[    4.691666] raid6: sse2x1   xor()  4316 MB/s
[    4.716848] usb 1-1.1: New USB device found, idVendor=248a, idProduct=8367
[    4.716850] usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.716851] usb 1-1.1: Product: Wireless Receiver
[    4.716852] usb 1-1.1: Manufacturer: Telink
[    4.723978] usbcore: registered new interface driver usbhid
[    4.723979] usbhid: USB HID core driver
[    4.724843] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:248A:8367.0001/input/input7
[    4.735140] Console: switching to colour frame buffer device 170x48
[    4.735448] usb 2-1.2: New USB device found, idVendor=046d, idProduct=c52b
[    4.735451] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    4.735453] usb 2-1.2: Product: USB Receiver
[    4.735454] usb 2-1.2: Manufacturer: Logitech
[    4.743647] logitech-djreceiver 0003:046D:C52B.0005: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.2/input2
[    4.754628] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    4.759674] raid6: sse2x2   gen()  6118 MB/s
[    4.827681] usb 1-1.5: new high-speed USB device number 4 using ehci-pci
[    4.827682] raid6: sse2x2   xor()  3521 MB/s
[    4.827901] usb 2-1.5: new high-speed USB device number 4 using ehci-pci
[    4.829784] hid-generic 0003:248A:8367.0001: input,hidraw1: USB HID v1.11 Mouse [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input0
[    4.830018] input: Telink Wireless Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:248A:8367.0002/input/input8
[    4.895685] raid6: sse2x4   gen()  6979 MB/s
[    4.902653] input: Logitech K360 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:4004.0006/input/input9
[    4.904544] input: Logitech M185 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:4008.0007/input/input10
[    4.948301] hid-generic 0003:248A:8367.0002: input,hidraw2: USB HID v1.11 Keyboard [Telink Wireless Receiver] on usb-0000:00:1a.0-1.1/input1
[    4.963699] raid6: sse2x4   xor()  4970 MB/s
[    4.963702] raid6: using algorithm sse2x4 gen() 6979 MB/s
[    4.963703] raid6: .... xor() 4970 MB/s, rmw enabled
[    4.963704] raid6: using ssse3x2 recovery algorithm
[    4.963720] logitech-hidpp-device 0003:046D:4004.0006: input,hidraw3: USB HID v1.11 Keyboard [Logitech K360] on usb-0000:00:1d.0-1.2:1
[    4.963845] logitech-hidpp-device 0003:046D:4008.0007: input,hidraw4: USB HID v1.11 Mouse [Logitech M185] on usb-0000:00:1d.0-1.2:2
[    4.964166] xor: measuring software checksum speed
[    4.964549] usb 2-1.5: New USB device found, idVendor=090c, idProduct=37bc
[    4.964551] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.964553] usb 2-1.5: Product: HP Webcam-101
[    4.964555] usb 2-1.5: Manufacturer: Image Processor
[    4.964556] usb 2-1.5: SerialNumber: Integrated Camera
[    4.965683] usb 1-1.5: New USB device found, idVendor=0bda, idProduct=0158
[    4.965685] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    4.965687] usb 1-1.5: Product: USB2.0-CRW
[    4.965689] usb 1-1.5: Manufacturer: Generic
[    4.965690] usb 1-1.5: SerialNumber: 20071114173400000
[    4.968710] input: Logitech M305 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.2/0003:046D:C52B.0005/0003:046D:101F.0008/input/input11
[    4.969230] logitech-hidpp-device 0003:046D:101F.0008: input,hidraw5: USB HID v1.11 Mouse [Logitech M305] on usb-0000:00:1d.0-1.2:3
[    4.973450] usbcore: registered new interface driver usb-storage
[    4.973795] usbcore: registered new interface driver uas
[    4.974137] ums-realtek 1-1.5:1.0: USB Mass Storage device detected
[    4.985110] scsi host4: usb-storage 1-1.5:1.0
[    4.985219] usbcore: registered new interface driver ums-realtek
[    5.003664]    prefetch64-sse:  9654.000 MB/sec
[    5.043664]    generic_sse:  8485.000 MB/sec
[    5.043667] xor: using function: prefetch64-sse (9654.000 MB/sec)
[    5.049556] Btrfs loaded, crc32c=crc32c-intel, assert=on
[    5.103544] BTRFS: device fsid 94f0f10c-54fa-4654-9ac9-b73e0a18df21 devid 1 transid 25396 /dev/sda5
[    5.314024] BTRFS info (device sda5): disk space caching is enabled
[    5.314027] BTRFS info (device sda5): has skinny extents
[    6.003739] systemd-journald[162]: Received SIGTERM from PID 1 (systemd).
[    6.022513] scsi 4:0:0:0: Direct-Access     Generic- Multi-Card       1.00 PQ: 0 ANSI: 0 CCS
[    6.022754] sd 4:0:0:0: Attached scsi generic sg2 type 0
[    6.185522] systemd: 18 output lines suppressed due to ratelimiting
[   10.393611] BTRFS info (device sda5): disk space caching is enabled
[   11.557314] audit: type=1400 audit(1494575903.762:2): apparmor="STATUS" operation="profile_load" name="ping" pid=477 comm="apparmor_parser"
[   11.703718] audit: type=1400 audit(1494575903.906:3): apparmor="STATUS" operation="profile_load" name="klogd" pid=485 comm="apparmor_parser"
[   11.989069] audit: type=1400 audit(1494575904.194:4): apparmor="STATUS" operation="profile_load" name="syslog-ng" pid=490 comm="apparmor_parser"
[   12.727503] audit: type=1400 audit(1494575904.930:5): apparmor="STATUS" operation="profile_load" name="syslogd" pid=495 comm="apparmor_parser"
[   13.058995] audit: type=1400 audit(1494575905.262:6): apparmor="STATUS" operation="profile_load" name="/usr/bin/lessopen.sh" pid=501 comm="apparmor_parser"
[   13.118676] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[   13.359872] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[   13.379966] audit: type=1400 audit(1494575905.586:7): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2" pid=599 comm="apparmor_parser"
[   13.379968] audit: type=1400 audit(1494575905.586:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//DEFAULT_URI" pid=599 comm="apparmor_parser"
[   13.379969] audit: type=1400 audit(1494575905.586:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//HANDLING_UNTRUSTED_INPUT" pid=599 comm="apparmor_parser"
[   13.379970] audit: type=1400 audit(1494575905.586:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/apache2/mpm-prefork/apache2//phpsysinfo" pid=599 comm="apparmor_parser"
[   13.470266] input: PC Speaker as /devices/platform/pcspkr/input/input12
[   13.588130] ACPI: AC Adapter [ACAD] (on-line)
[   13.675601] audit: type=1400 audit(1494575905.878:11): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/anvil" pid=627 comm="apparmor_parser"
[   13.676933] wmi: Mapper loaded
[   13.785141] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20160930/utaddress-247)
[   13.785149] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.785151] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   13.785155] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.785155] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   13.785158] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.785159] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20160930/utaddress-247)
[   13.785162] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   13.785162] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   13.840964] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[   13.841927] thermal LNXTHERM:00: registered as thermal_zone0
[   13.841929] ACPI: Thermal Zone [TZ01] (43 C)
[   13.857403] iTCO_vendor_support: vendor-support=0
[   13.863128] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   13.863176] iTCO_wdt: Found a HM55 TCO device (Version=2, TCOBASE=0x0460)
[   13.863337] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   13.868447] ACPI: Battery Slot [BAT0] (battery absent)
[   13.915238] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   13.934770] intel ips 0000:00:1f.6: CPU TDP doesn't match expected value (found 25, expected 29)
[   13.935110] intel ips 0000:00:1f.6: IPS driver initialized, MCP temp limit 90
[   13.959722] FUJITSU Extended Socket Network Device Driver - version 1.2 - Copyright (c) 2015 FUJITSU LIMITED
[   14.202251] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[   14.202267] r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   14.202816] r8169 0000:03:00.0 eth0: RTL8102e at 0xffffb953c072d000, 78:ac:c0:45:a8:0e, XID 04e00000 IRQ 27
[   14.204186] r8169 0000:03:00.0 enp3s0: renamed from eth0
[   14.444110] kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
[   15.885796] input: HP WMI hotkeys as /devices/virtual/input/input13
[   16.745976] kauditd_printk_skb: 1 callbacks suppressed
[   16.745979] audit: type=1400 audit(1494575908.950:13): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/config" pid=731 comm="apparmor_parser"
[   17.115373] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5390, rev 0502 detected
[   17.119561] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 5390 detected
[   17.384689] audit: type=1400 audit(1494575909.590:14): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/deliver" pid=839 comm="apparmor_parser"
[   17.469787] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[   17.472156] Linux video capture interface: v2.00
[   17.473924] rt2800pci 0000:02:00.0 wlo1: renamed from wlan0
[   17.628703] audit: type=1400 audit(1494575909.834:15): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dict" pid=923 comm="apparmor_parser"
[   17.774641] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC270: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[   17.774643] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.774645] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[   17.774646] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   17.774647] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   17.774649] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x19
[   17.774650] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
[   17.922446] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   17.959452] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.960301] input: HDA Intel MID Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.960405] input: HDA Intel MID Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[   17.960511] input: HDA Intel MID HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
[   17.996196] uvcvideo: Found UVC 1.00 device HP Webcam-101 (090c:37bc)
[   17.997448] input: HP Webcam-101 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.5/2-1.5:1.0/input/input18
[   17.997567] usbcore: registered new interface driver uvcvideo
[   17.997569] USB Video Class driver (1.1.1)
[   18.258139] Adding 2103292k swap on /dev/sda1.  Priority:-1 extents:1 across:2103292k FS
[   18.311714] audit: type=1400 audit(1494575910.514:16): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-auth" pid=940 comm="apparmor_parser"
[   18.681399] systemd-journald[425]: Received request to flush runtime journal from PID 1
[   18.776498] SGI XFS with ACLs, security attributes, realtime, no debug enabled
[   18.797246] audit: type=1400 audit(1494575911.002:17): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-lda" pid=972 comm="apparmor_parser"
[   18.797248] audit: type=1400 audit(1494575911.002:18): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/dovecot-lda///usr/sbin/sendmail" pid=972 comm="apparmor_parser"
[   18.947430] XFS (sda3): Mounting V5 Filesystem
[   18.981393] audit: type=1400 audit(1494575911.186:19): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/imap" pid=989 comm="apparmor_parser"
[   19.228244] audit: type=1400 audit(1494575911.434:20): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/imap-login" pid=995 comm="apparmor_parser"
[   19.271109] audit: type=1400 audit(1494575911.474:21): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/lmtp" pid=1000 comm="apparmor_parser"
[   19.821193] audit: type=1400 audit(1494575912.026:22): apparmor="STATUS" operation="profile_load" name="/usr/lib/dovecot/log" pid=1005 comm="apparmor_parser"
[   20.841794] XFS (sda3): Ending clean mount
[   24.310074] ip6_tables: (C) 2000-2006 Netfilter Core Team
[   24.730701] nf_conntrack version 0.5.0 (16384 buckets, 65536 max)
[   24.918790] ip_tables: (C) 2000-2006 Netfilter Core Team
[   28.937765] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   28.949077] r8169 0000:03:00.0 enp3s0: link down
[   28.949137] IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
[   28.954258] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   28.954324] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2860.bin'
[   29.069802] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.40
[   29.232529] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   29.320754] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   30.029054] NET: Registered protocol family 17
[   30.076821] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   69.424896] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   69.430972] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   69.516962] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   70.820410] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   70.828579] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[   70.908621] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  105.724881] fuse init (API version 7.26)
[  170.777532] IPv6: ADDRCONF(NETDEV_UP): wlo1: link is not ready
[  172.093684] wlo1: authenticate with 80:3f:5d:93:97:cb
[  172.117724] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[  172.119158] wlo1: authenticated
[  172.120494] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[  172.124379] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x411 status=0 aid=1)
[  172.124560] IPv6: ADDRCONF(NETDEV_CHANGE): wlo1: link becomes ready
[  172.124731] wlo1: associated
[  173.521820] IPv4: martian source 255.255.255.255 from 192.168.1.1, on dev wlo1
[  173.521868] ll header: 00000000: ff ff ff ff ff ff 00 37 b7 5b ba 63 08 00        .......7.[.c..
[  178.744717] IPv4: martian source 255.255.255.255 from 192.168.1.1, on dev wlo1
[  178.744722] ll header: 00000000: ff ff ff ff ff ff 00 37 b7 5b ba 63 08 00        .......7.[.c..
[ 1834.376694] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=42.111.207.239 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=51 ID=25324 DF PROTO=UDP SPT=23959 DPT=51413 LEN=111 
[ 1870.346701] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=42.111.207.239 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=51 ID=26960 DF PROTO=UDP SPT=23959 DPT=51413 LEN=111 
[ 1886.697941] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[ 2027.750072] CPU2: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 2027.750073] CPU3: Core temperature above threshold, cpu clock throttled (total events = 1)
[ 2027.750089] mce: [Hardware Error]: Machine check events logged
[ 2027.751121] CPU2: Core temperature/speed normal
[ 2027.751122] CPU3: Core temperature/speed normal
[ 2027.751125] mce: [Hardware Error]: Machine check events logged
[ 3034.566717] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=124.83.117.132 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=0 DF PROTO=UDP SPT=6881 DPT=51413 LEN=109 
[ 3154.743958] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=124.83.117.132 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=0 DF PROTO=UDP SPT=6881 DPT=51413 LEN=109 
[ 4267.659440] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=74.78.136.170 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=49 ID=64800 DF PROTO=UDP SPT=45416 DPT=51413 LEN=112 
[ 4541.397462] [drm:intel_cpu_fifo_underrun_irq_handler [i915]] *ERROR* CPU pipe A FIFO underrun
[ 4541.397521] [drm:ironlake_irq_handler [i915]] *ERROR* PCH transcoder A FIFO underrun
[ 6874.378538] CPU2: Core temperature above threshold, cpu clock throttled (total events = 5418)
[ 6874.378540] CPU3: Core temperature above threshold, cpu clock throttled (total events = 5418)
[ 6874.378556] mce: [Hardware Error]: Machine check events logged
[ 6874.379591] CPU2: Core temperature/speed normal
[ 6874.379592] CPU3: Core temperature/speed normal
[ 6874.379596] mce: [Hardware Error]: Machine check events logged
[ 8406.442706] CPU3: Core temperature above threshold, cpu clock throttled (total events = 5458)
[ 8406.442707] CPU2: Core temperature above threshold, cpu clock throttled (total events = 5458)
[ 8406.442723] mce: [Hardware Error]: Machine check events logged
[ 8406.443756] CPU3: Core temperature/speed normal
[ 8406.443758] CPU2: Core temperature/speed normal
[ 8406.443759] mce: [Hardware Error]: Machine check events logged
[10042.421865] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60144 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[10133.193843] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60145 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[10269.402192] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60146 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[10364.283443] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60147 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[10758.402634] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=190.188.134.32 DST=192.168.1.36 LEN=131 TOS=0x1A PREC=0x20 TTL=48 ID=27978 PROTO=UDP SPT=47713 DPT=51413 LEN=111 
[11365.940505] CPU3: Core temperature above threshold, cpu clock throttled (total events = 5481)
[11365.940506] CPU2: Core temperature above threshold, cpu clock throttled (total events = 5481)
[11365.940523] mce_notify_irq: 1 callbacks suppressed
[11365.940524] mce: [Hardware Error]: Machine check events logged
[11365.941552] CPU3: Core temperature/speed normal
[11365.941555] CPU2: Core temperature/speed normal
[11365.941556] mce: [Hardware Error]: Machine check events logged
[11666.598294] CPU3: Core temperature above threshold, cpu clock throttled (total events = 7830)
[11666.598296] CPU2: Core temperature above threshold, cpu clock throttled (total events = 7830)
[11666.598347] mce_notify_irq: 1 callbacks suppressed
[11666.598350] mce: [Hardware Error]: Machine check events logged
[11666.599335] CPU2: Core temperature/speed normal
[11666.599336] CPU3: Core temperature/speed normal
[11666.599361] mce: [Hardware Error]: Machine check events logged
[11717.435063] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=27357 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[11976.047128] CPU3: Core temperature above threshold, cpu clock throttled (total events = 10221)
[11976.047130] CPU2: Core temperature above threshold, cpu clock throttled (total events = 10221)
[11976.047149] mce: [Hardware Error]: Machine check events logged
[11976.048179] CPU3: Core temperature/speed normal
[11976.048180] CPU2: Core temperature/speed normal
[11976.048186] mce: [Hardware Error]: Machine check events logged
[12000.391236] device-mapper: uevent: version 1.0.3
[12000.391317] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
[13614.495415] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=175.198.181.15 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=112 ID=26548 PROTO=UDP SPT=55609 DPT=51413 LEN=109 
[14786.018486] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=186.79.79.239 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=29880 DF PROTO=UDP SPT=50321 DPT=51413 LEN=109 
[16372.094999] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60145 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[16504.103571] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60147 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[16645.248578] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60148 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[16704.749549] CPU2: Core temperature above threshold, cpu clock throttled (total events = 11513)
[16704.749554] CPU3: Core temperature above threshold, cpu clock throttled (total events = 11513)
[16704.749568] mce: [Hardware Error]: Machine check events logged
[16704.750600] CPU2: Core temperature/speed normal
[16704.750601] CPU3: Core temperature/speed normal
[16704.750608] mce: [Hardware Error]: Machine check events logged
[16739.341955] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60149 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[17037.175679] CPU3: Core temperature above threshold, cpu clock throttled (total events = 17312)
[17037.175680] CPU2: Core temperature above threshold, cpu clock throttled (total events = 17312)
[17037.175730] mce: [Hardware Error]: Machine check events logged
[17037.175731] mce: [Hardware Error]: Machine check events logged
[17037.176718] CPU3: Core temperature/speed normal
[17037.176719] CPU2: Core temperature/speed normal
[17420.468107] CPU2: Core temperature above threshold, cpu clock throttled (total events = 19157)
[17420.468109] CPU3: Core temperature above threshold, cpu clock throttled (total events = 19157)
[17420.468129] mce_notify_irq: 1 callbacks suppressed
[17420.468130] mce: [Hardware Error]: Machine check events logged
[17420.469156] CPU2: Core temperature/speed normal
[17420.469157] CPU3: Core temperature/speed normal
[17420.469180] mce: [Hardware Error]: Machine check events logged
[19332.379644] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=56851 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[19427.629936] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=61474 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[19528.786223] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=86 TOS=0x18 PREC=0x20 TTL=51 ID=61591 DF PROTO=UDP SPT=51413 DPT=51413 LEN=66 
[20759.421309] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=31.11.154.181 DST=192.168.1.36 LEN=131 TOS=0x18 PREC=0x20 TTL=115 ID=8633 PROTO=UDP SPT=62219 DPT=51413 LEN=111 
[21199.108548] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=1551 DF PROTO=TCP SPT=49269 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21202.132587] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=1599 DF PROTO=TCP SPT=49269 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21208.159502] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=1635 DF PROTO=TCP SPT=49269 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[21798.142290] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=821 DF PROTO=TCP SPT=49217 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21801.026549] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=827 DF PROTO=TCP SPT=49217 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[21807.024513] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=831 DF PROTO=TCP SPT=49217 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[22154.234292] CPU2: Core temperature above threshold, cpu clock throttled (total events = 20290)
[22154.234297] CPU3: Core temperature above threshold, cpu clock throttled (total events = 20290)
[22154.234315] mce: [Hardware Error]: Machine check events logged
[22154.235343] CPU2: Core temperature/speed normal
[22154.235344] CPU3: Core temperature/speed normal
[22154.235348] mce: [Hardware Error]: Machine check events logged
[22988.950411] CPU3: Core temperature above threshold, cpu clock throttled (total events = 20425)
[22988.950413] CPU2: Core temperature above threshold, cpu clock throttled (total events = 20425)
[22988.950439] mce: [Hardware Error]: Machine check events logged
[22988.951451] CPU3: Core temperature/speed normal
[22988.951452] CPU2: Core temperature/speed normal
[22988.951456] mce: [Hardware Error]: Machine check events logged
[23348.803317] CPU3: Core temperature above threshold, cpu clock throttled (total events = 20449)
[23348.803318] CPU2: Core temperature above threshold, cpu clock throttled (total events = 20449)
[23348.803358] mce: [Hardware Error]: Machine check events logged
[23348.804366] CPU3: Core temperature/speed normal
[23348.804367] CPU2: Core temperature/speed normal
[23348.804391] mce: [Hardware Error]: Machine check events logged
[23966.716137] CPU3: Core temperature above threshold, cpu clock throttled (total events = 22006)
[23966.716138] CPU2: Core temperature above threshold, cpu clock throttled (total events = 22006)
[23966.716153] mce: [Hardware Error]: Machine check events logged
[23966.717189] CPU2: Core temperature/speed normal
[23966.717190] CPU3: Core temperature/speed normal
[23966.717195] mce: [Hardware Error]: Machine check events logged
[24793.831345] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=52 TOS=0x00 PREC=0x00 TTL=128 ID=2352 DF PROTO=TCP SPT=49327 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B40103030201010402) 
[24802.880005] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:09:5b:ec:1f:d3:08:00 SRC=192.168.1.13 DST=192.168.1.36 LEN=48 TOS=0x00 PREC=0x00 TTL=128 ID=2354 DF PROTO=TCP SPT=49327 DPT=38353 WINDOW=8192 RES=0x00 SYN URGP=0 OPT (020405B401010402) 
[24901.428915] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=136.169.137.56 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=111 ID=24783 PROTO=UDP SPT=28761 DPT=51413 LEN=109 
[27525.511396] wlo1: authenticate with 80:3f:5d:93:97:cb
[27525.525877] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[27525.563955] wlo1: authenticated
[27525.565181] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[27525.571232] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[27525.571416] wlo1: associated
[28163.509321] wlo1: authenticate with 80:3f:5d:93:97:cb
[28163.532699] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[28163.539530] wlo1: authenticated
[28163.540323] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[28163.550560] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[28163.550663] wlo1: associated
[28349.713942] wlo1: authenticate with 80:3f:5d:93:97:cb
[28349.737734] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[28349.744354] wlo1: authenticated
[28349.745217] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[28349.763831] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[28349.763932] wlo1: associated
[28354.510258] wlo1: authenticate with 80:3f:5d:93:97:cb
[28354.533618] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[28354.551462] wlo1: authenticated
[28354.557219] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[28354.717289] wlo1: associate with 80:3f:5d:93:97:cb (try 2/3)
[28354.756191] wlo1: associate with 80:3f:5d:93:97:cb (try 3/3)
[28354.803386] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[28354.803888] wlo1: associated
[28392.494226] wlo1: authenticate with 80:3f:5d:93:97:cb
[28392.522064] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[28392.526075] wlo1: authenticated
[28392.529417] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[28392.534734] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[28392.534917] wlo1: associated
[28431.498453] wlo1: authenticate with 80:3f:5d:93:97:cb
[28431.522226] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[28431.538007] wlo1: authenticated
[28431.541653] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[28431.614456] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[28431.614676] wlo1: associated
[30311.382443] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=80.99.171.5 DST=192.168.1.36 LEN=122 TOS=0x18 PREC=0x20 TTL=51 ID=44980 DF PROTO=UDP SPT=51413 DPT=51413 LEN=102 
[30915.081743] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=14.166.60.235 DST=192.168.1.36 LEN=132 TOS=0x18 PREC=0x20 TTL=112 ID=17663 PROTO=UDP SPT=3800 DPT=51413 LEN=112 
[31651.794210] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=50.151.251.174 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=7372 PROTO=UDP SPT=44408 DPT=51413 LEN=109 
[31653.776435] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=50.151.251.174 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=39821 PROTO=UDP SPT=44408 DPT=51413 LEN=109 
[34638.524885] wlo1: authenticate with 80:3f:5d:93:97:cb
[34638.548592] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[34638.557797] wlo1: authenticated
[34638.559710] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[34638.575613] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[34638.575918] wlo1: associated
[34664.468286] CPU3: Core temperature above threshold, cpu clock throttled (total events = 22019)
[34664.468287] CPU2: Core temperature above threshold, cpu clock throttled (total events = 22019)
[34664.468305] mce: [Hardware Error]: Machine check events logged
[34664.471436] CPU3: Core temperature/speed normal
[34664.471437] CPU2: Core temperature/speed normal
[34664.471446] mce: [Hardware Error]: Machine check events logged
[35030.966338] wlo1: authenticate with 80:3f:5d:93:97:cb
[35030.989963] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35030.997655] wlo1: authenticated
[35031.001599] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35031.137577] wlo1: associate with 80:3f:5d:93:97:cb (try 2/3)
[35031.153784] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35031.153885] wlo1: associated
[35102.542997] wlo1: authenticate with 80:3f:5d:93:97:cb
[35102.566365] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35102.570546] wlo1: authenticated
[35102.573931] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35102.577601] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35102.577718] wlo1: associated
[35112.575212] wlo1: authenticate with 80:3f:5d:93:97:cb
[35112.602523] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35112.608830] wlo1: authenticated
[35112.610019] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35112.613730] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35112.613844] wlo1: associated
[35115.534729] wlo1: authenticate with 80:3f:5d:93:97:cb
[35115.558503] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35115.562461] wlo1: authenticated
[35115.565999] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35115.582502] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35115.582615] wlo1: associated
[35151.523245] wlo1: authenticate with 80:3f:5d:93:97:cb
[35151.546488] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35151.550499] wlo1: authenticated
[35151.554192] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35151.561533] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35151.561643] wlo1: associated
[35242.567819] wlo1: authenticate with 80:3f:5d:93:97:cb
[35242.590917] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35242.620217] wlo1: authenticated
[35242.622635] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35242.645479] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35242.645589] wlo1: associated
[35361.532337] wlo1: authenticate with 80:3f:5d:93:97:cb
[35361.555727] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35361.561707] wlo1: authenticated
[35361.567180] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35361.570848] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35361.570957] wlo1: associated
[35575.533529] wlo1: authenticate with 80:3f:5d:93:97:cb
[35575.556945] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35575.599850] wlo1: send auth to 80:3f:5d:93:97:cb (try 2/3)
[35575.602025] wlo1: authenticated
[35575.604453] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35575.693234] wlo1: associate with 80:3f:5d:93:97:cb (try 2/3)
[35575.740581] wlo1: associate with 80:3f:5d:93:97:cb (try 3/3)
[35575.780726] wlo1: association with 80:3f:5d:93:97:cb timed out
[35577.533000] wlo1: authenticate with 80:3f:5d:93:97:cb
[35577.556767] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[35577.558199] wlo1: authenticated
[35577.560250] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[35577.566151] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[35577.566266] wlo1: associated
[35793.805900] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=70.54.188.235 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=49 ID=60148 DF PROTO=UDP SPT=6889 DPT=51413 LEN=109 
[36018.575679] wlo1: authenticate with 80:3f:5d:93:97:cb
[36018.598837] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[36018.624820] wlo1: authenticated
[36018.626411] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[36018.688677] wlo1: associate with 80:3f:5d:93:97:cb (try 2/3)
[36018.706456] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[36018.706575] wlo1: associated
[36134.679951] CPU0: Core temperature above threshold, cpu clock throttled (total events = 1994)
[36134.679953] CPU1: Core temperature above threshold, cpu clock throttled (total events = 1994)
[36134.679970] mce: [Hardware Error]: Machine check events logged
[36134.681001] CPU0: Core temperature/speed normal
[36134.681002] CPU1: Core temperature/speed normal
[36134.681006] mce: [Hardware Error]: Machine check events logged
[36152.118128] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=50.151.251.174 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=52918 PROTO=UDP SPT=44408 DPT=51413 LEN=109 
[36303.697469] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=50.151.251.174 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=58394 PROTO=UDP SPT=44408 DPT=51413 LEN=109 
[36362.227659] SFW2-INext-DROP-DEFLT IN=wlo1 OUT= MAC=88:9f:fa:18:67:f1:00:37:b7:5b:ba:63:08:00 SRC=50.151.251.174 DST=192.168.1.36 LEN=129 TOS=0x18 PREC=0x20 TTL=51 ID=25346 PROTO=UDP SPT=44408 DPT=51413 LEN=109 
[36434.802676] CPU2: Core temperature above threshold, cpu clock throttled (total events = 79669)
[36434.802678] CPU3: Core temperature above threshold, cpu clock throttled (total events = 79669)
[36434.802696] mce: [Hardware Error]: Machine check events logged
[36434.804758] CPU2: Core temperature/speed normal
[36434.804760] CPU3: Core temperature/speed normal
[36434.804765] mce: [Hardware Error]: Machine check events logged
[36723.350640] BTRFS info (device sda5): qgroup scan completed (inconsistency flag cleared)
[36748.063384] CPU3: Core temperature above threshold, cpu clock throttled (total events = 146637)
[36748.063385] CPU2: Core temperature above threshold, cpu clock throttled (total events = 146637)
[36748.063399] mce: [Hardware Error]: Machine check events logged
[36748.064436] CPU2: Core temperature/speed normal
[36748.064437] CPU3: Core temperature/speed normal
[36748.064441] mce: [Hardware Error]: Machine check events logged
[37350.108749] CPU3: Core temperature above threshold, cpu clock throttled (total events = 157575)
[37350.108751] CPU2: Core temperature above threshold, cpu clock throttled (total events = 157575)
[37350.108765] mce: [Hardware Error]: Machine check events logged
[37350.108766] mce: [Hardware Error]: Machine check events logged
[37350.109794] CPU2: Core temperature/speed normal
[37350.109795] CPU3: Core temperature/speed normal
[37580.594987] wlo1: authenticate with 80:3f:5d:93:97:cb
[37580.622458] wlo1: send auth to 80:3f:5d:93:97:cb (try 1/3)
[37580.628465] wlo1: authenticated
[37580.629994] wlo1: associate with 80:3f:5d:93:97:cb (try 1/3)
[37580.633695] wlo1: RX AssocResp from 80:3f:5d:93:97:cb (capab=0x11 status=0 aid=1)
[37580.633805] wlo1: associated
[37634.572036] usb 2-1.2: USB disconnect, device number 3
[37637.470269] usb 2-1.2: new high-speed USB device number 5 using ehci-pci
[37637.812481] usb 2-1.2: New USB device found, idVendor=054c, idProduct=09c2
[37637.812485] usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[37637.812488] usb 2-1.2: Product: Storage Media
[37637.812490] usb 2-1.2: Manufacturer: Sony
[37637.812491] usb 2-1.2: SerialNumber: 5C0710496132154C75
[37637.812971] usb-storage 2-1.2:1.0: USB Mass Storage device detected
[37637.813173] scsi host5: usb-storage 2-1.2:1.0
[37638.911155] scsi 5:0:0:0: Direct-Access     Sony     Storage Media    PMAP PQ: 0 ANSI: 6
[37638.911441] sd 5:0:0:0: Attached scsi generic sg3 type 0
[37640.163815] sd 5:0:0:0: [sdc] 60665088 512-byte logical blocks: (31.1 GB/28.9 GiB)
[37640.164550] sd 5:0:0:0: [sdc] Write Protect is off
[37640.164554] sd 5:0:0:0: [sdc] Mode Sense: 23 00 00 00
[37640.165223] sd 5:0:0:0: [sdc] No Caching mode page found
[37640.165232] sd 5:0:0:0: [sdc] Assuming drive cache: write through
[37640.193003]  sdc: sdc1
[37640.195940] sd 5:0:0:0: [sdc] Attached SCSI removable disk
[37641.698337] usb 2-1.1: new full-speed USB device number 6 using ehci-pci
[37641.810571] usb 2-1.1: New USB device found, idVendor=046d, idProduct=c52b
[37641.810577] usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[37641.810580] usb 2-1.1: Product: USB Receiver
[37641.810583] usb 2-1.1: Manufacturer: Logitech
[37641.818788] logitech-djreceiver 0003:046D:C52B.000B: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.0-1.1/input2
[37641.950291] input: Logitech K360 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.2/0003:046D:C52B.000B/0003:046D:4004.000C/input/input19
[37641.950918] logitech-hidpp-device 0003:046D:4004.000C: input,hidraw3: USB HID v1.11 Keyboard [Logitech K360] on usb-0000:00:1d.0-1.1:1
[37641.956075] input: Logitech M185 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.2/0003:046D:C52B.000B/0003:046D:4008.000D/input/input20
[37641.956296] logitech-hidpp-device 0003:046D:4008.000D: input,hidraw4: USB HID v1.11 Mouse [Logitech M185] on usb-0000:00:1d.0-1.1:2
[37641.960079] input: Logitech M305 as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1:1.2/0003:046D:C52B.000B/0003:046D:101F.000E/input/input21
[37641.960367] logitech-hidpp-device 0003:046D:101F.000E: input,hidraw5: USB HID v1.11 Mouse [Logitech M305] on usb-0000:00:1d.0-1.1:3
[37760.034085] FAT-fs (sdc1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
PowaBanga@karkatouf:~> 
ls -l /dev/disk/by-id/
total 0
lrwxrwxrwx 1 root root  9 12 mai 09:58 ata-hp_DVD_RW_AD-7586H_SEA4616702 -> ../../sr0
lrwxrwxrwx 1 root root  9 12 mai 13:18 ata-ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 ata-ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 ata-ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 ata-ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 ata-ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 12 mai 13:18 scsi-0ATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-0ATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-0ATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-0ATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-0ATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 12 mai 13:18 scsi-1ATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-1ATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-1ATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-1ATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-1ATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 12 mai 13:18 scsi-35000c5003090b299 -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-35000c5003090b299-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-35000c5003090b299-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-35000c5003090b299-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-35000c5003090b299-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 12 mai 13:18 scsi-SATA_ST9320325AS_6VD8P9NM -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-SATA_ST9320325AS_6VD8P9NM-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-SATA_ST9320325AS_6VD8P9NM-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-SATA_ST9320325AS_6VD8P9NM-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 scsi-SATA_ST9320325AS_6VD8P9NM-part5 -> ../../sda5
lrwxrwxrwx 1 root root  9 12 mai 20:27 usb-Generic-_Multi-Card_20071114173400000-0:0 -> ../../sdb
lrwxrwxrwx 1 root root  9 12 mai 20:25 usb-Sony_Storage_Media_5C0710496132154C75-0:0 -> ../../sdc
lrwxrwxrwx 1 root root 10 12 mai 20:25 usb-Sony_Storage_Media_5C0710496132154C75-0:0-part1 -> ../../sdc1
lrwxrwxrwx 1 root root  9 12 mai 13:18 wwn-0x5000c5003090b299 -> ../../sda
lrwxrwxrwx 1 root root 10 12 mai 13:18 wwn-0x5000c5003090b299-part1 -> ../../sda1
lrwxrwxrwx 1 root root 10 12 mai 13:18 wwn-0x5000c5003090b299-part2 -> ../../sda2
lrwxrwxrwx 1 root root 10 12 mai 13:18 wwn-0x5000c5003090b299-part3 -> ../../sda3
lrwxrwxrwx 1 root root 10 12 mai 13:18 wwn-0x5000c5003090b299-part5 -> ../../sda5
PowaBanga@karkatouf:~> lsblk
NAME   MAJ:MIN RM   SIZE RO TYPE MOUNTPOINT
sda      8:0    0 298,1G  0 disk 
├─sda1   8:1    0     2G  0 part [SWAP]
├─sda2   8:2    0     1K  0 part 
├─sda3   8:3    0 256,1G  0 part /home
└─sda5   8:5    0    40G  0 part /var/log
sdc      8:32   1  28,9G  0 disk 
└─sdc1   8:33   1  28,9G  0 part /run/media/PowaBanga/openSUSE-Tumbleweed-DVD-x86_6400
sr0     11:0    1  1024M  0 rom  
PowaBanga@karkatouf:~> ls -l /dev/sd*
brw-rw---- 1 root disk 8,  0 12 mai 13:18 /dev/sda
brw-rw---- 1 root disk 8,  1 12 mai 13:18 /dev/sda1
brw-rw---- 1 root disk 8,  2 12 mai 13:18 /dev/sda2
brw-rw---- 1 root disk 8,  3 12 mai 13:18 /dev/sda3
brw-rw---- 1 root disk 8,  5 12 mai 13:18 /dev/sda5
brw-rw---- 1 root disk 8, 16 12 mai 20:29 /dev/sdb
brw-rw---- 1 root disk 8, 32 12 mai 20:25 /dev/sdc
brw-rw---- 1 root disk 8, 33 12 mai 20:25 /dev/sdc1

And here, I launched the command in terminal, after I inserted the key, mounted it, unconnected it, and finaly stop the command with CTRL+C

PowaBanga@karkatouf:~> udevadm monitor
monitor will print the received events for:
UDEV - the event which udev sends out after rule processing
KERNEL - the kernel uevent

KERNEL[38201.372476] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38201.464582] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38201.493203] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38201.527331] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38203.920355] change   /devices/platform/regulatory.0 (platform)
UDEV  [38203.926241] change   /devices/platform/regulatory.0 (platform)
KERNEL[38205.252359] change   /devices/platform/regulatory.0 (platform)
UDEV  [38205.257024] change   /devices/platform/regulatory.0 (platform)
KERNEL[38208.476189] change   /devices/platform/regulatory.0 (platform)
UDEV  [38208.481763] change   /devices/platform/regulatory.0 (platform)
KERNEL[38253.948264] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38254.041013] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38254.070020] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38254.106773] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38272.258597] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb)
KERNEL[38272.258865] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb)
KERNEL[38272.263855] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5 (scsi)
KERNEL[38272.263922] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/scsi_host/host5 (scsi_host)
UDEV  [38272.807378] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb)
UDEV  [38272.809814] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb)
UDEV  [38272.811099] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5 (scsi)
UDEV  [38272.812869] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/scsi_host/host5 (scsi_host)
KERNEL[38273.344995] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0 (scsi)
KERNEL[38273.345044] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0 (scsi)
KERNEL[38273.345068] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_disk/5:0:0:0 (scsi_disk)
KERNEL[38273.345091] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_device/5:0:0:0 (scsi_device)
KERNEL[38273.345727] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_generic/sg3 (scsi_generic)
KERNEL[38273.345928] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/bsg/5:0:0:0 (bsg)
UDEV  [38273.346649] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0 (scsi)
UDEV  [38273.347584] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0 (scsi)
UDEV  [38273.348677] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_disk/5:0:0:0 (scsi_disk)
UDEV  [38273.350045] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_device/5:0:0:0 (scsi_device)
UDEV  [38273.350223] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/bsg/5:0:0:0 (bsg)
UDEV  [38273.350272] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_generic/sg3 (scsi_generic)
KERNEL[38274.647521] add      /devices/virtual/bdi/8:32 (bdi)
UDEV  [38274.648693] add      /devices/virtual/bdi/8:32 (bdi)
KERNEL[38274.676777] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
KERNEL[38274.676858] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc/sdc1 (block)
UDEV  [38274.781047] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
UDEV  [38274.845268] add      /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc/sdc1 (block)
KERNEL[38306.524438] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38306.617624] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38306.646388] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38306.681189] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38359.100395] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38359.191791] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38359.220399] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38359.254754] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38372.940432] change   /devices/platform/regulatory.0 (platform)
UDEV  [38372.947698] change   /devices/platform/regulatory.0 (platform)
KERNEL[38382.584212] change   /devices/platform/regulatory.0 (platform)
UDEV  [38382.589117] change   /devices/platform/regulatory.0 (platform)
KERNEL[38385.884184] change   /devices/platform/regulatory.0 (platform)
UDEV  [38385.890646] change   /devices/platform/regulatory.0 (platform)
KERNEL[38392.928482] change   /devices/platform/regulatory.0 (platform)
UDEV  [38392.933966] change   /devices/platform/regulatory.0 (platform)
KERNEL[38394.253639] change   /devices/platform/regulatory.0 (platform)
UDEV  [38394.257673] change   /devices/platform/regulatory.0 (platform)
KERNEL[38397.404364] change   /devices/platform/regulatory.0 (platform)
UDEV  [38397.410460] change   /devices/platform/regulatory.0 (platform)
KERNEL[38401.900454] change   /devices/platform/regulatory.0 (platform)
UDEV  [38401.905957] change   /devices/platform/regulatory.0 (platform)
KERNEL[38405.312194] change   /devices/platform/regulatory.0 (platform)
UDEV  [38405.317648] change   /devices/platform/regulatory.0 (platform)
KERNEL[38408.668125] change   /devices/platform/regulatory.0 (platform)
UDEV  [38408.674351] change   /devices/platform/regulatory.0 (platform)
KERNEL[38409.544737] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc/sdc1 (block)
UDEV  [38409.547129] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc/sdc1 (block)
KERNEL[38409.549365] change   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
KERNEL[38409.555444] change   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
UDEV  [38409.581753] change   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
UDEV  [38409.609700] change   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
KERNEL[38411.680425] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38411.773013] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38411.799800] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
UDEV  [38411.834196] change   /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.5/1-1.5:1.0/host4/target4:0:0/4:0:0:0/block/sdb (block)
KERNEL[38412.236967] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/bsg/5:0:0:0 (bsg)
KERNEL[38412.237033] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_generic/sg3 (scsi_generic)
KERNEL[38412.237070] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_device/5:0:0:0 (scsi_device)
KERNEL[38412.237131] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_disk/5:0:0:0 (scsi_disk)
KERNEL[38412.237308] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
KERNEL[38412.237346] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0 (scsi)
UDEV  [38412.239370] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_generic/sg3 (scsi_generic)
UDEV  [38412.239455] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/bsg/5:0:0:0 (bsg)
UDEV  [38412.241357] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_disk/5:0:0:0 (scsi_disk)
UDEV  [38412.241850] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/scsi_device/5:0:0:0 (scsi_device)
UDEV  [38412.242547] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0/block/sdc (block)
UDEV  [38412.243906] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0/5:0:0:0 (scsi)
KERNEL[38412.252261] remove   /devices/virtual/bdi/8:32 (bdi)
KERNEL[38412.252305] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0 (scsi)
UDEV  [38412.253120] remove   /devices/virtual/bdi/8:32 (bdi)
UDEV  [38412.253890] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/target5:0:0 (scsi)
KERNEL[38412.296400] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/scsi_host/host5 (scsi_host)
KERNEL[38412.296469] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5 (scsi)
KERNEL[38412.296540] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb)
KERNEL[38412.296734] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb)
UDEV  [38412.298150] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5/scsi_host/host5 (scsi_host)
UDEV  [38412.298844] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/host5 (scsi)
UDEV  [38412.300424] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0 (usb)
UDEV  [38412.337756] remove   /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2 (usb)
mbusb commented 7 years ago

Ok. I am sure that where the error message is coming from. This message from one of the above command says everything usb-Generic-_Multi-Card_20071114173400000-0:0 -> ../../sdb. You have multicard reader attached to your system which is creating this issue. Remove all other USB hub/multicard reader attached to your system and test multibootusb again. I am sure that it will work. There is a clue from your terminal output that except lsblk command, all gave exact output. There is a workaround done at my side to avoid this issue. Will push it to devel later.

mbusb commented 7 years ago

GOT IT.

Tested the issue with an old SD card holder without actual (mini) SD card and the culprit is SD CARD HOLDER as described in my previous message. I removed SD card reader from my system and rerun multibootusb. This time it works without an issue.

PowaBanga commented 7 years ago

But LOOOOOL !

yes, I have a microSD addaptater in my computer. It is always connected, but without microSDcard in. So I eject my adaptator, and now it work.

Now if anybody have the same bug, your first question should be "do you have a microsd addaptater connected ? hahaha

Realy, thank you for your help :)

mbusb commented 7 years ago

@PowaBanga , Thanks for taking out your time and testing to confirm the issue. Fixed this issue on devel branch.

PowaBanga commented 7 years ago

it's because i need your software haha ;) it is good