Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

Bluez daemon is not running

If none of the specific sub-forums seem right for your thread, ask here.
Message
Author
Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Bluez daemon is not running

#1 Post by Mugent0 »

I am trying to hook up our computer to a bluetooth speaker. This is the first time that I have tried it with this computer so I don't know if the right packages are installed. I am completely new to Debian so please bear with any dumb questions. Here is what I am getting when I try to open the Bluetooth Manager:
Connection to Bluez failed, Bluez daemon is not running, bluetooth-manager cannot continue, This probably means that there were no Bluetooth adapters detected or Bluetooth daemon was not started.
This is the point where I just started throwing everything at the wall:

Code: Select all

user@debian:~$ sudo apt-get install bluetooth bluez bluez-tools rfkill
Reading package lists... Done
Building dependency tree       
Reading state information... Done
bluez is already the newest version (5.43-2+deb9u1).
bluez set to manually installed.
Suggested packages:
  bluez-cups
The following NEW packages will be installed:
  bluetooth bluez-tools rfkill
0 upgraded, 3 newly installed, 0 to remove and 107 not upgraded.
Need to get 201 kB of archives.
After this operation, 1,111 kB of additional disk space will be used.
Do you want to continue? [Y/n] Y
Get:1 http://ftp.nz.debian.org/debian stretch/main amd64 bluetooth all 5.43-2+deb9u1 [41.4 kB]
Get:2 http://ftp.nz.debian.org/debian stretch/main amd64 bluez-tools amd64 0.2.0~20140808-5+b2 [151 kB]
Get:3 http://ftp.nz.debian.org/debian stretch/main amd64 rfkill amd64 0.5-1+b1 [8,284 B]
Fetched 201 kB in 0s (218 kB/s)    
Selecting previously unselected package bluetooth.
(Reading database ... 145205 files and directories currently installed.)
Preparing to unpack .../bluetooth_5.43-2+deb9u1_all.deb ...
Unpacking bluetooth (5.43-2+deb9u1) ...
Selecting previously unselected package bluez-tools.
Preparing to unpack .../bluez-tools_0.2.0~20140808-5+b2_amd64.deb ...
Unpacking bluez-tools (0.2.0~20140808-5+b2) ...
Selecting previously unselected package rfkill.
Preparing to unpack .../rfkill_0.5-1+b1_amd64.deb ...
Unpacking rfkill (0.5-1+b1) ...
Setting up bluetooth (5.43-2+deb9u1) ...
Setting up bluez-tools (0.2.0~20140808-5+b2) ...
Processing triggers for man-db (2.7.6.1-2) ...
Setting up rfkill (0.5-1+b1) ...
user@debian:~$ sudo apt-get install blueman
Reading package lists... Done
Building dependency tree       
Reading state information... Done
blueman is already the newest version (2.0.4-1).
blueman set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 107 not upgraded.
user@debian:~$ sudo /etc/init.d/bluetooth start
[ ok ] Starting bluetooth (via systemctl): bluetooth.service.
user@debian:~$ sudo /etc/init.d/bluetooth status
● bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:bluetoothd(8)
I tried running rfkill list to see if Bluetooth is blocked but I get:

Code: Select all

user@debian:~$ sudo rfkill list
user@debian:~$ 
On a possibly related note, the computer is wired in and I have never tried to use wifi. When I go into the netweork settings it only lists "Wired" and "Network Proxy". Out of curiousity, I tried to run "nmcli dev wifi list" and got nothing. I can run the wireless info scripts off of github but I wasn't sure if it would be of any use.

How should I troubleshoot this and is there any other information that I should be providing?

arzgi
Posts: 1185
Joined: 2008-02-21 17:03
Location: Finland
Been thanked: 31 times

Re: Bluez daemon is not running

#2 Post by arzgi »

Have not used bluetooth for some time, but you could check https://wiki.debian.org/BluetoothUser

Wired connection has nothing to do with bluetooth, and since you said Debian is new for you, avoid github scripts or any other 3rd party stuff.

Bluetooth is so general, that you can make it work using Debian own repo. I used bluetooth headphones to the day the battery went bad, it's been a while as I said, but there was nothing hard to pair even then.

Chrisdb
Posts: 279
Joined: 2018-04-10 07:16

Re: Bluez daemon is not running

#3 Post by Chrisdb »

Mugent0 wrote:user@debian:~$ sudo /etc/init.d/bluetooth start
[ ok ] Starting bluetooth (via systemctl): bluetooth.service.
user@debian:~$ sudo /etc/init.d/bluetooth status
It is better to use 'systemctl' instead of 'init.d' to start services:

Code: Select all

sudo systemctl start bluetooth
check the state with:

Code: Select all

sudo systemctl status bluetooth
Strange rfkill does not show your bluetooth device, what is the output of

Code: Select all

lsusb

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#4 Post by Mugent0 »

Hi Chrisdb,
Here is what I got when I checked the status and ran lsusb:

Code: Select all

user@debian:~$ lsusb
Bus 002 Device 003: ID 046d:c534 Logitech, Inc. Unifying Receiver
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
user@debian:~$ sudo systemctl status bluetooth
● bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
   Active: inactive (dead)
     Docs: man:bluetoothd(8)
lines 1-4/4 (END)
I note that it says that my Bluetooth is inactive.

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#5 Post by Mugent0 »

arzgi wrote:Have not used bluetooth for some time, but you could check https://wiki.debian.org/BluetoothUser

Wired connection has nothing to do with bluetooth, and since you said Debian is new for you, avoid github scripts or any other 3rd party stuff.

Bluetooth is so general, that you can make it work using Debian own repo. I used bluetooth headphones to the day the battery went bad, it's been a while as I said, but there was nothing hard to pair even then.
I tried to go to the wiki page but couldn't get the commands to work. Shoudl I be entering these verbatim (with the #)?

Code: Select all

# service bluetooth status
bluetooth is running

# service bluetooth start

arzgi
Posts: 1185
Joined: 2008-02-21 17:03
Location: Finland
Been thanked: 31 times

Re: Bluez daemon is not running

#6 Post by arzgi »

Mugent0 wrote: I tried to go to the wiki page but couldn't get the commands to work. Shoudl I be entering these verbatim (with the #)?

Code: Select all

# service bluetooth status
bluetooth is running

# service bluetooth start
No, # at the start of the means line that the command requires root privileges, meaning you must run command as root, or with sudo.

Chrisdb
Posts: 279
Joined: 2018-04-10 07:16

Re: Bluez daemon is not running

#7 Post by Chrisdb »

Mugent0 wrote: I note that it says that my Bluetooth is inactive.
Did you start the bluetooth service with:

Code: Select all

 sudo systemctl start bluetooth
?

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#8 Post by Mugent0 »

arzgi wrote:
Mugent0 wrote: I tried to go to the wiki page but couldn't get the commands to work. Shoudl I be entering these verbatim (with the #)?

Code: Select all

# service bluetooth status
bluetooth is running

# service bluetooth start
No, # at the start of the means line that the command requires root privileges, meaning you must run command as root, or with sudo.
Thank you for clarifying that. I will try that next.

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#9 Post by Mugent0 »

Chrisdb wrote:
Mugent0 wrote: I note that it says that my Bluetooth is inactive.
Did you start the bluetooth service with:

Code: Select all

 sudo systemctl start bluetooth
?
Hi Chris,
I did. I ran that before I checked the status.

This is an older desktop that I bought second hand. Is it possible that it is not bluetooth-capable? I don't know if there is hardware specific to that and am not sure how to check.

Chrisdb
Posts: 279
Joined: 2018-04-10 07:16

Re: Bluez daemon is not running

#10 Post by Chrisdb »

Could be the kernel module is not loaded.
Post output of:

Code: Select all

lsmod

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#11 Post by Mugent0 »

Chrisdb wrote:Could be the kernel module is not loaded.
Post output of:

Code: Select all

lsmod

I originally posted the output here but then realised that I had a bluetooth USB plugged in. The correct output is in the post below.
Last edited by Mugent0 on 2020-01-19 08:30, edited 1 time in total.

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#12 Post by Mugent0 »

This is a potentially interesting development: I picked up a bluetooth USB stick and tried that out. It didn't work well (major lag) but now Bluetooth Manager is opening, even without the USB plugged in, though it doesn't search for devices without the USB.

UPDATE: I spoke too soon. I restarted and the Bluetooth Manager is back to giving me an error saying that Bluez daemon is not running.

This is the latest status:

Code: Select all

user@debian:~$ sudo service bluetooth status
[sudo] password for user: 
● bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
   Active: inactive (dead)
     Docs: man:bluetoothd(8)
and lsmod:

Code: Select all

user@debian:~$ lsmod
Module                  Size  Used by
fuse                   98304  3
snd_hda_codec_hdmi     49152  4
intel_rapl             20480  0
x86_pkg_temp_thermal    16384  0
intel_powerclamp       16384  0
coretemp               16384  0
joydev                 20480  0
kvm                   598016  0
irqbypass              16384  1 kvm
crct10dif_pclmul       16384  0
crc32_pclmul           16384  0
ghash_clmulni_intel    16384  0
hp_wmi                 16384  0
sparse_keymap          16384  1 hp_wmi
intel_cstate           16384  0
snd_hda_codec_realtek    90112  1
snd_hda_codec_generic    69632  1 snd_hda_codec_realtek
snd_hda_intel          36864  5
nouveau              1556480  3
snd_hda_codec         135168  4 snd_hda_intel,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
snd_hda_core           90112  5 snd_hda_intel,snd_hda_codec,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek
mxm_wmi                16384  1 nouveau
video                  40960  1 nouveau
rfkill                 24576  2 hp_wmi
iTCO_wdt               16384  0
iTCO_vendor_support    16384  1 iTCO_wdt
ttm                    98304  1 nouveau
lpc_ich                24576  0
drm_kms_helper        155648  1 nouveau
drm                   360448  6 nouveau,ttm,drm_kms_helper
snd_hwdep              16384  1 snd_hda_codec
mei_me                 36864  0
evdev                  24576  8
mfd_core               16384  1 lpc_ich
i2c_algo_bit           16384  1 nouveau
snd_pcm               110592  4 snd_hda_intel,snd_hda_codec,snd_hda_core,snd_hda_codec_hdmi
intel_uncore          118784  0
mei                   102400  1 mei_me
intel_rapl_perf        16384  0
serio_raw              16384  0
pcspkr                 16384  0
snd_timer              32768  1 snd_pcm
sg                     32768  0
snd                    86016  18 snd_hda_intel,snd_hwdep,snd_hda_codec,snd_timer,snd_hda_codec_hdmi,snd_hda_codec_generic,snd_hda_codec_realtek,snd_pcm
shpchp                 36864  0
wmi                    16384  3 mxm_wmi,nouveau,hp_wmi
soundcore              16384  1 snd
tpm_infineon           20480  0
button                 16384  1 nouveau
parport_pc             28672  0
ppdev                  20480  0
lp                     20480  0
parport                49152  3 lp,parport_pc,ppdev
ip_tables              24576  0
x_tables               36864  1 ip_tables
autofs4                40960  2
hid_generic            16384  0
ext4                  589824  1
crc16                  16384  1 ext4
jbd2                  106496  1 ext4
crc32c_generic         16384  0
usbhid                 53248  0
fscrypto               28672  1 ext4
ecb                    16384  0
hid                   122880  2 hid_generic,usbhid
mbcache                16384  2 ext4
sr_mod                 24576  0
cdrom                  61440  1 sr_mod
sd_mod                 49152  3
i2c_i801               24576  0
i2c_smbus              16384  1 i2c_i801
crc32c_intel           24576  2
aesni_intel           167936  1
aes_x86_64             20480  1 aesni_intel
glue_helper            16384  1 aesni_intel
lrw                    16384  1 aesni_intel
gf128mul               16384  1 lrw
ablk_helper            16384  1 aesni_intel
ahci                   40960  2
cryptd                 24576  3 ablk_helper,ghash_clmulni_intel,aesni_intel
libahci                32768  1 ahci
psmouse               135168  0
libata                249856  2 ahci,libahci
ehci_pci               16384  0
scsi_mod              225280  4 sd_mod,libata,sr_mod,sg
ehci_hcd               81920  1 ehci_pci
e1000e                249856  0
usbcore               253952  3 usbhid,ehci_hcd,ehci_pci
ptp                    20480  1 e1000e
usb_common             16384  1 usbcore
pps_core               16384  1 ptp

Chrisdb
Posts: 279
Joined: 2018-04-10 07:16

Re: Bluez daemon is not running

#13 Post by Chrisdb »

try to load the bluetooth module:

Code: Select all

# modprobe btusb
restart the bluetooth service, connect your device and check again

**Edit:
Also post output of the following after plugin of your device:

Code: Select all

# dmesg
Btw what is the name/model/manuf of your device

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#14 Post by Mugent0 »

Chrisdb wrote:try to load the bluetooth module:

Code: Select all

# modprobe btusb
restart the bluetooth service, connect your device and check again

**Edit:
Also post output of the following after plugin of your device:

Code: Select all

# dmesg
Btw what is the name/model/manuf of your device
Hi Chrisdb,
Here is #dmseg:

Code: Select all

user@debian:~$ sudo dmesg
[    0.000000] Linux version 4.9.0-9-amd64 (debian-kernel@lists.debian.org) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ) #1 SMP Debian 4.9.168-1+deb9u3 (2019-06-16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-9-amd64 root=UUID=b183c0e8-e5ab-45ed-93a3-3f3bc5ed2ad4 ro quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf3dffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf3e0000-0x00000000bf428fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf429000-0x00000000bf436fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bf437000-0x00000000bf456fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf457000-0x00000000bf478fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf479000-0x00000000bf4fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf500000-0x00000000bf500fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf501000-0x00000000bf512fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf513000-0x00000000bf51dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf51e000-0x00000000bf52efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf52f000-0x00000000bf571fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf572000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013dffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Hewlett-Packard HP Compaq 8200 Elite SFF PC/1495, BIOS J01 v02.15 11/10/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x13e000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
[    0.000000]   1 base 13E000000 mask FFE000000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f4c70-0x000f4c7f] mapped at [ffff9508800f4c70]
[    0.000000] Base memory trampoline at [ffff950880095000] 95000 size 24576
[    0.000000] BRK [0xad734000, 0xad734fff] PGTABLE
[    0.000000] BRK [0xad735000, 0xad735fff] PGTABLE
[    0.000000] BRK [0xad736000, 0xad736fff] PGTABLE
[    0.000000] BRK [0xad737000, 0xad737fff] PGTABLE
[    0.000000] BRK [0xad738000, 0xad738fff] PGTABLE
[    0.000000] BRK [0xad739000, 0xad739fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35cbf000-0x36e56fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FE700 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000BF429078 00006C (v01 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000BF430B88 0000F4 (v04 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000BF429170 007A13 (v02 HPQOEM SLIC-BPC 00000007 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BF515F80 000040
[    0.000000] ACPI: APIC 0x00000000BF430C80 000072 (v03 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000BF430CF8 000102 (v01 AMICPU PROC     00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 0x00000000BF430E00 00003C (v01 HPQOEM SLIC-BPC 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BF430E40 000038 (v01 HPQOEM SLIC-BPC 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000BF430E78 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000BF430F18 005270 (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000BF436188 000176 (v01 HPQOEM SLIC-BPC 00000001      00000000)
[    0.000000] ACPI: TCPA 0x00000000BF436300 000032 (v02 APTIO4 NAPAASF  00000001 MSFT 01000013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013dffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13dff8000-0x13dffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013dffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009afff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bf3dffff]
[    0.000000]   node   0: [mem 0x00000000bf572000-0x00000000bf7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013dffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013dffffff]
[    0.000000] On node 0 totalpages: 1037832
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3994 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12186 pages used for memmap
[    0.000000]   DMA32 zone: 779886 pages, LIFO batch:31
[    0.000000]   Normal zone: 3968 pages used for memmap
[    0.000000]   Normal zone: 253952 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf3e0000-0xbf428fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf429000-0xbf436fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf437000-0xbf456fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf457000-0xbf478fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf479000-0xbf4fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf500000-0xbf500fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf501000-0xbf512fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf513000-0xbf51dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf51e000-0xbf52efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf52f000-0xbf571fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xbf800000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 35 pages/cpu @ffff9509bdc00000 s105304 r8192 d29864 u524288
[    0.000000] pcpu-alloc: s105304 r8192 d29864 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1021593
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-9-amd64 root=UUID=b183c0e8-e5ab-45ed-93a3-3f3bc5ed2ad4 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3985468K/4151328K available (6273K kernel code, 1162K rwdata, 2876K rodata, 1424K init, 656K bss, 165860K reserved, 0K cma-reserved)
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] 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=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:456 16
[    0.000000] Console: colour VGA+ 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: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 3092.982 MHz processor
[    0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 6185.96 BogoMIPS (lpj=12371928)
[    0.000025] pid_max: default: 32768 minimum: 301
[    0.000036] ACPI: Core revision 20160831
[    0.003643] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.003680] Security Framework initialized
[    0.003681] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.003686] AppArmor: AppArmor disabled by boot time parameter
[    0.003862] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.004486] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.004761] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004766] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004971] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.004972] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.004974] mce: CPU supports 9 MCE banks
[    0.004980] CPU0: Thermal monitoring enabled (TM1)
[    0.004989] process: using mwait in idle threads
[    0.004992] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.004992] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.004994] Spectre V2 : Mitigation: Full generic retpoline
[    0.004994] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.004995] Speculative Store Bypass: Vulnerable
[    0.005023] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.005405] Freeing SMP alternatives memory: 24K
[    0.007180] ftrace: allocating 25319 entries in 99 pages
[    0.025567] smpboot: Max logical packages: 1
[    0.025735] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.026507] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.066195] TSC deadline timer enabled
[    0.066200] smpboot: CPU0: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.066203] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.066221] core: PEBS disabled due to CPU errata, please upgrade microcode
[    0.066223] ... version:                3
[    0.066223] ... bit width:              48
[    0.066224] ... generic registers:      8
[    0.066224] ... value mask:             0000ffffffffffff
[    0.066225] ... max period:             00007fffffffffff
[    0.066225] ... fixed-purpose events:   3
[    0.066226] ... event mask:             00000007000000ff
[    0.066692] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.066789] x86: Booting SMP configuration:
[    0.066790] .... node  #0, CPUs:      #1 #2 #3
[    0.074082] x86: Booted up 1 node, 4 CPUs
[    0.074084] smpboot: Total of 4 processors activated (24743.85 BogoMIPS)
[    0.076532] devtmpfs: initialized
[    0.076591] x86/mm: Memory block size: 128MB
[    0.078412] PM: Registering ACPI NVS region [mem 0xbf3e0000-0xbf428fff] (299008 bytes)
[    0.078420] PM: Registering ACPI NVS region [mem 0xbf457000-0xbf478fff] (139264 bytes)
[    0.078423] PM: Registering ACPI NVS region [mem 0xbf500000-0xbf500fff] (4096 bytes)
[    0.078424] PM: Registering ACPI NVS region [mem 0xbf513000-0xbf51dfff] (45056 bytes)
[    0.078426] PM: Registering ACPI NVS region [mem 0xbf52f000-0xbf571fff] (274432 bytes)
[    0.078436] reboot: HP Compaq Laptop series board detected. Selecting BIOS-method for reboots.
[    0.078475] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.078483] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.078513] pinctrl core: initialized pinctrl subsystem
[    0.078604] NET: Registered protocol family 16
[    0.092327] cpuidle: using governor ladder
[    0.112336] cpuidle: using governor menu
[    0.112369] ACPI: bus type PCI registered
[    0.112371] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.112442] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.112443] PCI: not using MMCONFIG
[    0.112444] PCI: Using configuration type 1 for base access
[    0.112523] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.112568] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.133347] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.133522] ACPI: Added _OSI(Module Device)
[    0.133522] ACPI: Added _OSI(Processor Device)
[    0.133523] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.133524] ACPI: Added _OSI(Processor Aggregator Device)
[    0.133691] ACPI: Executed 1 blocks of module-level executable AML code
[    0.136858] ACPI: Dynamic OEM Table Load:
[    0.136862] ACPI: SSDT 0xFFFF9509B87E1000 00038C (v01 AMI    IST      00000001 MSFT 03000001)
[    0.137029] ACPI: Dynamic OEM Table Load:
[    0.137031] ACPI: SSDT 0xFFFF9509B87546C0 000084 (v01 AMI    CST      00000001 MSFT 03000001)
[    0.137664] ACPI: Interpreter enabled
[    0.137676] ACPI: (supports S0 S3 S4 S5)
[    0.137677] ACPI: Using IOAPIC for interrupt routing
[    0.137700] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.137750] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.137760] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.137976] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.142809] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.142813] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.142976] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.143282] PCI host bridge to bus 0000:00
[    0.143284] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.143285] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.143286] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.143287] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.143288] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.143289] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.143290] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
[    0.143292] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.143298] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.143378] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.143405] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.143441] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.143505] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.143529] pci 0000:00:16.0: reg 0x10: [mem 0xfb02a000-0xfb02a00f 64bit]
[    0.143604] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.143683] pci 0000:00:16.3: [8086:1c3d] type 00 class 0x070002
[    0.143700] pci 0000:00:16.3: reg 0x10: [io  0xf0a0-0xf0a7]
[    0.143711] pci 0000:00:16.3: reg 0x14: [mem 0xfb029000-0xfb029fff]
[    0.143850] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[    0.143868] pci 0000:00:19.0: reg 0x10: [mem 0xfb000000-0xfb01ffff]
[    0.143877] pci 0000:00:19.0: reg 0x14: [mem 0xfb028000-0xfb028fff]
[    0.143886] pci 0000:00:19.0: reg 0x18: [io  0xf040-0xf05f]
[    0.143947] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.143986] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.144029] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.144046] pci 0000:00:1a.0: reg 0x10: [mem 0xfb027000-0xfb0273ff]
[    0.144130] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.144171] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.144213] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.144230] pci 0000:00:1b.0: reg 0x10: [mem 0xfb020000-0xfb023fff 64bit]
[    0.144303] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.144394] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.144564] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.144624] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.144681] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.144855] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.144914] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.144963] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[    0.145141] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.145201] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.145252] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[    0.145426] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.145485] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.145527] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.145547] pci 0000:00:1d.0: reg 0x10: [mem 0xfb026000-0xfb0263ff]
[    0.145631] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.145670] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.145709] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.145788] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.145829] pci 0000:00:1f.0: [8086:1c4e] type 00 class 0x060100
[    0.146068] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.146087] pci 0000:00:1f.2: reg 0x10: [io  0xf090-0xf097]
[    0.146095] pci 0000:00:1f.2: reg 0x14: [io  0xf080-0xf083]
[    0.146104] pci 0000:00:1f.2: reg 0x18: [io  0xf070-0xf077]
[    0.146113] pci 0000:00:1f.2: reg 0x1c: [io  0xf060-0xf063]
[    0.146121] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.146130] pci 0000:00:1f.2: reg 0x24: [mem 0xfb025000-0xfb0257ff]
[    0.146172] pci 0000:00:1f.2: PME# supported from D3hot
[    0.146244] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.146262] pci 0000:00:1f.3: reg 0x10: [mem 0xfb024000-0xfb0240ff 64bit]
[    0.146283] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.146396] pci 0000:01:00.0: [10de:0a65] type 00 class 0x030000
[    0.146405] pci 0000:01:00.0: reg 0x10: [mem 0xf9000000-0xf9ffffff]
[    0.146413] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.146421] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.146427] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.146433] pci 0000:01:00.0: reg 0x30: [mem 0xfa000000-0xfa07ffff pref]
[    0.146505] pci 0000:01:00.1: [10de:0be3] type 00 class 0x040300
[    0.146513] pci 0000:01:00.1: reg 0x10: [mem 0xfa080000-0xfa083fff]
[    0.156377] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.156380] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.156383] pci 0000:00:01.0:   bridge window [mem 0xf9000000-0xfaffffff]
[    0.156388] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.156497] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.156599] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.156701] pci 0000:00:1c.6: PCI bridge to [bus 04]
[    0.156808] pci 0000:00:1c.7: PCI bridge to [bus 05]
[    0.156895] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
[    0.156905] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    0.156907] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    0.156908] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    0.156909] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.156910] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.156911] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    0.156912] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[    0.157537] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.157586] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.157639] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.157692] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.157743] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.157793] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.157844] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.157895] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.157974] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.158056] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.158057] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.158057] vgaarb: loaded
[    0.158058] vgaarb: bridge control possible 0000:01:00.0
[    0.158105] PCI: Using ACPI for IRQ routing
[    0.164123] PCI: pci_cache_line_size set to 64 bytes
[    0.164193] e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
[    0.164194] e820: reserve RAM buffer [mem 0xbf3e0000-0xbfffffff]
[    0.164195] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.164196] e820: reserve RAM buffer [mem 0x13e000000-0x13fffffff]
[    0.164313] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.164317] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.166343] clocksource: Switched to clocksource hpet
[    0.171262] VFS: Disk quotas dquot_6.6.0
[    0.171288] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.171361] pnp: PnP ACPI init
[    0.171483] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[    0.171484] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.171486] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.171487] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.171489] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.171492] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.171602] system 00:01: [io  0x0620-0x063f] has been reserved
[    0.171604] system 00:01: [io  0x0610-0x061f] has been reserved
[    0.171606] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.171649] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.171692] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    0.171714] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.171761] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    0.171763] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.171953] pnp 00:06: [dma 0 disabled]
[    0.171970] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.172166] pnp 00:07: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
[    0.172306] system 00:08: [io  0x0400-0x0453] has been reserved
[    0.172307] system 00:08: [io  0x0458-0x047f] has been reserved
[    0.172309] system 00:08: [io  0x1180-0x119f] has been reserved
[    0.172310] system 00:08: [io  0x0500-0x057f] has been reserved
[    0.172312] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.172314] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.172315] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.172317] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    0.172319] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.172370] system 00:09: [io  0x0454-0x0457] has been reserved
[    0.172372] system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.172589] pnp: PnP ACPI: found 10 devices
[    0.179077] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.179155] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.179157] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.179159] pci 0000:00:01.0:   bridge window [mem 0xf9000000-0xfaffffff]
[    0.179161] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.179163] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.179190] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.179216] pci 0000:00:1c.6: PCI bridge to [bus 04]
[    0.179242] pci 0000:00:1c.7: PCI bridge to [bus 05]
[    0.179268] pci 0000:00:1e.0: PCI bridge to [bus 06]
[    0.179279] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.179281] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.179282] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.179283] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.179284] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.179285] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.179286] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.179288] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.179289] pci_bus 0000:01: resource 1 [mem 0xf9000000-0xfaffffff]
[    0.179290] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.179291] pci_bus 0000:06: resource 4 [io  0x0000-0x03af window]
[    0.179293] pci_bus 0000:06: resource 5 [io  0x03e0-0x0cf7 window]
[    0.179294] pci_bus 0000:06: resource 6 [io  0x03b0-0x03df window]
[    0.179295] pci_bus 0000:06: resource 7 [io  0x0d00-0xffff window]
[    0.179296] pci_bus 0000:06: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.179297] pci_bus 0000:06: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.179298] pci_bus 0000:06: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.179386] NET: Registered protocol family 2
[    0.179533] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.179588] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.179651] TCP: Hash tables configured (established 32768 bind 32768)
[    0.179665] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.179677] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.179718] NET: Registered protocol family 1
[    0.538467] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.538473] PCI: CLS 64 bytes, default 64
[    0.538509] Unpacking initramfs...
[    0.792964] Freeing initrd memory: 18016K
[    0.792970] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.792971] software IO TLB: mapped [mem 0xbb3e0000-0xbf3e0000] (64MB)
[    0.793313] audit: initializing netlink subsys (disabled)
[    0.793329] audit: type=2000 audit(1579424986.792:1): initialized
[    0.793662] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[    0.793706] zbud: loaded
[    0.794498] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.794529] io scheduler noop registered
[    0.794530] io scheduler deadline registered
[    0.794540] io scheduler cfq registered (default)
[    0.795591] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.795592] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.795593] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.795595] pcie_pme 0000:00:01.0:pcie001: service driver pcie_pme loaded
[    0.795628] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.795637] pcie_pme 0000:00:1c.0:pcie001: service driver pcie_pme loaded
[    0.795673] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.795681] pcie_pme 0000:00:1c.4:pcie001: service driver pcie_pme loaded
[    0.795715] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    0.795724] pcie_pme 0000:00:1c.6:pcie001: service driver pcie_pme loaded
[    0.795758] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.795766] pcie_pme 0000:00:1c.7:pcie001: service driver pcie_pme loaded
[    0.795776] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.795780] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.795790] intel_idle: MWAIT substates: 0x1120
[    0.795791] intel_idle: v0.4.1 model 0x2A
[    0.795907] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.796281] GHES: HEST is not enabled!
[    0.796327] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.817617] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.838763] 0000:00:16.3: ttyS1 at I/O 0xf0a0 (irq = 17, base_baud = 115200) is a 16550A
[    0.838962] Linux agpgart interface v0.103
[    0.918490] tpm_tis 00:07: 1.2 TPM (device-id 0xB, rev-id 16)
[    1.366483] tpm tpm0: TPM is disabled/deactivated (0x7)
[    1.366664] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.366664] AMD IOMMUv2 functionality not available on this system
[    1.367039] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    1.370592] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.370596] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.370846] mousedev: PS/2 mouse device common for all mice
[    1.370900] rtc_cmos 00:04: RTC can wake from S4
[    1.371214] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.371265] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.371275] intel_pstate: Intel P-state driver initializing
[    1.371709] ledtrig-cpu: registered to indicate activity on CPUs
[    1.372595] NET: Registered protocol family 10
[    1.372940] mip6: Mobile IPv6
[    1.372942] NET: Registered protocol family 17
[    1.372945] mpls_gso: MPLS GSO support
[    1.373242] microcode: sig=0x206a7, pf=0x2, revision=0x1b
[    1.373404] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.373588] registered taskstats version 1
[    1.373607] zswap: loaded using pool lzo/zbud
[    1.434481] ima: No TPM chip found, activating TPM-bypass!
[    1.434486] ima: Allocated hash algorithm: sha256
[    1.435031] rtc_cmos 00:04: setting system clock to 2020-01-19 09:09:47 UTC (1579424987)
[    1.435108] PM: Hibernation image not present or could not be loaded.
[    1.436242] Freeing unused kernel memory: 1424K
[    1.436244] Write protecting the kernel read-only data: 12288k
[    1.436963] Freeing unused kernel memory: 1904K
[    1.440924] Freeing unused kernel memory: 1220K
[    1.448684] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.469511] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.469619] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.469631] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.504899] pps_core: LinuxPPS API ver. 1 registered
[    1.504901] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.505151] PTP clock support registered
[    1.506884] ACPI: bus type USB registered
[    1.506912] usbcore: registered new interface driver usbfs
[    1.506923] usbcore: registered new interface driver hub
[    1.506950] usbcore: registered new device driver usb
[    1.507269] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.507270] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.507504] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.507615] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.507822] ehci-pci: EHCI PCI platform driver
[    1.508692] SCSI subsystem initialized
[    1.511793] libata version 3.00 loaded.
[    1.513857] AVX version of gcm_enc/dec engaged.
[    1.513857] AES CTR mode by8 optimization enabled
[    1.617107] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[    1.723598] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 08:2e:5f:20:85:1b
[    1.723601] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.723676] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    1.723894] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.723904] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.723927] ehci-pci 0000:00:1a.0: debug port 2
[    1.724771] e1000e 0000:00:19.0 eno1: renamed from eth0
[    1.727845] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.727863] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb027000
[    1.742408] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.742477] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.742479] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.742481] usb usb1: Product: EHCI Host Controller
[    1.742483] usb usb1: Manufacturer: Linux 4.9.0-9-amd64 ehci_hcd
[    1.742485] usb usb1: SerialNumber: 0000:00:1a.0
[    1.742769] hub 1-0:1.0: USB hub found
[    1.742778] hub 1-0:1.0: 3 ports detected
[    1.743089] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.743095] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.743119] ehci-pci 0000:00:1d.0: debug port 2
[    1.747041] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.747056] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb026000
[    1.762402] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.762466] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.762469] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.762471] usb usb2: Product: EHCI Host Controller
[    1.762473] usb usb2: Manufacturer: Linux 4.9.0-9-amd64 ehci_hcd
[    1.762475] usb usb2: SerialNumber: 0000:00:1d.0
[    1.762753] hub 2-0:1.0: USB hub found
[    1.762761] hub 2-0:1.0: 3 ports detected
[    1.762981] ahci 0000:00:1f.2: version 3.0
[    1.773334] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x15 impl SATA mode
[    1.773338] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst 
[    1.795614] scsi host0: ahci
[    1.796038] scsi host1: ahci
[    1.796381] scsi host2: ahci
[    1.796650] scsi host3: ahci
[    1.796839] scsi host4: ahci
[    1.797024] scsi host5: ahci
[    1.797087] ata1: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025100 irq 30
[    1.797089] ata2: DUMMY
[    1.797094] ata3: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025200 irq 30
[    1.797095] ata4: DUMMY
[    1.797099] ata5: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025300 irq 30
[    1.797100] ata6: DUMMY
[    1.797254] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    1.818423] tsc: Refined TSC clocksource calibration: 3092.972 MHz
[    1.818432] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2c955856658, max_idle_ns: 440795256416 ns
[    2.070408] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.090405] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.109856] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.112390] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.112394] ata3.00: ATAPI: hp      DVD A  DH16ACSH, JHD5, max UDMA/100
[    2.113366] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.113371] ata3.00: configured for UDMA/100
[    2.113803] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.113829] ata5: SATA link down (SStatus 0 SControl 300)
[    2.114527] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.115213] ata1.00: ATA-8: WDC WD2500AAJS-60Z0A0, 03.03E03, max UDMA/100
[    2.115215] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.116040] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.116204] ata1.00: configured for UDMA/100
[    2.116608] scsi 0:0:0:0: Direct-Access     ATA      WDC WD2500AAJS-6 3E03 PQ: 0 ANSI: 5
[    2.154267] scsi 2:0:0:0: CD-ROM            hp       DVD A  DH16ACSH  JHD5 PQ: 0 ANSI: 5
[    2.172584] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
[    2.172630] sd 0:0:0:0: [sda] Write Protect is off
[    2.172633] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.172651] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.189501] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.189511] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.189715] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.219160] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    2.219162] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.219290]  sda: sda1 sda2 < sda5 >
[    2.219515] hub 1-1:1.0: USB hub found
[    2.219667] hub 1-1:1.0: 6 ports detected
[    2.220088] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.238816] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    2.238819] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.239092] hub 2-1:1.0: USB hub found
[    2.239172] hub 2-1:1.0: 8 ports detected
[    2.526412] usb 2-1.7: new full-speed USB device number 3 using ehci-pci
[    2.588075] PM: Starting manual resume from disk
[    2.588079] PM: Hibernation image partition 8:5 present
[    2.588080] PM: Looking for hibernation image.
[    2.588390] PM: Image not found (code -22)
[    2.588391] PM: Hibernation image not present or could not be loaded.
[    2.599146] random: fast init done
[    2.638286] usb 2-1.7: New USB device found, idVendor=046d, idProduct=c534
[    2.638289] usb 2-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.638291] usb 2-1.7: Product: USB Receiver
[    2.638293] usb 2-1.7: Manufacturer: Logitech
[    2.651366] hidraw: raw HID events driver (C) Jiri Kosina
[    2.655682] usbcore: registered new interface driver usbhid
[    2.655684] usbhid: USB HID core driver
[    2.656620] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/0003:046D:C534.0001/input/input3
[    2.714763] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1.7/input0
[    2.715167] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.1/0003:046D:C534.0002/input/input4
[    2.774904] hid-generic 0003:046D:C534.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1.7/input1
[    2.807679] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.842686] clocksource: Switched to clocksource tsc
[    3.910864] ip_tables: (C) 2000-2006 Netfilter Core Team
[    4.044566] 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)
[    4.044824] systemd[1]: Detected architecture x86-64.
[    4.075784] systemd[1]: Set hostname to <debian>.
[    5.229638] random: crng init done
[    5.229641] random: 7 urandom warning(s) missed due to ratelimiting
[    5.274707] systemd[1]: Listening on udev Control Socket.
[    5.274839] systemd[1]: Listening on Syslog Socket.
[    5.274892] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.274955] systemd[1]: Listening on Journal Socket.
[    5.275024] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.275043] systemd[1]: Reached target User and Group Name Lookups.
[    5.275092] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.853013] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    6.002089] systemd-journald[227]: Received request to flush runtime journal from PID 1
[    6.034503] lp: driver loaded but no devices found
[    6.050827] ppdev: user-space parallel port driver
[    8.198610] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[    8.198613] ACPI: Power Button [PWRB]
[    8.198653] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[    8.198655] ACPI: Power Button [PWRF]
[    8.324118] wmi: Mapper loaded
[    8.333748] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    8.417089] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.417134] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    8.495076] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    8.526925] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    8.526927] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    8.526928] RAPL PMU: hw unit of domain package 2^-16 Joules
[    8.526929] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    8.974852] [drm] Initialized
[    9.159346] iTCO_vendor_support: vendor-support=0
[    9.159867] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    9.159913] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[    9.160063] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    9.416678] nouveau 0000:01:00.0: NVIDIA GT218 (0a8280b1)
[    9.469921] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC662 rev1: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    9.469924] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    9.469926] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    9.469927] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    9.469928] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    9.469930] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    9.469931] snd_hda_codec_realtek hdaudioC0D0:      Line=0x18
[    9.487914] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    9.487984] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    9.488043] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    9.488095] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    9.543565] nouveau 0000:01:00.0: bios: version 70.18.5f.00.06
[    9.544410] nouveau 0000:01:00.0: fb: 1024 MiB DDR3
[    9.718471] input: HP WMI hotkeys as /devices/virtual/input/input12
[   10.263497] Adding 4149244k swap on /dev/sda5.  Priority:-1 extents:1 across:4149244k FS
[   10.363624] kvm: disabled by bios
[   10.463355] kvm: disabled by bios
[   10.539349] kvm: disabled by bios
[   10.654485] intel_rapl: Found RAPL domain package
[   10.654486] intel_rapl: Found RAPL domain core
[   10.654487] intel_rapl: Found RAPL domain uncore
[   10.654490] intel_rapl: RAPL package 0 domain package locked by BIOS
[   10.842355] [TTM] Zone  kernel: Available graphics memory: 2004028 kiB
[   10.842356] [TTM] Initializing pool allocator
[   10.842363] [TTM] Initializing DMA pool allocator
[   10.842389] nouveau 0000:01:00.0: DRM: VRAM: 1024 MiB
[   10.842390] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[   10.842392] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[   10.842394] nouveau 0000:01:00.0: DRM: DCB version 4.0
[   10.842395] nouveau 0000:01:00.0: DRM: DCB outp 00: 01000302 00020030
[   10.842397] nouveau 0000:01:00.0: DRM: DCB outp 01: 02000300 00000000
[   10.842398] nouveau 0000:01:00.0: DRM: DCB outp 02: 02011362 00020010
[   10.842399] nouveau 0000:01:00.0: DRM: DCB outp 03: 01022310 00000000
[   10.842401] nouveau 0000:01:00.0: DRM: DCB conn 00: 00001030
[   10.842402] nouveau 0000:01:00.0: DRM: DCB conn 01: 00002161
[   10.842403] nouveau 0000:01:00.0: DRM: DCB conn 02: 00000200
[   10.848212] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   10.848213] [drm] Driver supports precise vblank timestamp query.
[   10.864667] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
[   10.971537] nouveau 0000:01:00.0: DRM: allocated 1920x1080 fb: 0x70000, bo ffff9509b7b71c00
[   10.971634] fbcon: nouveaufb (fb0) is primary device
[   11.057225] Console: switching to colour frame buffer device 240x67
[   11.060367] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[   11.078323] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 0
[   11.078422] snd_hda_intel 0000:01:00.1: Disabling MSI
[   11.078429] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[   15.867347] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[   15.867423] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[   15.867492] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[   15.867558] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[   16.753877] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[   16.998626] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[   20.448441] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   20.448483] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[   22.070196] fuse init (API version 7.26)
[  624.942567] PM: Hibernation mode set to 'platform'
[  625.001416] PM: Syncing filesystems ... 
[  625.200733] done.
[  625.200736] Freezing user space processes ... (elapsed 0.001 seconds) done.
[  625.202322] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[  625.202324] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[  625.202328] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[  625.202338] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[  625.203203] PM: Basic memory bitmaps created
[  625.203264] PM: Preallocating image memory... done (allocated 390691 pages)
[  625.519863] PM: Allocated 1562764 kbytes in 0.31 seconds (5041.17 MB/s)
[  625.519863] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  625.521166] Suspending console(s) (use no_console_suspend to debug)
[  625.633486] serial 00:06: disabled
[  625.633551] i8042 aux 00:03: System wakeup disabled by ACPI
[  625.633568] i8042 kbd 00:02: System wakeup enabled by ACPI
[  625.633637] nouveau 0000:01:00.0: DRM: suspending console...
[  625.633642] nouveau 0000:01:00.0: DRM: suspending display...
[  625.633670] nouveau 0000:01:00.0: DRM: evicting buffers...
[  626.026998] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[  626.027021] nouveau 0000:01:00.0: DRM: suspending client object trees...
[  626.027564] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[  627.672180] PM: freeze of devices complete after 2151.045 msecs
[  627.672566] PM: late freeze of devices complete after 0.384 msecs
[  627.673447] PM: noirq freeze of devices complete after 0.878 msecs
[  627.673747] ACPI: Preparing to enter system sleep state S4
[  627.674560] PM: Saving platform NVS memory
[  627.674866] Disabling non-boot CPUs ...
[  627.676136] smpboot: CPU 1 is now offline
[  627.677913] smpboot: CPU 2 is now offline
[  627.679599] smpboot: CPU 3 is now offline
[  627.680172] PM: Creating hibernation image:
[  627.761221] PM: Need to copy 416199 pages
[  627.761224] PM: Normal pages needed: 416199 + 1024, available pages: 621534
[  627.681358] PM: Restoring platform NVS memory
[  627.681942] Suspended for 80195.997 seconds
[  627.681987] Enabling non-boot CPUs ...
[  627.682069] x86: Booting SMP configuration:
[  627.682070] smpboot: Booting Node 0 Processor 1 APIC 0x2
[  627.684726]  cache: parent cpu1 should not be sleeping
[  627.685075] CPU1 is up
[  627.685137] smpboot: Booting Node 0 Processor 2 APIC 0x4
[  627.687762]  cache: parent cpu2 should not be sleeping
[  627.688133] CPU2 is up
[  627.688193] smpboot: Booting Node 0 Processor 3 APIC 0x6
[  627.690854]  cache: parent cpu3 should not be sleeping
[  627.691357] CPU3 is up
[  627.695608] ACPI: Waking up from system sleep state S4
[  627.698310] PM: noirq restore of devices complete after 1.750 msecs
[  627.698621] PM: early restore of devices complete after 0.293 msecs
[  627.767728] usb usb1: root hub lost power or was reset
[  627.767887] usb usb2: root hub lost power or was reset
[  627.767933] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[  627.768305] i8042 kbd 00:02: System wakeup disabled by ACPI
[  627.768308] rtc_cmos 00:04: System wakeup disabled by ACPI
[  627.768971] serial 00:06: activated
[  627.771611] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[  627.771796] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[  627.788400] sd 0:0:0:0: [sda] Starting disk
[  627.911110] tpm tpm0: TPM is disabled/deactivated (0x7)
[  627.925418] nouveau 0000:01:00.0: DRM: resuming client object trees...
[  627.925795] nouveau 0000:01:00.0: DRM: resuming display...
[  627.987178] nouveau 0000:01:00.0: DRM: resuming console...
[  628.107058] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[  628.117957] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  628.117985] ata5: SATA link down (SStatus 0 SControl 300)
[  628.118015] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  628.118701] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.119040] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[  628.119617] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.119753] ata1.00: configured for UDMA/100
[  628.120471] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.121451] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.121456] ata3.00: configured for UDMA/100
[  628.563022] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[  628.675765] PM: restore of devices complete after 908.204 msecs
[  628.675932] PM: Image restored successfully.
[  628.675949] PM: Basic memory bitmaps freed
[  628.675950] Restarting tasks ... done.
[  629.349391] e1000e: eno1 NIC Link is Down
[  629.793966] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[  630.039411] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[  632.913017] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[  632.913063] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 3931.633862] PM: Hibernation mode set to 'platform'
[ 3931.635316] PM: Syncing filesystems ... 
[ 3932.033941] done.
[ 3932.033944] Freezing user space processes ... (elapsed 0.001 seconds) done.
[ 3932.035160] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[ 3932.035162] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[ 3932.035166] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[ 3932.035176] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[ 3932.036040] PM: Basic memory bitmaps created
[ 3932.036106] PM: Preallocating image memory... done (allocated 361702 pages)
[ 3932.211010] PM: Allocated 1446808 kbytes in 0.17 seconds (8510.63 MB/s)
[ 3932.211011] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 3932.212272] Suspending console(s) (use no_console_suspend to debug)
[ 3932.339420] serial 00:06: disabled
[ 3932.339479] i8042 aux 00:03: System wakeup disabled by ACPI
[ 3932.339496] i8042 kbd 00:02: System wakeup enabled by ACPI
[ 3932.339601] nouveau 0000:01:00.0: DRM: suspending console...
[ 3932.339606] nouveau 0000:01:00.0: DRM: suspending display...
[ 3932.339634] nouveau 0000:01:00.0: DRM: evicting buffers...
[ 3932.510464] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[ 3932.510489] nouveau 0000:01:00.0: DRM: suspending client object trees...
[ 3932.511076] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[ 3934.159098] PM: freeze of devices complete after 1946.870 msecs
[ 3934.159543] PM: late freeze of devices complete after 0.442 msecs
[ 3934.160485] PM: noirq freeze of devices complete after 0.939 msecs
[ 3934.160776] ACPI: Preparing to enter system sleep state S4
[ 3934.161491] PM: Saving platform NVS memory
[ 3934.161789] Disabling non-boot CPUs ...
[ 3934.163077] smpboot: CPU 1 is now offline
[ 3934.164816] smpboot: CPU 2 is now offline
[ 3934.166501] smpboot: CPU 3 is now offline
[ 3934.167161] PM: Creating hibernation image:
[ 3934.255321] PM: Need to copy 361779 pages
[ 3934.255324] PM: Normal pages needed: 361779 + 1024, available pages: 675954
[ 3934.168344] PM: Restoring platform NVS memory
[ 3934.168928] Suspended for 38486.791 seconds
[ 3934.169011] Enabling non-boot CPUs ...
[ 3934.169093] x86: Booting SMP configuration:
[ 3934.169094] smpboot: Booting Node 0 Processor 1 APIC 0x2
[ 3934.171743]  cache: parent cpu1 should not be sleeping
[ 3934.172068] CPU1 is up
[ 3934.172131] smpboot: Booting Node 0 Processor 2 APIC 0x4
[ 3934.174758]  cache: parent cpu2 should not be sleeping
[ 3934.175133] CPU2 is up
[ 3934.175192] smpboot: Booting Node 0 Processor 3 APIC 0x6
[ 3934.177846]  cache: parent cpu3 should not be sleeping
[ 3934.178309] CPU3 is up
[ 3934.182570] ACPI: Waking up from system sleep state S4
[ 3934.185320] PM: noirq restore of devices complete after 1.796 msecs
[ 3934.185593] PM: early restore of devices complete after 0.255 msecs
[ 3934.247773] usb usb1: root hub lost power or was reset
[ 3934.248414] usb usb2: root hub lost power or was reset
[ 3934.248435] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[ 3934.248558] i8042 kbd 00:02: System wakeup disabled by ACPI
[ 3934.248561] rtc_cmos 00:04: System wakeup disabled by ACPI
[ 3934.249230] serial 00:06: activated
[ 3934.251666] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 3934.252307] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 3934.271416] sd 0:0:0:0: [sda] Starting disk
[ 3934.393061] tpm tpm0: TPM is disabled/deactivated (0x7)
[ 3934.406101] nouveau 0000:01:00.0: DRM: resuming client object trees...
[ 3934.406397] nouveau 0000:01:00.0: DRM: resuming display...
[ 3934.467658] nouveau 0000:01:00.0: DRM: resuming console...
[ 3934.567423] ata5: SATA link down (SStatus 0 SControl 300)
[ 3934.584977] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[ 3934.587714] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 3934.587746] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3934.588440] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.589349] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.589473] ata1.00: configured for UDMA/100
[ 3934.590189] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.591250] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.591254] ata3.00: configured for UDMA/100
[ 3934.600975] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[ 3935.044938] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[ 3935.157681] PM: restore of devices complete after 910.100 msecs
[ 3935.157847] PM: Image restored successfully.
[ 3935.157863] PM: Basic memory bitmaps freed
[ 3935.157864] Restarting tasks ... done.
[ 3935.346494] e1000e: eno1 NIC Link is Down
[ 3935.410993] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 3935.653316] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 3938.474987] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[ 3938.475031] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 4077.866503] Bluetooth: Core ver 2.22
[ 4077.866523] NET: Registered protocol family 31
[ 4077.866524] Bluetooth: HCI device and connection manager initialized
[ 4077.866528] Bluetooth: HCI socket layer initialized
[ 4077.866530] Bluetooth: L2CAP socket layer initialized
[ 4077.866536] Bluetooth: SCO socket layer initialized
[ 4077.905182] usbcore: registered new interface driver btusb
[ 4164.111364] usb 2-1.8: new full-speed USB device number 4 using ehci-pci
[ 4164.702929] usb 2-1.8: New USB device found, idVendor=0a12, idProduct=0001
[ 4164.702933] usb 2-1.8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4165.163024] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4165.163026] Bluetooth: BNEP filters: protocol multicast
[ 4165.163031] Bluetooth: BNEP socket layer initialized
[ 4165.614071] Bluetooth: RFCOMM TTY layer initialized
[ 4165.614086] Bluetooth: RFCOMM socket layer initialized
[ 4165.614092] Bluetooth: RFCOMM ver 1.11
user@debian:~$ 

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#15 Post by Mugent0 »

Chrisdb,
I am not sure which device you mean, computer or USB, so here is both: The computer is a HP Compaq 8200 Elite and the bluetooth USB is a Gigabyte GN-BTD01. I was pondering this and thought that it might be helpful to share some background. I bought this computer about 6 months ago from a second hand dealer. The unit came without an OS so I asked him to install a Linux OS. He was a little cautious about it and, in hindsight, I think that this may have also been his first go at Linux because it took him several days to get it up an running. I am thinking that everything may not have been configured correctly during install, which would also explain why I don't have wifi in the network manager. I haven't noticed before now because it is wired in to the internet and my stereo. I have been trying to figure out what information would be necessary to see what chipsets the computer has, is this useful?

Code: Select all

user@debian:~$ lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation 2nd Generation Core Processor Family DRAM Controller [8086:0100] (rev 09)
00:01.0 PCI bridge [0604]: Intel Corporation Xeon E3-1200/2nd Generation Core Processor Family PCI Express Root Port [8086:0101] (rev 09)
00:16.0 Communication controller [0780]: Intel Corporation 6 Series/C200 Series Chipset Family MEI Controller #1 [8086:1c3a] (rev 04)
00:16.3 Serial controller [0700]: Intel Corporation 6 Series/C200 Series Chipset Family KT Controller [8086:1c3d] (rev 04)
00:19.0 Ethernet controller [0200]: Intel Corporation 82579LM Gigabit Network Connection [8086:1502] (rev 04)
00:1a.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #2 [8086:1c2d] (rev 04)
00:1b.0 Audio device [0403]: Intel Corporation 6 Series/C200 Series Chipset Family High Definition Audio Controller [8086:1c20] (rev 04)
00:1c.0 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 1 [8086:1c10] (rev b4)
00:1c.4 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 5 [8086:1c18] (rev b4)
00:1c.6 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 7 [8086:1c1c] (rev b4)
00:1c.7 PCI bridge [0604]: Intel Corporation 6 Series/C200 Series Chipset Family PCI Express Root Port 8 [8086:1c1e] (rev b4)
00:1d.0 USB controller [0c03]: Intel Corporation 6 Series/C200 Series Chipset Family USB Enhanced Host Controller #1 [8086:1c26] (rev 04)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev a4)
00:1f.0 ISA bridge [0601]: Intel Corporation Q67 Express Chipset Family LPC Controller [8086:1c4e] (rev 04)
00:1f.2 SATA controller [0106]: Intel Corporation 6 Series/C200 Series Chipset Family SATA AHCI Controller [8086:1c02] (rev 04)
00:1f.3 SMBus [0c05]: Intel Corporation 6 Series/C200 Series Chipset Family SMBus Controller [8086:1c22] (rev 04)
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2)
01:00.1 Audio device [0403]: NVIDIA Corporation High Definition Audio Controller [10de:0be3] (rev a1)
user@debian:~$ 

Chrisdb
Posts: 279
Joined: 2018-04-10 07:16

Re: Bluez daemon is not running

#16 Post by Chrisdb »

I don't think we've got all the necessary info. The USB device needs to be plugged in for all commands. Can you follow below steps just to be sure:

- plugin your USB device (very important)
- run:

Code: Select all

sudo systemctl restart bluetooth
- run:

Code: Select all

sudo systemctl status bluetooth
and post the entire output of the result

- run:

Code: Select all

lsusb
and post the entire output of the result

- run:

Code: Select all

dmesg
and post the entire output of the result

- run:

Code: Select all

sudo journalctl -u bluetooth
and post the entire output of the result

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#17 Post by Mugent0 »

Chrisdb wrote:I don't think we've got all the necessary info. The USB device needs to be plugged in for all commands. Can you follow below steps just to be sure:

- plugin your USB device (very important)
- run:

Code: Select all

sudo systemctl restart bluetooth
- run:

Code: Select all

sudo systemctl status bluetooth
and post the entire output of the result

- run:

Code: Select all

lsusb
and post the entire output of the result

- run:

Code: Select all

dmesg
and post the entire output of the result

- run:

Code: Select all

sudo journalctl -u bluetooth
and post the entire output of the result
I think that I may have solved part of this mystery. I looked up the specs for the computer and found that the base computer came with the Intel 82579LM network connection, but that the wireless minicard and wireless/bluetooth combo were optional upgrades. Sorry, I should have thought to check this first but I can't recall the last time that I used a computer without wireless capabilities. Welcome back to the twentieth century!

I am at the office now but will run the commands above with the USB device and post the results when I get home. Thank you!

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#18 Post by Mugent0 »

Hi Chrisdb,

Here is the output:

Code: Select all

user@debian:~$ sudo systemctl restart bluetooth
[sudo] password for user: 
user@debian:~$ sudo systemctl status bluetooth
● bluetooth.service - Bluetooth service
   Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset
   Active: active (running) since Wed 2020-01-22 20:46:14 NZDT; 28s ago
     Docs: man:bluetoothd(8)
 Main PID: 14840 (bluetoothd)
   Status: "Running"
    Tasks: 1 (limit: 4915)
   CGroup: /system.slice/bluetooth.service
           └─14840 /usr/lib/bluetooth/bluetoothd

Jan 22 20:46:14 debian systemd[1]: Starting Bluetooth service...
Jan 22 20:46:14 debian bluetoothd[14840]: Bluetooth daemon 5.43
Jan 22 20:46:14 debian systemd[1]: Started Bluetooth service.
Jan 22 20:46:14 debian bluetoothd[14840]: Starting SDP server
Jan 22 20:46:14 debian bluetoothd[14840]: Bluetooth management interface 1.14 in
Jan 22 20:46:14 debian bluetoothd[14840]: Failed to obtain handles for "Service 
Jan 22 20:46:14 debian bluetoothd[14840]: Sap driver initialization failed.
Jan 22 20:46:14 debian bluetoothd[14840]: sap-server: Operation not permitted (1
Jan 22 20:46:14 debian bluetoothd[14840]: Endpoint registered: sender=:1.36 path
Jan 22 20:46:14 debian bluetoothd[14840]: Endpoint registered: sender=:1.36 path
lines 1-20/20 (END)

user@debian:~$ lsusb
Bus 002 Device 005: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)
Bus 002 Device 003: ID 046d:c534 Logitech, Inc. Unifying Receiver
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

dmesg on the next post (too long)

user@debian:~$ sudo journalctl -u bluetooth
-- Logs begin at Sun 2020-01-19 22:09:51 NZDT, end at Wed 2020-01-22 20:50:17 NZ
Jan 21 08:17:15 debian systemd[1]: Starting Bluetooth service...
Jan 21 08:17:15 debian bluetoothd[3816]: Bluetooth daemon 5.43
Jan 21 08:17:15 debian systemd[1]: Started Bluetooth service.
Jan 21 08:17:15 debian bluetoothd[3816]: Starting SDP server
Jan 21 08:17:15 debian bluetoothd[3816]: Bluetooth management interface 1.14 ini
Jan 21 08:17:15 debian bluetoothd[3816]: Failed to obtain handles for "Service C
Jan 21 08:17:15 debian bluetoothd[3816]: Sap driver initialization failed.
Jan 21 08:17:15 debian bluetoothd[3816]: sap-server: Operation not permitted (1)
Jan 21 08:17:16 debian bluetoothd[3816]: Endpoint registered: sender=:1.36 path=
Jan 21 08:17:16 debian bluetoothd[3816]: Endpoint registered: sender=:1.36 path=
Jan 21 08:24:00 debian bluetoothd[3816]: Endpoint unregistered: sender=:1.36 pat
Jan 21 08:24:00 debian bluetoothd[3816]: Endpoint unregistered: sender=:1.36 pat
Jan 22 20:42:21 debian bluetoothd[3816]: Failed to obtain handles for "Service C
Jan 22 20:42:22 debian bluetoothd[3816]: Sap driver initialization failed.
Jan 22 20:42:22 debian bluetoothd[3816]: sap-server: Operation not permitted (1)
Jan 22 20:42:22 debian bluetoothd[3816]: Endpoint registered: sender=:1.36 path=
Jan 22 20:42:22 debian bluetoothd[3816]: Endpoint registered: sender=:1.36 path=
Jan 22 20:43:56 debian systemd[1]: Stopping Bluetooth service...
Jan 22 20:43:56 debian bluetoothd[3816]: Terminating
Jan 22 20:43:56 debian bluetoothd[3816]: Endpoint unregistered: sender=:1.36 pat
Jan 22 20:43:56 debian bluetoothd[3816]: Endpoint unregistered: sender=:1.36 pat
Jan 22 20:43:56 debian systemd[1]: Stopped Bluetooth service.
lines 1-23

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#19 Post by Mugent0 »

Still too long, this will be a two-parter (is there a better way to do this?)

Code: Select all

[code]user@debian:~$ sudo dmesg
[sudo] password for user: 
[    0.000000] Linux version 4.9.0-9-amd64 (debian-kernel@lists.debian.org) (gcc version 6.3.0 20170516 (Debian 6.3.0-18+deb9u1) ) #1 SMP Debian 4.9.168-1+deb9u3 (2019-06-16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-9-amd64 root=UUID=b183c0e8-e5ab-45ed-93a3-3f3bc5ed2ad4 ro quiet
[    0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009bbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009bc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bf3dffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bf3e0000-0x00000000bf428fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf429000-0x00000000bf436fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bf437000-0x00000000bf456fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf457000-0x00000000bf478fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf479000-0x00000000bf4fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf500000-0x00000000bf500fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf501000-0x00000000bf512fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf513000-0x00000000bf51dfff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf51e000-0x00000000bf52efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bf52f000-0x00000000bf571fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000bf572000-0x00000000bf7fffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed3ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013dffffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Hewlett-Packard HP Compaq 8200 Elite SFF PC/1495, BIOS J01 v02.15 11/10/2011
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x13e000 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: write-back
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0C0000000 mask FC0000000 uncachable
[    0.000000]   1 base 13E000000 mask FFE000000 uncachable
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000]   8 disabled
[    0.000000]   9 disabled
[    0.000000] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
[    0.000000] e820: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000f4c70-0x000f4c7f] mapped at [ffff9508800f4c70]
[    0.000000] Base memory trampoline at [ffff950880095000] 95000 size 24576
[    0.000000] BRK [0xad734000, 0xad734fff] PGTABLE
[    0.000000] BRK [0xad735000, 0xad735fff] PGTABLE
[    0.000000] BRK [0xad736000, 0xad736fff] PGTABLE
[    0.000000] BRK [0xad737000, 0xad737fff] PGTABLE
[    0.000000] BRK [0xad738000, 0xad738fff] PGTABLE
[    0.000000] BRK [0xad739000, 0xad739fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35cbf000-0x36e56fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FE700 000024 (v02 HPQOEM)
[    0.000000] ACPI: XSDT 0x00000000BF429078 00006C (v01 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000BF430B88 0000F4 (v04 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000BF429170 007A13 (v02 HPQOEM SLIC-BPC 00000007 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000BF515F80 000040
[    0.000000] ACPI: APIC 0x00000000BF430C80 000072 (v03 HPQOEM SLIC-BPC 01072009 AMI  00010013)
[    0.000000] ACPI: SSDT 0x00000000BF430CF8 000102 (v01 AMICPU PROC     00000001 MSFT 03000001)
[    0.000000] ACPI: MCFG 0x00000000BF430E00 00003C (v01 HPQOEM SLIC-BPC 01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000BF430E40 000038 (v01 HPQOEM SLIC-BPC 01072009 AMI. 00000004)
[    0.000000] ACPI: ASF! 0x00000000BF430E78 0000A0 (v32 INTEL   HCG     00000001 TFSM 000F4240)
[    0.000000] ACPI: SSDT 0x00000000BF430F18 005270 (v01 COMPAQ WMI      00000001 MSFT 03000001)
[    0.000000] ACPI: SLIC 0x00000000BF436188 000176 (v01 HPQOEM SLIC-BPC 00000001      00000000)
[    0.000000] ACPI: TCPA 0x00000000BF436300 000032 (v02 APTIO4 NAPAASF  00000001 MSFT 01000013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000013dffffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x13dff8000-0x13dffcfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000013dffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009afff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x00000000bf3dffff]
[    0.000000]   node   0: [mem 0x00000000bf572000-0x00000000bf7fffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000013dffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000013dffffff]
[    0.000000] On node 0 totalpages: 1037832
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3994 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 12186 pages used for memmap
[    0.000000]   DMA32 zone: 779886 pages, LIFO batch:31
[    0.000000]   Normal zone: 3968 pages used for memmap
[    0.000000]   Normal zone: 253952 pages, LIFO batch:31
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009b000-0x0009bfff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009c000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf3e0000-0xbf428fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf429000-0xbf436fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf437000-0xbf456fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf457000-0xbf478fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf479000-0xbf4fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf500000-0xbf500fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf501000-0xbf512fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf513000-0xbf51dfff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf51e000-0xbf52efff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf52f000-0xbf571fff]
[    0.000000] PM: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed3ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed40000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xbf800000-0xfed1bfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 35 pages/cpu @ffff9509bdc00000 s105304 r8192 d29864 u524288
[    0.000000] pcpu-alloc: s105304 r8192 d29864 u524288 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 2 3 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1021593
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.9.0-9-amd64 root=UUID=b183c0e8-e5ab-45ed-93a3-3f3bc5ed2ad4 ro quiet
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Calgary: detecting Calgary via BIOS EBDA area
[    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.000000] Memory: 3985468K/4151328K available (6273K kernel code, 1162K rwdata, 2876K rodata, 1424K init, 656K bss, 165860K reserved, 0K cma-reserved)
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] 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=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
[    0.000000] NR_IRQS:33024 nr_irqs:456 16
[    0.000000] Console: colour VGA+ 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: PIT calibration matches HPET. 1 loops
[    0.000000] tsc: Detected 3092.982 MHz processor
[    0.000023] Calibrating delay loop (skipped), value calculated using timer frequency.. 6185.96 BogoMIPS (lpj=12371928)
[    0.000025] pid_max: default: 32768 minimum: 301
[    0.000036] ACPI: Core revision 20160831
[    0.003643] ACPI: 3 ACPI AML tables successfully acquired and loaded
[    0.003680] Security Framework initialized
[    0.003681] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.003686] AppArmor: AppArmor disabled by boot time parameter
[    0.003862] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.004486] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.004761] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004766] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.004971] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.004972] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.004974] mce: CPU supports 9 MCE banks
[    0.004980] CPU0: Thermal monitoring enabled (TM1)
[    0.004989] process: using mwait in idle threads
[    0.004992] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.004992] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.004994] Spectre V2 : Mitigation: Full generic retpoline
[    0.004994] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.004995] Speculative Store Bypass: Vulnerable
[    0.005023] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.005405] Freeing SMP alternatives memory: 24K
[    0.007180] ftrace: allocating 25319 entries in 99 pages
[    0.025567] smpboot: Max logical packages: 1
[    0.025735] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.026507] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.066195] TSC deadline timer enabled
[    0.066200] smpboot: CPU0: Intel(R) Core(TM) i5-2400 CPU @ 3.10GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.066203] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.066221] core: PEBS disabled due to CPU errata, please upgrade microcode
[    0.066223] ... version:                3
[    0.066223] ... bit width:              48
[    0.066224] ... generic registers:      8
[    0.066224] ... value mask:             0000ffffffffffff
[    0.066225] ... max period:             00007fffffffffff
[    0.066225] ... fixed-purpose events:   3
[    0.066226] ... event mask:             00000007000000ff
[    0.066692] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.066789] x86: Booting SMP configuration:
[    0.066790] .... node  #0, CPUs:      #1 #2 #3
[    0.074082] x86: Booted up 1 node, 4 CPUs
[    0.074084] smpboot: Total of 4 processors activated (24743.85 BogoMIPS)
[    0.076532] devtmpfs: initialized
[    0.076591] x86/mm: Memory block size: 128MB
[    0.078412] PM: Registering ACPI NVS region [mem 0xbf3e0000-0xbf428fff] (299008 bytes)
[    0.078420] PM: Registering ACPI NVS region [mem 0xbf457000-0xbf478fff] (139264 bytes)
[    0.078423] PM: Registering ACPI NVS region [mem 0xbf500000-0xbf500fff] (4096 bytes)
[    0.078424] PM: Registering ACPI NVS region [mem 0xbf513000-0xbf51dfff] (45056 bytes)
[    0.078426] PM: Registering ACPI NVS region [mem 0xbf52f000-0xbf571fff] (274432 bytes)
[    0.078436] reboot: HP Compaq Laptop series board detected. Selecting BIOS-method for reboots.
[    0.078475] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.078483] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.078513] pinctrl core: initialized pinctrl subsystem
[    0.078604] NET: Registered protocol family 16
[    0.092327] cpuidle: using governor ladder

Mugent0
Posts: 19
Joined: 2020-01-14 07:14
Has thanked: 1 time

Re: Bluez daemon is not running

#20 Post by Mugent0 »

Code: Select all

[    0.112336] cpuidle: using governor menu
[    0.112369] ACPI: bus type PCI registered
[    0.112371] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.112442] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.112443] PCI: not using MMCONFIG
[    0.112444] PCI: Using configuration type 1 for base access
[    0.112523] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[    0.112568] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.133347] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.133522] ACPI: Added _OSI(Module Device)
[    0.133522] ACPI: Added _OSI(Processor Device)
[    0.133523] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.133524] ACPI: Added _OSI(Processor Aggregator Device)
[    0.133691] ACPI: Executed 1 blocks of module-level executable AML code
[    0.136858] ACPI: Dynamic OEM Table Load:
[    0.136862] ACPI: SSDT 0xFFFF9509B87E1000 00038C (v01 AMI    IST      00000001 MSFT 03000001)
[    0.137029] ACPI: Dynamic OEM Table Load:
[    0.137031] ACPI: SSDT 0xFFFF9509B87546C0 000084 (v01 AMI    CST      00000001 MSFT 03000001)
[    0.137664] ACPI: Interpreter enabled
[    0.137676] ACPI: (supports S0 S3 S4 S5)
[    0.137677] ACPI: Using IOAPIC for interrupt routing
[    0.137700] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.137750] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.137760] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.137976] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.142809] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.142813] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.142976] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.143282] PCI host bridge to bus 0000:00
[    0.143284] pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
[    0.143285] pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
[    0.143286] pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
[    0.143287] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.143288] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.143289] pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
[    0.143290] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
[    0.143292] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.143298] pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
[    0.143378] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.143405] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.143441] pci 0000:00:01.0: System wakeup disabled by ACPI
[    0.143505] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.143529] pci 0000:00:16.0: reg 0x10: [mem 0xfb02a000-0xfb02a00f 64bit]
[    0.143604] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.143683] pci 0000:00:16.3: [8086:1c3d] type 00 class 0x070002
[    0.143700] pci 0000:00:16.3: reg 0x10: [io  0xf0a0-0xf0a7]
[    0.143711] pci 0000:00:16.3: reg 0x14: [mem 0xfb029000-0xfb029fff]
[    0.143850] pci 0000:00:19.0: [8086:1502] type 00 class 0x020000
[    0.143868] pci 0000:00:19.0: reg 0x10: [mem 0xfb000000-0xfb01ffff]
[    0.143877] pci 0000:00:19.0: reg 0x14: [mem 0xfb028000-0xfb028fff]
[    0.143886] pci 0000:00:19.0: reg 0x18: [io  0xf040-0xf05f]
[    0.143947] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[    0.143986] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.144029] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.144046] pci 0000:00:1a.0: reg 0x10: [mem 0xfb027000-0xfb0273ff]
[    0.144130] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.144171] pci 0000:00:1a.0: System wakeup disabled by ACPI
[    0.144213] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.144230] pci 0000:00:1b.0: reg 0x10: [mem 0xfb020000-0xfb023fff 64bit]
[    0.144303] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.144394] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.144564] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.144624] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.144681] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.144855] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.144914] pci 0000:00:1c.4: System wakeup disabled by ACPI
[    0.144963] pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
[    0.145141] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.145201] pci 0000:00:1c.6: System wakeup disabled by ACPI
[    0.145252] pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
[    0.145426] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
[    0.145485] pci 0000:00:1c.7: System wakeup disabled by ACPI
[    0.145527] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.145547] pci 0000:00:1d.0: reg 0x10: [mem 0xfb026000-0xfb0263ff]
[    0.145631] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.145670] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.145709] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
[    0.145788] pci 0000:00:1e.0: System wakeup disabled by ACPI
[    0.145829] pci 0000:00:1f.0: [8086:1c4e] type 00 class 0x060100
[    0.146068] pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
[    0.146087] pci 0000:00:1f.2: reg 0x10: [io  0xf090-0xf097]
[    0.146095] pci 0000:00:1f.2: reg 0x14: [io  0xf080-0xf083]
[    0.146104] pci 0000:00:1f.2: reg 0x18: [io  0xf070-0xf077]
[    0.146113] pci 0000:00:1f.2: reg 0x1c: [io  0xf060-0xf063]
[    0.146121] pci 0000:00:1f.2: reg 0x20: [io  0xf020-0xf03f]
[    0.146130] pci 0000:00:1f.2: reg 0x24: [mem 0xfb025000-0xfb0257ff]
[    0.146172] pci 0000:00:1f.2: PME# supported from D3hot
[    0.146244] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.146262] pci 0000:00:1f.3: reg 0x10: [mem 0xfb024000-0xfb0240ff 64bit]
[    0.146283] pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
[    0.146396] pci 0000:01:00.0: [10de:0a65] type 00 class 0x030000
[    0.146405] pci 0000:01:00.0: reg 0x10: [mem 0xf9000000-0xf9ffffff]
[    0.146413] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.146421] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
[    0.146427] pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
[    0.146433] pci 0000:01:00.0: reg 0x30: [mem 0xfa000000-0xfa07ffff pref]
[    0.146505] pci 0000:01:00.1: [10de:0be3] type 00 class 0x040300
[    0.146513] pci 0000:01:00.1: reg 0x10: [mem 0xfa080000-0xfa083fff]
[    0.156377] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.156380] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.156383] pci 0000:00:01.0:   bridge window [mem 0xf9000000-0xfaffffff]
[    0.156388] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.156497] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.156599] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.156701] pci 0000:00:1c.6: PCI bridge to [bus 04]
[    0.156808] pci 0000:00:1c.7: PCI bridge to [bus 05]
[    0.156895] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
[    0.156905] pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
[    0.156907] pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
[    0.156908] pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03df window] (subtractive decode)
[    0.156909] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.156910] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.156911] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff window] (subtractive decode)
[    0.156912] pci 0000:00:1e.0:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
[    0.157537] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 10 *11 12 14 15)
[    0.157586] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.157639] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.157692] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.157743] ACPI: PCI Interrupt Link [LNKE] (IRQs *3 4 5 6 7 10 11 12 14 15)
[    0.157793] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 10 11 12 14 15) *0
[    0.157844] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 *7 10 11 12 14 15)
[    0.157895] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *10 11 12 14 15)
[    0.157974] ACPI: Enabled 3 GPEs in block 00 to 3F
[    0.158056] vgaarb: setting as boot device: PCI:0000:01:00.0
[    0.158057] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.158057] vgaarb: loaded
[    0.158058] vgaarb: bridge control possible 0000:01:00.0
[    0.158105] PCI: Using ACPI for IRQ routing
[    0.164123] PCI: pci_cache_line_size set to 64 bytes
[    0.164193] e820: reserve RAM buffer [mem 0x0009bc00-0x0009ffff]
[    0.164194] e820: reserve RAM buffer [mem 0xbf3e0000-0xbfffffff]
[    0.164195] e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
[    0.164196] e820: reserve RAM buffer [mem 0x13e000000-0x13fffffff]
[    0.164313] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.164317] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.166343] clocksource: Switched to clocksource hpet
[    0.171262] VFS: Disk quotas dquot_6.6.0
[    0.171288] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.171361] pnp: PnP ACPI init
[    0.171483] system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
[    0.171484] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.171486] system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.171487] system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.171489] system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
[    0.171492] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.171602] system 00:01: [io  0x0620-0x063f] has been reserved
[    0.171604] system 00:01: [io  0x0610-0x061f] has been reserved
[    0.171606] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.171649] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.171692] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    0.171714] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.171761] system 00:05: [io  0x04d0-0x04d1] has been reserved
[    0.171763] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.171953] pnp 00:06: [dma 0 disabled]
[    0.171970] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.172166] pnp 00:07: Plug and Play ACPI device, IDs IFX0102 PNP0c31 (active)
[    0.172306] system 00:08: [io  0x0400-0x0453] has been reserved
[    0.172307] system 00:08: [io  0x0458-0x047f] has been reserved
[    0.172309] system 00:08: [io  0x1180-0x119f] has been reserved
[    0.172310] system 00:08: [io  0x0500-0x057f] has been reserved
[    0.172312] system 00:08: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.172314] system 00:08: [mem 0xfec00000-0xfecfffff] could not be reserved
[    0.172315] system 00:08: [mem 0xfed08000-0xfed08fff] has been reserved
[    0.172317] system 00:08: [mem 0xff000000-0xffffffff] has been reserved
[    0.172319] system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.172370] system 00:09: [io  0x0454-0x0457] has been reserved
[    0.172372] system 00:09: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.172589] pnp: PnP ACPI: found 10 devices
[    0.179077] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.179155] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.179157] pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
[    0.179159] pci 0000:00:01.0:   bridge window [mem 0xf9000000-0xfaffffff]
[    0.179161] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.179163] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.179190] pci 0000:00:1c.4: PCI bridge to [bus 03]
[    0.179216] pci 0000:00:1c.6: PCI bridge to [bus 04]
[    0.179242] pci 0000:00:1c.7: PCI bridge to [bus 05]
[    0.179268] pci 0000:00:1e.0: PCI bridge to [bus 06]
[    0.179279] pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
[    0.179281] pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
[    0.179282] pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
[    0.179283] pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
[    0.179284] pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.179285] pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.179286] pci_bus 0000:00: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.179288] pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
[    0.179289] pci_bus 0000:01: resource 1 [mem 0xf9000000-0xfaffffff]
[    0.179290] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
[    0.179291] pci_bus 0000:06: resource 4 [io  0x0000-0x03af window]
[    0.179293] pci_bus 0000:06: resource 5 [io  0x03e0-0x0cf7 window]
[    0.179294] pci_bus 0000:06: resource 6 [io  0x03b0-0x03df window]
[    0.179295] pci_bus 0000:06: resource 7 [io  0x0d00-0xffff window]
[    0.179296] pci_bus 0000:06: resource 8 [mem 0x000a0000-0x000bffff window]
[    0.179297] pci_bus 0000:06: resource 9 [mem 0x000c0000-0x000dffff window]
[    0.179298] pci_bus 0000:06: resource 10 [mem 0xc0000000-0xffffffff window]
[    0.179386] NET: Registered protocol family 2
[    0.179533] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.179588] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.179651] TCP: Hash tables configured (established 32768 bind 32768)
[    0.179665] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.179677] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.179718] NET: Registered protocol family 1
[    0.538467] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.538473] PCI: CLS 64 bytes, default 64
[    0.538509] Unpacking initramfs...
[    0.792964] Freeing initrd memory: 18016K
[    0.792970] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.792971] software IO TLB: mapped [mem 0xbb3e0000-0xbf3e0000] (64MB)
[    0.793313] audit: initializing netlink subsys (disabled)
[    0.793329] audit: type=2000 audit(1579424986.792:1): initialized
[    0.793662] workingset: timestamp_bits=40 max_order=20 bucket_order=0
[    0.793706] zbud: loaded
[    0.794498] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
[    0.794529] io scheduler noop registered
[    0.794530] io scheduler deadline registered
[    0.794540] io scheduler cfq registered (default)
[    0.795591] pcieport 0000:00:01.0: Signaling PME through PCIe PME interrupt
[    0.795592] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    0.795593] pci 0000:01:00.1: Signaling PME through PCIe PME interrupt
[    0.795595] pcie_pme 0000:00:01.0:pcie001: service driver pcie_pme loaded
[    0.795628] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    0.795637] pcie_pme 0000:00:1c.0:pcie001: service driver pcie_pme loaded
[    0.795673] pcieport 0000:00:1c.4: Signaling PME through PCIe PME interrupt
[    0.795681] pcie_pme 0000:00:1c.4:pcie001: service driver pcie_pme loaded
[    0.795715] pcieport 0000:00:1c.6: Signaling PME through PCIe PME interrupt
[    0.795724] pcie_pme 0000:00:1c.6:pcie001: service driver pcie_pme loaded
[    0.795758] pcieport 0000:00:1c.7: Signaling PME through PCIe PME interrupt
[    0.795766] pcie_pme 0000:00:1c.7:pcie001: service driver pcie_pme loaded
[    0.795776] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.795780] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.795790] intel_idle: MWAIT substates: 0x1120
[    0.795791] intel_idle: v0.4.1 model 0x2A
[    0.795907] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.796281] GHES: HEST is not enabled!
[    0.796327] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.817617] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.838763] 0000:00:16.3: ttyS1 at I/O 0xf0a0 (irq = 17, base_baud = 115200) is a 16550A
[    0.838962] Linux agpgart interface v0.103
[    0.918490] tpm_tis 00:07: 1.2 TPM (device-id 0xB, rev-id 16)
[    1.366483] tpm tpm0: TPM is disabled/deactivated (0x7)
[    1.366664] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.366664] AMD IOMMUv2 functionality not available on this system
[    1.367039] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    1.370592] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.370596] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.370846] mousedev: PS/2 mouse device common for all mice
[    1.370900] rtc_cmos 00:04: RTC can wake from S4
[    1.371214] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
[    1.371265] rtc_cmos 00:04: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    1.371275] intel_pstate: Intel P-state driver initializing
[    1.371709] ledtrig-cpu: registered to indicate activity on CPUs
[    1.372595] NET: Registered protocol family 10
[    1.372940] mip6: Mobile IPv6
[    1.372942] NET: Registered protocol family 17
[    1.372945] mpls_gso: MPLS GSO support
[    1.373242] microcode: sig=0x206a7, pf=0x2, revision=0x1b
[    1.373404] microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.373588] registered taskstats version 1
[    1.373607] zswap: loaded using pool lzo/zbud
[    1.434481] ima: No TPM chip found, activating TPM-bypass!
[    1.434486] ima: Allocated hash algorithm: sha256
[    1.435031] rtc_cmos 00:04: setting system clock to 2020-01-19 09:09:47 UTC (1579424987)
[    1.435108] PM: Hibernation image not present or could not be loaded.
[    1.436242] Freeing unused kernel memory: 1424K
[    1.436244] Write protecting the kernel read-only data: 12288k
[    1.436963] Freeing unused kernel memory: 1904K
[    1.440924] Freeing unused kernel memory: 1220K
[    1.448684] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    1.469511] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.469619] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.469631] random: systemd-udevd: uninitialized urandom read (16 bytes read)
[    1.504899] pps_core: LinuxPPS API ver. 1 registered
[    1.504901] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.505151] PTP clock support registered
[    1.506884] ACPI: bus type USB registered
[    1.506912] usbcore: registered new interface driver usbfs
[    1.506923] usbcore: registered new interface driver hub
[    1.506950] usbcore: registered new device driver usb
[    1.507269] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.507270] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.507504] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.507615] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    1.507822] ehci-pci: EHCI PCI platform driver
[    1.508692] SCSI subsystem initialized
[    1.511793] libata version 3.00 loaded.
[    1.513857] AVX version of gcm_enc/dec engaged.
[    1.513857] AES CTR mode by8 optimization enabled
[    1.617107] e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
[    1.723598] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 08:2e:5f:20:85:1b
[    1.723601] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.723676] e1000e 0000:00:19.0 eth0: MAC: 10, PHY: 11, PBA No: 0100FF-0FF
[    1.723894] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.723904] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.723927] ehci-pci 0000:00:1a.0: debug port 2
[    1.724771] e1000e 0000:00:19.0 eno1: renamed from eth0
[    1.727845] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.727863] ehci-pci 0000:00:1a.0: irq 16, io mem 0xfb027000
[    1.742408] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.742477] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.742479] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.742481] usb usb1: Product: EHCI Host Controller
[    1.742483] usb usb1: Manufacturer: Linux 4.9.0-9-amd64 ehci_hcd
[    1.742485] usb usb1: SerialNumber: 0000:00:1a.0
[    1.742769] hub 1-0:1.0: USB hub found
[    1.742778] hub 1-0:1.0: 3 ports detected
[    1.743089] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.743095] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.743119] ehci-pci 0000:00:1d.0: debug port 2
[    1.747041] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.747056] ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb026000
[    1.762402] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.762466] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.762469] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.762471] usb usb2: Product: EHCI Host Controller
[    1.762473] usb usb2: Manufacturer: Linux 4.9.0-9-amd64 ehci_hcd
[    1.762475] usb usb2: SerialNumber: 0000:00:1d.0
[    1.762753] hub 2-0:1.0: USB hub found
[    1.762761] hub 2-0:1.0: 3 ports detected
[    1.762981] ahci 0000:00:1f.2: version 3.0
[    1.773334] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x15 impl SATA mode
[    1.773338] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems sxs apst 
[    1.795614] scsi host0: ahci
[    1.796038] scsi host1: ahci
[    1.796381] scsi host2: ahci
[    1.796650] scsi host3: ahci
[    1.796839] scsi host4: ahci
[    1.797024] scsi host5: ahci
[    1.797087] ata1: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025100 irq 30
[    1.797089] ata2: DUMMY
[    1.797094] ata3: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025200 irq 30
[    1.797095] ata4: DUMMY
[    1.797099] ata5: SATA max UDMA/133 abar m2048@0xfb025000 port 0xfb025300 irq 30
[    1.797100] ata6: DUMMY
[    1.797254] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    1.818423] tsc: Refined TSC clocksource calibration: 3092.972 MHz
[    1.818432] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2c955856658, max_idle_ns: 440795256416 ns
[    2.070408] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.090405] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    2.109856] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    2.112390] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.112394] ata3.00: ATAPI: hp      DVD A  DH16ACSH, JHD5, max UDMA/100
[    2.113366] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.113371] ata3.00: configured for UDMA/100
[    2.113803] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.113829] ata5: SATA link down (SStatus 0 SControl 300)
[    2.114527] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.115213] ata1.00: ATA-8: WDC WD2500AAJS-60Z0A0, 03.03E03, max UDMA/100
[    2.115215] ata1.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[    2.116040] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[    2.116204] ata1.00: configured for UDMA/100
[    2.116608] scsi 0:0:0:0: Direct-Access     ATA      WDC WD2500AAJS-6 3E03 PQ: 0 ANSI: 5
[    2.154267] scsi 2:0:0:0: CD-ROM            hp       DVD A  DH16ACSH  JHD5 PQ: 0 ANSI: 5
[    2.172584] sd 0:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
[    2.172630] sd 0:0:0:0: [sda] Write Protect is off
[    2.172633] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.172651] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.189501] sr 2:0:0:0: [sr0] scsi3-mmc drive: 40x/40x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.189511] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.189715] sr 2:0:0:0: Attached scsi CD-ROM sr0
[    2.219160] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    2.219162] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.219290]  sda: sda1 sda2 < sda5 >
[    2.219515] hub 1-1:1.0: USB hub found
[    2.219667] hub 1-1:1.0: 6 ports detected
[    2.220088] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.238816] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    2.238819] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.239092] hub 2-1:1.0: USB hub found
[    2.239172] hub 2-1:1.0: 8 ports detected
[    2.526412] usb 2-1.7: new full-speed USB device number 3 using ehci-pci
[    2.588075] PM: Starting manual resume from disk
[    2.588079] PM: Hibernation image partition 8:5 present
[    2.588080] PM: Looking for hibernation image.
[    2.588390] PM: Image not found (code -22)
[    2.588391] PM: Hibernation image not present or could not be loaded.
[    2.599146] random: fast init done
[    2.638286] usb 2-1.7: New USB device found, idVendor=046d, idProduct=c534
[    2.638289] usb 2-1.7: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.638291] usb 2-1.7: Product: USB Receiver
[    2.638293] usb 2-1.7: Manufacturer: Logitech
[    2.651366] hidraw: raw HID events driver (C) Jiri Kosina
[    2.655682] usbcore: registered new interface driver usbhid
[    2.655684] usbhid: USB HID core driver
[    2.656620] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.0/0003:046D:C534.0001/input/input3
[    2.714763] hid-generic 0003:046D:C534.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1.7/input0
[    2.715167] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.7/2-1.7:1.1/0003:046D:C534.0002/input/input4
[    2.774904] hid-generic 0003:046D:C534.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1.7/input1
[    2.807679] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    2.842686] clocksource: Switched to clocksource tsc
[    3.910864] ip_tables: (C) 2000-2006 Netfilter Core Team
[    4.044566] 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)
[    4.044824] systemd[1]: Detected architecture x86-64.
[    4.075784] systemd[1]: Set hostname to <debian>.
[    5.229638] random: crng init done
[    5.229641] random: 7 urandom warning(s) missed due to ratelimiting
[    5.274707] systemd[1]: Listening on udev Control Socket.
[    5.274839] systemd[1]: Listening on Syslog Socket.
[    5.274892] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    5.274955] systemd[1]: Listening on Journal Socket.
[    5.275024] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[    5.275043] systemd[1]: Reached target User and Group Name Lookups.
[    5.275092] systemd[1]: Listening on Journal Socket (/dev/log).
[    5.853013] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[    6.002089] systemd-journald[227]: Received request to flush runtime journal from PID 1
[    6.034503] lp: driver loaded but no devices found
[    6.050827] ppdev: user-space parallel port driver
[    8.198610] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input5
[    8.198613] ACPI: Power Button [PWRB]
[    8.198653] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input6
[    8.198655] ACPI: Power Button [PWRF]
[    8.324118] wmi: Mapper loaded
[    8.333748] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    8.417089] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    8.417134] sr 2:0:0:0: Attached scsi generic sg1 type 5
[    8.495076] input: PC Speaker as /devices/platform/pcspkr/input/input7
[    8.526925] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[    8.526927] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[    8.526928] RAPL PMU: hw unit of domain package 2^-16 Joules
[    8.526929] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[    8.974852] [drm] Initialized
[    9.159346] iTCO_vendor_support: vendor-support=0
[    9.159867] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[    9.159913] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[    9.160063] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[    9.416678] nouveau 0000:01:00.0: NVIDIA GT218 (0a8280b1)
[    9.469921] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC662 rev1: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
[    9.469924] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x15/0x0/0x0/0x0/0x0)
[    9.469926] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[    9.469927] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[    9.469928] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[    9.469930] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x19
[    9.469931] snd_hda_codec_realtek hdaudioC0D0:      Line=0x18
[    9.487914] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[    9.487984] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    9.488043] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    9.488095] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[    9.543565] nouveau 0000:01:00.0: bios: version 70.18.5f.00.06
[    9.544410] nouveau 0000:01:00.0: fb: 1024 MiB DDR3
[    9.718471] input: HP WMI hotkeys as /devices/virtual/input/input12
[   10.263497] Adding 4149244k swap on /dev/sda5.  Priority:-1 extents:1 across:4149244k FS
[   10.363624] kvm: disabled by bios
[   10.463355] kvm: disabled by bios
[   10.539349] kvm: disabled by bios
[   10.654485] intel_rapl: Found RAPL domain package
[   10.654486] intel_rapl: Found RAPL domain core
[   10.654487] intel_rapl: Found RAPL domain uncore
[   10.654490] intel_rapl: RAPL package 0 domain package locked by BIOS
[   10.842355] [TTM] Zone  kernel: Available graphics memory: 2004028 kiB
[   10.842356] [TTM] Initializing pool allocator
[   10.842363] [TTM] Initializing DMA pool allocator
[   10.842389] nouveau 0000:01:00.0: DRM: VRAM: 1024 MiB
[   10.842390] nouveau 0000:01:00.0: DRM: GART: 1048576 MiB
[   10.842392] nouveau 0000:01:00.0: DRM: TMDS table version 2.0
[   10.842394] nouveau 0000:01:00.0: DRM: DCB version 4.0
[   10.842395] nouveau 0000:01:00.0: DRM: DCB outp 00: 01000302 00020030
[   10.842397] nouveau 0000:01:00.0: DRM: DCB outp 01: 02000300 00000000
[   10.842398] nouveau 0000:01:00.0: DRM: DCB outp 02: 02011362 00020010
[   10.842399] nouveau 0000:01:00.0: DRM: DCB outp 03: 01022310 00000000
[   10.842401] nouveau 0000:01:00.0: DRM: DCB conn 00: 00001030
[   10.842402] nouveau 0000:01:00.0: DRM: DCB conn 01: 00002161
[   10.842403] nouveau 0000:01:00.0: DRM: DCB conn 02: 00000200
[   10.848212] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   10.848213] [drm] Driver supports precise vblank timestamp query.
[   10.864667] nouveau 0000:01:00.0: DRM: MM: using COPY for buffer copies
[   10.971537] nouveau 0000:01:00.0: DRM: allocated 1920x1080 fb: 0x70000, bo ffff9509b7b71c00
[   10.971634] fbcon: nouveaufb (fb0) is primary device
[   11.057225] Console: switching to colour frame buffer device 240x67
[   11.060367] nouveau 0000:01:00.0: fb0: nouveaufb frame buffer device
[   11.078323] [drm] Initialized nouveau 1.3.1 20120801 for 0000:01:00.0 on minor 0
[   11.078422] snd_hda_intel 0000:01:00.1: Disabling MSI
[   11.078429] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
[   15.867347] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
[   15.867423] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
[   15.867492] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
[   15.867558] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input16
[   16.753877] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[   16.998626] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[   20.448441] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[   20.448483] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[   22.070196] fuse init (API version 7.26)
[  624.942567] PM: Hibernation mode set to 'platform'
[  625.001416] PM: Syncing filesystems ... 
[  625.200733] done.
[  625.200736] Freezing user space processes ... (elapsed 0.001 seconds) done.
[  625.202322] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[  625.202324] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[  625.202328] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[  625.202338] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[  625.203203] PM: Basic memory bitmaps created
[  625.203264] PM: Preallocating image memory... done (allocated 390691 pages)
[  625.519863] PM: Allocated 1562764 kbytes in 0.31 seconds (5041.17 MB/s)
[  625.519863] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[  625.521166] Suspending console(s) (use no_console_suspend to debug)
[  625.633486] serial 00:06: disabled
[  625.633551] i8042 aux 00:03: System wakeup disabled by ACPI
[  625.633568] i8042 kbd 00:02: System wakeup enabled by ACPI
[  625.633637] nouveau 0000:01:00.0: DRM: suspending console...
[  625.633642] nouveau 0000:01:00.0: DRM: suspending display...
[  625.633670] nouveau 0000:01:00.0: DRM: evicting buffers...
[  626.026998] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[  626.027021] nouveau 0000:01:00.0: DRM: suspending client object trees...
[  626.027564] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[  627.672180] PM: freeze of devices complete after 2151.045 msecs
[  627.672566] PM: late freeze of devices complete after 0.384 msecs
[  627.673447] PM: noirq freeze of devices complete after 0.878 msecs
[  627.673747] ACPI: Preparing to enter system sleep state S4
[  627.674560] PM: Saving platform NVS memory
[  627.674866] Disabling non-boot CPUs ...
[  627.676136] smpboot: CPU 1 is now offline
[  627.677913] smpboot: CPU 2 is now offline
[  627.679599] smpboot: CPU 3 is now offline
[  627.680172] PM: Creating hibernation image:
[  627.761221] PM: Need to copy 416199 pages
[  627.761224] PM: Normal pages needed: 416199 + 1024, available pages: 621534
[  627.681358] PM: Restoring platform NVS memory
[  627.681942] Suspended for 80195.997 seconds
[  627.681987] Enabling non-boot CPUs ...
[  627.682069] x86: Booting SMP configuration:
[  627.682070] smpboot: Booting Node 0 Processor 1 APIC 0x2
[  627.684726]  cache: parent cpu1 should not be sleeping
[  627.685075] CPU1 is up
[  627.685137] smpboot: Booting Node 0 Processor 2 APIC 0x4
[  627.687762]  cache: parent cpu2 should not be sleeping
[  627.688133] CPU2 is up
[  627.688193] smpboot: Booting Node 0 Processor 3 APIC 0x6
[  627.690854]  cache: parent cpu3 should not be sleeping
[  627.691357] CPU3 is up
[  627.695608] ACPI: Waking up from system sleep state S4
[  627.698310] PM: noirq restore of devices complete after 1.750 msecs
[  627.698621] PM: early restore of devices complete after 0.293 msecs
[  627.767728] usb usb1: root hub lost power or was reset
[  627.767887] usb usb2: root hub lost power or was reset
[  627.767933] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[  627.768305] i8042 kbd 00:02: System wakeup disabled by ACPI
[  627.768308] rtc_cmos 00:04: System wakeup disabled by ACPI
[  627.768971] serial 00:06: activated
[  627.771611] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[  627.771796] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[  627.788400] sd 0:0:0:0: [sda] Starting disk
[  627.911110] tpm tpm0: TPM is disabled/deactivated (0x7)
[  627.925418] nouveau 0000:01:00.0: DRM: resuming client object trees...
[  627.925795] nouveau 0000:01:00.0: DRM: resuming display...
[  627.987178] nouveau 0000:01:00.0: DRM: resuming console...
[  628.107058] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[  628.117957] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[  628.117985] ata5: SATA link down (SStatus 0 SControl 300)
[  628.118015] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[  628.118701] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.119040] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[  628.119617] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.119753] ata1.00: configured for UDMA/100
[  628.120471] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.121451] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[  628.121456] ata3.00: configured for UDMA/100
[  628.563022] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[  628.675765] PM: restore of devices complete after 908.204 msecs
[  628.675932] PM: Image restored successfully.
[  628.675949] PM: Basic memory bitmaps freed
[  628.675950] Restarting tasks ... done.
[  629.349391] e1000e: eno1 NIC Link is Down
[  629.793966] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[  630.039411] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[  632.913017] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[  632.913063] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 3931.633862] PM: Hibernation mode set to 'platform'
[ 3931.635316] PM: Syncing filesystems ... 
[ 3932.033941] done.
[ 3932.033944] Freezing user space processes ... (elapsed 0.001 seconds) done.
[ 3932.035160] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[ 3932.035162] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[ 3932.035166] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[ 3932.035176] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[ 3932.036040] PM: Basic memory bitmaps created
[ 3932.036106] PM: Preallocating image memory... done (allocated 361702 pages)
[ 3932.211010] PM: Allocated 1446808 kbytes in 0.17 seconds (8510.63 MB/s)
[ 3932.211011] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[ 3932.212272] Suspending console(s) (use no_console_suspend to debug)
[ 3932.339420] serial 00:06: disabled
[ 3932.339479] i8042 aux 00:03: System wakeup disabled by ACPI
[ 3932.339496] i8042 kbd 00:02: System wakeup enabled by ACPI
[ 3932.339601] nouveau 0000:01:00.0: DRM: suspending console...
[ 3932.339606] nouveau 0000:01:00.0: DRM: suspending display...
[ 3932.339634] nouveau 0000:01:00.0: DRM: evicting buffers...
[ 3932.510464] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[ 3932.510489] nouveau 0000:01:00.0: DRM: suspending client object trees...
[ 3932.511076] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[ 3934.159098] PM: freeze of devices complete after 1946.870 msecs
[ 3934.159543] PM: late freeze of devices complete after 0.442 msecs
[ 3934.160485] PM: noirq freeze of devices complete after 0.939 msecs
[ 3934.160776] ACPI: Preparing to enter system sleep state S4
[ 3934.161491] PM: Saving platform NVS memory
[ 3934.161789] Disabling non-boot CPUs ...
[ 3934.163077] smpboot: CPU 1 is now offline
[ 3934.164816] smpboot: CPU 2 is now offline
[ 3934.166501] smpboot: CPU 3 is now offline
[ 3934.167161] PM: Creating hibernation image:
[ 3934.255321] PM: Need to copy 361779 pages
[ 3934.255324] PM: Normal pages needed: 361779 + 1024, available pages: 675954
[ 3934.168344] PM: Restoring platform NVS memory
[ 3934.168928] Suspended for 38486.791 seconds
[ 3934.169011] Enabling non-boot CPUs ...
[ 3934.169093] x86: Booting SMP configuration:
[ 3934.169094] smpboot: Booting Node 0 Processor 1 APIC 0x2
[ 3934.171743]  cache: parent cpu1 should not be sleeping
[ 3934.172068] CPU1 is up
[ 3934.172131] smpboot: Booting Node 0 Processor 2 APIC 0x4
[ 3934.174758]  cache: parent cpu2 should not be sleeping
[ 3934.175133] CPU2 is up
[ 3934.175192] smpboot: Booting Node 0 Processor 3 APIC 0x6
[ 3934.177846]  cache: parent cpu3 should not be sleeping
[ 3934.178309] CPU3 is up
[ 3934.182570] ACPI: Waking up from system sleep state S4
[ 3934.185320] PM: noirq restore of devices complete after 1.796 msecs
[ 3934.185593] PM: early restore of devices complete after 0.255 msecs
[ 3934.247773] usb usb1: root hub lost power or was reset
[ 3934.248414] usb usb2: root hub lost power or was reset
[ 3934.248435] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[ 3934.248558] i8042 kbd 00:02: System wakeup disabled by ACPI
[ 3934.248561] rtc_cmos 00:04: System wakeup disabled by ACPI
[ 3934.249230] serial 00:06: activated
[ 3934.251666] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 3934.252307] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 3934.271416] sd 0:0:0:0: [sda] Starting disk
[ 3934.393061] tpm tpm0: TPM is disabled/deactivated (0x7)
[ 3934.406101] nouveau 0000:01:00.0: DRM: resuming client object trees...
[ 3934.406397] nouveau 0000:01:00.0: DRM: resuming display...
[ 3934.467658] nouveau 0000:01:00.0: DRM: resuming console...
[ 3934.567423] ata5: SATA link down (SStatus 0 SControl 300)
[ 3934.584977] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[ 3934.587714] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 3934.587746] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[ 3934.588440] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.589349] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.589473] ata1.00: configured for UDMA/100
[ 3934.590189] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.591250] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 3934.591254] ata3.00: configured for UDMA/100
[ 3934.600975] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[ 3935.044938] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[ 3935.157681] PM: restore of devices complete after 910.100 msecs
[ 3935.157847] PM: Image restored successfully.
[ 3935.157863] PM: Basic memory bitmaps freed
[ 3935.157864] Restarting tasks ... done.
[ 3935.346494] e1000e: eno1 NIC Link is Down
[ 3935.410993] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 3935.653316] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[ 3938.474987] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[ 3938.475031] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[ 4077.866503] Bluetooth: Core ver 2.22
[ 4077.866523] NET: Registered protocol family 31
[ 4077.866524] Bluetooth: HCI device and connection manager initialized
[ 4077.866528] Bluetooth: HCI socket layer initialized
[ 4077.866530] Bluetooth: L2CAP socket layer initialized
[ 4077.866536] Bluetooth: SCO socket layer initialized
[ 4077.905182] usbcore: registered new interface driver btusb
[ 4164.111364] usb 2-1.8: new full-speed USB device number 4 using ehci-pci
[ 4164.702929] usb 2-1.8: New USB device found, idVendor=0a12, idProduct=0001
[ 4164.702933] usb 2-1.8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 4165.163024] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 4165.163026] Bluetooth: BNEP filters: protocol multicast
[ 4165.163031] Bluetooth: BNEP socket layer initialized
[ 4165.614071] Bluetooth: RFCOMM TTY layer initialized
[ 4165.614086] Bluetooth: RFCOMM socket layer initialized
[ 4165.614092] Bluetooth: RFCOMM ver 1.11
[ 4570.157732] usb 2-1.8: USB disconnect, device number 4
[ 7840.518243] perf: interrupt took too long (2505 > 2500), lowering kernel.perf_event_max_sample_rate to 79750
[14265.380485] PM: Hibernation mode set to 'platform'
[14265.382532] PM: Syncing filesystems ... 
[14265.580733] done.
[14265.580735] Freezing user space processes ... (elapsed 0.001 seconds) done.
[14265.582251] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[14265.582253] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[14265.582255] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[14265.582263] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[14265.582922] PM: Basic memory bitmaps created
[14265.582977] PM: Preallocating image memory... done (allocated 387451 pages)
[14267.253104] PM: Allocated 1549804 kbytes in 1.67 seconds (928.02 MB/s)
[14267.253105] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[14267.254465] Suspending console(s) (use no_console_suspend to debug)
[14267.381586] serial 00:06: disabled
[14267.381642] i8042 aux 00:03: System wakeup disabled by ACPI
[14267.381659] i8042 kbd 00:02: System wakeup enabled by ACPI
[14267.381763] nouveau 0000:01:00.0: DRM: suspending console...
[14267.381769] nouveau 0000:01:00.0: DRM: suspending display...
[14267.381797] nouveau 0000:01:00.0: DRM: evicting buffers...
[14267.667797] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[14267.667820] nouveau 0000:01:00.0: DRM: suspending client object trees...
[14267.668360] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[14269.314611] PM: freeze of devices complete after 2060.185 msecs
[14269.314953] PM: late freeze of devices complete after 0.340 msecs
[14269.316087] PM: noirq freeze of devices complete after 1.131 msecs
[14269.316485] ACPI: Preparing to enter system sleep state S4
[14269.317330] PM: Saving platform NVS memory
[14269.317708] Disabling non-boot CPUs ...
[14269.318970] smpboot: CPU 1 is now offline
[14269.320550] smpboot: CPU 2 is now offline
[14269.322106] smpboot: CPU 3 is now offline
[14269.322686] PM: Creating hibernation image:
[14269.388850] PM: Need to copy 404945 pages
[14269.388852] PM: Normal pages needed: 404945 + 1024, available pages: 632790
[14269.323872] PM: Restoring platform NVS memory
[14269.324460] Suspended for 7894.093 seconds
[14269.324505] Enabling non-boot CPUs ...
[14269.324588] x86: Booting SMP configuration:
[14269.324589] smpboot: Booting Node 0 Processor 1 APIC 0x2
[14269.327267]  cache: parent cpu1 should not be sleeping
[14269.327609] CPU1 is up
[14269.327672] smpboot: Booting Node 0 Processor 2 APIC 0x4
[14269.330305]  cache: parent cpu2 should not be sleeping
[14269.330697] CPU2 is up
[14269.330757] smpboot: Booting Node 0 Processor 3 APIC 0x6
[14269.333406]  cache: parent cpu3 should not be sleeping
[14269.333942] CPU3 is up
[14269.338190] ACPI: Waking up from system sleep state S4
[14269.340958] PM: noirq restore of devices complete after 1.817 msecs
[14269.341261] PM: early restore of devices complete after 0.284 msecs
[14269.413963] usb usb1: root hub lost power or was reset
[14269.414397] usb usb2: root hub lost power or was reset
[14269.414448] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[14269.414632] i8042 kbd 00:02: System wakeup disabled by ACPI
[14269.414635] rtc_cmos 00:04: System wakeup disabled by ACPI
[14269.417866] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[14269.418297] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[14269.418444] serial 00:06: activated
[14269.427241] sd 0:0:0:0: [sda] Starting disk
[14269.559232] tpm tpm0: TPM is disabled/deactivated (0x7)
[14269.574730] nouveau 0000:01:00.0: DRM: resuming client object trees...
[14269.575041] nouveau 0000:01:00.0: DRM: resuming display...
[14269.636516] nouveau 0000:01:00.0: DRM: resuming console...
[14269.751205] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[14269.761854] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[14269.761884] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[14269.761910] ata5: SATA link down (SStatus 0 SControl 300)
[14269.762479] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[14269.762534] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[14269.763396] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[14269.763441] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[14269.763446] ata3.00: configured for UDMA/100
[14269.764232] ata1.00: configured for UDMA/100
[14269.767224] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[14270.211220] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[14270.597571] PM: restore of devices complete after 1183.757 msecs
[14270.597753] PM: Image restored successfully.
[14270.597768] PM: Basic memory bitmaps freed
[14270.597769] Restarting tasks ... done.
[14273.249079] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[14274.688341] e1000e: eno1 NIC Link is Down
[14275.152579] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[14275.403537] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[14278.357103] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[14278.357153] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[14958.503104] perf: interrupt took too long (3138 > 3131), lowering kernel.perf_event_max_sample_rate to 63500
[44132.996186] perf: interrupt took too long (3975 > 3922), lowering kernel.perf_event_max_sample_rate to 50250
[47194.141832] PM: Hibernation mode set to 'platform'
[47194.142928] PM: Syncing filesystems ... 
[47194.310206] done.
[47194.310208] Freezing user space processes ... (elapsed 0.001 seconds) done.
[47194.311744] PM: Marking nosave pages: [mem 0x00000000-0x00000fff]
[47194.311746] PM: Marking nosave pages: [mem 0x0009b000-0x000fffff]
[47194.311748] PM: Marking nosave pages: [mem 0xbf3e0000-0xbf571fff]
[47194.311754] PM: Marking nosave pages: [mem 0xbf800000-0xffffffff]
[47194.312319] PM: Basic memory bitmaps created
[47194.312368] PM: Preallocating image memory... done (allocated 387579 pages)
[47197.569801] PM: Allocated 1550316 kbytes in 3.25 seconds (477.02 MB/s)
[47197.569801] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[47197.571221] Suspending console(s) (use no_console_suspend to debug)
[47197.680137] serial 00:06: disabled
[47197.680187] i8042 aux 00:03: System wakeup disabled by ACPI
[47197.680203] i8042 kbd 00:02: System wakeup enabled by ACPI
[47197.680274] nouveau 0000:01:00.0: DRM: suspending console...
[47197.680278] nouveau 0000:01:00.0: DRM: suspending display...
[47197.680312] nouveau 0000:01:00.0: DRM: evicting buffers...
[47197.973262] nouveau 0000:01:00.0: DRM: waiting for kernel channels to go idle...
[47197.973288] nouveau 0000:01:00.0: DRM: suspending client object trees...
[47197.973839] nouveau 0000:01:00.0: DRM: suspending kernel object tree...
[47199.628811] PM: freeze of devices complete after 2057.628 msecs
[47199.629192] PM: late freeze of devices complete after 0.377 msecs
[47199.630088] PM: noirq freeze of devices complete after 0.893 msecs
[47199.630405] ACPI: Preparing to enter system sleep state S4
[47199.631209] PM: Saving platform NVS memory
[47199.631571] Disabling non-boot CPUs ...
[47199.632849] smpboot: CPU 1 is now offline
[47199.634455] smpboot: CPU 2 is now offline
[47199.636109] smpboot: CPU 3 is now offline
[47199.636642] PM: Creating hibernation image:
[47199.696204] PM: Need to copy 405188 pages
[47199.696206] PM: Normal pages needed: 405188 + 1024, available pages: 632556
[47199.637830] PM: Restoring platform NVS memory
[47199.638408] Suspended for 66507.812 seconds
[47199.638474] Enabling non-boot CPUs ...
[47199.638555] x86: Booting SMP configuration:
[47199.638557] smpboot: Booting Node 0 Processor 1 APIC 0x2
[47199.641201]  cache: parent cpu1 should not be sleeping
[47199.641550] CPU1 is up
[47199.641612] smpboot: Booting Node 0 Processor 2 APIC 0x4
[47199.644242]  cache: parent cpu2 should not be sleeping
[47199.644622] CPU2 is up
[47199.644683] smpboot: Booting Node 0 Processor 3 APIC 0x6
[47199.647309]  cache: parent cpu3 should not be sleeping
[47199.647832] CPU3 is up
[47199.652088] ACPI: Waking up from system sleep state S4
[47199.654723] PM: noirq restore of devices complete after 1.725 msecs
[47199.655025] PM: early restore of devices complete after 0.284 msecs
[47199.725831] usb usb1: root hub lost power or was reset
[47199.726034] usb usb2: root hub lost power or was reset
[47199.729718] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[47199.729799] i8042 kbd 00:02: System wakeup disabled by ACPI
[47199.729802] rtc_cmos 00:04: System wakeup disabled by ACPI
[47199.729930] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[47199.729964] nouveau 0000:01:00.0: DRM: resuming kernel object tree...
[47199.730470] serial 00:06: activated
[47199.739887] sd 0:0:0:0: [sda] Starting disk
[47199.873807] tpm tpm0: TPM is disabled/deactivated (0x7)
[47199.892274] nouveau 0000:01:00.0: DRM: resuming client object trees...
[47199.892848] nouveau 0000:01:00.0: DRM: resuming display...
[47199.954168] nouveau 0000:01:00.0: DRM: resuming console...
[47200.064489] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[47200.065177] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[47200.066091] ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[47200.066218] ata1.00: configured for UDMA/100
[47200.069759] usb 1-1: reset high-speed USB device number 2 using ehci-pci
[47200.073749] usb 2-1: reset high-speed USB device number 2 using ehci-pci
[47200.076496] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[47200.076523] ata5: SATA link down (SStatus 0 SControl 300)
[47200.076904] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[47200.077885] ata3.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[47200.077889] ata3.00: configured for UDMA/100
[47200.517730] usb 2-1.7: reset full-speed USB device number 3 using ehci-pci
[47200.630698] PM: restore of devices complete after 905.031 msecs
[47200.630877] PM: Image restored successfully.
[47200.630894] PM: Basic memory bitmaps freed
[47200.630895] Restarting tasks ... done.
[47203.463742] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[47205.870611] e1000e: eno1 NIC Link is Down
[47206.690635] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[47206.930085] IPv6: ADDRCONF(NETDEV_UP): eno1: link is not ready
[47209.759624] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[47209.759668] IPv6: ADDRCONF(NETDEV_CHANGE): eno1: link becomes ready
[60866.652923] usb 2-1.8: new full-speed USB device number 5 using ehci-pci
[60867.184583] usb 2-1.8: New USB device found, idVendor=0a12, idProduct=0001
[60867.184586] usb 2-1.8: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[61487.285694] input: EC:81:93:6C:90:62 as /devices/virtual/input/input29
Whew!

Post Reply