Quantcast
Aktuelles
Digital Eliteboard - Das Digitale Technik Forum

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Registriere dich noch heute kostenlos, um Mitglied zu werden! Sobald du angemeldet bist, kannst du auf unserer Seite aktiv teilnehmen, indem du deine eigenen Themen und Beiträge erstellst und dich über deinen eigenen Posteingang mit anderen Mitgliedern unterhalten kannst! Zudem bekommst du Zutritt zu Bereichen, welche für Gäste verwehrt bleiben

Support Ubuntu Dualboot; Win 10 startet nicht mehr nach Update

reini3547

Newbie
Registriert
30. August 2009
Beiträge
8
Reaktionspunkte
7
Punkte
23
Hallo, leider hat es mich jetzt auch erwischt..Ubuntu startet ganz normal, Win 10 nicht mehr! Folgende Sachen habe ich schon ausprobiert: Grub 2 neu installiert, Win10 Systemwiederherstellung, Eingabe chkdsk, alles ohne Erfolg. Bei der Bootreienfolge unter Grub ist mir aufgefallen, das bei Windows 10 (on /dev/sda1) und nicht Windows 10 (loader) (auf /dev/sda1) steht. Ist das der Bootfehler für Windows? Kann mir die Gemeinde da weiterhelfen?
 
Master Boot Record (MBR) reparieren
Code:
https://praxistipps.chip.de/master-boot-record-mbr-reparieren_9628

Ist zwar für Vista bzw Win7 hilft aber vielleicht auch bei Win10.

MfG
 
Hallo Derek Buegel, danke für die Hilfe. Bei Eingabeaufforderung (fixmbr c: und "fixboot c:) kommt die Meldung: ist entweder falsch
geschrieben oder konnte nicht gefunden werden. Ist der Befehl unter X:\Sources> fixboot c: richtig? Oben steht: Administrator: X:\
windows\SYSTEM32\cmd.exe.
Danke rl
 
Es war ein Versuch. Leider kann ich dann auch nicht weiter helfen.

Musst wohl warten bis ein anderer User eine Idee hat.

MfG
 
Ich habe leider von Ubuntu nicht hinreichend Ahnung, kann im Bezug auf den MBR von Windows bei Dual Boot Systemen allerdings ein kleines Tool empfehlen: Dual-boot Repair.
Ausgestattet mit einer automatischen Reparaturfunktion der Windows Master Boot Records und anderen Möglichkeiten führt die Software im Grunde die Befehle automatisch aus, die im Tipp aus #2 aufgeführt werden.

Näheres zu Dual-boot Repair und dessen Download unter:
Code:
https://www.boyans.net/dual-boot-repair-windows-10.html

Viel Erfolg

Fisher
 
Hi,

poste mal die grub.conf.

Ansonsten gilt:

Erst Windows, DANN Linux, Linux erkennt das installierte Windows.

Es empfiehlt sich des Weiteren, unter Windows eine bzw. zwei Partitionen (Swap) einzurichten für die Linuxdistribution.

Gruß

Gesendet von meinem POCOPHONE F1 mit Tapatalk
 
Zuletzt bearbeitet:
Hallo Fisher, Danke für den Hinweis...Wird die entpackte Zip-Datei beim booten erkannt?

Hallo Axel, Die Grub-Konfig ist sehr groß. Habe die mit cat /boot/grub/grub.cfg ausgelesen. Soll ich die so reinkopieren, oder
willst Du nur bestimmte Zeilen sehen?

rl
 
Hi,

Poste ruhig komplett, das ist keinerlei Geheimnis. ;)

Gruß

Gesendet von meinem POCOPHONE F1 mit Tapatalk
 
Hoffentlich ist das so richtig...

# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
set have_grubenv=true
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="0"
fi

if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi

export menuentry_id_option

if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi

function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function recordfail {
set recordfail=1
if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}

if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
font="/usr/share/grub/unicode.pf2"
fi

if loadfont $font ; then
set gfxmode=auto
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=de_DE
insmod gettext
fi
terminal_output gfxterm
if [ "${recordfail}" = 1 ] ; then
set timeout=10
else
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30,0; then
clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload="${1}"
if [ "${1}" = "keep" ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ "${recordfail}" != 1 ]; then
if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=text
fi
else
set linux_gfx_mode=keep
fi
else
set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
linux /boot/vmlinuz-4.13.0-46-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.13.0-46-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
menuentry 'Ubuntu, with Linux 4.13.0-46-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-46-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-46-generic ...'
linux /boot/vmlinuz-4.13.0-46-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-46-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-46-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-46-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-46-generic ...'
linux /boot/vmlinuz-4.13.0-46-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-46-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-43-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-43-generic ...'
linux /boot/vmlinuz-4.13.0-43-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-43-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-43-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-43-generic ...'
linux /boot/vmlinuz-4.13.0-43-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-43-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-41-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-41-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-41-generic ...'
linux /boot/vmlinuz-4.13.0-41-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-41-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-41-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-41-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-41-generic ...'
linux /boot/vmlinuz-4.13.0-41-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-41-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-39-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-39-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-39-generic ...'
linux /boot/vmlinuz-4.13.0-39-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-39-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-39-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-39-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-39-generic ...'
linux /boot/vmlinuz-4.13.0-39-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-39-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-38-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-38-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-38-generic ...'
linux /boot/vmlinuz-4.13.0-38-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-38-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-38-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-38-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-38-generic ...'
linux /boot/vmlinuz-4.13.0-38-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-38-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-37-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-37-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-37-generic ...'
linux /boot/vmlinuz-4.13.0-37-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-37-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-37-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-37-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-37-generic ...'
linux /boot/vmlinuz-4.13.0-37-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-37-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-36-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-36-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-36-generic ...'
linux /boot/vmlinuz-4.13.0-36-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-36-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-36-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-36-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-36-generic ...'
linux /boot/vmlinuz-4.13.0-36-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-36-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-32-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-32-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-32-generic ...'
linux /boot/vmlinuz-4.13.0-32-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-32-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-32-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-32-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-32-generic ...'
linux /boot/vmlinuz-4.13.0-32-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-32-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-25-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-25-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-25-generic ...'
linux /boot/vmlinuz-4.13.0-25-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-25-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-25-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-25-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-25-generic ...'
linux /boot/vmlinuz-4.13.0-25-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-25-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-21-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-21-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-21-generic ...'
linux /boot/vmlinuz-4.13.0-21-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-21-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-21-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-21-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-21-generic ...'
linux /boot/vmlinuz-4.13.0-21-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-21-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-17-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-17-generic-advanced-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-17-generic ...'
linux /boot/vmlinuz-4.13.0-17-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash $vt_handoff
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-17-generic
}
menuentry 'Ubuntu, with Linux 4.13.0-17-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-4.13.0-17-generic-recovery-1e066a1a-55cf-408c-8ae5-b97b7031f2d6' {
recordfail
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
echo 'Loading Linux 4.13.0-17-generic ...'
linux /boot/vmlinuz-4.13.0-17-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro recovery nomodeset
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.13.0-17-generic
}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###

### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry 'Memory test (memtest86+)' {
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
knetbsd /boot/memtest86+.elf
}
menuentry 'Memory test (memtest86+, serial console 115200)' {
insmod part_msdos
insmod ext2
set root='hd0,msdos7'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos7 --hint-efi=hd0,msdos7 --hint-baremetal=ahci0,msdos7 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
else
search --no-floppy --fs-uuid --set=root 1e066a1a-55cf-408c-8ae5-b97b7031f2d6
fi
linux16 /boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows 10 (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-chain-6A80DD0C80DCDF9D' {
insmod part_msdos
insmod ntfs
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 6A80DD0C80DCDF9D
else
search --no-floppy --fs-uuid --set=root 6A80DD0C80DCDF9D
fi
parttool ${root} hidden-
drivemap -s (hd0) ${root}
chainloader +1
}
set timeout_style=menu
if [ "${timeout}" = 0 ]; then
set timeout=10
fi
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
 
OK,

evtl. kann das @Fisher verspoilern.

Poste auch mal in Spoilern die Ausgabe von:

dmesg

cat /var/log/syslog

Gruß

Gesendet von meinem POCOPHONE F1 mit Tapatalk
 
Ich habe #9 mal verspoilert:
Einfach beim Antworten den zu verspoilernden Text markieren, dann auf das Kreuz klicken, Spoiler auswählen (gegebenenfalls einen treffenden Namen wählen), mit OK bestätigen und fertig:
Du musst angemeldet sein, um Bilder zu sehen.

Alternativ zuerst den Spoiler erstellen und danach den Text zwischen den beiden mittleren eckigen Klammerns platzieren.

Nun kannst Du auch die von @axel erbetenen Daten posten...wenn`s nicht gleich klappt, arbeite ich gerne kurz nach ;)

Gruß

Fisher
 
Hallo Fisher, Danke für`s verspoilern..
Hallo Axel, mein 1. Versuch. Hoffentlich mache ich mich nicht links, mit meinem Daten...
Datei hat mehr als 30000 Zeichen! Die Datei "cat /var/log/syslog" hat bestimmt 4x soviel...
rl

[ 0.000000] random: get_random_bytes called from start_kernel+0x35/0x422 with crng_init=0
[ 0.000000] Linux version 4.13.0-46-generic (buildd@lcy01-amd64-013) (gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu3.2)) #51-Ubuntu SMP Tue Jun 12 12:36:35 UTC 2018 (Ubuntu 4.13.0-46.51-generic 4.13.16)
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] NSC Geode by NSC
[ 0.000000] Cyrix CyrixInstead
[ 0.000000] Centaur CentaurHauls
[ 0.000000] Transmeta GenuineTMx86
[ 0.000000] Transmeta TransmetaCPU
[ 0.000000] UMC UMC UMC UMC
[ 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-0x000000000009d7ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000bc3dcfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bc3dd000-0x00000000bc3e3fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000bc3e4000-0x00000000bce2dfff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000bce2e000-0x00000000bd2f4fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000bd2f5000-0x00000000d6bd6fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d6bd7000-0x00000000d6c64fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000d6c65000-0x00000000d6cc9fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000d6cca000-0x00000000d6e0cfff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000d6e0d000-0x00000000dbffefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000dbfff000-0x00000000dbffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000dd000000-0x00000000df1fffff] 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-0x000000041fdfffff] 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. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 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 = 0x41fe00 max_arch_pfn = 0x1000000
[ 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 0000000000 mask 7C00000000 write-back
[ 0.000000] 1 base 0400000000 mask 7FE0000000 write-back
[ 0.000000] 2 base 00E0000000 mask 7FE0000000 uncachable
[ 0.000000] 3 base 00DE000000 mask 7FFE000000 uncachable
[ 0.000000] 4 base 00DD000000 mask 7FFF000000 uncachable
[ 0.000000] 5 base 041FE00000 mask 7FFFE00000 uncachable
[ 0.000000] 6 disabled
[ 0.000000] 7 disabled
[ 0.000000] 8 disabled
[ 0.000000] 9 disabled
[ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
[ 0.000000] total RAM covered: 16334M
[ 0.000000] Found optimal setting for mtrr clean up
[ 0.000000] gran_size: 64K chunk_size: 64M num_reg: 9 lose cover RAM: 0G
[ 0.000000] e820: update [mem 0xdd000000-0xffffffff] usable ==> reserved
[ 0.000000] found SMP MP-table at [mem 0x000fd710-0x000fd71f] mapped at [c00fd710]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] initial memory mapped: [mem 0x00000000-0x1d3fffff]
[ 0.000000] Base memory trampoline at [c0099000] 99000 size 16384
[ 0.000000] BRK [0x1cf5d000, 0x1cf5dfff] PGTABLE
[ 0.000000] BRK [0x1cf5e000, 0x1cf5efff] PGTABLE
[ 0.000000] RAMDISK: [mem 0x321a9000-0x350cbfff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000F0490 000024 (v02 ALASKA)
[ 0.000000] ACPI: XSDT 0x00000000D6DD2080 00007C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FACP 0x00000000D6DE25F0 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: DSDT 0x00000000D6DD2190 01045E (v02 ALASKA A M I 00000088 INTL 20120711)
[ 0.000000] ACPI: FACS 0x00000000D6E0B080 000040
[ 0.000000] ACPI: APIC 0x00000000D6DE2700 000092 (v03 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: FPDT 0x00000000D6DE2798 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.000000] ACPI: SSDT 0x00000000D6DE27E0 000BEE (v01 Ther_R Ther_Rvp 00001000 INTL 20120711)
[ 0.000000] ACPI: SSDT 0x00000000D6DE33D0 000539 (v01 PmRef Cpu0Ist 00003000 INTL 20051117)
[ 0.000000] ACPI: SSDT 0x00000000D6DE3910 000B74 (v01 CpuRef CpuSsdt 00003000 INTL 20051117)
[ 0.000000] ACPI: MCFG 0x00000000D6DE4488 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.000000] ACPI: HPET 0x00000000D6DE44C8 000038 (v01 ALASKA A M I 01072009 AMI. 00000005)
[ 0.000000] ACPI: SSDT 0x00000000D6DE4500 00036D (v01 SataRe SataTabl 00001000 INTL 20120711)
[ 0.000000] ACPI: SSDT 0x00000000D6DE4870 005B5E (v01 SaSsdt SaSsdt 00003000 INTL 20120711)
[ 0.000000] ACPI: DMAR 0x00000000D6DEA3D0 0000B8 (v01 INTEL BDW 00000001 INTL 00000001)
[ 0.000000] ACPI: Local APIC address 0xfee00000
[ 0.000000] 16006MB HIGHMEM available.
[ 0.000000] 887MB LOWMEM available.
[ 0.000000] mapped low ram: 0 - 377fe000
[ 0.000000] low ram: 0 - 377fe000
[ 0.000000] BRK [0x1cf5f000, 0x1cf5ffff] PGTABLE
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] Normal [mem 0x0000000001000000-0x00000000377fdfff]
[ 0.000000] HighMem [mem 0x00000000377fe000-0x000000041fdfffff]
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x00000000bc3dcfff]
[ 0.000000] node 0: [mem 0x00000000bc3e4000-0x00000000bce2dfff]
[ 0.000000] node 0: [mem 0x00000000bd2f5000-0x00000000d6bd6fff]
[ 0.000000] node 0: [mem 0x00000000d6c65000-0x00000000d6cc9fff]
[ 0.000000] node 0: [mem 0x00000000dbfff000-0x00000000dbffffff]
[ 0.000000] node 0: [mem 0x0000000100000000-0x000000041fdfffff]
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000041fdfffff]
[ 0.000000] On node 0 totalpages: 4154635
[ 0.000000] DMA zone: 40 pages used for memmap
[ 0.000000] DMA zone: 0 pages reserved
[ 0.000000] DMA zone: 3996 pages, LIFO batch:0
[ 0.000000] Normal zone: 2180 pages used for memmap
[ 0.000000] Normal zone: 223230 pages, LIFO batch:31
[ 0.000000] HighMem zone: 3927409 pages, LIFO batch:31
[ 0.000000] Using APIC driver default
[ 0.000000] Reserving Intel graphics memory at 0x00000000dd200000-0x00000000df1fffff
[ 0.000000] ACPI: PM-Timer IO Port: 0x1808
[ 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 8, 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 8 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.000000] e820: [mem 0xdf200000-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:8 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.000000] percpu: Embedded 30 pages/cpu @f540b000 s93324 r0 d29556 u122880
[ 0.000000] pcpu-alloc: s93324 r0 d29556 u122880 alloc=30*4096
[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [0] 4 [0] 5 [0] 6 [0] 7
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 4152415
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.13.0-46-generic root=UUID=1e066a1a-55cf-408c-8ae5-b97b7031f2d6 ro quiet splash vt.handoff=7
[ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] microcode: microcode updated early to revision 0x24, date = 2018-01-21
[ 0.000000] Initializing CPU#0
[ 0.000000] ------------[ cut here ]------------
[ 0.000000] WARNING: CPU: 0 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.000000] Modules linked in:
[ 0.000000] CPU: 0 PID: 0 Comm: swapper Not tainted 4.13.0-46-generic #51-Ubuntu
[ 0.000000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.000000] task: dcb9c180 task.stack: dcb96000
[ 0.000000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.000000] EFLAGS: 00210046 CPU: 0
[ 0.000000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.000000] ESI: dcb9c180 EDI: dcda0000 EBP: dcb97f40 ESP: dcb97f2c
[ 0.000000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.000000] CR0: 80050033 CR2: 00000000 CR3: 1cda0000 CR4: 000406b0
[ 0.000000] DR0: 00000000 DR1: 00000000 DR2: 00000000 DR3: 00000000
[ 0.000000] DR6: fffe0ff0 DR7: 00000400
[ 0.000000] Call Trace:
[ 0.000000] cpu_init+0xc4/0x280
[ 0.000000] ? cea_set_pte+0x4c/0x60
[ 0.000000] trap_init+0x313/0x33a
[ 0.000000] start_kernel+0x203/0x422
[ 0.000000] i386_start_kernel+0x9c/0xa0
[ 0.000000] startup_32_smp+0x16b/0x170
[ 0.000000] Code: dc 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff e9 60 e7 c7 00 83 ca 01 89 d0 ff 15 2c 84 b4 dc ff 15 bc
[ 0.000000] ---[ end trace 8b32d8c4b77dc51f ]---
[ 0.000000] Initializing HighMem for node 0 (000377fe:0041fe00)
[ 0.000000] Initializing Movable for node 0 (00000000:00000000)
[ 0.000000] Memory: 16388848K/16618540K available (8521K kernel code, 881K rwdata, 3328K rodata, 1092K init, 852K bss, 229692K reserved, 0K cma-reserved, 15709636K highmem)
[ 0.000000] virtual kernel memory layout:
fixmap : 0xfff14000 - 0xfffff000 ( 940 kB)
cpu_entry : 0xffa00000 - 0xffb39000 (1252 kB)
pkmap : 0xff800000 - 0xffa00000 (2048 kB)
vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
.init : 0xdcc84000 - 0xdcd95000 (1092 kB)
.data : 0xdc8525b6 - 0xdcc71540 (4219 kB)
.text : 0xdc000000 - 0xdc8525b6 (8521 kB)
[ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.000000] ftrace: allocating 36851 entries in 72 pages
[ 0.000000] Hierarchical RCU implementation.
[ 0.000000] Tasks RCU enabled.
[ 0.000000] NR_IRQS: 2304, nr_irqs: 488, preallocated irqs: 16
[ 0.000000] CPU 0 irqstacks, hard=ea0ce000 soft=ea0d0000
[ 0.000000] vt handoff: transparent VT on vt#7
[ 0.000000] Console: colour dummy device 80x25
[ 0.000000] console [tty0] enabled
[ 0.000000] allocated 16777216 bytes of page_ext
[ 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 3600.003 MHz processor
[ 0.004000] Calibrating delay loop (skipped), value calculated using timer frequency.. 7200.00 BogoMIPS (lpj=14400012)
[ 0.004000] pid_max: default: 32768 minimum: 301
[ 0.004000] ACPI: Core revision 20170531
[ 0.012024] ACPI: 6 ACPI AML tables successfully acquired and loaded
[ 0.012040] Security Framework initialized
[ 0.012041] Yama: becoming mindful.
[ 0.012063] AppArmor: AppArmor initialized
[ 0.012082] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.012083] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.012207] CPU: Physical Processor ID: 0
[ 0.012207] CPU: Processor Core ID: 0
[ 0.012211] FEATURE SPEC_CTRL Present
[ 0.012213] mce: CPU supports 9 MCE banks
[ 0.012219] CPU0: Thermal monitoring enabled (TM1)
[ 0.012227] process: using mwait in idle threads
[ 0.012230] Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
[ 0.012230] Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
[ 0.012231] Spectre V2 mitigation: Mitigation: Full generic retpoline
[ 0.012232] Spectre V2 mitigation: Speculation control IBPB supported IBRS supported
[ 0.012233] Spectre V2 mitigation: Retpoline compiled kernel. Defaulting IBRS to disabled
[ 0.012233] Speculative Store Bypass: Vulnerable
[ 0.012337] Freeing SMP alternatives memory: 32K
[ 0.013583] smpboot: Max logical packages: 2
[ 0.013584] Enabling APIC mode: Flat. Using 1 I/O APICs
[ 0.013879] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=0 pin2=0
[ 0.053579] TSC deadline timer enabled
[ 0.053581] smpboot: CPU0: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (family: 0x6, model: 0x3c, stepping: 0x3)
[ 0.053616] Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.053637] ... version: 3
[ 0.053637] ... bit width: 48
[ 0.053638] ... generic registers: 4
[ 0.053638] ... value mask: 0000ffffffffffff
[ 0.053639] ... max period: 00007fffffffffff
[ 0.053639] ... fixed-purpose events: 3
[ 0.053639] ... event mask: 000000070000000f
[ 0.053659] Hierarchical SRCU implementation.
[ 0.054204] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[ 0.054215] smp: Bringing up secondary CPUs ...
[ 0.054256] CPU 1 irqstacks, hard=e8eba000 soft=e8ebc000
[ 0.054256] x86: Booting SMP configuration:
[ 0.054257] .... node #0, CPUs: #1
[ 0.004000] Initializing CPU#1
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 1 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d90b00 task.stack: e8d8a000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 1
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d90b00 EDI: dcda0000 EBP: e8d8bf68 ESP: e8d8bf54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc520 ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 1 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 1 PID: 0 Comm: swapper/1 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d90b00 task.stack: e8d8a000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 1
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d90b00 EDI: dcda0000 EBP: e8d8bf68 ESP: e8d8bf54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc521 ]---
[ 0.055474] CPU 2 irqstacks, hard=e8f02000 soft=e8f04000
[ 0.055474] #2
[ 0.004000] Initializing CPU#2
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 2 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d90000 task.stack: e8d8c000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 2
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d90000 EDI: dcda0000 EBP: e8d8df68 ESP: e8d8df54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc522 ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 2 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 2 PID: 0 Comm: swapper/2 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d90000 task.stack: e8d8c000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 2
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d90000 EDI: dcda0000 EBP: e8d8df68 ESP: e8d8df54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc523 ]---
[ 0.055474] CPU 3 irqstacks, hard=e8f68000 soft=e8f6a000
[ 0.055474] #3
[ 0.004000] Initializing CPU#3
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 3 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d92c00 task.stack: e8d8e000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 3
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d92c00 EDI: dcda0000 EBP: e8d8ff68 ESP: e8d8ff54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc524 ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 3 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 3 PID: 0 Comm: swapper/3 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d92c00 task.stack: e8d8e000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 3
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d92c00 EDI: dcda0000 EBP: e8d8ff68 ESP: e8d8ff54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc525 ]---
[ 0.056388] CPU 4 irqstacks, hard=e8fa6000 soft=e8fb0000
[ 0.056388] #4
[ 0.004000] Initializing CPU#4
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 4 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d94d00 task.stack: e8d98000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 4
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d94d00 EDI: dcda0000 EBP: e8d99f68 ESP: e8d99f54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc526 ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 4 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 4 PID: 0 Comm: swapper/4 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d94d00 task.stack: e8d98000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 4
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d94d00 EDI: dcda0000 EBP: e8d99f68 ESP: e8d99f54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc527 ]---
[ 0.057350] CPU 5 irqstacks, hard=e8ffa000 soft=e8ffc000
[ 0.057350] #5
[ 0.004000] Initializing CPU#5
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 5 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d91600 task.stack: e8d9a000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 5
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d91600 EDI: dcda0000 EBP: e8d9bf68 ESP: e8d9bf54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc528 ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 5 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 5 PID: 0 Comm: swapper/5 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d91600 task.stack: e8d9a000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 5
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d91600 EDI: dcda0000 EBP: e8d9bf68 ESP: e8d9bf54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc529 ]---
[ 0.057350] CPU 6 irqstacks, hard=e8842000 soft=e8844000
[ 0.057350] #6

Nr. 2

[ 0.004000] Initializing CPU#6
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 6 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d96e00 task.stack: e8d9c000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 6
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d96e00 EDI: dcda0000 EBP: e8d9df68 ESP: e8d9df54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc52a ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 6 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 6 PID: 0 Comm: swapper/6 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d96e00 task.stack: e8d9c000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 6
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d96e00 EDI: dcda0000 EBP: e8d9df68 ESP: e8d9df54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc52b ]---
[ 0.060284] CPU 7 irqstacks, hard=e88a8000 soft=e88aa000
[ 0.060284] #7
[ 0.004000] Initializing CPU#7
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 7 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:361 initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d93700 task.stack: e8d9e000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x158/0x160
[ 0.004000] EFLAGS: 00210006 CPU: 7
[ 0.004000] EAX: 1cb99000 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d93700 EDI: dcda0000 EBP: e8d9ff68 ESP: e8d9ff54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 00 00 c7 40 04 00 00 00 00 89 c8 50 9d 8d 74 26 00 83 c3 10 81 fb f8 3c d9 dc 75 c9 83 c4 08 5b 5e 5f 5d c3 8d b6 00 00 00 00 <0f> ff e9 dd fe ff ff 90 3e 8d 74 26 00 55 89 e5 57 56 53 89 d6
[ 0.004000] ---[ end trace 8b32d8c4b77dc52c ]---
[ 0.004000] ------------[ cut here ]------------
[ 0.004000] WARNING: CPU: 7 PID: 0 at /build/linux-glDhwp/linux-4.13.0/arch/x86/mm/tlb.c:369 initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] Modules linked in:
[ 0.004000] CPU: 7 PID: 0 Comm: swapper/7 Tainted: G W 4.13.0-46-generic #51-Ubuntu
[ 0.004000] Hardware name: Gigabyte Technology Co., Ltd. Z97N-WIFI/Z97N-WIFI, BIOS F2 04/24/2014
[ 0.004000] task: e8d93700 task.stack: e8d9e000
[ 0.004000] EIP: initialize_tlbstate_and_flush+0x55/0x160
[ 0.004000] EFLAGS: 00210046 CPU: 7
[ 0.004000] EAX: 000406b0 EBX: dcbd8d00 ECX: dcbd8e88 EDX: 1cda0000
[ 0.004000] ESI: e8d93700 EDI: dcda0000 EBP: e8d9ff68 ESP: e8d9ff54
[ 0.004000] DS: 007b ES: 007b FS: 00d8 GS: 00e0 SS: 0068
[ 0.004000] CR0: 80050033 CR2: 00000000 CR3: 1cb99000 CR4: 000406b0
[ 0.004000] Call Trace:
[ 0.004000] cpu_init+0xc4/0x280
[ 0.004000] start_secondary+0x19/0x1b0
[ 0.004000] startup_32_smp+0x16b/0x170
[ 0.004000] Code: 00 8b 7b 20 8d 97 00 00 00 40 39 c2 0f 85 1c 01 00 00 a1 c0 b1 c6 dc a9 00 00 02 00 74 0f 64 a1 94 3c d9 dc a9 00 00 02 00 75 02 <0f> ff 90 8d 74 26 00 83 ca 01 89 d0 0f 22 d8 8d 76 00 9c 58 8d
[ 0.004000] ---[ end trace 8b32d8c4b77dc52d ]---
[ 0.061213] smp: Brought up 1 node, 8 CPUs
[ 0.061213] smpboot: Total of 8 processors activated (57600.04 BogoMIPS)
[ 0.064187] devtmpfs: initialized
[ 0.064290] evm: security.selinux
[ 0.064290] evm: security.SMACK64
[ 0.064290] evm: security.SMACK64EXEC
[ 0.064291] evm: security.SMACK64TRANSMUTE
[ 0.064291] evm: security.SMACK64MMAP
[ 0.064292] evm: security.ima
[ 0.064292] evm: security.capability
[ 0.064300] PM: Registering ACPI NVS region [mem 0xbc3dd000-0xbc3e3fff] (28672 bytes)
[ 0.064300] PM: Registering ACPI NVS region [mem 0xd6cca000-0xd6e0cfff] (1323008 bytes)
[ 0.064300] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.064300] futex hash table entries: 2048 (order: 5, 131072 bytes)
[ 0.064300] pinctrl core: initialized pinctrl subsystem
[ 0.064300] RTC time: 19:48:42, date: 09/22/18
[ 0.064300] NET: Registered protocol family 16
[ 0.064380] EISA bus registered
[ 0.064386] cpuidle: using governor ladder
[ 0.064386] cpuidle: using governor menu
[ 0.064386] PCCT header not found.
[ 0.064386] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.064386] ACPI: bus type PCI registered
[ 0.064386] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.064386] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.064386] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
[ 0.064386] PCI: Using MMCONFIG for extended config space
[ 0.064386] PCI: Using configuration type 1 for base access
[ 0.064386] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
[ 0.064961] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.064961] ACPI: Added _OSI(Module Device)
[ 0.064961] ACPI: Added _OSI(Processor Device)
[ 0.064961] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.064961] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.064961] ACPI: Executed 15 blocks of module-level executable AML code
[ 0.070522] ACPI: Dynamic OEM Table Load:
[ 0.070522] ACPI: SSDT 0x00000000E88B3400 0003D3 (v01 PmRef Cpu0Cst 00003001 INTL 20051117)
[ 0.070522] ACPI: Dynamic OEM Table Load:
[ 0.070522] ACPI: SSDT 0x00000000EA00A800 0005AA (v01 PmRef ApIst 00003000 INTL 20051117)
[ 0.070522] ACPI: Dynamic OEM Table Load:
[ 0.070522] ACPI: SSDT 0x00000000E8A22200 000119 (v01 PmRef ApCst 00003000 INTL 20051117)
[ 0.070522] ACPI: Interpreter enabled
[ 0.070522] ACPI: (supports S0 S3 S4 S5)
[ 0.070522] ACPI: Using IOAPIC for interrupt routing
[ 0.070522] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.070522] ACPI: GPE 0x1E active on init
[ 0.072004] ACPI: Enabled 8 GPEs in block 00 to 3F
[ 0.072448] ACPI: Power Resource [PG00] (on)
[ 0.072526] ACPI: Power Resource [PG01] (on)
[ 0.072526] ACPI: Power Resource [PG02] (on)
[ 0.078035] ACPI: Power Resource [FN00] (off)
[ 0.078078] ACPI: Power Resource [FN01] (off)
[ 0.078119] ACPI: Power Resource [FN02] (off)
[ 0.078161] ACPI: Power Resource [FN03] (off)
[ 0.078202] ACPI: Power Resource [FN04] (off)
[ 0.078757] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.078761] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[ 0.079099] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[ 0.079099] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.079402] PCI host bridge to bus 0000:00
[ 0.079403] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.079405] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.079406] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.079406] pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
[ 0.079407] pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
[ 0.079408] pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
[ 0.079409] pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
[ 0.079410] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
[ 0.079411] pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
[ 0.079412] pci_bus 0000:00: root bus resource [mem 0xdf200000-0xfeafffff window]
[ 0.079413] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.079419] pci 0000:00:00.0: [8086:0c00] type 00 class 0x060000
[ 0.079480] pci 0000:00:02.0: [8086:0412] type 00 class 0x030000
[ 0.079487] pci 0000:00:02.0: reg 0x10: [mem 0xf7800000-0xf7bfffff 64bit]
[ 0.079491] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
[ 0.079494] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
[ 0.079550] pci 0000:00:03.0: [8086:0c0c] type 00 class 0x040300
[ 0.079556] pci 0000:00:03.0: reg 0x10: [mem 0xf7e34000-0xf7e37fff 64bit]
[ 0.079635] pci 0000:00:14.0: [8086:8cb1] type 00 class 0x0c0330
[ 0.079651] pci 0000:00:14.0: reg 0x10: [mem 0xf7e20000-0xf7e2ffff 64bit]
[ 0.079699] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.079751] pci 0000:00:19.0: [8086:153b] type 00 class 0x020000
[ 0.079765] pci 0000:00:19.0: reg 0x10: [mem 0xf7e00000-0xf7e1ffff]
[ 0.079771] pci 0000:00:19.0: reg 0x14: [mem 0xf7e3c000-0xf7e3cfff]
[ 0.079777] pci 0000:00:19.0: reg 0x18: [io 0xf080-0xf09f]
[ 0.079824] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
[ 0.079874] pci 0000:00:1a.0: [8086:8cad] type 00 class 0x0c0320
[ 0.079892] pci 0000:00:1a.0: reg 0x10: [mem 0xf7e3b000-0xf7e3b3ff]
[ 0.079961] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.084014] pci 0000:00:1b.0: [8086:8ca0] type 00 class 0x040300
[ 0.084030] pci 0000:00:1b.0: reg 0x10: [mem 0xf7e30000-0xf7e33fff 64bit]
[ 0.084087] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.084140] pci 0000:00:1c.0: [8086:8c90] type 01 class 0x060400
[ 0.084196] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.084274] pci 0000:00:1c.3: [8086:8c96] type 01 class 0x060400
[ 0.084331] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[ 0.084403] pci 0000:00:1c.4: [8086:8c98] type 01 class 0x060400
[ 0.084459] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
[ 0.084534] pci 0000:00:1d.0: [8086:8ca6] type 00 class 0x0c0320
[ 0.084552] pci 0000:00:1d.0: reg 0x10: [mem 0xf7e3a000-0xf7e3a3ff]
[ 0.084621] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.084674] pci 0000:00:1f.0: [8086:8cc4] type 00 class 0x060100
[ 0.084809] pci 0000:00:1f.2: [8086:8c82] type 00 class 0x010601
[ 0.084822] pci 0000:00:1f.2: reg 0x10: [io 0xf0d0-0xf0d7]
[ 0.084827] pci 0000:00:1f.2: reg 0x14: [io 0xf0c0-0xf0c3]
[ 0.084833] pci 0000:00:1f.2: reg 0x18: [io 0xf0b0-0xf0b7]
[ 0.084838] pci 0000:00:1f.2: reg 0x1c: [io 0xf0a0-0xf0a3]
[ 0.084844] pci 0000:00:1f.2: reg 0x20: [io 0xf060-0xf07f]
[ 0.084849] pci 0000:00:1f.2: reg 0x24: [mem 0xf7e39000-0xf7e397ff]
[ 0.084877] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.084922] pci 0000:00:1f.3: [8086:8ca2] type 00 class 0x0c0500
[ 0.084936] pci 0000:00:1f.3: reg 0x10: [mem 0xf7e38000-0xf7e380ff 64bit]
[ 0.084952] pci 0000:00:1f.3: reg 0x20: [io 0xf040-0xf05f]
[ 0.085046] acpiphp: Slot [1] registered
[ 0.085049] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.085102] pci 0000:02:00.0: [1969:1091] type 00 class 0x020000
[ 0.085134] pci 0000:02:00.0: reg 0x10: [mem 0xf7d00000-0xf7d3ffff 64bit]
[ 0.085145] pci 0000:02:00.0: reg 0x18: [io 0xe000-0xe07f]
[ 0.085251] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.100030] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.100032] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.100034] pci 0000:00:1c.3: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.100099] pci 0000:03:00.0: [8086:08b1] type 00 class 0x028000
[ 0.100155] pci 0000:03:00.0: reg 0x10: [mem 0xf7c00000-0xf7c01fff 64bit]
[ 0.100335] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
[ 0.112039] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.112043] pci 0000:00:1c.4: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.112058] pci_bus 0000:00: on NUMA node 0
[ 0.112524] ACPI: PCI Interrupt Link [LNKA] (IRQs 4 6 10 *11 12 14 15)
[ 0.112556] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 6 10 11 12 14 15) *0, disabled.
[ 0.112586] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 6 *10 11 12 14 15)
[ 0.112616] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 6 *10 11 12 14 15)
[ 0.112645] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 6 *10 11 12 14 15)
[ 0.112675] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 6 10 11 12 14 15) *0, disabled.
[ 0.112704] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 6 10 *11 12 14 15)
[ 0.112734] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 6 10 *11 12 14 15)
[ 0.113037] SCSI subsystem initialized
[ 0.113048] libata version 3.00 loaded.
[ 0.113048] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.113048] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.113048] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.113048] vgaarb: loaded
[ 0.113048] ACPI: bus type USB registered
[ 0.113048] usbcore: registered new interface driver usbfs
[ 0.113048] usbcore: registered new interface driver hub
[ 0.113048] usbcore: registered new device driver usb
[ 0.113048] EDAC MC: Ver: 3.0.0
[ 0.113048] PCI: Using ACPI for IRQ routing
[ 0.113188] PCI: pci_cache_line_size set to 64 bytes
[ 0.113227] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
[ 0.113227] e820: reserve RAM buffer [mem 0xbc3dd000-0xbfffffff]
[ 0.113228] e820: reserve RAM buffer [mem 0xbce2e000-0xbfffffff]
[ 0.113229] e820: reserve RAM buffer [mem 0xd6bd7000-0xd7ffffff]
[ 0.113230] e820: reserve RAM buffer [mem 0xd6cca000-0xd7ffffff]
[ 0.113230] e820: reserve RAM buffer [mem 0x41fe00000-0x41fffffff]
[ 0.113281] NetLabel: Initializing
[ 0.113282] NetLabel: domain hash size = 128
[ 0.113282] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.113290] NetLabel: unlabeled traffic allowed by default
[ 0.113299] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.113299] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.116013] clocksource: Switched to clocksource hpet
[ 0.123225] VFS: Disk quotas dquot_6.6.0
[ 0.123234] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[ 0.123290] AppArmor: AppArmor Filesystem Enabled
[ 0.123310] pnp: PnP ACPI init
[ 0.123379] system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
[ 0.123381] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
[ 0.123430] system 00:01: [io 0x0800-0x087f] has been reserved
[ 0.123431] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.123444] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[ 0.123466] system 00:03: [io 0x1854-0x1857] has been reserved
[ 0.123467] system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
[ 0.123546] system 00:04: [io 0x0a00-0x0a0f] has been reserved
[ 0.123547] system 00:04: [io 0x0a30-0x0a3f] has been reserved
[ 0.123548] system 00:04: [io 0x0a20-0x0a2f] has been reserved
[ 0.123549] system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.123691] pnp 00:05: [dma 0 disabled]
[ 0.123722] pnp 00:05: Plug and Play ACPI device, IDs PNP0501 (active)
[ 0.123751] system 00:06: [io 0x04d0-0x04d1] has been reserved
[ 0.123753] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.124021] system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.124022] system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.124023] system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.124024] system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.124025] system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.124026] system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.124027] system 00:07: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.124028] system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.124030] system 00:07: [mem 0xff000000-0xffffffff] has been reserved
[ 0.124031] system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.124032] system 00:07: [mem 0xf7fe0000-0xf7feffff] has been reserved
[ 0.124033] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[ 0.124137] pnp: PnP ACPI: found 8 devices
[ 0.124138] PnPBIOS: Disabled by ACPI PNP
[ 0.159783] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.159801] pci 0000:00:1c.0: PCI bridge to [bus 01]
[ 0.159809] pci 0000:00:1c.3: PCI bridge to [bus 02]
[ 0.159811] pci 0000:00:1c.3: bridge window [io 0xe000-0xefff]
[ 0.159814] pci 0000:00:1c.3: bridge window [mem 0xf7d00000-0xf7dfffff]
[ 0.159819] pci 0000:00:1c.4: PCI bridge to [bus 03]
[ 0.159822] pci 0000:00:1c.4: bridge window [mem 0xf7c00000-0xf7cfffff]
[ 0.159828] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.159829] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.159830] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.159831] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000d3fff window]
[ 0.159832] pci_bus 0000:00: resource 8 [mem 0x000d4000-0x000d7fff window]
[ 0.159833] pci_bus 0000:00: resource 9 [mem 0x000d8000-0x000dbfff window]
[ 0.159833] pci_bus 0000:00: resource 10 [mem 0x000dc000-0x000dffff window]
[ 0.159834] pci_bus 0000:00: resource 11 [mem 0x000e0000-0x000e3fff window]
[ 0.159835] pci_bus 0000:00: resource 12 [mem 0x000e4000-0x000e7fff window]
[ 0.159836] pci_bus 0000:00: resource 13 [mem 0xdf200000-0xfeafffff window]
[ 0.159837] pci_bus 0000:02: resource 0 [io 0xe000-0xefff]
[ 0.159838] pci_bus 0000:02: resource 1 [mem 0xf7d00000-0xf7dfffff]
[ 0.159839] pci_bus 0000:03: resource 1 [mem 0xf7c00000-0xf7cfffff]
[ 0.159914] NET: Registered protocol family 2
[ 0.159998] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[ 0.160016] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[ 0.160024] TCP: Hash tables configured (established 8192 bind 8192)
[ 0.160039] UDP hash table entries: 512 (order: 2, 16384 bytes)
[ 0.160041] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[ 0.160063] NET: Registered protocol family 1
[ 0.160070] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.204072] pci 0000:02:00.0: set MSI_INTX_DISABLE_BUG flag
[ 0.204078] PCI: CLS 64 bytes, default 64
[ 0.204101] Unpacking initramfs...
[ 0.713165] Freeing initrd memory: 48268K
[ 0.713184] DMAR: Host address width 39
[ 0.713185] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.713196] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
[ 0.713197] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.713200] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c20660462 ecap f010da
[ 0.713200] DMAR: RMRR base: 0x000000dbe81000 end: 0x000000dbe8ffff
[ 0.713201] DMAR: RMRR base: 0x000000dd000000 end: 0x000000df1fffff
[ 0.713459] Scanning for low memory corruption every 60 seconds
[ 0.713675] audit: initializing netlink subsys (disabled)
[ 0.713700] audit: type=2000 audit(1537645722.713:1): state=initialized audit_enabled=0 res=1
[ 0.713923] Initialise system trusted keyrings
[ 0.713929] Key type blacklist registered
[ 0.713951] workingset: timestamp_bits=14 max_order=22 bucket_order=8
[ 0.714657] zbud: loaded
[ 0.714821] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.714913] fuse init (API version 7.26)
[ 0.715801] Key type asymmetric registered
[ 0.715802] Asymmetric key parser 'x509' registered
[ 0.715808] bounce: pool size: 64 pages
[ 0.715814] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[ 0.715842] io scheduler noop registered
[ 0.715843] io scheduler deadline registered
[ 0.715869] io scheduler cfq registered (default)
[ 0.716360] pcieport 0000:00:1c.0: Signaling PME with IRQ 24
[ 0.716372] pcieport 0000:00:1c.3: Signaling PME with IRQ 25
[ 0.716383] pcieport 0000:00:1c.4: Signaling PME with IRQ 26
[ 0.716421] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
[ 0.716421] vesafb: scrolling: redraw
[ 0.716422] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.716433] vesafb: framebuffer at 0xe0000000, mapped to 0xf8400000, using 8128k, total 8128k
[ 0.716486] Console: switching to colour frame buffer device 240x67
[ 0.716516] fb0: VESA VGA frame buffer device
[ 0.716523] intel_idle: MWAIT substates: 0x42120
[ 0.716524] intel_idle: v0.4.1 model 0x3C
[ 0.716712] intel_idle: lapic_timer_reliable_states 0xffffffff
[ 0.716783] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.716802] ACPI: Power Button [PWRB]
[ 0.716822] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[ 0.716827] ACPI: Sleep Button [SLPB]
[ 0.716845] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.716860] ACPI: Power Button [PWRF]
[ 0.717271] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
[ 0.717356] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.717356] ACPI: Thermal Zone [TZ00] (28 C)
[ 0.717497] thermal LNXTHERM:01: registered as thermal_zone1
[ 0.717498] ACPI: Thermal Zone [TZ01] (30 C)
[ 0.717522] GHES: HEST is not enabled!
[ 0.717551] isapnp: Scanning for PnP cards...
[ 0.717583] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.738026] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 0.739137] Linux agpgart interface v0.103
[ 0.811050] loop: module loaded
[ 0.811142] libphy: Fixed MDIO Bus: probed
[ 0.811143] tun: Universal TUN/TAP device driver, 1.6
[ 0.811164] PPP generic driver version 2.4.2
[ 0.811186] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.811187] ehci-pci: EHCI PCI platform driver
[ 0.811257] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.811260] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.811268] ehci-pci 0000:00:1a.0: debug port 2
[ 0.815158] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
[ 0.815163] ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7e3b000
[ 0.828043] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.828085] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.828086] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.828087] usb usb1: Product: EHCI Host Controller
[ 0.828088] usb usb1: Manufacturer: Linux 4.13.0-46-generic ehci_hcd
[ 0.828089] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.828220] hub 1-0:1.0: USB hub found
[ 0.828223] hub 1-0:1.0: 2 ports detected
[ 0.828341] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.828344] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.828351] ehci-pci 0000:00:1d.0: debug port 2
[ 0.832248] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
[ 0.832253] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7e3a000
[ 0.848043] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.848085] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.848086] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.848087] usb usb2: Product: EHCI Host Controller
[ 0.848088] usb usb2: Manufacturer: Linux 4.13.0-46-generic ehci_hcd
[ 0.848089] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.848210] hub 2-0:1.0: USB hub found
[ 0.848213] hub 2-0:1.0: 2 ports detected
[ 0.848278] ehci-platform: EHCI generic platform driver
[ 0.848282] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.848284] ohci-pci: OHCI PCI platform driver
[ 0.848289] ohci-platform: OHCI generic platform driver
[ 0.848293] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.848359] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.848361] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 0.849422] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00009810
[ 0.849425] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
[ 0.849474] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002
[ 0.849475] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.849476] usb usb3: Product: xHCI Host Controller
[ 0.849476] usb usb3: Manufacturer: Linux 4.13.0-46-generic xhci-hcd
[ 0.849477] usb usb3: SerialNumber: 0000:00:14.0
[ 0.849597] hub 3-0:1.0: USB hub found

Nr. 3

Die Daten "cat /var/log/syslog" kann ich Dir nicht zumuten....
Gruß

[ 0.849610] hub 3-0:1.0: 14 ports detected
[ 0.851083] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 0.851085] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 0.851109] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003
[ 0.851110] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.851110] usb usb4: Product: xHCI Host Controller
[ 0.851111] usb usb4: Manufacturer: Linux 4.13.0-46-generic xhci-hcd
[ 0.851112] usb usb4: SerialNumber: 0000:00:14.0
[ 0.851230] hub 4-0:1.0: USB hub found
[ 0.851239] hub 4-0:1.0: 6 ports detected
[ 0.852188] i8042: PNP: No PS/2 controller found.
[ 0.852342] mousedev: PS/2 mouse device common for all mice
[ 0.852528] rtc_cmos 00:02: RTC can wake from S4
[ 0.852654] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[ 0.852674] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
[ 0.852677] i2c /dev entries driver
[ 0.852701] device-mapper: uevent: version 1.0.3
[ 0.852734] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: dm-devel@redhat.com
[ 0.852745] platform eisa.0: Probing EISA bus 0
[ 0.852746] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.852747] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.852748] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.852749] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.852749] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.852750] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.852751] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.852752] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.852752] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.852753] platform eisa.0: EISA: Detected 0 cards
[ 0.852755] cpufreq_nforce2: No nForce2 chipset
[ 0.852758] intel_pstate: Intel P-state driver initializing
[ 0.896594] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.896771] NET: Registered protocol family 10
[ 0.900597] Segment Routing with IPv6
[ 0.900610] NET: Registered protocol family 17
[ 0.900613] Key type dns_resolver registered
[ 0.983720] microcode: sig=0x306c3, pf=0x2, revision=0x24
[ 0.983881] microcode: Microcode Update Driver: v2.2.
[ 0.983883] Using IPI No-Shortcut mode
[ 0.983979] sched_clock: Marking stable (983877472, 0)->(985365069, -1487597)
[ 0.984196] registered taskstats version 1
[ 0.984200] Loading compiled-in X.509 certificates
[ 0.987533] Loaded X.509 cert 'Build time autogenerated kernel key: 6ba9335db28c815563f00f2fa3ea11b4dfa21039'
[ 0.987546] zswap: loaded using pool lzo/zbud
[ 0.990742] Key type big_key registered
[ 0.990744] Key type trusted registered
[ 0.992650] Key type encrypted registered
[ 0.992652] AppArmor: AppArmor sha1 policy hashing enabled
[ 0.992664] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[ 0.992675] evm: HMAC attrs: 0x1
[ 0.992903] Magic number: 2:476:850
[ 0.992907] index2: hash matches
[ 0.992908] index2: hash matches
[ 0.992909] index2: hash matches
[ 0.992910] index2: hash matches
[ 0.992910] index2: hash matches
[ 0.992911] index2: hash matches
[ 0.992912] index2: hash matches
[ 0.992913] index2: hash matches
[ 0.993029] rtc_cmos 00:02: setting system clock to 2018-09-22 19:48:43 UTC (1537645723)
[ 0.993082] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 0.993082] EDD information not available.
[ 0.993118] PM: Hibernation image not present or could not be loaded.
[ 1.026758] isapnp: No Plug & Play device found
[ 1.027668] Freeing unused kernel memory: 1092K
[ 1.088193] Write protecting the kernel text: 8524k
[ 1.088327] Write protecting the kernel read-only data: 3336k
[ 1.088328] NX-protecting the kernel data: 5812k
[ 1.088471] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.132613] hidraw: raw HID events driver (C) Jiri Kosina
[ 1.140607] sdhci: Secure Digital Host Controller Interface driver
[ 1.140607] sdhci: Copyright(c) Pierre Ossman
[ 1.153946] pps_core: LinuxPPS API ver. 1 registered
[ 1.153947] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.156964] PTP clock support registered
[ 1.158155] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 1.159318] ahci 0000:00:1f.2: version 3.0
[ 1.159464] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x20 impl SATA mode
[ 1.159467] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst
[ 1.164146] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 1.164147] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.165229] scsi host0: ahci
[ 1.168691] scsi host1: ahci
[ 1.168907] alx 0000:02:00.0 eth0: Qualcomm Atheros AR816x/AR817x Ethernet [74:d4:35:ee:2d:20]
[ 1.169102] scsi host2: ahci
[ 1.169730] scsi host3: ahci
[ 1.169807] scsi host4: ahci
[ 1.169874] scsi host5: ahci
[ 1.169909] ata1: DUMMY
[ 1.169909] ata2: DUMMY
[ 1.169910] ata3: DUMMY
[ 1.169910] ata4: DUMMY
[ 1.169911] ata5: DUMMY
[ 1.169912] ata6: SATA max UDMA/133 abar m2048@0xf7e39000 port 0xf7e39380 irq 28
[ 1.170038] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.184040] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 1.184041] usb 3-4: new low-speed USB device number 2 using xhci_hcd
[ 1.328120] usb 3-4: New USB device found, idVendor=046d, idProduct=c016
[ 1.328122] usb 3-4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.328123] usb 3-4: Product: Optical USB Mouse
[ 1.328123] usb 3-4: Manufacturer: Logitech
[ 1.448038] usb 3-7: new low-speed USB device number 3 using xhci_hcd
[ 1.482449] ata6: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.592472] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.592473] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.592475] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.593126] usb 3-7: New USB device found, idVendor=0566, idProduct=3032
[ 1.593127] usb 3-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 1.637037] ata6.00: ATA-9: ST1000LM014-1EJ164, SM14, max UDMA/133
[ 1.637039] ata6.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 31/32), AA
[ 1.681216] ata6.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
[ 1.681218] ata6.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
[ 1.681219] ata6.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
[ 1.712037] usb 3-8: new full-speed USB device number 4 using xhci_hcd
[ 1.724036] tsc: Refined TSC clocksource calibration: 3599.993 MHz
[ 1.724043] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33e44c68b8d, max_idle_ns: 440795234678 ns
[ 1.725787] ata6.00: configured for UDMA/133
[ 1.725938] scsi 5:0:0:0: Direct-Access ATA ST1000LM014-1EJ1 SM14 PQ: 0 ANSI: 5
[ 1.854066] usb 3-8: New USB device found, idVendor=046d, idProduct=c534
[ 1.854067] usb 3-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.854068] usb 3-8: Product: USB Receiver
[ 1.854068] usb 3-8: Manufacturer: Logitech
[ 1.972037] usb 3-10: new full-speed USB device number 5 using xhci_hcd
[ 2.125567] usb 3-10: New USB device found, idVendor=0a12, idProduct=0001
[ 2.125568] usb 3-10: New USB device strings: Mfr=0, Product=2, SerialNumber=0
[ 2.125569] usb 3-10: Product: CSR8510 A10
[ 2.172931] alx 0000:02:00.0 enp2s0: renamed from eth0
[ 2.180335] usb 1-1: New USB device found, idVendor=8087, idProduct=8009
[ 2.180336] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.180478] hub 1-1:1.0: USB hub found
[ 2.180583] hub 1-1:1.0: 6 ports detected
[ 2.208098] e1000e: probe of 0000:00:19.0 failed with error -3
[ 2.208336] [drm] Memory usable by graphics device = 2048M
[ 2.208338] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
[ 2.208339] fb: switching to inteldrmfb from VESA VGA
[ 2.208359] Console: switching to colour dummy device 80x25
[ 2.208448] [drm] Replacing VGA console driver
[ 2.214083] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[ 2.214084] [drm] Driver supports precise vblank timestamp query.
[ 2.216632] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 2.218706] [drm] Initialized i915 1.6.0 20170619 for 0000:00:02.0 on minor 0
[ 2.219572] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 2.219916] acpi Link ist nicht mehr aktiv.: registered as cooling_device13
[ 2.219961] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3
[ 2.236256] sd 5:0:0:0: Attached scsi generic sg0 type 0
[ 2.236424] sd 5:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 2.236426] sd 5:0:0:0: [sda] 4096-byte physical blocks
[ 2.236467] sd 5:0:0:0: [sda] Write Protect is off
[ 2.236478] sd 5:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.236548] sd 5:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.238673] sda: sda1 sda2 sda3 < sda5 sda6 sda7 >
[ 2.239365] sd 5:0:0:0: [sda] Attached SCSI disk
[ 2.244053] usb 3-11: new full-speed USB device number 6 using xhci_hcd
[ 2.308514] usb 2-1: New USB device found, idVendor=8087, idProduct=8001
[ 2.308517] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.308757] hub 2-1:1.0: USB hub found
[ 2.308858] hub 2-1:1.0: 8 ports detected
[ 2.385092] usb 3-11: New USB device found, idVendor=8087, idProduct=07dc
[ 2.385094] usb 3-11: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 2.399755] usbcore: registered new interface driver usbhid
[ 2.399756] usbhid: USB HID core driver
[ 2.402495] input: Logitech Optical USB Mouse as /devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/0003:046D:C016.0001/input/input4
[ 2.402574] hid-generic 0003:046D:C016.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech Optical USB Mouse] on usb-0000:00:14.0-4/input0
[ 2.402645] input: HID 0566:3032 as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.0/0003:0566:3032.0002/input/input5
[ 2.460221] hid-generic 0003:0566:3032.0002: input,hidraw1: USB HID v1.11 Keyboard [HID 0566:3032] on usb-0000:00:14.0-7/input0
[ 2.460348] input: HID 0566:3032 as /devices/pci0000:00/0000:00:14.0/usb3/3-7/3-7:1.1/0003:0566:3032.0003/input/input6
[ 2.495232] fbcon: inteldrmfb (fb0) is primary device
[ 2.495275] Console: switching to colour frame buffer device 240x67
[ 2.495305] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
[ 2.524248] hid-generic 0003:0566:3032.0003: input,hidraw2: USB HID v1.11 Device [HID 0566:3032] on usb-0000:00:14.0-7/input1
[ 2.524346] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.0/0003:046D:C534.0004/input/input7
[ 2.584234] hid-generic 0003:046D:C534.0004: input,hidraw3: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-8/input0
[ 2.584401] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb3/3-8/3-8:1.1/0003:046D:C534.0005/input/input8
[ 2.648257] hid-generic 0003:046D:C534.0005: input,hiddev0,hidraw4: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-8/input1
[ 2.748179] clocksource: Switched to clocksource tsc
[ 2.791030] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[ 3.148516] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 3.171595] 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)
[ 3.188145] systemd[1]: Detected architecture x86.
[ 3.188450] systemd[1]: Set hostname to <Ubuntu-PC1704>.
[ 3.570109] systemd[1]: Listening on Syslog Socket.
[ 3.570155] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.570172] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 3.570261] systemd[1]: Created slice System Slice.
[ 3.570273] systemd[1]: Reached target Remote File Systems.
[ 3.570295] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.570347] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[ 3.756157] lp: driver loaded but no devices found
[ 3.766116] ppdev: user-space parallel port driver
[ 3.863177] EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
[ 3.867968] arp_tables: arp_tables: (C) 2002 David S. Miller
[ 3.904623] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this.
[ 3.907358] Bridge firewalling registered
[ 3.910553] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 4.010087] Adding 2097148k swap on /swapfile. Priority:-1 extents:6 across:2260988k FS
[ 4.078020] systemd-journald[291]: Received request to flush runtime journal from PID 1
[ 4.362638] ACPI Warning: SystemIO range 0x0000000000001828-0x000000000000182F conflicts with OpRegion 0x0000000000001800-0x000000000000187F (\PMIO) (20170531/utaddress-247)
[ 4.362642] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.362644] ACPI Warning: SystemIO range 0x0000000000001C40-0x0000000000001C4F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20170531/utaddress-247)
[ 4.362647] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.362647] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20170531/utaddress-247)
[ 4.362649] ACPI Warning: SystemIO range 0x0000000000001C30-0x0000000000001C3F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20170531/utaddress-247)
[ 4.362651] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.362651] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001C3F (\GPRL) (20170531/utaddress-247)
[ 4.362653] ACPI Warning: SystemIO range 0x0000000000001C00-0x0000000000001C2F conflicts with OpRegion 0x0000000000001C00-0x0000000000001FFF (\GPR) (20170531/utaddress-247)
[ 4.362655] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[ 4.362656] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 4.468928] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 4.916237] iwlwifi: unknown parameter 'auto_agg' ignored
[ 4.916279] Intel(R) Wireless WiFi driver for Linux
[ 4.916279] Copyright(c) 2003- 2015 Intel Corporation
[ 4.976564] RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
[ 4.976565] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 4.976566] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 4.976566] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 4.976567] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 4.977961] Bluetooth: Core ver 2.22
[ 4.977970] NET: Registered protocol family 31
[ 4.977971] Bluetooth: HCI device and connection manager initialized
[ 4.977972] Bluetooth: HCI socket layer initialized
[ 4.977974] Bluetooth: L2CAP socket layer initialized
[ 4.977977] Bluetooth: SCO socket layer initialized
[ 5.039950] iwlwifi 0000:03:00.0: loaded firmware version 17.608620.0 op_mode iwlmvm
[ 5.122620] usbcore: registered new interface driver btusb
[ 5.135997] Bluetooth: hci1: read Intel version: 370710018002030d56
[ 5.135998] Bluetooth: hci1: Intel device is already patched. patch num: 56
[ 5.148220] iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
[ 5.165586] iwlwifi 0000:03:00.0: base HW address: 80:86:f2:1a:c9:30
[ 5.379688] random: crng init done
[ 5.434735] snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 5.509098] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 5.539678] intel_rapl: Found RAPL domain package
[ 5.539680] intel_rapl: Found RAPL domain core
[ 5.539681] intel_rapl: Found RAPL domain uncore
[ 5.539681] intel_rapl: Found RAPL domain dram
[ 5.608256] iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
[ 5.691793] snd_hda_codec_realtek hdaudioC1D2: autoconfig for ALC892: line_outs=3 (0x14/0x15/0x16/0x0/0x0) type:line
[ 5.691795] snd_hda_codec_realtek hdaudioC1D2: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 5.691797] snd_hda_codec_realtek hdaudioC1D2: hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
[ 5.691798] snd_hda_codec_realtek hdaudioC1D2: mono: mono_out=0x0
[ 5.691799] snd_hda_codec_realtek hdaudioC1D2: dig-out=0x11/0x1e
[ 5.691800] snd_hda_codec_realtek hdaudioC1D2: inputs:
[ 5.691802] snd_hda_codec_realtek hdaudioC1D2: Front Mic=0x19
[ 5.691803] snd_hda_codec_realtek hdaudioC1D2: Rear Mic=0x18
[ 5.691804] snd_hda_codec_realtek hdaudioC1D2: Line=0x1a
[ 5.695202] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
[ 5.695247] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
[ 5.695290] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
[ 5.695332] input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
[ 5.695373] input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
[ 5.708395] input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14
[ 5.708447] input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
[ 5.708496] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
[ 5.708541] input: HDA Intel PCH Line Out Front as /devices/pci0000:00/0000:00:1b.0/sound/card1/input17
[ 5.708586] input: HDA Intel PCH Line Out Surround as /devices/pci0000:00/0000:00:1b.0/sound/card1/input18
[ 5.708627] input: HDA Intel PCH Line Out CLFE as /devices/pci0000:00/0000:00:1b.0/sound/card1/input19
[ 5.708667] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input20
[ 5.753530] audit: type=1400 audit(1537645728.260:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="content-hub-peer-picker" pid=672 comm="apparmor_parser"
[ 5.754304] audit: type=1400 audit(1537645728.261:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="url-dispatcher-bad-url-helper" pid=676 comm="apparmor_parser"
[ 5.754517] audit: type=1400 audit(1537645728.261:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="content-hub-clipboard" pid=671 comm="apparmor_parser"
[ 5.756999] audit: type=1400 audit(1537645728.264:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/5146/usr/lib/snapd/snap-confine" pid=675 comm="apparmor_parser"
[ 5.757001] audit: type=1400 audit(1537645728.264:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/5146/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=675 comm="apparmor_parser"
[ 5.769247] audit: type=1400 audit(1537645728.276:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=673 comm="apparmor_parser"
[ 5.769249] audit: type=1400 audit(1537645728.276:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=673 comm="apparmor_parser"
[ 5.785310] audit: type=1400 audit(1537645728.292:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="unity8-dash" pid=694 comm="apparmor_parser"
[ 5.791560] audit: type=1400 audit(1537645728.298:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=674 comm="apparmor_parser"
[ 5.791562] audit: type=1400 audit(1537645728.298:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=674 comm="apparmor_parser"
[ 6.737547] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 6.737548] Bluetooth: BNEP filters: protocol multicast
[ 6.737550] Bluetooth: BNEP socket layer initialized
[ 7.520036] NET: Registered protocol family 15
[ 8.243809] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[ 8.244187] IPv6: ADDRCONF(NETDEV_UP): enp2s0: link is not ready
[ 8.244975] alx 0000:02:00.0 enp2s0: NIC Up: 100 Mbps Full
[ 8.245183] IPv6: ADDRCONF(NETDEV_CHANGE): enp2s0: link becomes ready
[ 8.247766] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 8.515605] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 8.795309] NET: Registered protocol family 38
[ 8.813401] IPv6: ADDRCONF(NETDEV_UP): wlp3s0: link is not ready
[ 10.008400] input: Designer Mouse as /devices/virtual/misc/uhid/0005:045E:0805.0006/input/input21
[ 10.008784] hid-generic 0005:045E:0805.0006: input,hidraw5: BLUETOOTH HID v1.10 Mouse [Designer Mouse] on 80:86:F2:1A:C9:34
[ 13.748650] kauditd_printk_skb: 85 callbacks suppressed
[ 13.748651] audit: type=1400 audit(1537645736.255:97): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/etc/pulse/daemon.conf" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 13.774217] audit: type=1400 audit(1537645736.281:98): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/sys/devices/virtual/dmi/id/board_vendor" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 13.907770] Bluetooth: RFCOMM TTY layer initialized
[ 13.907775] Bluetooth: RFCOMM socket layer initialized
[ 13.907778] Bluetooth: RFCOMM ver 1.11
[ 19.207330] audit: type=1400 audit(1537645741.714:99): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/sys/devices/virtual/dmi/id/board_vendor" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 19.262538] audit: type=1400 audit(1537645741.769:100): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/sys/devices/virtual/dmi/id/board_vendor" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 19.418351] audit: type=1400 audit(1537645741.925:101): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/sys/devices/virtual/dmi/id/board_vendor" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 2308.218980] audit: type=1400 audit(1537648030.812:102): apparmor="DENIED" operation="open" profile="snap.pulseaudio.pulseaudio" name="/sys/devices/virtual/dmi/id/board_vendor" pid=2040 comm="pulseaudio" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 5641.828252] usb 3-9: new high-speed USB device number 7 using xhci_hcd
[ 5641.975582] usb 3-9: New USB device found, idVendor=058f, idProduct=6387
[ 5641.975590] usb 3-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 5641.975595] usb 3-9: Product: Intenso Alu Line
[ 5641.975599] usb 3-9: Manufacturer: 6989
[ 5641.975603] usb 3-9: SerialNumber: 9632FED9
[ 5641.992609] usb-storage 3-9:1.0: USB Mass Storage device detected
[ 5641.992762] scsi host6: usb-storage 3-9:1.0
[ 5641.992829] usbcore: registered new interface driver usb-storage
[ 5641.995996] usbcore: registered new interface driver uas
[ 5642.998307] scsi 6:0:0:0: Direct-Access Intenso Alu Line 8.07 PQ: 0 ANSI: 4
[ 5642.999061] sd 6:0:0:0: Attached scsi generic sg1 type 0
[ 5642.999721] sd 6:0:0:0: [sdb] 62054400 512-byte logical blocks: (31.8 GB/29.6 GiB)
[ 5643.000437] sd 6:0:0:0: [sdb] Write Protect is off
[ 5643.000445] sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00
[ 5643.001175] sd 6:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 5643.018361] sdb: sdb1
[ 5643.020588] sd 6:0:0:0: [sdb] Attached SCSI removable disk
[ 5643.616714] FAT-fs (sdb1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
 
Zuletzt bearbeitet von einem Moderator:
Puh.

Da fällt zumindest mir nichts auf im Moment.

Hast Du schon mal versucht, erst Windows dann Ubuntu zu installieren?

Gruß

Gesendet von meinem Xiaomi POCOPHONE F1 mit Tapatalk
 
Das in #5 gepostete einfache Reparaturprogramm der Bootfähigkeit existiert übrigens auch für die Linux-(Ubuntu-)Umgebung.

boot-repair, Näheres hier:
Code:
https://sourceforge.net/p/boot-repair/home/Home/

Gruß

Fisher

Nachtrag:
Übrigens habe ich das Thema nun doch in den Ubuntu-Bereich verschoben.
Selbst wenn Windows 10 das Problem ist, können die Reparaturmaßnahmen nur unter der Ubuntu-Oberfläche ausgeführt werden.
 
Zuletzt bearbeitet:
Zurück
Oben