Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 24/06/2018, à 13:42

pierrequiroule

wine et port usb

salut,

Je viens de faire l'acquisition d'un matériel (un outil de diagnostic automobile), pour lequel il faut que je fasse une mise à jour via PC et câble usb.
Bien évidemment, l'outil de mise à jour fourni est pour windows seulement sad
J'arrive à faire tourner l'utilitaire avec wine, mais il ne trouve pas mon matériel usb. Celui-ci est bien reconnu par mon ordi :

lsusb
Bus 002 Device 008: ID 0483:6669 STMicroelectronics

D'après ce que j'ai trouvé en cherchant sur le net, il faut créer un lien entre mon port usb et port "com" de wine.
Comment faut-il faire ?

Merci de vos suggestions.

Hors ligne

#2 Le 24/06/2018, à 13:51

pierrequiroule

Re : wine et port usb

La solution devrait être du genre :

Ouvrir une console, se positionner dans le répertoire .wine/dosdevices et tapper la commande suivante:

ln -s /dev/ttyUSB0 com1

Comment savoir si mon matos usb est bien en ttyUSB0 ou quelque chose d'autre ?
Et s'il faut bien que je lie à com1 ?

Hors ligne

#3 Le 24/06/2018, à 14:03

pierrequiroule

Re : wine et port usb

J'ai aussi trouvé ça :

Re: WINE and com ports.

    First you'll want to figure out what device your serial converter is. It should be something like /dev/ttyUSB0. If you plug in the converter, and then run dmesg in terminal, it should pick it up and list its location. If not, we'll have to find some drivers for it.

    Next, wine handles com ports by having a link to the device (ie /dev/ttyUSB0), in the ~/.wine/dosdevices folder. This link would be created as follows:
    Code:

    ln -s /dev/ttyUSB0 ~/.wine/dosdevices/com1

    With that it might work, although there could be some issues with permissions, but if it doesn't work the first time hope is not lost.

voici ce que me renvoie dmesg (très bavard et je n'y comprends rien) :

pierre@pierre:~$ dmesg
[    0.000000] microcode: microcode updated early to revision 0x1f, date = 2018-02-07
[    0.000000] random: get_random_bytes called from start_kernel+0x42/0x4e9 with crng_init=0
[    0.000000] Linux version 4.13.0-45-generic (buildd@lcy01-amd64-025) (gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3.2)) #50-Ubuntu SMP Wed May 30 08:23:18 UTC 2018 (Ubuntu 4.13.0-45.50-generic 4.13.16)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-45-generic root=UUID=62afdd5d-fc99-4e5a-9a8c-828cda1aec4e ro quiet splash vt.handoff=7
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    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-0x000000000009ebff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
[    0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000d99b9fff] usable
[    0.000000] BIOS-e820: [mem 0x00000000d99ba000-0x00000000da11efff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000da11f000-0x00000000da39efff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000da39f000-0x00000000da3a3fff] ACPI data
[    0.000000] BIOS-e820: [mem 0x00000000da3a4000-0x00000000da3e6fff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000da3e7000-0x00000000dacbbfff] usable
[    0.000000] BIOS-e820: [mem 0x00000000dacbc000-0x00000000dafdcfff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000dafdd000-0x00000000daffffff] usable
[    0.000000] BIOS-e820: [mem 0x00000000db800000-0x00000000df9fffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000011f5fffff] usable
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.7 present.
[    0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./H77M-D3H, BIOS F7 07/20/2012
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x11f600 max_arch_pfn = 0x400000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-BFFFF uncachable
[    0.000000]   C0000-CFFFF write-protect
[    0.000000]   D0000-E7FFF uncachable
[    0.000000]   E8000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000 mask F00000000 write-back
[    0.000000]   1 base 100000000 mask FE0000000 write-back
[    0.000000]   2 base 0E0000000 mask FE0000000 uncachable
[    0.000000]   3 base 0DC000000 mask FFC000000 uncachable
[    0.000000]   4 base 0DB800000 mask FFF800000 uncachable
[    0.000000]   5 base 11F800000 mask FFF800000 uncachable
[    0.000000]   6 base 11F600000 mask FFFE00000 uncachable
[    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] total RAM covered: 4014M
[    0.000000] Found optimal setting for mtrr clean up
[    0.000000]  gran_size: 64K 	chunk_size: 128M 	num_reg: 8  	lose cover RAM: 0G
[    0.000000] e820: update [mem 0xdb800000-0xffffffff] usable ==> reserved
[    0.000000] e820: last_pfn = 0xdb000 max_arch_pfn = 0x400000000
[    0.000000] found SMP MP-table at [mem 0x000fd710-0x000fd71f] mapped at [ffff8bf7c00fd710]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff8bf7c0098000] 98000 size 24576
[    0.000000] BRK [0x3712e000, 0x3712efff] PGTABLE
[    0.000000] BRK [0x3712f000, 0x3712ffff] PGTABLE
[    0.000000] BRK [0x37130000, 0x37130fff] PGTABLE
[    0.000000] BRK [0x37131000, 0x37131fff] PGTABLE
[    0.000000] BRK [0x37132000, 0x37132fff] PGTABLE
[    0.000000] BRK [0x37133000, 0x37133fff] PGTABLE
[    0.000000] BRK [0x37134000, 0x37134fff] PGTABLE
[    0.000000] BRK [0x37135000, 0x37135fff] PGTABLE
[    0.000000] BRK [0x37136000, 0x37136fff] PGTABLE
[    0.000000] BRK [0x37137000, 0x37137fff] PGTABLE
[    0.000000] BRK [0x37138000, 0x37138fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x31ea1000-0x34f47fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[    0.000000] ACPI: XSDT 0x00000000DA386070 00005C (v01 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: FACP 0x00000000DA38FCF8 0000F4 (v04 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: DSDT 0x00000000DA386160 009B94 (v02 ALASKA A M I    00000012 INTL 20051117)
[    0.000000] ACPI: FACS 0x00000000DA39DF80 000040
[    0.000000] ACPI: APIC 0x00000000DA38FDF0 000072 (v03 ALASKA A M I    01072009 AMI  00010013)
[    0.000000] ACPI: MCFG 0x00000000DA38FE68 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
[    0.000000] ACPI: HPET 0x00000000DA38FEA8 000038 (v01 ALASKA A M I    01072009 AMI. 00000005)
[    0.000000] ACPI: SSDT 0x00000000DA38FEE0 000460 (v01 IdeRef IdeTable 00001000 INTL 20091112)
[    0.000000] ACPI: SSDT 0x00000000DA390340 0009AA (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
[    0.000000] ACPI: SSDT 0x00000000DA390CF0 000A92 (v01 PmRef  CpuPm    00003000 INTL 20051117)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000011f5fffff]
[    0.000000] NODE_DATA(0) allocated [mem 0x11f5d3000-0x11f5fdfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
[    0.000000]   Normal   [mem 0x0000000100000000-0x000000011f5fffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009dfff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000001fffffff]
[    0.000000]   node   0: [mem 0x0000000020200000-0x0000000040003fff]
[    0.000000]   node   0: [mem 0x0000000040005000-0x00000000d99b9fff]
[    0.000000]   node   0: [mem 0x00000000da3e7000-0x00000000dacbbfff]
[    0.000000]   node   0: [mem 0x00000000dafdd000-0x00000000daffffff]
[    0.000000]   node   0: [mem 0x0000000100000000-0x000000011f5fffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000011f5fffff]
[    0.000000] On node 0 totalpages: 1021518
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3997 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 13891 pages used for memmap
[    0.000000]   DMA32 zone: 889009 pages, LIFO batch:31
[    0.000000]   Normal zone: 2008 pages used for memmap
[    0.000000]   Normal zone: 128512 pages, LIFO batch:31
[    0.000000] Reserving Intel graphics memory at 0x00000000dba00000-0x00000000df9fffff
[    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 2, 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 0x0009e000-0x0009efff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-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 0x20000000-0x201fffff]
[    0.000000] PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
[    0.000000] PM: Registered nosave memory: [mem 0xd99ba000-0xda11efff]
[    0.000000] PM: Registered nosave memory: [mem 0xda11f000-0xda39efff]
[    0.000000] PM: Registered nosave memory: [mem 0xda39f000-0xda3a3fff]
[    0.000000] PM: Registered nosave memory: [mem 0xda3a4000-0xda3e6fff]
[    0.000000] PM: Registered nosave memory: [mem 0xdacbc000-0xdafdcfff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb000000-0xdb7fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdb800000-0xdf9fffff]
[    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
[    0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
[    0.000000] e820: [mem 0xdfa00000-0xf7ffffff] 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:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] percpu: Embedded 45 pages/cpu @ffff8bf8df200000 s146584 r8192 d29544 u524288
[    0.000000] pcpu-alloc: s146584 r8192 d29544 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: 1005534
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-45-generic root=UUID=62afdd5d-fc99-4e5a-9a8c-828cda1aec4e ro quiet splash vt.handoff=7
[    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: 3877840K/4086072K available (12300K kernel code, 2482K rwdata, 4000K rodata, 2376K init, 2372K bss, 208232K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] Kernel/User page tables isolation: enabled
[    0.000000] ftrace: allocating 37867 entries in 148 pages
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
[    0.000000] vt handoff: transparent VT on vt#7
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.004000] tsc: Detected 3292.560 MHz processor
[    0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 6585.12 BogoMIPS (lpj=13170240)
[    0.004000] pid_max: default: 32768 minimum: 301
[    0.004000] ACPI: Core revision 20170531
[    0.010730] ACPI: 4 ACPI AML tables successfully acquired and loaded
[    0.010746] Security Framework initialized
[    0.010747] Yama: becoming mindful.
[    0.010760] AppArmor: AppArmor initialized
[    0.011278] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
[    0.011536] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.011551] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.011561] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
[    0.011706] CPU: Physical Processor ID: 0
[    0.011707] CPU: Processor Core ID: 0
[    0.011711] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[    0.011712] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
[    0.011713] FEATURE SPEC_CTRL Present
[    0.011714] mce: CPU supports 7 MCE banks
[    0.011721] CPU0: Thermal monitoring enabled (TM1)
[    0.011727] process: using mwait in idle threads
[    0.011729] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[    0.011730] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[    0.011731] Spectre V2 mitigation: Mitigation: Full generic retpoline
[    0.011732] Spectre V2 mitigation: Speculation control IBPB supported IBRS supported
[    0.011732] Spectre V2 mitigation: Retpoline compiled kernel.  Defaulting IBRS to disabled
[    0.011733] Speculative Store Bypass: Vulnerable
[    0.011822] Freeing SMP alternatives memory: 36K
[    0.014748] smpboot: Max logical packages: 2
[    0.015145] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.054840] TSC deadline timer enabled
[    0.054842] smpboot: CPU0: Intel(R) Core(TM) i3-3225 CPU @ 3.30GHz (family: 0x6, model: 0x3a, stepping: 0x9)
[    0.054890] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[    0.054906] ... version:                3
[    0.054906] ... bit width:              48
[    0.054907] ... generic registers:      4
[    0.054907] ... value mask:             0000ffffffffffff
[    0.054908] ... max period:             00007fffffffffff
[    0.054908] ... fixed-purpose events:   3
[    0.054908] ... event mask:             000000070000000f
[    0.054934] Hierarchical SRCU implementation.
[    0.055504] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.055518] smp: Bringing up secondary CPUs ...
[    0.055578] x86: Booting SMP configuration:
[    0.055579] .... node  #0, CPUs:      #1 #2 #3
[    0.058586] smp: Brought up 1 node, 4 CPUs
[    0.058586] smpboot: Total of 4 processors activated (26340.48 BogoMIPS)
[    0.060171] devtmpfs: initialized
[    0.060171] x86/mm: Memory block size: 128MB
[    0.060283] evm: security.selinux
[    0.060284] evm: security.SMACK64
[    0.060284] evm: security.SMACK64EXEC
[    0.060284] evm: security.SMACK64TRANSMUTE
[    0.060285] evm: security.SMACK64MMAP
[    0.060285] evm: security.ima
[    0.060286] evm: security.capability
[    0.060296] PM: Registering ACPI NVS region [mem 0xda11f000-0xda39efff] (2621440 bytes)
[    0.060296] PM: Registering ACPI NVS region [mem 0xda3a4000-0xda3e6fff] (274432 bytes)
[    0.060296] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.060296] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    0.060296] pinctrl core: initialized pinctrl subsystem
[    0.060296] RTC time:  7:15:49, date: 06/22/18
[    0.060296] NET: Registered protocol family 16
[    0.060380] cpuidle: using governor ladder
[    0.060380] cpuidle: using governor menu
[    0.060380] PCCT header not found.
[    0.060380] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[    0.060380] ACPI: bus type PCI registered
[    0.060380] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.060380] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[    0.060380] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[    0.060380] PCI: Using configuration type 1 for base access
[    0.060380] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[    0.060796] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.060796] ACPI: Added _OSI(Module Device)
[    0.060796] ACPI: Added _OSI(Processor Device)
[    0.060796] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.060796] ACPI: Added _OSI(Processor Aggregator Device)
[    0.060796] ACPI: Executed 1 blocks of module-level executable AML code
[    0.064946] ACPI: Dynamic OEM Table Load:
[    0.064946] ACPI: SSDT 0xFFFF8BF8D9F79000 00083B (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
[    0.064946] ACPI: Dynamic OEM Table Load:
[    0.064946] ACPI: SSDT 0xFFFF8BF8D9E9CC00 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
[    0.064946] ACPI: Dynamic OEM Table Load:
[    0.064946] ACPI: SSDT 0xFFFF8BF8D9EE9000 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
[    0.064947] ACPI: Interpreter enabled
[    0.064947] ACPI: (supports S0 S3 S4 S5)
[    0.064947] ACPI: Using IOAPIC for interrupt routing
[    0.064947] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.065031] ACPI: Enabled 15 GPEs in block 00 to 3F
[    0.072354] ACPI: Power Resource [FN00] (off)
[    0.072414] ACPI: Power Resource [FN01] (off)
[    0.072467] ACPI: Power Resource [FN02] (off)
[    0.072521] ACPI: Power Resource [FN03] (off)
[    0.072573] ACPI: Power Resource [FN04] (off)
[    0.072964] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[    0.072967] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.073054] acpi PNP0A08:00: _OSC failed (AE_ERROR); disabling ASPM
[    0.073375] PCI host bridge to bus 0000:00
[    0.073377] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.073378] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.073379] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.073380] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[    0.073381] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[    0.073382] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[    0.073383] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[    0.073384] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[    0.073385] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[    0.073386] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfeafffff window]
[    0.073387] pci_bus 0000:00: root bus resource [mem 0x11f600000-0xfffffffff window]
[    0.073389] pci_bus 0000:00: root bus resource [bus 00-3e]
[    0.073395] pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
[    0.073465] pci 0000:00:02.0: [8086:0162] type 00 class 0x030000
[    0.073473] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[    0.073477] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[    0.073480] pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
[    0.073562] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[    0.073584] pci 0000:00:14.0: reg 0x10: [mem 0xf7d00000-0xf7d0ffff 64bit]
[    0.073648] pci 0000:00:14.0: PME# supported from D3hot D3cold
[    0.073709] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[    0.073731] pci 0000:00:16.0: reg 0x10: [mem 0xf7d19000-0xf7d1900f 64bit]
[    0.073798] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[    0.073863] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[    0.073883] pci 0000:00:1a.0: reg 0x10: [mem 0xf7d17000-0xf7d173ff]
[    0.073962] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[    0.074023] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[    0.074043] pci 0000:00:1b.0: reg 0x10: [mem 0xf7d10000-0xf7d13fff 64bit]
[    0.074111] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.074177] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[    0.074254] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.074324] pci 0000:00:1c.4: [8086:1e18] type 01 class 0x060400
[    0.074401] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[    0.074467] pci 0000:00:1c.6: [8086:244e] type 01 class 0x060401
[    0.074544] pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
[    0.074610] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[    0.074630] pci 0000:00:1d.0: reg 0x10: [mem 0xf7d16000-0xf7d163ff]
[    0.074708] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[    0.074769] pci 0000:00:1f.0: [8086:1e4a] type 00 class 0x060100
[    0.074922] pci 0000:00:1f.2: [8086:1e00] type 00 class 0x01018f
[    0.074937] pci 0000:00:1f.2: reg 0x10: [io  0xf110-0xf117]
[    0.074943] pci 0000:00:1f.2: reg 0x14: [io  0xf100-0xf103]
[    0.074950] pci 0000:00:1f.2: reg 0x18: [io  0xf0f0-0xf0f7]
[    0.074956] pci 0000:00:1f.2: reg 0x1c: [io  0xf0e0-0xf0e3]
[    0.074962] pci 0000:00:1f.2: reg 0x20: [io  0xf0d0-0xf0df]
[    0.074969] pci 0000:00:1f.2: reg 0x24: [io  0xf0c0-0xf0cf]
[    0.075046] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[    0.075062] pci 0000:00:1f.3: reg 0x10: [mem 0xf7d15000-0xf7d150ff 64bit]
[    0.075081] pci 0000:00:1f.3: reg 0x20: [io  0xf040-0xf05f]
[    0.075151] pci 0000:00:1f.5: [8086:1e08] type 00 class 0x010185
[    0.075166] pci 0000:00:1f.5: reg 0x10: [io  0xf0b0-0xf0b7]
[    0.075172] pci 0000:00:1f.5: reg 0x14: [io  0xf0a0-0xf0a3]
[    0.075179] pci 0000:00:1f.5: reg 0x18: [io  0xf090-0xf097]
[    0.075185] pci 0000:00:1f.5: reg 0x1c: [io  0xf080-0xf083]
[    0.075191] pci 0000:00:1f.5: reg 0x20: [io  0xf070-0xf07f]
[    0.075198] pci 0000:00:1f.5: reg 0x24: [io  0xf060-0xf06f]
[    0.075313] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.075379] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[    0.075419] pci 0000:02:00.0: reg 0x10: [mem 0xf7c00000-0xf7c3ffff 64bit]
[    0.075432] pci 0000:02:00.0: reg 0x18: [io  0xe000-0xe07f]
[    0.075567] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.075636] pci 0000:00:1c.4: PCI bridge to [bus 02]
[    0.075639] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    0.075642] pci 0000:00:1c.4:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.075703] pci 0000:03:00.0: [8086:244e] type 01 class 0x060401
[    0.075846] pci 0000:03:00.0: supports D1 D2
[    0.075847] pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.075885] pci 0000:00:1c.6: PCI bridge to [bus 03-04] (subtractive decode)
[    0.075893] pci 0000:00:1c.6:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.075895] pci 0000:00:1c.6:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.075896] pci 0000:00:1c.6:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.075897] pci 0000:00:1c.6:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.075898] pci 0000:00:1c.6:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.075899] pci 0000:00:1c.6:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.075900] pci 0000:00:1c.6:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
[    0.075901] pci 0000:00:1c.6:   bridge window [mem 0x000e0000-0x000e3fff window] (subtractive decode)
[    0.075902] pci 0000:00:1c.6:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    0.075904] pci 0000:00:1c.6:   bridge window [mem 0xdfa00000-0xfeafffff window] (subtractive decode)
[    0.075905] pci 0000:00:1c.6:   bridge window [mem 0x11f600000-0xfffffffff window] (subtractive decode)
[    0.076030] pci 0000:03:00.0: PCI bridge to [bus 04] (subtractive decode)
[    0.076054] pci 0000:03:00.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
[    0.076055] pci 0000:03:00.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
[    0.076056] pci 0000:03:00.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
[    0.076057] pci 0000:03:00.0:   bridge window [mem 0x000d0000-0x000d3fff window] (subtractive decode)
[    0.076058] pci 0000:03:00.0:   bridge window [mem 0x000d4000-0x000d7fff window] (subtractive decode)
[    0.076059] pci 0000:03:00.0:   bridge window [mem 0x000d8000-0x000dbfff window] (subtractive decode)
[    0.076060] pci 0000:03:00.0:   bridge window [mem 0x000dc000-0x000dffff window] (subtractive decode)
[    0.076061] pci 0000:03:00.0:   bridge window [mem 0x000e0000-0x000e3fff window] (subtractive decode)
[    0.076062] pci 0000:03:00.0:   bridge window [mem 0x000e4000-0x000e7fff window] (subtractive decode)
[    0.076063] pci 0000:03:00.0:   bridge window [mem 0xdfa00000-0xfeafffff window] (subtractive decode)
[    0.076064] pci 0000:03:00.0:   bridge window [mem 0x11f600000-0xfffffffff window] (subtractive decode)
[    0.076505] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.076542] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.076578] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 6 10 11 12 14 15)
[    0.076614] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 *10 11 12 14 15)
[    0.076648] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.076684] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 11 12 14 15) *0, disabled.
[    0.076719] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 *5 6 10 11 12 14 15)
[    0.076754] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
[    0.077072] SCSI subsystem initialized
[    0.077080] libata version 3.00 loaded.
[    0.077080] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.077080] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.077080] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.077080] vgaarb: loaded
[    0.077080] ACPI: bus type USB registered
[    0.077080] usbcore: registered new interface driver usbfs
[    0.077080] usbcore: registered new interface driver hub
[    0.077080] usbcore: registered new device driver usb
[    0.077080] EDAC MC: Ver: 3.0.0
[    0.077080] PCI: Using ACPI for IRQ routing
[    0.077434] PCI: pci_cache_line_size set to 64 bytes
[    0.077474] e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
[    0.077475] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
[    0.077476] e820: reserve RAM buffer [mem 0xd99ba000-0xdbffffff]
[    0.077477] e820: reserve RAM buffer [mem 0xdacbc000-0xdbffffff]
[    0.077478] e820: reserve RAM buffer [mem 0xdb000000-0xdbffffff]
[    0.077478] e820: reserve RAM buffer [mem 0x11f600000-0x11fffffff]
[    0.077536] NetLabel: Initializing
[    0.077537] NetLabel:  domain hash size = 128
[    0.077537] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.077548] NetLabel:  unlabeled traffic allowed by default
[    0.077558] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[    0.077558] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[    0.080014] clocksource: Switched to clocksource hpet
[    0.087549] VFS: Disk quotas dquot_6.6.0
[    0.087564] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.087636] AppArmor: AppArmor Filesystem Enabled
[    0.087668] pnp: PnP ACPI init
[    0.087741] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[    0.087744] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.087811] system 00:01: [io  0x0680-0x069f] has been reserved
[    0.087812] system 00:01: [io  0x0200-0x020f] has been reserved
[    0.087814] system 00:01: [io  0xffff] has been reserved
[    0.087815] system 00:01: [io  0xffff] has been reserved
[    0.087816] system 00:01: [io  0x0400-0x0453] has been reserved
[    0.087817] system 00:01: [io  0x0458-0x047f] has been reserved
[    0.087818] system 00:01: [io  0x0500-0x057f] has been reserved
[    0.087820] system 00:01: [io  0x164e-0x164f] has been reserved
[    0.087822] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.087839] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.087874] system 00:03: [io  0x0454-0x0457] has been reserved
[    0.087876] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[    0.087965] system 00:04: [io  0x0a00-0x0a0f] has been reserved
[    0.087966] system 00:04: [io  0x0a30-0x0a3f] has been reserved
[    0.087967] system 00:04: [io  0x0a20-0x0a2f] has been reserved
[    0.087969] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.087999] pnp 00:05: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.088178] pnp 00:06: [dma 0 disabled]
[    0.088214] pnp 00:06: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.088412] pnp 00:07: [dma 0 disabled]
[    0.088493] pnp 00:07: Plug and Play ACPI device, IDs PNP0400 (active)
[    0.088529] system 00:08: [io  0x04d0-0x04d1] has been reserved
[    0.088531] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.088686] system 00:09: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.088688] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[    0.088690] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.088691] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.088692] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[    0.088694] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[    0.088695] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[    0.088696] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[    0.088697] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
[    0.088699] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
[    0.088700] system 00:09: [mem 0xdfa00000-0xdfa00fff] has been reserved
[    0.088702] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.088812] system 00:0a: [mem 0x20000000-0x201fffff] has been reserved
[    0.088813] system 00:0a: [mem 0x40004000-0x40004fff] has been reserved
[    0.088815] system 00:0a: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.088829] pnp: PnP ACPI: found 11 devices
[    0.094610] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.094650] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.094660] pci 0000:00:1c.4: PCI bridge to [bus 02]
[    0.094663] pci 0000:00:1c.4:   bridge window [io  0xe000-0xefff]
[    0.094666] pci 0000:00:1c.4:   bridge window [mem 0xf7c00000-0xf7cfffff]
[    0.094673] pci 0000:03:00.0: PCI bridge to [bus 04]
[    0.094695] pci 0000:00:1c.6: PCI bridge to [bus 03-04]
[    0.094705] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.094706] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.094708] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.094709] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.094710] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.094711] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.094712] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.094713] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.094714] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.094715] pci_bus 0000:00: resource 13 [mem 0xdfa00000-0xfeafffff window]
[    0.094716] pci_bus 0000:00: resource 14 [mem 0x11f600000-0xfffffffff window]
[    0.094718] pci_bus 0000:02: resource 0 [io  0xe000-0xefff]
[    0.094719] pci_bus 0000:02: resource 1 [mem 0xf7c00000-0xf7cfffff]
[    0.094720] pci_bus 0000:03: resource 4 [io  0x0000-0x0cf7 window]
[    0.094721] pci_bus 0000:03: resource 5 [io  0x0d00-0xffff window]
[    0.094722] pci_bus 0000:03: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.094723] pci_bus 0000:03: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.094724] pci_bus 0000:03: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.094725] pci_bus 0000:03: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.094726] pci_bus 0000:03: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.094727] pci_bus 0000:03: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.094729] pci_bus 0000:03: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.094730] pci_bus 0000:03: resource 13 [mem 0xdfa00000-0xfeafffff window]
[    0.094731] pci_bus 0000:03: resource 14 [mem 0x11f600000-0xfffffffff window]
[    0.094732] pci_bus 0000:04: resource 4 [io  0x0000-0x0cf7 window]
[    0.094733] pci_bus 0000:04: resource 5 [io  0x0d00-0xffff window]
[    0.094734] pci_bus 0000:04: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.094735] pci_bus 0000:04: resource 7 [mem 0x000d0000-0x000d3fff window]
[    0.094736] pci_bus 0000:04: resource 8 [mem 0x000d4000-0x000d7fff window]
[    0.094737] pci_bus 0000:04: resource 9 [mem 0x000d8000-0x000dbfff window]
[    0.094738] pci_bus 0000:04: resource 10 [mem 0x000dc000-0x000dffff window]
[    0.094739] pci_bus 0000:04: resource 11 [mem 0x000e0000-0x000e3fff window]
[    0.094740] pci_bus 0000:04: resource 12 [mem 0x000e4000-0x000e7fff window]
[    0.094741] pci_bus 0000:04: resource 13 [mem 0xdfa00000-0xfeafffff window]
[    0.094742] pci_bus 0000:04: resource 14 [mem 0x11f600000-0xfffffffff window]
[    0.094811] NET: Registered protocol family 2
[    0.094922] TCP established hash table entries: 32768 (order: 6, 262144 bytes)
[    0.094967] TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
[    0.095017] TCP: Hash tables configured (established 32768 bind 32768)
[    0.095038] UDP hash table entries: 2048 (order: 4, 65536 bytes)
[    0.095047] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
[    0.095078] NET: Registered protocol family 1
[    0.095087] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.140104] pci 0000:02:00.0: set MSI_INTX_DISABLE_BUG flag
[    0.140111] PCI: CLS 64 bytes, default 64
[    0.140144] Unpacking initramfs...
[    0.682090] Freeing initrd memory: 49820K
[    0.682107] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[    0.682109] software IO TLB [mem 0xd59ba000-0xd99ba000] (64MB) mapped at [ffff8bf8959ba000-ffff8bf8999b9fff]
[    0.682283] Scanning for low memory corruption every 60 seconds
[    0.682487] audit: initializing netlink subsys (disabled)
[    0.682520] audit: type=2000 audit(1529651749.682:1): state=initialized audit_enabled=0 res=1
[    0.682757] Initialise system trusted keyrings
[    0.682762] Key type blacklist registered
[    0.682787] workingset: timestamp_bits=36 max_order=20 bucket_order=0
[    0.683563] zbud: loaded
[    0.683908] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.683996] fuse init (API version 7.26)
[    0.684900] Key type asymmetric registered
[    0.684901] Asymmetric key parser 'x509' registered
[    0.684925] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    0.684951] io scheduler noop registered
[    0.684952] io scheduler deadline registered
[    0.684970] io scheduler cfq registered (default)
[    0.685284] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[    0.685284] vesafb: scrolling: redraw
[    0.685285] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[    0.685293] vesafb: framebuffer at 0xe0000000, mapped to 0xffffb27281000000, using 8128k, total 8128k
[    0.685366] Console: switching to colour frame buffer device 240x67
[    0.685388] fb0: VESA VGA frame buffer device
[    0.685397] intel_idle: MWAIT substates: 0x1120
[    0.685398] intel_idle: v0.4.1 model 0x3A
[    0.685481] intel_idle: lapic_timer_reliable_states 0xffffffff
[    0.685550] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.685570] ACPI: Power Button [PWRB]
[    0.685595] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.685608] ACPI: Power Button [PWRF]
[    0.686013] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[    0.686103] thermal LNXTHERM:00: registered as thermal_zone0
[    0.686104] ACPI: Thermal Zone [TZ00] (28 C)
[    0.686256] thermal LNXTHERM:01: registered as thermal_zone1
[    0.686257] ACPI: Thermal Zone [TZ01] (30 C)
[    0.686287] GHES: HEST is not enabled!
[    0.686338] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.706848] 00:06: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.707962] Linux agpgart interface v0.103
[    0.708995] loop: module loaded
[    0.709064] ata_piix 0000:00:1f.2: version 2.13
[    0.709138] ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
[    0.868437] scsi host0: ata_piix
[    0.868553] scsi host1: ata_piix
[    0.868588] ata1: SATA max UDMA/133 cmd 0xf110 ctl 0xf100 bmdma 0xf0d0 irq 19
[    0.868591] ata2: SATA max UDMA/133 cmd 0xf0f0 ctl 0xf0e0 bmdma 0xf0d8 irq 19
[    0.868664] ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
[    1.028021] ata_piix 0000:00:1f.5: SCR access via SIDPR is available but doesn't work
[    1.028197] scsi host2: ata_piix
[    1.028271] scsi host3: ata_piix
[    1.028294] ata3: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf070 irq 19
[    1.028295] ata4: SATA max UDMA/133 cmd 0xf090 ctl 0xf080 bmdma 0xf078 irq 19
[    1.028358] libphy: Fixed MDIO Bus: probed
[    1.028359] tun: Universal TUN/TAP device driver, 1.6
[    1.028397] PPP generic driver version 2.4.2
[    1.028429] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.028434] ehci-pci: EHCI PCI platform driver
[    1.028516] ehci-pci 0000:00:1a.0: EHCI Host Controller
[    1.028520] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[    1.028530] ehci-pci 0000:00:1a.0: debug port 2
[    1.032424] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[    1.032431] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7d17000
[    1.048016] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[    1.048041] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.048042] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.048043] usb usb1: Product: EHCI Host Controller
[    1.048045] usb usb1: Manufacturer: Linux 4.13.0-45-generic ehci_hcd
[    1.048045] usb usb1: SerialNumber: 0000:00:1a.0
[    1.048121] hub 1-0:1.0: USB hub found
[    1.048125] hub 1-0:1.0: 2 ports detected
[    1.048271] ehci-pci 0000:00:1d.0: EHCI Host Controller
[    1.048274] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    1.048283] ehci-pci 0000:00:1d.0: debug port 2
[    1.052169] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[    1.052177] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7d16000
[    1.068016] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[    1.068035] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[    1.068036] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.068037] usb usb2: Product: EHCI Host Controller
[    1.068038] usb usb2: Manufacturer: Linux 4.13.0-45-generic ehci_hcd
[    1.068039] usb usb2: SerialNumber: 0000:00:1d.0
[    1.068108] hub 2-0:1.0: USB hub found
[    1.068112] hub 2-0:1.0: 2 ports detected
[    1.068185] ehci-platform: EHCI generic platform driver
[    1.068192] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.068193] ohci-pci: OHCI PCI platform driver
[    1.068198] ohci-platform: OHCI generic platform driver
[    1.068202] uhci_hcd: USB Universal Host Controller Interface driver
[    1.068278] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.068282] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[    1.069351] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
[    1.069355] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[    1.069418] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[    1.069419] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.069420] usb usb3: Product: xHCI Host Controller
[    1.069421] usb usb3: Manufacturer: Linux 4.13.0-45-generic xhci-hcd
[    1.069422] usb usb3: SerialNumber: 0000:00:14.0
[    1.069489] hub 3-0:1.0: USB hub found
[    1.069496] hub 3-0:1.0: 4 ports detected
[    1.069693] xhci_hcd 0000:00:14.0: xHCI Host Controller
[    1.069696] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[    1.069719] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[    1.069720] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.069721] usb usb4: Product: xHCI Host Controller
[    1.069722] usb usb4: Manufacturer: Linux 4.13.0-45-generic xhci-hcd
[    1.069723] usb usb4: SerialNumber: 0000:00:14.0
[    1.069789] hub 4-0:1.0: USB hub found
[    1.069796] hub 4-0:1.0: 4 ports detected
[    1.070020] i8042: PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    1.070020] i8042: PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    1.070144] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.070213] mousedev: PS/2 mouse device common for all mice
[    1.070312] rtc_cmos 00:02: RTC can wake from S4
[    1.070430] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.070453] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[    1.070457] i2c /dev entries driver
[    1.070489] device-mapper: uevent: version 1.0.3
[    1.070533] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[    1.070537] intel_pstate: Intel P-state driver initializing
[    1.070734] ledtrig-cpu: registered to indicate activity on CPUs
[    1.071047] NET: Registered protocol family 10
[    1.074959] Segment Routing with IPv6
[    1.074972] NET: Registered protocol family 17
[    1.074978] Key type dns_resolver registered
[    1.075146] RAS: Correctable Errors collector initialized.
[    1.075167] microcode: sig=0x306a9, pf=0x2, revision=0x1f
[    1.075208] microcode: Microcode Update Driver: v2.2.
[    1.075253] sched_clock: Marking stable (1075205465, 0)->(1074782357, 423108)
[    1.075383] registered taskstats version 1
[    1.075388] Loading compiled-in X.509 certificates
[    1.077734] Loaded X.509 cert 'Build time autogenerated kernel key: 24ba534bfe070da4d424c42b012b6cc11341dbc6'
[    1.077748] zswap: loaded using pool lzo/zbud
[    1.081154] Key type big_key registered
[    1.081156] Key type trusted registered
[    1.082844] Key type encrypted registered
[    1.082846] AppArmor: AppArmor sha1 policy hashing enabled
[    1.082848] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.082861] evm: HMAC attrs: 0x1
[    1.083041]   Magic number: 6:114:269
[    1.083131] rtc_cmos 00:02: setting system clock to 2018-06-22 07:15:50 UTC (1529651750)
[    1.083166] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.083166] EDD information not available.
[    1.083200] PM: Hibernation image not present or could not be loaded.
[    1.089652] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    1.376053] usb 1-1: new high-speed USB device number 2 using ehci-pci
[    1.396049] usb 2-1: new high-speed USB device number 2 using ehci-pci
[    1.524414] usb 1-1: New USB device found, idVendor=8087, idProduct=0024
[    1.524415] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.524693] hub 1-1:1.0: USB hub found
[    1.524949] hub 1-1:1.0: 6 ports detected
[    1.544391] usb 2-1: New USB device found, idVendor=8087, idProduct=0024
[    1.544394] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[    1.544689] hub 2-1:1.0: USB hub found
[    1.544945] hub 2-1:1.0: 8 ports detected
[    1.692047] tsc: Refined TSC clocksource calibration: 3292.520 MHz
[    1.692057] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2f75b1eac7a, max_idle_ns: 440795210882 ns
[    1.812048] usb 1-1.3: new full-speed USB device number 3 using ehci-pci
[    1.832026] usb 2-1.5: new full-speed USB device number 3 using ehci-pci
[    1.923401] usb 1-1.3: New USB device found, idVendor=046d, idProduct=c52e
[    1.923404] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.923406] usb 1-1.3: Product: USB Receiver
[    1.923408] usb 1-1.3: Manufacturer: Logitech
[    1.942791] usb 2-1.5: New USB device found, idVendor=04f9, idProduct=0254
[    1.942793] usb 2-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    1.942794] usb 2-1.5: Product: DCP-J315W
[    1.942795] usb 2-1.5: Manufacturer: Brother
[    1.942796] usb 2-1.5: SerialNumber: BROC2F372575
[    2.220039] ata2.01: failed to resume link (SControl 0)
[    2.220118] ata1.01: failed to resume link (SControl 0)
[    2.380097] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 330)
[    2.380110] ata2.01: SATA link down (SStatus 0 SControl 0)
[    2.380119] ata2.01: link offline, clearing class 3 to NONE
[    2.380255] ata1.00: SATA link up 6.0 Gbps (SStatus 133 SControl 330)
[    2.380265] ata1.01: SATA link down (SStatus 0 SControl 0)
[    2.382918] ata1.00: ATA-8: Hitachi HDS721050DLE630, MS1OA650, max UDMA/133
[    2.382921] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    2.387879] ata1.00: configured for UDMA/133
[    2.388067] scsi 0:0:0:0: Direct-Access     ATA      Hitachi HDS72105 A650 PQ: 0 ANSI: 5
[    2.388429] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.388545] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[    2.388547] sd 0:0:0:0: [sda] 4096-byte physical blocks
[    2.388596] sd 0:0:0:0: [sda] Write Protect is off
[    2.388599] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.388717] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.400213] ata2.00: ATAPI: HL-DT-ST DVDRAM GH24NS95, RN00, max UDMA/133
[    2.424304] ata2.00: configured for UDMA/133
[    2.434817] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVDRAM GH24NS95  RN00 PQ: 0 ANSI: 5
[    2.435558]  sda: sda1 sda2 < sda5 >
[    2.436250] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.463874] sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.463876] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.464061] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.464107] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.465901] Freeing unused kernel memory: 2376K
[    2.480034] Write protecting the kernel read-only data: 18432k
[    2.480405] Freeing unused kernel memory: 2024K
[    2.480565] Freeing unused kernel memory: 96K
[    2.482010] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.482010] x86/mm: Checking user space page tables
[    2.483356] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    2.551985] hidraw: raw HID events driver (C) Jiri Kosina
[    2.556018] usb-storage 2-1.5:1.2: USB Mass Storage device detected
[    2.559877] alx 0000:02:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [90:2b:34:99:f0:40]
[    2.562618] usbcore: registered new interface driver usbhid
[    2.562619] usbhid: USB HID core driver
[    2.568015] scsi host4: usb-storage 2-1.5:1.2
[    2.568086] usbcore: registered new interface driver usb-storage
[    2.569523] usbcore: registered new interface driver uas
[    2.582104] alx 0000:02:00.0 eth1: renamed from eth0
[    2.583335] [drm] Memory usable by graphics device = 2048M
[    2.583338] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
[    2.583340] fb: switching to inteldrmfb from VESA VGA
[    2.583361] Console: switching to colour dummy device 80x25
[    2.583426] [drm] Replacing VGA console driver
[    2.583502] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/0003:046D:C52E.0001/input/input3
[    2.589409] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.589410] [drm] Driver supports precise vblank timestamp query.
[    2.591830] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[    2.595129] [drm] Initialized i915 1.6.0 20170619 for 0000:00:02.0 on minor 0
[    2.595587] ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
[    2.595811] acpi device:4c: registered as cooling_device9
[    2.595883] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input4
[    2.640246] hid-generic 0003:046D:C52E.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input0
[    2.640498] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.1/0003:046D:C52E.0002/input/input5
[    2.700151] hid-generic 0003:046D:C52E.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:1a.0-1.3/input1
[    2.716068] clocksource: Switched to clocksource tsc
[    2.871267] fbcon: inteldrmfb (fb0) is primary device
[    2.871321] Console: switching to colour frame buffer device 240x67
[    2.871346] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[    3.268807] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    3.594138] scsi 4:0:0:0: Direct-Access     Brother  DCP-J315W        1.00 PQ: 0 ANSI: 2
[    3.594332] sd 4:0:0:0: Attached scsi generic sg2 type 0
[    3.664309] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[    4.827141] random: crng init done
[    5.339786] ip_tables: (C) 2000-2006 Netfilter Core Team
[    5.441234] systemd[1]: systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
[    5.460081] systemd[1]: Detected architecture x86-64.
[    5.479103] systemd[1]: Set hostname to <pierre>.
[    7.416712] systemd[1]: Listening on udev Kernel Socket.
[    7.416766] systemd[1]: Reached target Remote File Systems.
[    7.416797] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[    7.416805] systemd[1]: Reached target User and Group Name Lookups.
[    7.416840] systemd[1]: Listening on Journal Socket.
[    7.416968] systemd[1]: Created slice User and Session Slice.
[    7.417076] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[    8.682943] lp: driver loaded but no devices found
[    8.832258] ppdev: user-space parallel port driver
[    8.881698] parport_pc 00:07: reported by Plug and Play ACPI
[    8.881768] parport0: PC-style at 0x378, irq 7 [PCSPP,TRISTATE]
[    8.984142] lp0: using parport0 (interrupt-driven).
[    9.929183] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
[   10.373894] systemd-journald[296]: Received request to flush runtime journal from PID 1
[   10.930700] kvm: disabled by bios
[   12.952079] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   12.982531] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20170531/utaddress-247)
[   12.982535] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.982537] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170531/utaddress-247)
[   12.982540] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.982540] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170531/utaddress-247)
[   12.982543] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.982543] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000051F (\LED) (20170531/utaddress-247)
[   12.982546] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20170531/utaddress-247)
[   12.982548] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[   12.982548] lpc_ich: Resource conflict(s) found affecting gpio_ich
[   13.280708] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[   13.280710] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[   13.280710] RAPL PMU: hw unit of domain package 2^-16 Joules
[   13.280711] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[   14.356851] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[   14.649768] kvm: disabled by bios
[   14.685273] kvm: disabled by bios
[   14.717217] kvm: disabled by bios
[   14.775164] usblp 2-1.5:1.0: usblp1: USB Bidirectional printer dev 3 if 0 alt 0 proto 2 vid 0x04F9 pid 0x0254
[   14.775185] usbcore: registered new interface driver usblp
[   15.256799] snd_hda_codec_via hdaudioC0D2: autoconfig for VT2020: line_outs=1 (0x24/0x0/0x0/0x0/0x0) type:line
[   15.256802] snd_hda_codec_via hdaudioC0D2:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.256803] snd_hda_codec_via hdaudioC0D2:    hp_outs=1 (0x28/0x0/0x0/0x0/0x0)
[   15.256804] snd_hda_codec_via hdaudioC0D2:    mono: mono_out=0x0
[   15.256805] snd_hda_codec_via hdaudioC0D2:    dig-out=0x2e/0x0
[   15.256805] snd_hda_codec_via hdaudioC0D2:    inputs:
[   15.256807] snd_hda_codec_via hdaudioC0D2:      Front Mic=0x29
[   15.256808] snd_hda_codec_via hdaudioC0D2:      Rear Mic=0x2b
[   15.256809] snd_hda_codec_via hdaudioC0D2:      Line=0x2a
[   15.360093] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input6
[   15.360142] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input7
[   15.360187] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
[   15.360232] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[   15.360276] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[   15.360320] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[   16.166675] audit: type=1400 audit(1529651765.583:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="content-hub-clipboard" pid=519 comm="apparmor_parser"
[   16.166691] audit: type=1400 audit(1529651765.583:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="content-hub-peer-picker" pid=520 comm="apparmor_parser"
[   16.451579] audit: type=1400 audit(1529651765.868:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=521 comm="apparmor_parser"
[   16.451582] audit: type=1400 audit(1529651765.868:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=521 comm="apparmor_parser"
[   16.481390] audit: type=1400 audit(1529651765.898:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-freerdp/freerdp-session-wrapper" pid=522 comm="apparmor_parser"
[   16.481393] audit: type=1400 audit(1529651765.898:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-freerdp/freerdp-session-wrapper//chromium" pid=522 comm="apparmor_parser"
[   16.630014] audit: type=1400 audit(1529651766.046:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="url-dispatcher-bad-url-helper" pid=594 comm="apparmor_parser"
[   16.645013] audit: type=1400 audit(1529651766.061:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-uccsconfigure/uccsconfigure-session-wrapper" pid=592 comm="apparmor_parser"
[   16.645017] audit: type=1400 audit(1529651766.061:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-uccsconfigure/uccsconfigure-session-wrapper//chromium" pid=592 comm="apparmor_parser"
[   16.821401] audit: type=1400 audit(1529651766.238:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ubuntu-printing-app" pid=599 comm="apparmor_parser"
[   17.077529] intel_rapl: Found RAPL domain package
[   17.077530] intel_rapl: Found RAPL domain core
[   17.077531] intel_rapl: Found RAPL domain uncore
[   18.643796] Adding 4084732k swap on /dev/sda5.  Priority:-1 extents:1 across:4084732k FS
[   31.838479] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   31.838869] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[   31.839636] alx 0000:02:00.0 eth1: NIC Up: 1 Gbps Full
[   31.839841] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[   90.107553] rfkill: input handler disabled
[ 8815.380811] perf: interrupt took too long (2510 > 2500), lowering kernel.perf_event_max_sample_rate to 79500
[13350.383829] PM: Syncing filesystems ... done.
[13350.955368] PM: Preparing system for sleep (mem)
[13350.955518] Freezing user space processes ... (elapsed 0.002 seconds) done.
[13350.958056] OOM killer disabled.
[13350.958057] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[13350.959404] PM: Suspending system (mem)
[13350.959426] Suspending console(s) (use no_console_suspend to debug)
[13350.959676] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[13350.967548] parport_pc 00:07: disabled
[13350.967724] serial 00:06: disabled
[13351.185078] sd 0:0:0:0: [sda] Stopping disk
[13351.825477] PM: suspend of devices complete after 865.922 msecs
[13351.845401] PM: late suspend of devices complete after 19.920 msecs
[13351.865428] PM: noirq suspend of devices complete after 20.022 msecs
[13351.865707] ACPI: Preparing to enter system sleep state S3
[13351.866033] PM: Saving platform NVS memory
[13351.866059] Disabling non-boot CPUs ...
[13351.882722] smpboot: CPU 1 is now offline
[13351.901721] IRQ 23: no longer affine to CPU2
[13351.901726] IRQ 24: no longer affine to CPU2
[13351.901729] IRQ 25: no longer affine to CPU2
[13351.902739] smpboot: CPU 2 is now offline
[13351.925638] IRQ 1: no longer affine to CPU3
[13351.925642] IRQ 7: no longer affine to CPU3
[13351.925646] IRQ 8: no longer affine to CPU3
[13351.925649] IRQ 9: no longer affine to CPU3
[13351.925654] IRQ 16: no longer affine to CPU3
[13351.925658] IRQ 19: no longer affine to CPU3
[13351.926671] smpboot: CPU 3 is now offline
[13351.927926] ACPI: Low-level resume complete
[13351.927966] PM: Restoring platform NVS memory
[13351.928264] Suspended for 64559.798 seconds
[13351.928866] Enabling non-boot CPUs ...
[13351.928903] x86: Booting SMP configuration:
[13351.928904] smpboot: Booting Node 0 Processor 1 APIC 0x2
[13351.931559]  cache: parent cpu1 should not be sleeping
[13351.931728] CPU1 is up
[13351.931759] smpboot: Booting Node 0 Processor 2 APIC 0x1
[13351.934390]  cache: parent cpu2 should not be sleeping
[13351.934539] CPU2 is up
[13351.934571] smpboot: Booting Node 0 Processor 3 APIC 0x3
[13351.937184]  cache: parent cpu3 should not be sleeping
[13351.937588] CPU3 is up
[13351.940052] ACPI: Waking up from system sleep state S3
[13351.959149] PM: noirq resume of devices complete after 18.507 msecs
[13351.959656] PM: early resume of devices complete after 0.480 msecs
[13351.960151] sd 0:0:0:0: [sda] Starting disk
[13351.963149] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20170531/psargs-364)
[13351.963161] ACPI Error: Method parse/execution failed \_SB.PCI0.SAT0.CHN0.DRV0._GTF, AE_NOT_FOUND (20170531/psparse-550)
[13351.963382] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20170531/psargs-364)
[13351.963391] ACPI Error: Method parse/execution failed \_SB.PCI0.SAT0.CHN1.DRV0._GTF, AE_NOT_FOUND (20170531/psparse-550)
[13351.964457] serial 00:06: activated
[13351.965166] parport_pc 00:07: activated
[13352.099170] PM: resume of devices complete after 139.510 msecs
[13352.099346] PM: Finishing wakeup.
[13352.099347] OOM killer enabled.
[13352.099347] Restarting tasks ... 
[13352.099493] pci_bus 0000:04: Allocating resources
[13352.099513] pci 0000:03:00.0: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
[13352.099516] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
[13352.099518] pci 0000:03:00.0: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
[13352.099526] pci 0000:03:00.0: BAR 14: assigned [mem 0xdfb00000-0xdfcfffff]
[13352.099532] pci 0000:03:00.0: BAR 15: assigned [mem 0x11f600000-0x11f7fffff 64bit pref]
[13352.099536] pci 0000:03:00.0: BAR 13: assigned [io  0x2000-0x2fff]
[13352.099538] pci 0000:03:00.0: PCI bridge to [bus 04]
[13352.099542] pci 0000:03:00.0:   bridge window [io  0x2000-0x2fff]
[13352.099551] pci 0000:03:00.0:   bridge window [mem 0xdfb00000-0xdfcfffff]
[13352.099558] pci 0000:03:00.0:   bridge window [mem 0x11f600000-0x11f7fffff 64bit pref]
[13352.107802] done.
[13352.108114] video LNXVIDEO:00: Restoring backlight state
[13353.314725] ata2.01: failed to resume link (SControl 0)
[13353.314792] ata1.01: failed to resume link (SControl 0)
[13353.474775] ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 330)
[13353.474787] ata2.01: SATA link down (SStatus 0 SControl 0)
[13353.474797] ata2.01: link offline, clearing class 3 to NONE
[13353.494959] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20170531/psargs-364)
[13353.494965] ACPI Error: Method parse/execution failed \_SB.PCI0.SAT0.CHN1.DRV0._GTF, AE_NOT_FOUND (20170531/psparse-550)
[13353.534928] ata2.00: configured for UDMA/133
[13356.294797] ata1.00: SATA link up 6.0 Gbps (SStatus 133 SControl 330)
[13356.294808] ata1.01: SATA link down (SStatus 0 SControl 0)
[13356.297218] ACPI Error: [DSSP] Namespace lookup failure, AE_NOT_FOUND (20170531/psargs-364)
[13356.297223] ACPI Error: Method parse/execution failed \_SB.PCI0.SAT0.CHN0.DRV0._GTF, AE_NOT_FOUND (20170531/psparse-550)
[13356.302103] ata1.00: configured for UDMA/133
[13359.288122] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[13359.288898] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[13359.290493] alx 0000:02:00.0 eth1: NIC Up: 1 Gbps Full
[13359.290715] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready
[14882.906529] perf: interrupt took too long (3138 > 3137), lowering kernel.perf_event_max_sample_rate to 63500
[17189.110771] PM: Syncing filesystems ... done.
[17189.950920] PM: Preparing system for sleep (mem)
[17189.951078] Freezing user space processes ... (elapsed 0.002 seconds) done.
[17189.953825] OOM killer disabled.
[17189.953826] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done.
[17189.955227] PM: Suspending system (mem)
[17189.955251] Suspending console(s) (use no_console_suspend to debug)
[17189.955536] sd 0:0:0:0: [sda] Synchronizing SCSI cache
[17189.958740] parport_pc 00:07: disabled
[17189.958950] serial 00:06: disabled
[17190.068437] sd 0:0:0:0: [sda] Stopping disk
[17190.698503] PM: suspend of devices complete after 743.101 msecs
[17190.718462] PM: late suspend of devices complete after 19.955 msecs
[17190.738465] PM: noirq suspend of devices complete after 19.998 msecs
[17190.738809] ACPI: Preparing to enter system sleep state S3
[17190.739176] PM: Saving

Hors ligne

#4 Le 25/06/2018, à 16:05

pierrequiroule

Re : wine et port usb

Bon aucune réponse sad

J'ai essayé ça au pif, sans savoir si les ports usb / tty ni le port com sont les bons :

ln -s /dev/ttyUSB0 ~/.wine/dosdevices/com1

Redémarrage de l'utilitaire et de wine, ça ne marche pas mieux...

Hors ligne

#5 Le 25/06/2018, à 16:21

LeJediGris

Re : wine et port usb

Salut,

Débranche ton truc, rebranche-le puis donne le retour de

dmesg | tail -30

Puis

lsusb -v

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#6 Le 25/06/2018, à 16:39

pierrequiroule

Re : wine et port usb

Merci du retour,

dmesg | tail -30
[49100.197506] usb 2-1.6: New USB device found, idVendor=0483, idProduct=6669
[49100.197510] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[49100.197512] usb 2-1.6: Product: General Virtual Port
[49100.197514] usb 2-1.6: Manufacturer: General
[49100.197516] usb 2-1.6: SerialNumber: 00000000050C
[49100.198083] cdc_acm 2-1.6:1.0: ttyACM0: USB ACM device
[49153.622766] usb 2-1.6: USB disconnect, device number 10
[49156.662713] usb 2-1.6: new full-speed USB device number 11 using ehci-pci
[49156.773244] usb 2-1.6: New USB device found, idVendor=0483, idProduct=6669
[49156.773248] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[49156.773250] usb 2-1.6: Product: General Virtual Port
[49156.773252] usb 2-1.6: Manufacturer: General
[49156.773254] usb 2-1.6: SerialNumber: 00000000050C
[49156.773664] cdc_acm 2-1.6:1.0: ttyACM0: USB ACM device
[49240.918171] usb 2-1.6: USB disconnect, device number 11
[49243.442364] usb 2-1.6: new full-speed USB device number 12 using ehci-pci
[49243.552488] usb 2-1.6: New USB device found, idVendor=0483, idProduct=6669
[49243.552491] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[49243.552493] usb 2-1.6: Product: General Virtual Port
[49243.552495] usb 2-1.6: Manufacturer: General
[49243.552496] usb 2-1.6: SerialNumber: 00000000050C
[49243.552802] cdc_acm 2-1.6:1.0: ttyACM0: USB ACM device
[49608.531666] usb 2-1.6: USB disconnect, device number 12
[51239.207292] usb 2-1.6: new full-speed USB device number 13 using ehci-pci
[51239.317775] usb 2-1.6: New USB device found, idVendor=0483, idProduct=6669
[51239.317780] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[51239.317783] usb 2-1.6: Product: General Virtual Port
[51239.317785] usb 2-1.6: Manufacturer: General
[51239.317788] usb 2-1.6: SerialNumber: 00000000050C
[51239.318264] cdc_acm 2-1.6:1.0: ttyACM0: USB ACM device
pierre@pierre:~$ 
lsusb -v

Bus 002 Device 013: ID 0483:6669 STMicroelectronics 
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            2 Communications
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0        64
  idVendor           0x0483 STMicroelectronics
  idProduct          0x6669 
  bcdDevice            2.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 3 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           67
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xc0
      Self Powered
    MaxPower              100mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         2 Communications
      bInterfaceSubClass      2 Abstract (modem)
      bInterfaceProtocol      1 AT-commands (v.25ter)
      iInterface              0 
      CDC Header:
        bcdCDC               1.10
      CDC Call Management:
        bmCapabilities       0x00
        bDataInterface          1
      CDC ACM:
        bmCapabilities       0x02
          line coding and serial state
      CDC Union:
        bMasterInterface        0
        bSlaveInterface         1 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval             255
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass        10 CDC Data
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0

Bus 002 Device 007: ID 04f9:0254 Brother Industries, Ltd 
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               1.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x04f9 Brother Industries, Ltd
  idProduct          0x0254 
  bcdDevice            1.00
  iManufacturer           1 Brother
  iProduct                2 DCP-J315W
  iSerial                 3 BROC2F372575
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           85
    bNumInterfaces          3
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xc0
      Self Powered
    MaxPower                2mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         7 Printer
      bInterfaceSubClass      1 Printer
      bInterfaceProtocol      2 Bidirectional
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x01  EP 1 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0010  1x 16 bytes
        bInterval               0
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           3
      bInterfaceClass       255 Vendor Specific Class
      bInterfaceSubClass    255 Vendor Specific Subclass
      bInterfaceProtocol    255 Vendor Specific Protocol
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x03  EP 3 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0010  1x 16 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x84  EP 4 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x85  EP 5 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval             100
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        2
      bAlternateSetting       0
      bNumEndpoints           2
      bInterfaceClass         8 Mass Storage
      bInterfaceSubClass      6 SCSI
      bInterfaceProtocol     80 Bulk-Only
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x08  EP 8 OUT
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x89  EP 9 IN
        bmAttributes            2
          Transfer Type            Bulk
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0040  1x 64 bytes
        bInterval               0
Device Status:     0x0001
  Self Powered

Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x8087 Intel Corp.
  idProduct          0x0024 Integrated Rate Matching Hub
  bcdDevice            0.00
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0002  1x 2 bytes
        bInterval              12

Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            4.13
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 001 Device 003: ID 046d:c52e Logitech, Inc. MK260 Wireless Combo Receiver
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            0 (Defined at Interface level)
  bDeviceSubClass         0 
  bDeviceProtocol         0 
  bMaxPacketSize0         8
  idVendor           0x046d Logitech, Inc.
  idProduct          0xc52e MK260 Wireless Combo Receiver
  bcdDevice           15.00
  iManufacturer           1 
  iProduct                2 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           59
    bNumInterfaces          2
    bConfigurationValue     1
    iConfiguration          4 
    bmAttributes         0xa0
      (Bus Powered)
      Remote Wakeup
    MaxPower               98mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      1 Keyboard
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength      59
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0008  1x 8 bytes
        bInterval               8
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        1
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         3 Human Interface Device
      bInterfaceSubClass      1 Boot Interface Subclass
      bInterfaceProtocol      2 Mouse
      iInterface              0 
        HID Device Descriptor:
          bLength                 9
          bDescriptorType        33
          bcdHID               1.11
          bCountryCode            0 Not supported
          bNumDescriptors         1
          bDescriptorType        34 Report
          wDescriptorLength     177
         Report Descriptors: 
           ** UNAVAILABLE **
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x82  EP 2 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0014  1x 20 bytes
        bInterval               2

Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x8087 Intel Corp.
  idProduct          0x0024 Integrated Rate Matching Hub
  bcdDevice            0.00
  iManufacturer           0 
  iProduct                0 
  iSerial                 0 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0001  1x 1 bytes
        bInterval              12

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         0 Full speed (or root) hub
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            4.13
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               3.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         3 
  bMaxPacketSize0         9
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0003 3.0 root hub
  bcdDevice            4.13
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           31
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12
        bMaxBurst               0

Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Couldn't open device, some information will be missing
Device Descriptor:
  bLength                18
  bDescriptorType         1
  bcdUSB               2.00
  bDeviceClass            9 Hub
  bDeviceSubClass         0 Unused
  bDeviceProtocol         1 Single TT
  bMaxPacketSize0        64
  idVendor           0x1d6b Linux Foundation
  idProduct          0x0002 2.0 root hub
  bcdDevice            4.13
  iManufacturer           3 
  iProduct                2 
  iSerial                 1 
  bNumConfigurations      1
  Configuration Descriptor:
    bLength                 9
    bDescriptorType         2
    wTotalLength           25
    bNumInterfaces          1
    bConfigurationValue     1
    iConfiguration          0 
    bmAttributes         0xe0
      Self Powered
      Remote Wakeup
    MaxPower                0mA
    Interface Descriptor:
      bLength                 9
      bDescriptorType         4
      bInterfaceNumber        0
      bAlternateSetting       0
      bNumEndpoints           1
      bInterfaceClass         9 Hub
      bInterfaceSubClass      0 Unused
      bInterfaceProtocol      0 Full speed (or root) hub
      iInterface              0 
      Endpoint Descriptor:
        bLength                 7
        bDescriptorType         5
        bEndpointAddress     0x81  EP 1 IN
        bmAttributes            3
          Transfer Type            Interrupt
          Synch Type               None
          Usage Type               Data
        wMaxPacketSize     0x0004  1x 4 bytes
        bInterval              12

Hors ligne

#7 Le 25/06/2018, à 16:43

LeJediGris

Re : wine et port usb

Re,

C'est donc:

Dmesg a écrit :

cdc_acm 2-1.6:1.0: ttyACM0: USB ACM device

Reste plus qu'a trouver le bon port com de wine !!

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#8 Le 25/06/2018, à 16:49

pierrequiroule

Re : wine et port usb

ok

Je fais donc :

ln -s /dev/ttyACM0 ~/.wine/dosdevices/com1

?

Hors ligne

#9 Le 25/06/2018, à 16:51

pierrequiroule

Re : wine et port usb

Bon je viens de tenter, je ne comprends pas le retour :

ln -s /dev/ttyACM0 ~/.wine/dosdevices/com1
ln: impossible de créer le lien symbolique '/home/pierre/.wine/dosdevices/com1': Le fichier existe

Hors ligne

#10 Le 25/06/2018, à 16:57

LeJediGris

Re : wine et port usb

Re-

Oui c'est normal tu avait déjà crée ce lien avec ttyUSB0...

Le mieux est de supprimer ce fichier com1 et de refaire le lien avec le ttyACM0.

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#11 Le 25/06/2018, à 17:10

pierrequiroule

Re : wine et port usb

Bon je viens de tenter en essayant com1 jusqu'à com4, ça marche toujours pas.
Ça peut aller jusqu'à combien les ports com ?

Hors ligne

#12 Le 25/06/2018, à 20:07

pierrequiroule

Re : wine et port usb

Reste plus qu'a trouver le bon port com de wine !!

Y a-t-il une solution pour trouver ce port com de wine ?
Je peux les tester un par un, mais jusqu'à combien (j'ai tenté jusqu'à com11) ?

J'ai trouvé ceci intéressant, mais ça me dépasse un peu...

Hors ligne

#13 Le 27/06/2018, à 11:23

LeJediGris

Re : wine et port usb

Salut,

que donne

ls -l ~/.wine/dosdevices/

Tu peux aussi regarder cette documentation.

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#14 Le 27/06/2018, à 13:48

pierrequiroule

Re : wine et port usb

Salut et merci du retour,

-l ~/.wine/dosdevices/
total 0
lrwxrwxrwx 1 pierre pierre 10 févr. 14  2013 c: -> ../drive_c
lrwxrwxrwx 1 pierre pierre 12 juin  25 17:50 com11 -> /dev/ttyACM0
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 d:: -> /dev/sr0
lrwxrwxrwx 1 pierre pierre 20 déc.  11  2014 e: -> /media/pierre/GARMIN
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 e:: -> /dev/sdc
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 f:: -> /dev/sdb
lrwxrwxrwx 1 pierre pierre  8 déc.  11  2014 g:: -> /dev/sdd
lrwxrwxrwx 1 pierre pierre  1 févr. 14  2013 z: -> /

Hors ligne

#15 Le 27/06/2018, à 13:54

pierrequiroule

Re : wine et port usb

lrwxrwxrwx 1 pierre pierre 12 juin  25 17:50 com11 -> /dev/ttyACM0

fait suite à

$ ln -s /dev/ttyACM0 ~/.wine/dosdevices/com11

Je me suis arrêté là, je pourrais aller jusqu'à com99...

Hors ligne

#16 Le 27/06/2018, à 14:01

LeJediGris

Re : wine et port usb

Re-

Tu as quelle version de Wine ?, assures-toi que tu fais bien partie du group "sys" ou "dialout". Donne le retour de

groups

Peux-tu forcer le port "com" dans ton logiciel sous wine ? (dans sa documentation ?)

Ensuite il faut vérifier que la clé de registre est bien configurée :

La documentation wine a écrit :

To override Wine's default device mapping, run wine regedit and create string entries in HKEY_LOCAL_MACHINE\Software\Wine\Ports where the entry name is the Windows device name and the entry value is the path to the Unix device. Continuing with the above example, to make COM1 the first USB-attached serial port, create an entry with the name COM1 and the value /dev/ttyUSB0. You might also want to create an entry named COM5 with no value to remove the COM5 device which is now a duplicate of COM1. After editing the registry, shut down Wine with wineserver -k and the next time Wine runs a program, your changes will take effect.

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#17 Le 27/06/2018, à 15:18

pierrequiroule

Re : wine et port usb

winetricks 0.0+20170823-1

groups
pierre adm cdrom sudo dip plugdev lpadmin sambashare

Je n'ai aucune option dans le logiciel win. Probablement que sur une machine win, il marche avec n'importe quel usb ?

Hors ligne

#18 Le 27/06/2018, à 16:16

LeJediGris

Re : wine et port usb

Re-

Fais

sudo adduser pierre sys
sudo adduser pierre dialout

J'espère que cela suffira sinon va falloir taper comme indiqué dans la doc dans les clés de registres... car il peut y avoir confusion entre ce qui est fait automatiquement par wine et les liens que nous avons crées.

Pour être bien sûr, refait aussi le ln avec com1. Faut peut-être aussi redémarrer wine après:

wineserver -k 

et redémarre ton appli win après.

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#19 Le 27/06/2018, à 16:41

pierrequiroule

Re : wine et port usb

J'ai désinstallé winetricks et playonlinux, puis installé le paquet wine-stable et suivi la doc pour la configuration.
Me voici avec wine 2.0.2

ln -s /dev/ttyACM0 ~/.wine/dosdevices/com1
ls -l ~/.wine/dosdevices/
total 0
lrwxrwxrwx 1 pierre pierre 10 févr. 14  2013 c: -> ../drive_c
lrwxrwxrwx 1 pierre pierre 12 juin  27 16:32 com1 -> /dev/ttyACM0
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 d:: -> /dev/sr0
lrwxrwxrwx 1 pierre pierre 20 déc.  11  2014 e: -> /media/pierre/GARMIN
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 e:: -> /dev/sdc
lrwxrwxrwx 1 pierre pierre  8 févr. 14  2013 f:: -> /dev/sdb
lrwxrwxrwx 1 pierre pierre  8 déc.  11  2014 g:: -> /dev/sdd
lrwxrwxrwx 1 pierre pierre  1 févr. 14  2013 z: -> /

J'ai exécuté les commandes que tu as indiqué, mais ça ne marche toujours pas sad

Hors ligne

#20 Le 27/06/2018, à 16:52

LeJediGris

Re : wine et port usb

Re-

La je sèche un peu, il faudrait vérifier avec une console wine (tty) que le port com1 cause ou pas...

Une autre solution radicale, si ton ordinateur le permet, c'est d'installer W$ sur une machine virtuelle. Ca marche mieux que Wine !!
C'est quoi ton PC ?

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#21 Le 27/06/2018, à 17:16

pierrequiroule

Re : wine et port usb

il faudrait vérifier avec une console wine (tty) que le port com1 cause ou pas...

Euh, c'est à dire ?
Mon PC est un assemblé maison.

Hors ligne

#22 Le 27/06/2018, à 17:35

pierrequiroule

Re : wine et port usb

Voici ce que me dit sysinfo :
système
cpumémoire
stockage
carte mère
carte graphique
carte son
network

D'ailleurs ça commence à ramer sévèrement. Je me demande si je peux me contenter de lui rajouter de la ram...

Hors ligne

#23 Le 28/06/2018, à 08:36

LeJediGris

Re : wine et port usb

Salut,

Déjà faudrait que tu upgrade/downgrade sur une version stable LTS donc soit la version 18.04 ou revenir vers une 16.04.4 LTS qui est maintenue jusqu'en 2021...

Et oui pour, et je pense que dans ton cas c'est la meilleure solution, installer une machine virtuelle il va falloir remettre de la RAM...ensuite installer virtualbox et y installer un W$, as-tu un exemplaire d'un windows 7 ou autre sous la main ?

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne

#24 Le 28/06/2018, à 11:17

pierrequiroule

Re : wine et port usb

J'avais commencé à regardé du côté de virtualbox. Une belle usine à gaz et gourmande...
Pour ce qui est de wine, je crois que je n'ai eu que des échecs.
Au final le plus simple est que j'aille faire la màj de mon machin chez un pote avec windoze.

Hors ligne

#25 Le 28/06/2018, à 13:38

LeJediGris

Re : wine et port usb

Re-

Non, tu l'as aussi en appli directement dans la logithèque Ubuntu et c'est très simple à mettre en oeuvre !! Il te faut juste après un ISO de W$ et sa licence.
Ceci dit si ton pote habite pas loin...
C'est quoi ton équipement USB ? (marque, type...)

A+


%NOINDEX%
Matos Asus Zenbook
"Home Made" Monstro: core i7 9700+32Go de mémoire+SSD QVO Samsung 1To +MoBo Asus Prime Z390P
+ "Terminator", core i5 3570, 16Go, SSD Intel 520 sous Mint 19.3, Freebox Revolution

Hors ligne