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

 

 

 

No Ethernet. Maybe a driver problem

Linux Kernel, Network, and Services configuration.
Post Reply
Message
Author
bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

No Ethernet. Maybe a driver problem

#1 Post by bentHnau »

My 10-year-old Dell XPS 17 laptop has Debian Buster installed. I hadn't been using it for the last 10 months or so, but when I started it up yesterday, neither "ip link show" nor "ifconfig -a" display my Ethernet card (which has worked fine ever since I got the laptop). The wifi card displays and is working fine. The distro on the other partition (Hyperbola) detects the Ethernet card and the card works.

I have firmware-realtek and r8168-dkms installed and updated. I did an apt-get upgrade yesterday.

Code: Select all

dmesg | grep ethernet
has no output; that's why I suspect that the driver is not being loaded.

I have the standard /etc/network/interfaces file (it comes with the new Debian installation I think), and it doesn't seem to have an effect (except that I cannot manually start networking.service unless all the eth0 entries in the file are commented out). The Debian documentation says that this file should no longer be used to configure the network, so I'm not focusing on it, but I can type up its contents if necessary.

User avatar
sickpig
Posts: 589
Joined: 2019-01-23 10:34

Re: No Ethernet. Maybe a driver problem

#2 Post by sickpig »

You can use

Code: Select all

lspci | egrep -i eth
to see if your wired card is detected.

Then add

Code: Select all

    auto {your-interface-name}
    allow-hotplug eth0
    iface {your-interface-name} inet dhcp

if you are using dhcp to your /etc/network/interfaces. I do not suppose this file is deprecated in Buster. Debian wiki https://wiki.debian.org/NetworkConfigur ... _Interface outlines its usage.

edit
generalized interface name in the example

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: No Ethernet. Maybe a driver problem

#3 Post by Head_on_a_Stick »

sickpig wrote:You can use

Code: Select all

lspci | egrep -i eth
to see if your wired card is detected.
That won't work unless the OP has disabled the predictable naming system for the interfaces.
bentHnau wrote:The Debian documentation says that this file should no longer be used to configure the network
No it doesn't, /etc/network/interfaces works just fine.

Please post the output of

Code: Select all

ip link
lspci -knn | grep -A3 Ethernet
# dmesg
And perhaps try removing the r8168-dkms package, it may not be needed for your card any more.
deadbang

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#4 Post by bentHnau »

sickpig wrote:You can use

Code: Select all

lspci | egrep -i eth
to see if your wired card is detected.
It is detected.
Then add

Code: Select all

    auto {your-interface-name}
    allow-hotplug eth0
    iface {your-interface-name} inet dhcp

if you are using dhcp to your /etc/network/interfaces.
Those three lines were already in /etc/network/interfaces. The interface name there is eth0

I don't know whether I'm using dhcp and I don't know how to find out. Before my problem occurred, I was establishing an Ethernet connection with wicd...maybe that tells you something about whether I use dhcp.

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#5 Post by bentHnau »

I'm summarizing command outputs. Copy/paste is too much of a hassle because of lack of Ethernet access on the target computer.
Head_on_a_Stick wrote: Please post the output of
ip link
It just shows information about lo and wlan0.
lspci -knn | grep -A3 Ethernet
Shows the name of my Ethernet card, and

"Subsystem: Dell RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [1028:0571] Kernel modules: r8168"
# dmesg
I'm not sure what the # means here. The lspci command gives the same output whether I put "# dmesg" at the end or not.
And perhaps try removing the r8168-dkms package, it may not be needed for your card any more.
I tried that. It didn't seem to make a difference.

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: No Ethernet. Maybe a driver problem

#6 Post by Head_on_a_Stick »

bentHnau wrote:
lspci -knn | grep -A3 Ethernet
Shows the name of my Ethernet card, and

"Subsystem: Dell RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller [1028:0571] Kernel modules: r8168"
So no "kernel module is use" line then? The device will not create an ethernet interface unless a kernel module is loaded for it.
bentHnau wrote:
# dmesg
I'm not sure what the # means here.
It indicates that the command should be run as root, it will produce no output otherwise.
bentHnau wrote:
And perhaps try removing the r8168-dkms package, it may not be needed for your card any more.
I tried that. It didn't seem to make a difference.
Are there any blacklists for the drivers?

Code: Select all

grep -R r816 /{etc,{usr/,}lib}/modprobe.d
deadbang

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#7 Post by bentHnau »

Head_on_a_Stick wrote: So no "kernel module is use" line then?
No.
Are there any blacklists for the drivers?

Code: Select all

grep -R r816 /{etc,{usr/,}lib}/modprobe.d
/etc/modprobe.d/r8168-dkms.conf:# settings for r8168-dkms
/etc/modprobe.d/r8168-dkms.conf:# map the specific PCI IDs instead of blacklisting the whole r8169 module
/etc/modprobe.d/r8168-dkms.conf:alias pci:v00001186d00004300sv00001186sd00004B10bc*sc*i* r8168
/etc/modprobe.d/r8168-dkms.conf:alias pci:v000010ECd00008168sv*sd*bc*sc*i* r8168
/etc/modprobe.d/r8168-dkms.conf:# to blacklist the whole r8169 module
/etc/modprobe.d/r8168-dkms.conf:#blacklist r8169
grep: /usr/lib/modprobe.d: No such file or directory

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#8 Post by bentHnau »

#dmesg shows

Code: Select all

[    0.000000] microcode: microcode updated early to revision 0x2d, date = 2018-02-07
[    0.000000] Linux version 4.19.0-6-amd64 (debian-kernel@lists.debian.org) (gcc version 8.3.0 (Debian 8.3.0-6)) #1 SMP Debian 4.19.67-2+deb10u2 (2019-11-11)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-6-amd64 root=UUID=ac2b1f54-c797-4f5e-9656-834ae2d6ccbb ro quiet
[    0.000000] Disabled fast string operations
[    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] BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bac8efff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bac8f000-0x00000000bade1fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000bade2000-0x00000000bade9fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000badea000-0x00000000baf1efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000baf1f000-0x00000000baf9efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000baf9f000-0x00000000baffefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffd80000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x00000001be9fefff] usable
[    0.000000] BIOS-e820: [mem 0x00000001be9ff000-0x00000001bfdfffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: Dell Inc.          Dell System XPS L702X/0K4H3G, BIOS A14 11/11/2011
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2194.839 MHz processor
[    0.006759] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.006766] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.006789] last_pfn = 0x1be9ff max_arch_pfn = 0x400000000
[    0.006800] MTRR default type: uncachable
[    0.006802] MTRR fixed ranges enabled:
[    0.006806]   00000-9FFFF write-back
[    0.006808]   A0000-BFFFF uncachable
[    0.006811]   C0000-FFFFF write-protect
[    0.006813] MTRR variable ranges enabled:
[    0.006817]   0 base 0FFC00000 mask FFFC00000 write-protect
[    0.006820]   1 base 000000000 mask F80000000 write-back
[    0.006823]   2 base 080000000 mask FC0000000 write-back
[    0.006825]   3 base 0BC000000 mask FFC000000 uncachable
[    0.006828]   4 base 0BB000000 mask FFF000000 uncachable
[    0.006830]   5 base 100000000 mask F80000000 write-back
[    0.006833]   6 base 180000000 mask FC0000000 write-back
[    0.006835]   7 base 1BFE00000 mask FFFE00000 uncachable
[    0.006837]   8 disabled
[    0.006838]   9 disabled
[    0.009019] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.009270] last_pfn = 0xbb000 max_arch_pfn = 0x400000000
[    0.043414] reserving inaccessible SNB gfx pages
[    0.043428] BRK [0xb5001000, 0xb5001fff] PGTABLE
[    0.043434] BRK [0xb5002000, 0xb5002fff] PGTABLE
[    0.043437] BRK [0xb5003000, 0xb5003fff] PGTABLE
[    0.043600] BRK [0xb5004000, 0xb5004fff] PGTABLE
[    0.043606] BRK [0xb5005000, 0xb5005fff] PGTABLE
[    0.044594] BRK [0xb5006000, 0xb5006fff] PGTABLE
[    0.044718] BRK [0xb5007000, 0xb5007fff] PGTABLE
[    0.044755] BRK [0xb5008000, 0xb5008fff] PGTABLE
[    0.044904] BRK [0xb5009000, 0xb5009fff] PGTABLE
[    0.045041] RAMDISK: [mem 0x32c83000-0x35638fff]
[    0.045058] ACPI: Early table checksum verification disabled
[    0.045218] ACPI: RSDP 0x00000000000F00E0 000024 (v02 DELL  )
[    0.045228] ACPI: XSDT 0x00000000BAFFE120 00008C (v01 DELL   QA09     00000002 LOHR 00000002)
[    0.045244] ACPI: FACP 0x00000000BAFEF000 0000F4 (v03 DELL   QA09     00000002 PTL  00000002)
[    0.045259] ACPI: DSDT 0x00000000BAFF2000 009178 (v02 DELL   SNB-CPT  00000000 INTL 20061109)
[    0.045269] ACPI: FACS 0x00000000BAF40000 000040
[    0.045276] ACPI: FACS 0x00000000BAF40000 000040
[    0.045284] ACPI: SLIC 0x00000000BAFFD000 000176 (v01 DELL   QA09     00000002 LOHR 00000001)
[    0.045294] ACPI: SSDT 0x00000000BAFFC000 000166 (v01 DELL   PtidDevc 00001000 INTL 20061109)
[    0.045303] ACPI: ASF! 0x00000000BAFF1000 0000A5 (v32 DELL   QA09     00000002 PTL  00000002)
[    0.045313] ACPI: HPET 0x00000000BAFEE000 000038 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.045321] ACPI: APIC 0x00000000BAFED000 000098 (v01 DELL   QA09     00000002 PTL  00000002)
[    0.045330] ACPI: MCFG 0x00000000BAFEC000 00003C (v01 DELL   QA09     00000002 PTL  00000002)
[    0.045339] ACPI: SSDT 0x00000000BAFEA000 0012AD (v01 NvORef NvOptTbl 00001000 INTL 20061109)
[    0.045348] ACPI: SSDT 0x00000000BAFE9000 00094E (v01 PmRef  Cpu0Ist  00003000 INTL 20061109)
[    0.045358] ACPI: SSDT 0x00000000BAFE8000 000996 (v01 PmRef  CpuPm    00003000 INTL 20061109)
[    0.045367] ACPI: UEFI 0x00000000BAFE7000 00003E (v01 DELL   QA09     00000002 PTL  00000002)
[    0.045376] ACPI: UEFI 0x00000000BAFE6000 000042 (v01 PTL    COMBUF   00000001 PTL  00000001)
[    0.045385] ACPI: UEFI 0x00000000BAFE5000 00026A (v01 DELL   QA09     00000002 PTL  00000002)
[    0.045412] ACPI: Local APIC address 0xfee00000
[    0.045638] No NUMA configuration found
[    0.045641] Faking a node at [mem 0x0000000000000000-0x00000001be9fefff]
[    0.045651] NODE_DATA(0) allocated [mem 0x1be9fa000-0x1be9fefff]
[    0.045781] Zone ranges:
[    0.045784]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.045788]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.045791]   Normal   [mem 0x0000000100000000-0x00000001be9fefff]
[    0.045794]   Device   empty
[    0.045797] Movable zone start for each node
[    0.045799] Early memory node ranges
[    0.045802]   node   0: [mem 0x0000000000001000-0x000000000009cfff]
[    0.045804]   node   0: [mem 0x0000000000100000-0x00000000bac8efff]
[    0.045806]   node   0: [mem 0x00000000bafff000-0x00000000baffffff]
[    0.045808]   node   0: [mem 0x0000000100000000-0x00000001be9fefff]
[    0.045818] Reserved but unavailable: 100 pages
[    0.045822] Initmem setup node 0 [mem 0x0000000000001000-0x00000001be9fefff]
[    0.045826] On node 0 totalpages: 1545771
[    0.045829]   DMA zone: 64 pages used for memmap
[    0.045830]   DMA zone: 156 pages reserved
[    0.045833]   DMA zone: 3996 pages, LIFO batch:0
[    0.046170]   DMA32 zone: 11891 pages used for memmap
[    0.046172]   DMA32 zone: 760976 pages, LIFO batch:63
[    0.114211]   Normal zone: 12200 pages used for memmap
[    0.114215]   Normal zone: 780799 pages, LIFO batch:63
[    0.178044] Reserving Intel graphics memory at [mem 0xbba00000-0xbf9fffff]
[    0.178405] ACPI: PM-Timer IO Port: 0x408
[    0.178410] ACPI: Local APIC address 0xfee00000
[    0.178430] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.178432] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.178450] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
[    0.178455] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.178459] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.178463] ACPI: IRQ0 used by override.
[    0.178466] ACPI: IRQ9 used by override.
[    0.178472] Using ACPI (MADT) for SMP configuration information
[    0.178476] ACPI: HPET id: 0x8086a301 base: 0xfed00000
[    0.178487] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
[    0.178546] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.178551] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[    0.178553] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[    0.178555] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.178556] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.178561] PM: Registered nosave memory: [mem 0xbac8f000-0xbade1fff]
[    0.178563] PM: Registered nosave memory: [mem 0xbade2000-0xbade9fff]
[    0.178564] PM: Registered nosave memory: [mem 0xbadea000-0xbaf1efff]
[    0.178566] PM: Registered nosave memory: [mem 0xbaf1f000-0xbaf9efff]
[    0.178568] PM: Registered nosave memory: [mem 0xbaf9f000-0xbaffefff]
[    0.178572] PM: Registered nosave memory: [mem 0xbb000000-0xbf9fffff]
[    0.178574] PM: Registered nosave memory: [mem 0xbfa00000-0xf7ffffff]
[    0.178575] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.178577] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.178578] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.178580] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
[    0.178582] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
[    0.178584] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
[    0.178585] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[    0.178587] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[    0.178589] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.178590] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.178592] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.178594] PM: Registered nosave memory: [mem 0xfee01000-0xffd7ffff]
[    0.178595] PM: Registered nosave memory: [mem 0xffd80000-0xffffffff]
[    0.178600] [mem 0xbfa00000-0xf7ffffff] available for PCI devices
[    0.178603] Booting paravirtualized kernel on bare hardware
[    0.178609] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.527740] random: get_random_bytes called from start_kernel+0x93/0x52c with crng_init=0
[    0.527760] setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:8 nr_node_ids:1
[    0.532562] percpu: Embedded 45 pages/cpu s144408 r8192 d31720 u262144
[    0.532584] pcpu-alloc: s144408 r8192 d31720 u262144 alloc=1*2097152
[    0.532587] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
[    0.532657] Built 1 zonelists, mobility grouping on.  Total pages: 1521460
[    0.532659] Policy zone: Normal
[    0.532663] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.19.0-6-amd64 root=UUID=ac2b1f54-c797-4f5e-9656-834ae2d6ccbb ro quiet
[    0.628416] Calgary: detecting Calgary via BIOS EBDA area
[    0.628420] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
[    0.671054] Memory: 5949292K/6183084K available (10252K kernel code, 1243K rwdata, 3324K rodata, 1584K init, 2280K bss, 233792K reserved, 0K cma-reserved)
[    0.671332] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.671347] Kernel/User page tables isolation: enabled
[    0.671469] ftrace: allocating 31872 entries in 125 pages
[    0.710881] rcu: Hierarchical RCU implementation.
[    0.710885] rcu: 	RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[    0.710888] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[    0.721157] NR_IRQS: 33024, nr_irqs: 488, preallocated irqs: 16
[    0.723918] Console: colour VGA+ 80x25
[    0.723929] console [tty0] enabled
[    0.723977] ACPI: Core revision 20180810
[    0.724387] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.724405] hpet clockevent registered
[    0.724416] APIC: Switch to symmetric I/O mode setup
[    0.724497] x2apic: IRQ remapping doesn't support X2APIC mode
[    0.725188] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.744417] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fa32779500, max_idle_ns: 440795235982 ns
[    0.744454] Calibrating delay loop (skipped), value calculated using timer frequency.. 4389.67 BogoMIPS (lpj=8779356)
[    0.744461] pid_max: default: 32768 minimum: 301
[    0.744550] Security Framework initialized
[    0.744553] Yama: disabled by default; enable with sysctl kernel.yama.*
[    0.744597] AppArmor: AppArmor initialized
[    0.747367] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
[    0.748781] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.748849] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.748898] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
[    0.749454] Disabled fast string operations
[    0.749477] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.749479] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.749534] process: using mwait in idle threads
[    0.749541] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.749544] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.749547] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.749551] Spectre V2 : Mitigation: Full generic retpoline
[    0.749553] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.749554] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.749575] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.749577] Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
[    0.749578] Speculative Store Bypass: Vulnerable
[    0.749663] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
[    0.750083] Freeing SMP alternatives memory: 24K
[    0.756593] TSC deadline timer enabled
[    0.756600] smpboot: CPU0: Intel(R) Core(TM) i7-2670QM CPU @ 2.20GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[    0.756885] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.756948] ... version:                3
[    0.756950] ... bit width:              48
[    0.756951] ... generic registers:      4
[    0.756953] ... value mask:             0000ffffffffffff
[    0.756954] ... max period:             00007fffffffffff
[    0.756956] ... fixed-purpose events:   3
[    0.756957] ... event mask:             000000070000000f
[    0.757100] rcu: Hierarchical SRCU implementation.
[    0.759362] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[    0.759573] smp: Bringing up secondary CPUs ...
[    0.759800] x86: Booting SMP configuration:
[    0.759803] .... node  #0, CPUs:      #1
[    0.006813] Disabled fast string operations
[    0.762532] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
[    0.762532]  #2
[    0.006813] Disabled fast string operations
[    0.766645]  #3
[    0.006813] Disabled fast string operations
[    0.768673]  #4
[    0.006813] Disabled fast string operations
[    0.772658]  #5
[    0.006813] Disabled fast string operations
[    0.775540]  #6
[    0.006813] Disabled fast string operations
[    0.779199]  #7
[    0.006813] Disabled fast string operations
[    0.780480] smp: Brought up 1 node, 8 CPUs
[    0.780480] smpboot: Max logical packages: 1
[    0.780480] smpboot: Total of 8 processors activated (35117.42 BogoMIPS)
[    0.785097] devtmpfs: initialized
[    0.785097] x86/mm: Memory block size: 128MB
[    0.785991] PM: Registering ACPI NVS region [mem 0xbade2000-0xbade9fff] (32768 bytes)
[    0.785991] PM: Registering ACPI NVS region [mem 0xbaf1f000-0xbaf9efff] (524288 bytes)
[    0.785991] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.785991] futex hash table entries: 2048 (order: 5, 131072 bytes)
[    0.785991] pinctrl core: initialized pinctrl subsystem
[    0.785991] NET: Registered protocol family 16
[    0.785991] audit: initializing netlink subsys (disabled)
[    0.785991] audit: type=2000 audit(1592236914.060:1): state=initialized audit_enabled=0 res=1
[    0.785991] cpuidle: using governor ladder
[    0.785991] cpuidle: using governor menu
[    0.785991] ACPI: bus type PCI registered
[    0.785991] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.788554] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.788587] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.788609] PCI: Using configuration type 1 for base access
[    0.788702] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.789140] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.789142] mtrr: probably your BIOS does not setup all CPUs.
[    0.789143] mtrr: corrected configuration.
[    0.790901] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.790901] ACPI: Added _OSI(Module Device)
[    0.790901] ACPI: Added _OSI(Processor Device)
[    0.790901] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.790901] ACPI: Added _OSI(Processor Aggregator Device)
[    0.790901] ACPI: Added _OSI(Linux-Dell-Video)
[    0.790901] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.809054] ACPI: 5 ACPI AML tables successfully acquired and loaded
[    0.815311] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[    0.816490] ACPI: Dynamic OEM Table Load:
[    0.816511] ACPI: SSDT 0xFFFF9884B6BD6000 00067C (v01 PmRef  Cpu0Cst  00003001 INTL 20061109)
[    0.817580] ACPI: Dynamic OEM Table Load:
[    0.817595] ACPI: SSDT 0xFFFF9884B6BDF000 000303 (v01 PmRef  ApIst    00003000 INTL 20061109)
[    0.818275] ACPI: Dynamic OEM Table Load:
[    0.818287] ACPI: SSDT 0xFFFF9884B6BE1400 000119 (v01 PmRef  ApCst    00003000 INTL 20061109)
[    0.821782] ACPI: EC: EC started
[    0.821784] ACPI: EC: interrupt blocked
[    0.824067] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as first EC
[    0.824073] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.824076] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions
[    0.824078] ACPI: Interpreter enabled
[    0.824134] ACPI: (supports S0 S3 S4 S5)
[    0.824136] ACPI: Using IOAPIC for interrupt routing
[    0.824201] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.824769] ACPI: Enabled 8 GPEs in block 00 to 3F
[    0.826725] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.826729] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.826764] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.827159] PCI host bridge to bus 0000:00
[    0.827162] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.827163] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.827165] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.827166] pci_bus 0000:00: root bus resource [mem 0xbfa00000-0xfeafffff window]
[    0.827167] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
[    0.827168] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.827177] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[    0.827264] pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
[    0.827303] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
[    0.827378] pci 0000:00:02.0: [8086:0116] type 00 class 0x030000
[    0.827389] pci 0000:00:02.0: reg 0x10: [mem 0xf2400000-0xf27fffff 64bit]
[    0.827394] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.827398] pci 0000:00:02.0: reg 0x20: [io  0x5000-0x503f]
[    0.827573] pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
[    0.827600] pci 0000:00:16.0: reg 0x10: [mem 0xf3c05000-0xf3c0500f 64bit]
[    0.827678] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.827756] pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
[    0.827779] pci 0000:00:1a.0: reg 0x10: [mem 0xf3c0a000-0xf3c0a3ff]
[    0.827866] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.827942] pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
[    0.827965] pci 0000:00:1b.0: reg 0x10: [mem 0xf3c00000-0xf3c03fff 64bit]
[    0.828042] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.828113] pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
[    0.828198] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.828278] pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
[    0.828368] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.828453] pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
[    0.828544] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.828624] pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
[    0.828714] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.828793] pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
[    0.828883] pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
[    0.828964] pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
[    0.828987] pci 0000:00:1d.0: reg 0x10: [mem 0xf3c09000-0xf3c093ff]
[    0.829074] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.829148] pci 0000:00:1f.0: [8086:1c4b] type 00 class 0x060100
[    0.829321] pci 0000:00:1f.2: [8086:1c03] type 00 class 0x010601
[    0.829341] pci 0000:00:1f.2: reg 0x10: [io  0x5088-0x508f]
[    0.829349] pci 0000:00:1f.2: reg 0x14: [io  0x5094-0x5097]
[    0.829356] pci 0000:00:1f.2: reg 0x18: [io  0x5080-0x5087]
[    0.829364] pci 0000:00:1f.2: reg 0x1c: [io  0x5090-0x5093]
[    0.829372] pci 0000:00:1f.2: reg 0x20: [io  0x5060-0x507f]
[    0.829380] pci 0000:00:1f.2: reg 0x24: [mem 0xf3c08000-0xf3c087ff]
[    0.829423] pci 0000:00:1f.2: PME# supported from D3hot
[    0.829491] pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
[    0.829511] pci 0000:00:1f.3: reg 0x10: [mem 0xf3c04000-0xf3c040ff 64bit]
[    0.829532] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
[    0.829651] pci 0000:01:00.0: [10de:1246] type 00 class 0x030000
[    0.829665] pci 0000:01:00.0: reg 0x10: [mem 0xf0000000-0xf1ffffff]
[    0.829673] pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.829681] pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd3ffffff 64bit pref]
[    0.829687] pci 0000:01:00.0: reg 0x24: [io  0x4000-0x407f]
[    0.829693] pci 0000:01:00.0: reg 0x30: [mem 0xfff80000-0xffffffff pref]
[    0.829698] pci 0000:01:00.0: enabling Extended Tags
[    0.844456] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.844462] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    0.844467] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf20fffff]
[    0.844474] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd3ffffff 64bit pref]
[    0.844546] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.844755] pci 0000:03:00.0: [8086:008a] type 00 class 0x028000
[    0.844973] pci 0000:03:00.0: reg 0x10: [mem 0xf3b00000-0xf3b01fff 64bit]
[    0.845724] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[    0.846162] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.846168] pci 0000:00:1c.1:   bridge window [mem 0xf3b00000-0xf3bfffff]
[    0.846245] pci 0000:04:00.0: [1033:0194] type 00 class 0x0c0330
[    0.846287] pci 0000:04:00.0: reg 0x10: [mem 0xf3a00000-0xf3a01fff 64bit]
[    0.846444] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
[    0.846571] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.846577] pci 0000:00:1c.3:   bridge window [mem 0xf3a00000-0xf3afffff]
[    0.846660] pci 0000:00:1c.4: PCI bridge to [bus 05-09]
[    0.846664] pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
[    0.846668] pci 0000:00:1c.4:   bridge window [mem 0xf3100000-0xf39fffff]
[    0.846674] pci 0000:00:1c.4:   bridge window [mem 0xf2800000-0xf2ffffff 64bit pref]
[    0.846745] pci 0000:0a:00.0: [10ec:8168] type 00 class 0x020000
[    0.846781] pci 0000:0a:00.0: reg 0x10: [io  0x2000-0x20ff]
[    0.846815] pci 0000:0a:00.0: reg 0x18: [mem 0xf3004000-0xf3004fff 64bit pref]
[    0.846837] pci 0000:0a:00.0: reg 0x20: [mem 0xf3000000-0xf3003fff 64bit pref]
[    0.846956] pci 0000:0a:00.0: supports D1 D2
[    0.846957] pci 0000:0a:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.847094] pci 0000:00:1c.5: PCI bridge to [bus 0a]
[    0.847098] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    0.847106] pci 0000:00:1c.5:   bridge window [mem 0xf3000000-0xf30fffff 64bit pref]
[    0.847569] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.847625] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 *6 10 11 12 14 15)
[    0.847677] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.847728] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
[    0.847779] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.847831] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.847883] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 *11 12 14 15)
[    0.847934] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 *5 6 10 11 12 14 15)
[    0.848424] ACPI: EC: interrupt unblocked
[    0.848424] ACPI: EC: event unblocked
[    0.848424] ACPI: \_SB_.PCI0.LPCB.EC0_: GPE=0x17, EC_CMD/EC_SC=0x66, EC_DATA=0x62
[    0.848424] ACPI: \_SB_.PCI0.LPCB.EC0_: Used as boot DSDT EC to handle transactions and events
[    0.848432] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.848432] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.848436] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.848437] pci 0000:01:00.0: vgaarb: bridge control possible
[    0.848438] pci 0000:00:02.0: vgaarb: no bridge control possible
[    0.848439] vgaarb: loaded
[    0.848498] pps_core: LinuxPPS API ver. 1 registered
[    0.848499] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.848501] PTP clock support registered
[    0.848508] EDAC MC: Ver: 3.0.0
[    0.852515] PCI: Using ACPI for IRQ routing
[    0.853981] PCI: pci_cache_line_size set to 64 bytes
[    0.854084] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[    0.854085] e820: reserve RAM buffer [mem 0xbac8f000-0xbbffffff]
[    0.854086] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
[    0.854087] e820: reserve RAM buffer [mem 0x1be9ff000-0x1bfffffff]
[    0.854204] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.854204] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.856445] clocksource: Switched to clocksource tsc-early
[    0.866963] VFS: Disk quotas dquot_6.6.0
[    0.866982] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.867093] AppArmor: AppArmor Filesystem Enabled
[    0.867112] pnp: PnP ACPI init
[    0.867279] system 00:00: [io  0x0680-0x069f] has been reserved
[    0.867281] system 00:00: [io  0x1000-0x1003] has been reserved
[    0.867282] system 00:00: [io  0x1004-0x1013] has been reserved
[    0.867283] system 00:00: [io  0xffff] has been reserved
[    0.867284] system 00:00: [io  0x0400-0x0453] has been reserved
[    0.867286] system 00:00: [io  0x0458-0x047f] has been reserved
[    0.867287] system 00:00: [io  0x0500-0x057f] has been reserved
[    0.867288] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.867294] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.867320] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.867377] system 00:02: [io  0x0454-0x0457] has been reserved
[    0.867380] system 00:02: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.867435] pnp 00:03: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.867475] pnp 00:04: Plug and Play ACPI device, IDs DLL0571 PNP0f13 (active)
[    0.867576] pnp 00:05: disabling [mem 0xfffff000-0xffffffff] because it overlaps 0000:01:00.0 BAR 6 [mem 0xfff80000-0xffffffff pref]
[    0.867601] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.867602] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.867604] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.867605] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.867606] system 00:05: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.867609] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.867610] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.867612] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.867613] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[    0.867614] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.867618] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.867830] pnp: PnP ACPI: found 6 devices
[    0.873684] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.873689] pci 0000:01:00.0: can't claim BAR 6 [mem 0xfff80000-0xffffffff pref]: no compatible bridge window
[    0.873739] pci 0000:01:00.0: BAR 6: assigned [mem 0xf2000000-0xf207ffff pref]
[    0.873742] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.873744] pci 0000:00:01.0:   bridge window [io  0x4000-0x4fff]
[    0.873746] pci 0000:00:01.0:   bridge window [mem 0xf0000000-0xf20fffff]
[    0.873749] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd3ffffff 64bit pref]
[    0.873752] pci 0000:00:1c.0: PCI bridge to [bus 02]
[    0.873763] pci 0000:00:1c.1: PCI bridge to [bus 03]
[    0.873768] pci 0000:00:1c.1:   bridge window [mem 0xf3b00000-0xf3bfffff]
[    0.873776] pci 0000:00:1c.3: PCI bridge to [bus 04]
[    0.873781] pci 0000:00:1c.3:   bridge window [mem 0xf3a00000-0xf3afffff]
[    0.873789] pci 0000:00:1c.4: PCI bridge to [bus 05-09]
[    0.873792] pci 0000:00:1c.4:   bridge window [io  0x3000-0x3fff]
[    0.873797] pci 0000:00:1c.4:   bridge window [mem 0xf3100000-0xf39fffff]
[    0.873800] pci 0000:00:1c.4:   bridge window [mem 0xf2800000-0xf2ffffff 64bit pref]
[    0.873806] pci 0000:00:1c.5: PCI bridge to [bus 0a]
[    0.873809] pci 0000:00:1c.5:   bridge window [io  0x2000-0x2fff]
[    0.873816] pci 0000:00:1c.5:   bridge window [mem 0xf3000000-0xf30fffff 64bit pref]
[    0.873823] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.873824] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.873825] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.873826] pci_bus 0000:00: resource 7 [mem 0xbfa00000-0xfeafffff window]
[    0.873827] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
[    0.873829] pci_bus 0000:01: resource 0 [io  0x4000-0x4fff]
[    0.873830] pci_bus 0000:01: resource 1 [mem 0xf0000000-0xf20fffff]
[    0.873831] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd3ffffff 64bit pref]
[    0.873832] pci_bus 0000:03: resource 1 [mem 0xf3b00000-0xf3bfffff]
[    0.873833] pci_bus 0000:04: resource 1 [mem 0xf3a00000-0xf3afffff]
[    0.873835] pci_bus 0000:05: resource 0 [io  0x3000-0x3fff]
[    0.873836] pci_bus 0000:05: resource 1 [mem 0xf3100000-0xf39fffff]
[    0.873837] pci_bus 0000:05: resource 2 [mem 0xf2800000-0xf2ffffff 64bit pref]
[    0.873838] pci_bus 0000:0a: resource 0 [io  0x2000-0x2fff]
[    0.873839] pci_bus 0000:0a: resource 2 [mem 0xf3000000-0xf30fffff 64bit pref]
[    0.873922] NET: Registered protocol family 2
[    0.874095] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes)
[    0.874129] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
[    0.874269] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
[    0.874405] TCP: Hash tables configured (established 65536 bind 65536)
[    0.874445] UDP hash table entries: 4096 (order: 5, 131072 bytes)
[    0.874473] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
[    0.874537] NET: Registered protocol family 1
[    0.874542] NET: Registered protocol family 44
[    0.874552] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.875040] PCI: CLS 64 bytes, default 64
[    0.875082] Unpacking initramfs...
[    1.669975] Freeing initrd memory: 42712K
[    1.670002] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    1.670004] software IO TLB: mapped [mem 0xb6c8f000-0xbac8f000] (64MB)
[    1.670692] Initialise system trusted keyrings
[    1.670703] Key type blacklist registered
[    1.670759] workingset: timestamp_bits=40 max_order=21 bucket_order=0
[    1.672016] zbud: loaded
[    1.890726] Key type asymmetric registered
[    1.890727] Asymmetric key parser 'x509' registered
[    1.890737] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    1.890777] io scheduler noop registered
[    1.890778] io scheduler deadline registered
[    1.890807] io scheduler cfq registered (default)
[    1.890808] io scheduler mq-deadline registered
[    1.891511] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    1.891524] intel_idle: MWAIT substates: 0x21120
[    1.891525] intel_idle: v0.4.1 model 0x2A
[    1.891949] intel_idle: lapic_timer_reliable_states 0xffffffff
[    1.892377] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    1.892816] Linux agpgart interface v0.103
[    1.892872] AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
[    1.892872] AMD IOMMUv2 functionality not available on this system
[    1.893410] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.898181] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.898186] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.898318] mousedev: PS/2 mouse device common for all mice
[    1.898408] rtc_cmos 00:01: RTC can wake from S4
[    1.898586] rtc_cmos 00:01: registered as rtc0
[    1.898601] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.898611] intel_pstate: Intel P-state driver initializing
[    1.899180] ledtrig-cpu: registered to indicate activity on CPUs
[    1.900349] NET: Registered protocol family 10
[    1.905278] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
[    1.920638] Segment Routing with IPv6
[    1.920693] mip6: Mobile IPv6
[    1.920699] NET: Registered protocol family 17
[    1.920949] mpls_gso: MPLS GSO support
[    1.922329] mce: Using 9 MCE banks
[    1.922452] microcode: sig=0x206a7, pf=0x10, revision=0x2d
[    1.922845] microcode: Microcode Update Driver: v2.2.
[    1.922879] sched_clock: Marking stable (1920002858, 2813428)->(1993410976, -70594690)
[    1.923365] registered taskstats version 1
[    1.923366] Loading compiled-in X.509 certificates
[    1.968085] Loaded X.509 cert 'Debian Secure Boot CA: 6ccece7e4c6c0d1f6149f3dd27dfcc5cbb419ea1'
[    1.968100] Loaded X.509 cert 'Debian Secure Boot Signer: 00a7468def'
[    1.968121] zswap: loaded using pool lzo/zbud
[    1.968221] AppArmor: AppArmor sha1 policy hashing enabled
[    1.968652] rtc_cmos 00:01: setting system clock to 2020-06-15 16:01:56 UTC (1592236916)
[    1.970494] Freeing unused kernel image memory: 1584K
[    2.032555] Write protecting the kernel read-only data: 16384k
[    2.034099] Freeing unused kernel image memory: 2028K
[    2.034646] Freeing unused kernel image memory: 772K
[    2.051403] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.051404] x86/mm: Checking user space page tables
[    2.057879] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.057881] Run /init as init process
[    2.189240] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
[    2.189253] ACPI: Power Button [PWRB]
[    2.189320] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input3
[    2.189329] ACPI: Sleep Button [SLPB]
[    2.189387] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input4
[    2.189401] ACPI: Lid Switch [LID0]
[    2.189455] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input5
[    2.189466] ACPI: Power Button [PWRF]
[    2.193657] thermal LNXTHERM:00: registered as thermal_zone0
[    2.193661] ACPI: Thermal Zone [TZ00] (45 C)
[    2.194082] thermal LNXTHERM:01: registered as thermal_zone1
[    2.194084] ACPI: Thermal Zone [TZ01] (45 C)
[    2.194099] wmi_bus wmi_bus-PNP0C14:00: WQBC data block query control method not found
[    2.197698] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20180810/utaddress-213)
[    2.197705] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.197709] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20180810/utaddress-213)
[    2.197713] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\GPIN) (20180810/utaddress-213)
[    2.197717] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
[    2.197720] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.197721] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20180810/utaddress-213)
[    2.197725] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\GPIN) (20180810/utaddress-213)
[    2.197728] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
[    2.197732] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.197733] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB.PCI0.PEG0.PEGP.GPIO) (20180810/utaddress-213)
[    2.197736] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\GPIN) (20180810/utaddress-213)
[    2.197740] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20180810/utaddress-213)
[    2.197743] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    2.197744] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    2.204322] cryptd: max_cpu_qlen set to 1000
[    2.212507] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[    2.215726] ACPI: bus type USB registered
[    2.215751] usbcore: registered new interface driver usbfs
[    2.215761] usbcore: registered new interface driver hub
[    2.215797] usbcore: registered new device driver usb
[    2.217825] SCSI subsystem initialized
[    2.221405] AVX version of gcm_enc/dec engaged.
[    2.221407] AES CTR mode by8 optimization enabled
[    2.227809] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.228786] ehci-pci: EHCI PCI platform driver
[    2.228940] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    2.228948] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    2.228962] ehci-pci 0000:00:1a.0: debug port 2
[    2.232878] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    2.232896] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf3c0a000
[    2.238301] libata version 3.00 loaded.
[    2.245611] ahci 0000:00:1f.2: version 3.0
[    2.245801] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    2.248441] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    2.248505] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    2.248507] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.248509] usb usb1: Product: EHCI Host Controller
[    2.248510] usb usb1: Manufacturer: Linux 4.19.0-6-amd64 ehci_hcd
[    2.248511] usb usb1: SerialNumber: 0000:00:1a.0
[    2.248654] hub 1-0:1.0: USB hub found
[    2.248662] hub 1-0:1.0: 2 ports detected
[    2.248760] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    2.248770] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 2
[    2.248906] xhci_hcd 0000:04:00.0: hcc params 0x014042cb hci version 0x96 quirks 0x0000000000000004
[    2.249232] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    2.249233] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.249234] usb usb2: Product: xHCI Host Controller
[    2.249235] usb usb2: Manufacturer: Linux 4.19.0-6-amd64 xhci-hcd
[    2.249236] usb usb2: SerialNumber: 0000:04:00.0
[    2.249346] hub 2-0:1.0: USB hub found
[    2.249361] hub 2-0:1.0: 2 ports detected
[    2.249473] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    2.249479] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 3
[    2.249480] xhci_hcd 0000:04:00.0: xHCI Host Controller
[    2.249483] xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
[    2.249485] xhci_hcd 0000:04:00.0: Host supports USB 3.0 SuperSpeed
[    2.249502] ehci-pci 0000:00:1d.0: debug port 2
[    2.252365] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.252410] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 4.19
[    2.252411] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.252412] usb usb4: Product: xHCI Host Controller
[    2.252413] usb usb4: Manufacturer: Linux 4.19.0-6-amd64 xhci-hcd
[    2.252414] usb usb4: SerialNumber: 0000:04:00.0
[    2.252538] hub 4-0:1.0: USB hub found
[    2.252552] hub 4-0:1.0: 2 ports detected
[    2.253415] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    2.253433] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf3c09000
[    2.255897] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x33 impl SATA mode
[    2.255900] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pio slum part ems sxs apst 
[    2.268435] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    2.268492] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 4.19
[    2.268494] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.268495] usb usb3: Product: EHCI Host Controller
[    2.268495] usb usb3: Manufacturer: Linux 4.19.0-6-amd64 ehci_hcd
[    2.268496] usb usb3: SerialNumber: 0000:00:1d.0
[    2.268628] hub 3-0:1.0: USB hub found
[    2.268634] hub 3-0:1.0: 2 ports detected
[    2.293022] scsi host0: ahci
[    2.293228] scsi host1: ahci
[    2.293459] scsi host2: ahci
[    2.293655] scsi host3: ahci
[    2.293800] scsi host4: ahci
[    2.293926] scsi host5: ahci
[    2.293985] ata1: SATA max UDMA/133 abar m2048@0xf3c08000 port 0xf3c08100 irq 24
[    2.293987] ata2: SATA max UDMA/133 abar m2048@0xf3c08000 port 0xf3c08180 irq 24
[    2.293987] ata3: DUMMY
[    2.293988] ata4: DUMMY
[    2.293989] ata5: SATA max UDMA/133 abar m2048@0xf3c08000 port 0xf3c08300 irq 24
[    2.293991] ata6: SATA max UDMA/133 abar m2048@0xf3c08000 port 0xf3c08380 irq 24
[    2.336572] [drm] Replacing VGA console driver
[    2.336971] Console: switching to colour dummy device 80x25
[    2.337853] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.337855] [drm] Driver supports precise vblank timestamp query.
[    2.338768] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
[    2.439447] [drm] Initialized i915 1.6.0 20180719 for 0000:00:02.0 on minor 0
[    2.439558] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
[    2.439592] ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
[    2.439699] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:2b/LNXVIDEO:00/input/input7
[    2.440112] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.440181] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
[    2.567857] fbcon: inteldrmfb (fb0) is primary device
[    2.584521] usb 2-1: new low-speed USB device number 2 using xhci_hcd
[    2.592522] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    2.607362] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.608503] usb 3-1: new high-speed USB device number 2 using ehci-pci
[    2.630352] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    2.640086] ata1.00: ATA-8: ST9500423AS, 0002DEM1, max UDMA/133
[    2.640090] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32)
[    2.676518] tsc: Refined TSC clocksource calibration: 2195.012 MHz
[    2.676540] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fa3cab9042, max_idle_ns: 440795210298 ns
[    2.676723] clocksource: Switched to clocksource tsc
[    2.678832] ata1.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    2.679095] ata1.00: configured for UDMA/133
[    2.679674] scsi 0:0:0:0: Direct-Access     ATA      ST9500423AS      DEM1 PQ: 0 ANSI: 5
[    2.753244] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    2.753249] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.753967] hub 1-1:1.0: USB hub found
[    2.754214] hub 1-1:1.0: 6 ports detected
[    2.763222] random: fast init done
[    2.765239] usb 3-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[    2.765244] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    2.765913] hub 3-1:1.0: USB hub found
[    2.766003] hub 3-1:1.0: 8 ports detected
[    2.768018] usb 2-1: New USB device found, idVendor=03f0, idProduct=094a, bcdDevice= 1.00
[    2.768021] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.768024] usb 2-1: Product: HP USB Optical Mouse
[    2.768026] usb 2-1: Manufacturer: PixArt
[    2.785662] hidraw: raw HID events driver (C) Jiri Kosina
[    2.798851] usbcore: registered new interface driver usbhid
[    2.798852] usbhid: USB HID core driver
[    2.800963] input: PixArt HP USB Optical Mouse as /devices/pci0000:00/0000:00:1c.3/0000:04:00.0/usb2/2-1/2-1:1.0/0003:03F0:094A.0001/input/input9
[    2.801032] hid-generic 0003:03F0:094A.0001: input,hidraw0: USB HID v1.11 Mouse [PixArt HP USB Optical Mouse] on usb-0000:04:00.0-1/input0
[    2.995544] ata2: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    2.997139] psmouse serio1: synaptics: queried max coordinates: x [..5398], y [..4728]
[    3.018525] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.040513] usb 1-1.4: new high-speed USB device number 3 using ehci-pci
[    3.052515] usb 3-1.5: new full-speed USB device number 3 using ehci-pci
[    3.067153] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.4, id: 0x1e0b1, caps: 0xd04771/0xa40000/0x8a0400/0x0, board id: 0, fw id: 662324
[    3.113499] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[    3.150977] usb 1-1.4: New USB device found, idVendor=0408, idProduct=2fb1, bcdDevice= 9.01
[    3.150982] usb 1-1.4: New USB device strings: Mfr=3, Product=2, SerialNumber=0
[    3.150985] usb 1-1.4: Product: Laptop_Integrated_Webcam_2HDM
[    3.150988] usb 1-1.4: Manufacturer: CN07CN2C786641CE0B2CA00
[    3.169443] usb 3-1.5: New USB device found, idVendor=8086, idProduct=0189, bcdDevice=69.19
[    3.169449] usb 3-1.5: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    3.317695] ata2.00: ATA-8: ST9500423AS, 0002DEM1, max UDMA/133
[    3.317700] ata2.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32)
[    3.319549] ata2.00: ACPI cmd 00/00:00:00:00:00:a0 (NOP) rejected by device (Stat=0x51 Err=0x04)
[    3.319961] ata2.00: configured for UDMA/133
[    3.320842] scsi 1:0:0:0: Direct-Access     ATA      ST9500423AS      DEM1 PQ: 0 ANSI: 5
[    3.443581] Console: switching to colour frame buffer device 200x56
[    3.471278] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    3.636223] ata5: SATA link down (SStatus 0 SControl 300)
[    3.952239] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    3.955706] ata6.00: ATAPI: HL-DT-ST DVD+-RW GT50N, A101, max UDMA/133
[    3.961264] ata6.00: configured for UDMA/133
[    3.966663] scsi 5:0:0:0: CD-ROM            HL-DT-ST DVD+-RW GT50N    A101 PQ: 0 ANSI: 5
[    4.005847] sd 1:0:0:0: [sdb] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.005850] sd 1:0:0:0: [sdb] 4096-byte physical blocks
[    4.005857] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    4.005858] sd 1:0:0:0: [sdb] Write Protect is off
[    4.005860] sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    4.005860] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    4.005870] sd 0:0:0:0: [sda] Write Protect is off
[    4.005872] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    4.005873] sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.005887] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    4.037707]  sdb: sdb1 sdb2
[    4.038736] sd 1:0:0:0: [sdb] Attached SCSI disk
[    4.055053] sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    4.055056] cdrom: Uniform CD-ROM driver Revision: 3.20
[    4.055364] sr 5:0:0:0: Attached scsi CD-ROM sr0
[    4.097529]  sda: sda1 sda2 < sda5 >
[    4.097779] sd 0:0:0:0: [sda] Attached SCSI disk
[    4.802702] PM: Image not found (code -22)
[    5.009863] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    6.673537] random: crng init done
[    7.420353] systemd[1]: Inserted module 'autofs4'
[    7.731948] systemd[1]: systemd 241 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN -PCRE2 default-hierarchy=hybrid)
[    7.748800] systemd[1]: Detected architecture x86-64.
[    7.769317] systemd[1]: Set hostname to <debian-sys>.
[   10.476306] systemd[1]: Listening on initctl Compatibility Named Pipe.
[   10.476606] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[   10.476840] systemd[1]: Listening on Journal Socket (/dev/log).
[   10.476986] systemd[1]: Listening on udev Kernel Socket.
[   10.477221] systemd[1]: Listening on Journal Audit Socket.
[   10.477254] systemd[1]: Reached target User and Group Name Lookups.
[   10.501301] systemd[1]: Listening on Syslog Socket.
[   10.636697] EXT4-fs (sda1): re-mounted. Opts: (null)
[   11.029706] systemd-journald[335]: Received request to flush runtime journal from PID 1
[   11.414230] RPC: Registered named UNIX socket transport module.
[   11.414232] RPC: Registered udp transport module.
[   11.414232] RPC: Registered tcp transport module.
[   11.414233] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   11.486385] lp: driver loaded but no devices found
[   11.495727] ppdev: user-space parallel port driver
[   11.700166] fuse init (API version 7.27)
[   13.911942] audit: type=1400 audit(1592236928.436:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=376 comm="apparmor_parser"
[   13.911953] audit: type=1400 audit(1592236928.436:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=376 comm="apparmor_parser"
[   13.913396] audit: type=1400 audit(1592236928.440:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=381 comm="apparmor_parser"
[   13.913400] audit: type=1400 audit(1592236928.440:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=381 comm="apparmor_parser"
[   13.919562] audit: type=1400 audit(1592236928.444:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="virt-aa-helper" pid=379 comm="apparmor_parser"
[   13.981320] audit: type=1400 audit(1592236928.508:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=383 comm="apparmor_parser"
[   13.999788] audit: type=1400 audit(1592236928.524:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=377 comm="apparmor_parser"
[   13.999798] audit: type=1400 audit(1592236928.524:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=377 comm="apparmor_parser"
[   13.999804] audit: type=1400 audit(1592236928.524:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=377 comm="apparmor_parser"
[   14.022427] audit: type=1400 audit(1592236928.548:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="firejail-default" pid=380 comm="apparmor_parser"
[   14.873027] battery: ACPI: Battery Slot [BAT0] (battery absent)
[   14.873034] input: PC Speaker as /devices/platform/pcspkr/input/input10
[   14.877451] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[   14.877452] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   14.877452] RAPL PMU: hw unit of domain package 2^-16 Joules
[   14.877453] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[   14.942857] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.2)
[   14.992549] ACPI: AC Adapter [ADP0] (on-line)
[   15.057010] input: Dell WMI hotkeys as /devices/platform/PNP0C14:00/wmi_bus/wmi_bus-PNP0C14:00/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input11
[   15.165458] iTCO_vendor_support: vendor-support=0
[   15.221133] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
[   15.221278] iTCO_wdt: Found a Cougar Point TCO device (Version=2, TCOBASE=0x0460)
[   15.221574] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
[   15.481340] sd 0:0:0:0: Attached scsi generic sg0 type 0
[   15.481373] sd 1:0:0:0: Attached scsi generic sg1 type 0
[   15.481399] sr 5:0:0:0: Attached scsi generic sg2 type 5
[   15.604158] alg: No test for fips(ansi_cprng) (fips_ansi_cprng)
[   15.870399] Bluetooth: Core ver 2.22
[   15.870416] NET: Registered protocol family 31
[   15.870417] Bluetooth: HCI device and connection manager initialized
[   15.870421] Bluetooth: HCI socket layer initialized
[   15.870423] Bluetooth: L2CAP socket layer initialized
[   15.870429] Bluetooth: SCO socket layer initialized
[   16.043422] Intel(R) Wireless WiFi driver for Linux
[   16.043423] Copyright(c) 2003- 2015 Intel Corporation
[   16.043627] iwlwifi 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
[   16.133255] iwlwifi 0000:03:00.0: firmware: direct-loading firmware iwlwifi-6000g2b-6.ucode
[   16.133421] iwlwifi 0000:03:00.0: loaded firmware version 18.168.6.1 op_mode iwldvm
[   16.385334] usbcore: registered new interface driver btusb
[   16.407955] Bluetooth: hci0: unexpected event for opcode 0x0000
[   16.583442] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   16.600462] media: Linux media interface: v0.10
[   16.620671] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUG disabled
[   16.620674] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEBUGFS disabled
[   16.620675] iwlwifi 0000:03:00.0: CONFIG_IWLWIFI_DEVICE_TRACING disabled
[   16.620678] iwlwifi 0000:03:00.0: Detected Intel(R) Centrino(R) Wireless-N 1030 BGN, REV=0xB0
[   16.733958] ieee80211 phy0: Selected rate control algorithm 'iwl-agn-rs'
[   16.915159] videodev: Linux video capture interface: v2.00
[   17.117136] snd_hda_codec_realtek hdaudioC0D0: ALC665: SKU not ready 0x598301f0
[   17.117525] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC665: line_outs=1 (0x15/0x0/0x0/0x0/0x0) type:speaker
[   17.117526] snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   17.117527] snd_hda_codec_realtek hdaudioC0D0:    hp_outs=2 (0x1b/0x19/0x0/0x0/0x0)
[   17.117528] snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
[   17.117529] snd_hda_codec_realtek hdaudioC0D0:    dig-out=0x1e/0x0
[   17.117529] snd_hda_codec_realtek hdaudioC0D0:    inputs:
[   17.117531] snd_hda_codec_realtek hdaudioC0D0:      Mic=0x1a
[   17.117532] snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
[   17.254886] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[   17.255111] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[   17.255152] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input14
[   17.255196] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
[   17.255236] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
[   17.416342] uvcvideo: Found UVC 1.00 device Laptop_Integrated_Webcam_2HDM (0408:2fb1)
[   17.462818] uvcvideo: No streaming interface found for terminal 6.
[   17.462832] uvcvideo 1-1.4:1.0: Entity type for entity Extension 4 was not initialized!
[   17.462836] uvcvideo 1-1.4:1.0: Entity type for entity Extension 3 was not initialized!
[   17.462840] uvcvideo 1-1.4:1.0: Entity type for entity Processing 2 was not initialized!
[   17.462843] uvcvideo 1-1.4:1.0: Entity type for entity Camera 1 was not initialized!
[   17.463040] input: Laptop_Integrated_Webcam_2HDM:  as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input17


bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#9 Post by bentHnau »

#dmesg continued...

Code: Select all

[   17.463224] usbcore: registered new interface driver uvcvideo
[   17.463226] USB Video Class driver (1.1.1)
[   17.581342] intel_rapl: Found RAPL domain package
[   17.581346] intel_rapl: Found RAPL domain core
[   17.581359] intel_rapl: Found RAPL domain uncore
[   18.242131] Adding 12363772k swap on /dev/sda5.  Priority:-2 extents:1 across:12363772k FS
[   20.411744] 8021q: 802.1Q VLAN Support v1.8
[   22.868463] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[   22.966641] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[   23.032743] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   23.041526] bbswitch: loading out-of-tree module taints kernel.
[   23.041615] bbswitch: module verification failed: signature and/or required key missing - tainting kernel
[   23.041865] bbswitch: version 0.8
[   23.041870] bbswitch: Found integrated VGA device 0000:00:02.0: \_SB_.PCI0.GFX0
[   23.041875] bbswitch: Found discrete VGA device 0000:01:00.0: \_SB_.PCI0.PEG0.PEGP
[   23.041885] ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20180810/nsarguments-66)
[   23.042118] bbswitch: detected an Optimus _DSM function
[   23.042128] pci 0000:01:00.0: enabling device (0006 -> 0007)
[   23.042159] bbswitch: Succesfully loaded. Discrete card 0000:01:00.0 is on
[   23.042848] bbswitch: disabling discrete graphics
[   29.305367] NET: Registered protocol family 3
[   29.612776] NET: Registered protocol family 5
[ 4003.683002] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4003.783632] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4003.853226] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 4008.287175] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4008.387934] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4008.460866] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 4008.849173] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4008.948407] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 4009.025854] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 4011.610238] wlan0: authenticate with 90:58:51:37:36:02
[ 4011.616361] wlan0: send auth to 90:58:51:37:36:02 (try 1/3)
[ 4011.621083] wlan0: authenticated
[ 4011.624466] wlan0: associate with 90:58:51:37:36:02 (try 1/3)
[ 4011.628126] wlan0: RX AssocResp from 90:58:51:37:36:02 (capab=0x1521 status=0 aid=3)
[ 4011.636536] wlan0: associated
[ 4011.636639] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[ 4011.636992] wlan0: Limiting TX power to 127 (127 - 0) dBm as advertised by 90:58:51:37:36:02
[ 8385.651026] wlan0: deauthenticating from 90:58:51:37:36:02 by local choice (Reason: 3=DEAUTH_LEAVING)
[ 8385.697620] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 8385.794412] iwlwifi 0000:03:00.0: Radio type=0x2-0x2-0x1
[ 8385.856090] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: No Ethernet. Maybe a driver problem

#10 Post by Head_on_a_Stick »

bentHnau wrote:Are there any blacklists for the drivers?

Code: Select all

grep -R r816 /{etc,{usr/,}lib}/modprobe.d
/etc/modprobe.d/r8168-dkms.conf:# settings for r8168-dkms
/etc/modprobe.d/r8168-dkms.conf:# map the specific PCI IDs instead of blacklisting the whole r8169 module
/etc/modprobe.d/r8168-dkms.conf:alias	pci:v00001186d00004300sv00001186sd00004B10bc*sc*i*	r8168
/etc/modprobe.d/r8168-dkms.conf:alias	pci:v000010ECd00008168sv*sd*bc*sc*i*			r8168
/etc/modprobe.d/r8168-dkms.conf:# to blacklist the whole r8169 module
/etc/modprobe.d/r8168-dkms.conf:#blacklist r8169
grep: /usr/lib/modprobe.d: No such file or directory
That file is owned by the r8168-dkms package so it looks like you haven't removed it at all, contrary to your assertion.

Which kernel driver is loaded for the card in Hyperbola?
deadbang

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#11 Post by bentHnau »

Head_on_a_Stick wrote: That file is owned by the r8168-dkms package so it looks like you haven't removed it at all, contrary to your assertion.
Well I just tried to remove it again and Apt says it's not installed.

I'm not sure what you are seeing that is owned by r8168-dkms , but all I see in that dmesg output related to r8168-dkms is configuration files, which often don't get removed with their associated package.
Which kernel driver is loaded for the card in Hyperbola?
"Kernel driver in use: r8196"

User avatar
Head_on_a_Stick
Posts: 14114
Joined: 2014-06-01 17:46
Location: London, England
Has thanked: 81 times
Been thanked: 132 times

Re: No Ethernet. Maybe a driver problem

#12 Post by Head_on_a_Stick »

bentHnau wrote:all I see in that dmesg output related to r8168-dkms is configuration files, which often don't get removed with their associated package
That depends which command you use to remove the package ;)

I thought that the file would be removed by a post-install script because to do otherwise would break the r8169 driver but it appears that is not the case so use

Code: Select all

# apt purge r8168-dkms
Or

Code: Select all

# aptitude purge ~c # will remove all unused configuration files
It looks like the r8168 driver doesn't work with buster's kernel: https://bugs.debian.org/cgi-bin/bugrepo ... bug=931812
deadbang

bentHnau
Posts: 148
Joined: 2014-01-07 01:43
Been thanked: 1 time

Re: No Ethernet. Maybe a driver problem

#13 Post by bentHnau »

Ok, I purged the package and ethernet works now. Thank you.

Post Reply