Contenu | Rechercher | Menus

Annonce

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

À propos de l'équipe du forum.

#1 Le 07/08/2015, à 11:45

pepenunux

Une erreur est survenue lors du montage /.

Bonjour,

Je rencontre actuellement un souci.
Je galère a trouver la solution sur google.

J'ai eu un souci lorsque que j'ai ajouté "elevator=deadline" au /etc/default/grub pour optimiser mon ssd.
Depuis j'ai reussi a revenir en arrière et a supprimer cette ligne. Mais maintenant je ne peux plus acceder à mon kubuntu. J'ai ce message au démarrage de Kubuntu 14.10 : Une erreur est survenue lors du montage /.

je ne sais pas si ça peut aider mais j'ai ça dans mon /etc/fstab :

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=4e071337-edab-4abe-a1b7-9b8f4d638a34 /               ext4,noatime,errors=r$
# swap was on /dev/sda5 during installation
UUID=c36c3d36-3883-44a9-af27-047dcb097913 none            swap    sw           $
tmpfs      /tmp            tmpfs        defaults,size=1g

Pourriez vous m'aider, svp ?......je débute sur linux
smile

Dernière modification par olivi4 (Le 07/08/2015, à 14:04)

Hors ligne

#2 Le 07/08/2015, à 12:09

pepenunux

Re : Une erreur est survenue lors du montage /.

Pour info, j'arrive à accéder à kubuntu en éditant le recovery (avec la touche E) puis en remplaçant le "ro" par "rw". Ensuite en sélectionnant "démarrage normale" dans grub.
Il me lance alors kubuntu en 800*600

Hors ligne

#3 Le 07/08/2015, à 12:47

moko138

Re : Une erreur est survenue lors du montage /.

j'arrive à accéder à kubuntu en éditant le recovery (avec la touche E) puis en remplaçant le "ro" par "rw".

Bien ! Alors tu vas t'en servir pour éditer avec les droits admin le fichier /etc/fstab
Et tu vas changer cette ligne

UUID=(...)   /               ext4,noatime,errors=r$

à la fin, en

UUID=(...)   /               ext4,noatime,errors-ro   0   1

Et tu vas changer cette ligne

UUID=(...)   none            swap    sw           $

en

UUID=(...)   none            swap    sw           0   0

Ensuite tu enregistres,
tu donnes le retour complet de

cat /etc/fstab

tu fais

sudo update-grub

et tu ne redémarres pas avant d'avoir eu le feu vert du forum.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#4 Le 07/08/2015, à 12:54

pepenunux

Re : Une erreur est survenue lors du montage /.

donc le /etc/fstab est :

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=4e071337-edab-4abe-a1b7-9b8f4d638a34 /               ext4,noatime,errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=c36c3d36-3883-44a9-af27-047dcb097913 none            swap    sw              0       0
tmpfs      /tmp            tmpfs        defaults,size=1g

le cat /etc/fstab donne:

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=4e071337-edab-4abe-a1b7-9b8f4d638a34 /               ext4,noatime,errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=c36c3d36-3883-44a9-af27-047dcb097913 none            swap    sw              0       0
tmpfs      /tmp            tmpfs        defaults,size=1g

et je viens d'effectué le sudo update-grub

...et merci pour votre aide smile

Dernière modification par olivi4 (Le 07/08/2015, à 14:05)

Hors ligne

#5 Le 07/08/2015, à 13:10

moko138

Re : Une erreur est survenue lors du montage /.

OK  smile

Rappelle-toi à l'avenir
- de demander le feu vert du forum avant de bricoler tes fichiers-système ;
- que les commandes et leurs retours se donnent entre balises-code (les < > bleus de la barre de mise en forme) comme indiqué par ljere, conformément aux règles du forum.
  Ce qui donne à peu près ceci :

pepenunux@mon-pc:~$ cat /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
# / was on /dev/sda1 during installation
UUID=4e071337-edab-4abe-a1b7-9b8f4d638a34 /               ext4,noatime,errors=remount-ro 0       1
# swap was on /dev/sda5 during installation
UUID=c36c3d36-3883-44a9-af27-047dcb097913 none            swap    sw              0       0
tmpfs      /tmp            tmpfs        defaults,size=1g

pepenunux@mon-pc:~$ 

Redémarre et dis si ton système marche normalement ou pas.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#6 Le 07/08/2015, à 13:18

pepenunux

Re : Une erreur est survenue lors du montage /.

reboot effectué....mais pas de changement.
J'ai toujours le meme message d'erreur.:(

Hors ligne

#7 Le 07/08/2015, à 13:27

moko138

Re : Une erreur est survenue lors du montage /.

cd && dmesg > dmesg150807a.txt

Tu trouveras ensuite le fichier dmesg150807a.txt dans ton home, ouvre-le et colle ici son contenu entre balises-code.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#8 Le 07/08/2015, à 13:33

pepenunux

Re : Une erreur est survenue lors du montage /.

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.16.0-44-generic (buildd@comet) (gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ) #59-Ubuntu SMP Tue Jul 7 02:14:37 UTC 2015 (Ubuntu 3.16.0-44.59-generic 3.16.7-ckt14)
[    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] Disabled fast string operations
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007f493fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f494000-0x000000007f4befff] reserved
[    0.000000] BIOS-e820: [mem 0x000000007f4bf000-0x000000007f578fff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f579000-0x000000007f5befff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x000000007f5bf000-0x000000007f5ebfff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f5ec000-0x000000007f5fefff] ACPI data
[    0.000000] BIOS-e820: [mem 0x000000007f5ff000-0x000000007f5fffff] usable
[    0.000000] BIOS-e820: [mem 0x000000007f600000-0x000000007fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed14000-0x00000000fed19fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ffe00000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.6 present.
[    0.000000] DMI: Acer AOD255/AOD255, BIOS V1.00 07/08/2010
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x7f600 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-DFFFF write-through
[    0.000000]   E0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0FFE00000 mask 0FFE00000 write-protect
[    0.000000]   1 base 000000000 mask 0C0000000 write-back
[    0.000000]   2 base 040000000 mask 0C0000000 write-back
[    0.000000]   3 base 07F800000 mask 0FF800000 uncachable
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37400000-0x375fffff]
[    0.000000]  [mem 0x37400000-0x375fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x373fffff]
[    0.000000]  [mem 0x34000000-0x373fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37600000-0x377fdfff]
[    0.000000]  [mem 0x37600000-0x377fdfff] page 4k
[    0.000000] BRK [0x01c0d000, 0x01c0dfff] PGTABLE
[    0.000000] BRK [0x01c0e000, 0x01c0efff] PGTABLE
[    0.000000] RAMDISK: [mem 0x34a5a000-0x36524fff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000FE020 000024 (v02 ACRSYS)
[    0.000000] ACPI: XSDT 0x000000007F5FE120 000064 (v01 ACRSYS ACRPRDCT 00000001      01000013)
[    0.000000] ACPI: FACP 0x000000007F5FD000 0000F4 (v04 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: DSDT 0x000000007F5F1000 008CC6 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: FACS 0x000000007F586000 000040
[    0.000000] ACPI: HPET 0x000000007F5FC000 000038 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: APIC 0x000000007F5FB000 000078 (v02 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: MCFG 0x000000007F5FA000 00003C (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: SLIC 0x000000007F5F0000 000176 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: BOOT 0x000000007F5EF000 000028 (v01 ACRSYS ACRPRDCT 00000001 1025 01000013)
[    0.000000] ACPI: SSDT 0x000000007F5ED000 000655 (v01 PmRef  CpuPm    00003000 INTL 20051117)
[    0.000000] ACPI: WDAT 0x000000007F5EC000 000194 (v01 INSYDE INSYDE   00000001 MSFT 01000013)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 1150MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] BRK [0x01c0f000, 0x01c0ffff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x377fdfff]
[    0.000000]   HighMem  [mem 0x377fe000-0x7f5fffff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x7f493fff]
[    0.000000]   node   0: [mem 0x7f4bf000-0x7f578fff]
[    0.000000]   node   0: [mem 0x7f5bf000-0x7f5ebfff]
[    0.000000]   node   0: [mem 0x7f5ff000-0x7f5fffff]
[    0.000000] On node 0 totalpages: 521498
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 223230 pages, LIFO batch:31
[    0.000000]   HighMem zone: 2301 pages used for memmap
[    0.000000]   HighMem zone: 294270 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] Reserving Intel graphics stolen memory at 0x7f800000-0x7fffffff
[    0.000000] ACPI: PM-Timer IO Port: 0x408
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x00] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x04] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 4, 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: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 4 CPUs, 2 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] e820: [mem 0x80000000-0xdfffffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:4 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f679f000 s35840 r0 d21504 u57344
[    0.000000] pcpu-alloc: s35840 r0 d21504 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 519722
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.16.0-44-generic root=UUID=4e071337-edab-4abe-a1b7-9b8f4d638a34 rw recovery nomodeset
[    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] Initializing CPU#0
[    0.000000] Initializing HighMem for node 0 (000377fe:0007f600)
[    0.000000] Initializing Movable for node 0 (00000000:00000000)
[    0.000000] Memory: 2028572K/2085992K available (6954K kernel code, 693K rwdata, 2920K rodata, 856K init, 796K bss, 57420K reserved, 1177080K highmem)
[    0.000000] virtual kernel memory layout:
    fixmap  : 0xfff15000 - 0xfffff000   ( 936 kB)
    pkmap   : 0xff800000 - 0xffa00000   (2048 kB)
    vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
    lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
      .init : 0xc1a55000 - 0xc1b2b000   ( 856 kB)
      .data : 0xc16cac70 - 0xc1a534c0   (3618 kB)
      .text : 0xc1000000 - 0xc16cac70   (6955 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=4, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS:2304 nr_irqs:712 16
[    0.000000] CPU 0 irqstacks, hard=f4408000 soft=f440a000
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 4194304 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] hpet clockevent registered
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1662.620 MHz processor
[    0.004020] Calibrating delay loop (skipped), value calculated using timer frequency.. 3325.24 BogoMIPS (lpj=6650480)
[    0.004175] pid_max: default: 32768 minimum: 301
[    0.004268] ACPI: Core revision 20140424
[    0.027600] ACPI: All ACPI Tables successfully acquired
[    0.028068] Security Framework initialized
[    0.028168] AppArmor: AppArmor initialized
[    0.028237] Yama: becoming mindful.
[    0.032117] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.032199] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.032818] Initializing cgroup subsys memory
[    0.032968] Initializing cgroup subsys devices
[    0.033057] Initializing cgroup subsys freezer
[    0.033133] Initializing cgroup subsys net_cls
[    0.033213] Initializing cgroup subsys blkio
[    0.033293] Initializing cgroup subsys perf_event
[    0.033369] Initializing cgroup subsys net_prio
[    0.033459] Initializing cgroup subsys hugetlb
[    0.033572] Disabled fast string operations
[    0.033643] CPU: Physical Processor ID: 0
[    0.033710] CPU: Processor Core ID: 0
[    0.033780] mce: CPU supports 5 MCE banks
[    0.033857] CPU0: Thermal monitoring handled by SMI
[    0.033864] process: using mwait in idle threads
[    0.033943] Last level iTLB entries: 4KB 32, 2MB 0, 4MB 0
Last level dTLB entries: 4KB 64, 2MB 0, 4MB 8, 1GB 0
tlb_flushall_shift: 6
[    0.034629] Freeing SMP alternatives memory: 36K (c1b2b000 - c1b34000)
[    0.036611] ftrace: allocating 28683 entries in 57 pages
[    0.052169] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.052738] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.093368] smpboot: CPU0: Intel(R) Atom(TM) CPU N450   @ 1.66GHz (fam: 06, model: 1c, stepping: 0a)
[    0.096000] Performance Events: PEBS fmt0+, 8-deep LBR, Atom events, Intel PMU driver.
[    0.096000] ... version:                3
[    0.096000] ... bit width:              40
[    0.096000] ... generic registers:      2
[    0.096000] ... value mask:             000000ffffffffff
[    0.096000] ... max period:             000000007fffffff
[    0.096000] ... fixed-purpose events:   3
[    0.096000] ... event mask:             0000000700000003
[    0.097648] CPU 1 irqstacks, hard=f3d6a000 soft=f3d6c000
[    0.097655] x86: Booting SMP configuration:
[    0.097728] .... node  #0, CPUs:      #1
[    0.008000] Initializing CPU#1
[    0.008000] Disabled fast string operations
[    0.008000] CPU1: Thermal monitoring handled by SMI
[    0.110941] x86: Booted up 1 node, 2 CPUs
[    0.111191] smpboot: Total of 2 processors activated (6650.48 BogoMIPS)
[    0.111509] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.112296] devtmpfs: initialized
[    0.113028] evm: security.selinux
[    0.113093] evm: security.SMACK64
[    0.113157] evm: security.SMACK64EXEC
[    0.113220] evm: security.SMACK64TRANSMUTE
[    0.113285] evm: security.SMACK64MMAP
[    0.113349] evm: security.ima
[    0.113410] evm: security.capability
[    0.113523] PM: Registering ACPI NVS region [mem 0x7f579000-0x7f5befff] (286720 bytes)
[    0.117645] pinctrl core: initialized pinctrl subsystem
[    0.118000] regulator-dummy: no parameters
[    0.118138] RTC time: 11:14:56, date: 08/07/15
[    0.119314] NET: Registered protocol family 16
[    0.119974] EISA bus registered
[    0.120015] cpuidle: using governor ladder
[    0.120085] cpuidle: using governor menu
[    0.120342] ACPI: bus type PCI registered
[    0.120411] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.120735] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.120848] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
[    0.120923] PCI: Using MMCONFIG for extended config space
[    0.120994] PCI: Using configuration type 1 for base access
[    0.136398] ACPI: Added _OSI(Module Device)
[    0.136475] ACPI: Added _OSI(Processor Device)
[    0.136542] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.136611] ACPI: Added _OSI(Processor Aggregator Device)
[    0.145001] ACPI: Executed 1 blocks of module-level executable AML code
[    0.149189] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
[    0.150313] ACPI: Dynamic OEM Table Load:
[    0.150448] ACPI: SSDT 0x00000000F4482800 000708 (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
[    0.152309] ACPI: Dynamic OEM Table Load:
[    0.152442] ACPI: SSDT 0x00000000F4483000 000646 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
[    0.172640] ACPI: Dynamic OEM Table Load:
[    0.172770] ACPI: SSDT 0x00000000F3E2CC00 00015F (v01 PmRef  ApIst    00003000 INTL 20051117)
[    0.188212] ACPI: Dynamic OEM Table Load:
[    0.188339] ACPI: SSDT 0x00000000F3DD4240 00008D (v01 PmRef  ApCst    00003000 INTL 20051117)
[    0.200169] ACPI: Interpreter enabled
[    0.200255] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
[    0.200422] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
[    0.200616] ACPI: (supports S0 S3 S4 S5)
[    0.200683] ACPI: Using IOAPIC for interrupt routing
[    0.200842] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.360536] ACPI: Power Resource [FN00] (on)
[    0.362781] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.362869] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.363321] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug]
[    0.363714] acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
[    0.365739] PCI host bridge to bus 0000:00
[    0.365813] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.365887] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
[    0.365963] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
[    0.366038] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.366117] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff]
[    0.366209] pci 0000:00:00.0: [8086:a010] type 00 class 0x060000
[    0.366461] pci 0000:00:02.0: [8086:a011] type 00 class 0x030000
[    0.366480] pci 0000:00:02.0: reg 0x10: [mem 0x98180000-0x981fffff]
[    0.366491] pci 0000:00:02.0: reg 0x14: [io  0x60c0-0x60c7]
[    0.366502] pci 0000:00:02.0: reg 0x18: [mem 0x80000000-0x8fffffff pref]
[    0.366513] pci 0000:00:02.0: reg 0x1c: [mem 0x98000000-0x980fffff]
[    0.366759] pci 0000:00:02.1: [8086:a012] type 00 class 0x038000
[    0.366776] pci 0000:00:02.1: reg 0x10: [mem 0x98100000-0x9817ffff]
[    0.367092] pci 0000:00:1b.0: [8086:27d8] type 00 class 0x040300
[    0.367129] pci 0000:00:1b.0: reg 0x10: [mem 0x98200000-0x98203fff 64bit]
[    0.367274] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[    0.367389] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.367620] pci 0000:00:1c.0: [8086:27d0] type 01 class 0x060400
[    0.367773] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[    0.367892] pci 0000:00:1c.0: System wakeup disabled by ACPI
[    0.368135] pci 0000:00:1c.1: [8086:27d2] type 01 class 0x060400
[    0.368287] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[    0.368403] pci 0000:00:1c.1: System wakeup disabled by ACPI
[    0.368640] pci 0000:00:1d.0: [8086:27c8] type 00 class 0x0c0300
[    0.368713] pci 0000:00:1d.0: reg 0x20: [io  0x6080-0x609f]
[    0.368897] pci 0000:00:1d.0: System wakeup disabled by ACPI
[    0.369128] pci 0000:00:1d.1: [8086:27c9] type 00 class 0x0c0300
[    0.369201] pci 0000:00:1d.1: reg 0x20: [io  0x6060-0x607f]
[    0.369378] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.369608] pci 0000:00:1d.2: [8086:27ca] type 00 class 0x0c0300
[    0.369681] pci 0000:00:1d.2: reg 0x20: [io  0x6040-0x605f]
[    0.369815] pci 0000:00:1d.2: System wakeup disabled by ACPI
[    0.370043] pci 0000:00:1d.3: [8086:27cb] type 00 class 0x0c0300
[    0.370116] pci 0000:00:1d.3: reg 0x20: [io  0x6020-0x603f]
[    0.370251] pci 0000:00:1d.3: System wakeup disabled by ACPI
[    0.370493] pci 0000:00:1d.7: [8086:27cc] type 00 class 0x0c0320
[    0.370528] pci 0000:00:1d.7: reg 0x10: [mem 0x98204400-0x982047ff]
[    0.370659] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
[    0.370811] pci 0000:00:1d.7: System wakeup disabled by ACPI
[    0.371055] pci 0000:00:1e.0: [8086:2448] type 01 class 0x060401
[    0.371380] pci 0000:00:1f.0: [8086:27bc] type 00 class 0x060100
[    0.371735] pci 0000:00:1f.2: [8086:27c1] type 00 class 0x010601
[    0.371769] pci 0000:00:1f.2: reg 0x10: [io  0x60b8-0x60bf]
[    0.371787] pci 0000:00:1f.2: reg 0x14: [io  0x60cc-0x60cf]
[    0.371805] pci 0000:00:1f.2: reg 0x18: [io  0x60b0-0x60b7]
[    0.371822] pci 0000:00:1f.2: reg 0x1c: [io  0x60c8-0x60cb]
[    0.371839] pci 0000:00:1f.2: reg 0x20: [io  0x60a0-0x60af]
[    0.371858] pci 0000:00:1f.2: reg 0x24: [mem 0x98204000-0x982043ff]
[    0.371930] pci 0000:00:1f.2: PME# supported from D3hot
[    0.372189] pci 0000:00:1f.3: [8086:27da] type 00 class 0x0c0500
[    0.372262] pci 0000:00:1f.3: reg 0x20: [io  0x6000-0x601f]
[    0.372713] pci 0000:01:00.0: [1969:2060] type 00 class 0x020000
[    0.372761] pci 0000:01:00.0: reg 0x10: [mem 0x97000000-0x9703ffff 64bit]
[    0.372784] pci 0000:01:00.0: reg 0x18: [io  0x5000-0x507f]
[    0.372958] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.380044] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.380123] pci 0000:00:1c.0:   bridge window [io  0x5000-0x5fff]
[    0.380133] pci 0000:00:1c.0:   bridge window [mem 0x97000000-0x97ffffff]
[    0.380146] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.380381] pci 0000:02:00.0: [168c:002b] type 00 class 0x028000
[    0.380425] pci 0000:02:00.0: reg 0x10: [mem 0x96000000-0x9600ffff 64bit]
[    0.380617] pci 0000:02:00.0: supports D1
[    0.380623] pci 0000:02:00.0: PME# supported from D0 D1 D3hot
[    0.388033] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.388112] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.388122] pci 0000:00:1c.1:   bridge window [mem 0x96000000-0x96ffffff]
[    0.388135] pci 0000:00:1c.1:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[    0.388305] pci 0000:00:1e.0: PCI bridge to [bus 05] (subtractive decode)
[    0.388399] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.388406] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.388412] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.388419] pci 0000:00:1e.0:   bridge window [mem 0x80000000-0xfebfffff] (subtractive decode)
[    0.388457] pci_bus 0000:00: on NUMA node 0
[    0.460381] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 9 10 *11 12)
[    0.460892] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 7 9 *10 11 12)
[    0.461403] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 7 9 10 *11 12)
[    0.461908] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 9 10 *11 12)
[    0.462409] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.462989] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.463570] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.464164] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 9 10 11 12) *0, disabled.
[    0.466267] ACPI: Enabled 5 GPEs in block 00 to 1F
[    0.466526] ACPI : EC: GPE = 0x19, I/O: command/status = 0x66, data = 0x62
[    0.468064] vgaarb: setting as boot device: PCI:0000:00:02.0
[    0.468141] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
[    0.468251] vgaarb: loaded
[    0.468312] vgaarb: bridge control possible 0000:00:02.0
[    0.468312] SCSI subsystem initialized
[    0.468400] libata version 3.00 loaded.
[    0.468400] ACPI: bus type USB registered
[    0.468400] usbcore: registered new interface driver usbfs
[    0.468439] usbcore: registered new interface driver hub
[    0.468522] usbcore: registered new device driver usb
[    0.472231] PCI: Using ACPI for IRQ routing
[    0.482799] PCI: pci_cache_line_size set to 64 bytes
[    0.482887] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.482893] e820: reserve RAM buffer [mem 0x7f494000-0x7fffffff]
[    0.482901] e820: reserve RAM buffer [mem 0x7f579000-0x7fffffff]
[    0.482909] e820: reserve RAM buffer [mem 0x7f5ec000-0x7fffffff]
[    0.482914] e820: reserve RAM buffer [mem 0x7f600000-0x7fffffff]
[    0.483331] NetLabel: Initializing
[    0.483399] NetLabel:  domain hash size = 128
[    0.483465] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.483564] NetLabel:  unlabeled traffic allowed by default
[    0.483688] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.484016] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.484195] hpet0: 3 comparators, 64-bit 14.318180 MHz counter
[    0.486312] Switched to clocksource hpet
[    0.502961] AppArmor: AppArmor Filesystem Enabled
[    0.503131] pnp: PnP ACPI init
[    0.503246] ACPI: bus type PNP registered
[    0.572572] system 00:00: [io  0x164e-0x164f] has been reserved
[    0.572658] system 00:00: [io  0x0600-0x060f] has been reserved
[    0.572734] system 00:00: [io  0x0610] has been reserved
[    0.572808] system 00:00: [io  0x0800-0x080f] has been reserved
[    0.572883] system 00:00: [io  0x0810-0x0817] has been reserved
[    0.572959] system 00:00: [io  0x0400-0x047f] could not be reserved
[    0.573036] system 00:00: [io  0x0500-0x053f] has been reserved
[    0.573111] system 00:00: [io  0xff2c-0xff2f] has been reserved
[    0.573188] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
[    0.573267] system 00:00: [mem 0xfed1c000-0xfed1ffff] has been reserved
[    0.573345] system 00:00: [mem 0xfed14000-0xfed17fff] has been reserved
[    0.573424] system 00:00: [mem 0xfed18000-0xfed18fff] has been reserved
[    0.573502] system 00:00: [mem 0xfed19000-0xfed19fff] has been reserved
[    0.573581] system 00:00: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.573660] system 00:00: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.573742] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.573900] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.574143] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.574343] pnp 00:03: Plug and Play ACPI device, IDs SYN1b1c SYN1b00 SYN0002 PNP0f13 (active)
[    0.574645] pnp: PnP ACPI: found 4 devices
[    0.574715] ACPI: bus type PNP unregistered
[    0.574792] PnPBIOS: Disabled by ACPI PNP
[    0.617998] pci 0000:00:1c.0: PCI bridge to [bus 01]
[    0.618081] pci 0000:00:1c.0:   bridge window [io  0x5000-0x5fff]
[    0.618162] pci 0000:00:1c.0:   bridge window [mem 0x97000000-0x97ffffff]
[    0.618244] pci 0000:00:1c.0:   bridge window [mem 0x90000000-0x90ffffff 64bit pref]
[    0.618355] pci 0000:00:1c.1: PCI bridge to [bus 02]
[    0.618428] pci 0000:00:1c.1:   bridge window [io  0x4000-0x4fff]
[    0.618508] pci 0000:00:1c.1:   bridge window [mem 0x96000000-0x96ffffff]
[    0.618589] pci 0000:00:1c.1:   bridge window [mem 0x91000000-0x91ffffff 64bit pref]
[    0.618699] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    0.618787] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.618793] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.618799] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.618806] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff]
[    0.618812] pci_bus 0000:01: resource 0 [io  0x5000-0x5fff]
[    0.618818] pci_bus 0000:01: resource 1 [mem 0x97000000-0x97ffffff]
[    0.618825] pci_bus 0000:01: resource 2 [mem 0x90000000-0x90ffffff 64bit pref]
[    0.618831] pci_bus 0000:02: resource 0 [io  0x4000-0x4fff]
[    0.618837] pci_bus 0000:02: resource 1 [mem 0x96000000-0x96ffffff]
[    0.618843] pci_bus 0000:02: resource 2 [mem 0x91000000-0x91ffffff 64bit pref]
[    0.618850] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
[    0.618856] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
[    0.618862] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
[    0.618868] pci_bus 0000:05: resource 7 [mem 0x80000000-0xfebfffff]
[    0.618935] NET: Registered protocol family 2
[    0.619573] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.619698] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.619825] TCP: Hash tables configured (established 8192 bind 8192)
[    0.619944] TCP: reno registered
[    0.620043] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.620131] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.620341] NET: Registered protocol family 1
[    0.620451] pci 0000:00:02.0: Video device with shadowed ROM
[    0.622798] PCI: CLS 64 bytes, default 64
[    0.622939] Trying to unpack rootfs image as initramfs...
[    1.814405] Freeing initrd memory: 27436K (f4a5a000 - f6525000)
[    1.814697] Simple Boot Flag at 0x44 set to 0x1
[    1.815191] microcode: CPU0 sig=0x106ca, pf=0x4, revision=0x0
[    1.815284] microcode: CPU1 sig=0x106ca, pf=0x4, revision=0x0
[    1.815538] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
[    1.815736] Scanning for low memory corruption every 60 seconds
[    1.816906] futex hash table entries: 1024 (order: 4, 65536 bytes)
[    1.817025] Initialise system trusted keyring
[    1.817151] audit: initializing netlink subsys (disabled)
[    1.817259] audit: type=2000 audit(1438946097.816:1): initialized
[    1.818175] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    1.825495] zpool: loaded
[    1.825564] zbud: loaded
[    1.825911] VFS: Disk quotas dquot_6.5.2
[    1.826123] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    1.828130] fuse init (API version 7.23)
[    1.828593] msgmni has been set to 1716
[    1.828866] Key type big_key registered
[    1.830177] Key type asymmetric registered
[    1.830256] Asymmetric key parser 'x509' registered
[    1.830378] bounce: pool size: 64 pages
[    1.830485] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    1.830733] io scheduler noop registered
[    1.830805] io scheduler deadline registered (default)
[    1.831084] io scheduler cfq registered
[    1.831769] pcieport 0000:00:1c.0: irq 40 for MSI/MSI-X
[    1.832353] pcieport 0000:00:1c.1: irq 41 for MSI/MSI-X
[    1.832697] pcieport 0000:00:1c.0: Signaling PME through PCIe PME interrupt
[    1.832782] pci 0000:01:00.0: Signaling PME through PCIe PME interrupt
[    1.832863] pcie_pme 0000:00:1c.0:pcie01: service driver pcie_pme loaded
[    1.832917] pcieport 0000:00:1c.1: Signaling PME through PCIe PME interrupt
[    1.832997] pci 0000:02:00.0: Signaling PME through PCIe PME interrupt
[    1.833076] pcie_pme 0000:00:1c.1:pcie01: service driver pcie_pme loaded
[    1.833143] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    1.833286] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    1.833614] intel_idle: MWAIT substates: 0x20220
[    1.833633] intel_idle: v0.4 model 0x1C
[    1.833638] intel_idle: lapic_timer_reliable_states 0x2
[    1.833657] tsc: Marking TSC unstable due to TSC halts in idle states deeper than C2
[    1.904531] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    1.904672] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    1.905201] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    1.905310] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    1.976314] ACPI: AC Adapter [AC] (on-line)
[    1.976475] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    1.976607] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    1.976733] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    1.976743] ACPI: Power Button [PWRB]
[    1.976961] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
[    1.976968] ACPI: Sleep Button [SLPB]
[    1.977195] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
[    1.977254] ACPI: Lid Switch [LID0]
[    1.977494] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[    1.977500] ACPI: Power Button [PWRF]
[    1.977738] ACPI: Fan [FAN] (on)
[    1.980303] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    1.980471] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    1.981379] thermal LNXTHERM:00: registered as thermal_zone0
[    1.981457] ACPI: Thermal Zone [THRM] (57 C)
[    1.981661] GHES: HEST is not enabled!
[    1.981932] isapnp: Scanning for PnP cards...
[    1.982230] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    2.076341] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    2.076469] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    2.077141] pci 0000:00:02.0: BAR 6: [??? 0x00000000 flags 0x2] has bogus alignment
[    2.077256] pci 0000:00:1e.0: PCI bridge to [bus 05]
[    2.336082] isapnp: No Plug & Play device found
[    2.696297] ACPI: Battery Slot [BAT0] (battery present)
[    2.696680] Linux agpgart interface v0.103
[    2.696944] agpgart-intel 0000:00:00.0: Intel GMA3150 Chipset
[    2.697053] agpgart-intel 0000:00:00.0: detected gtt size: 524288K total, 262144K mappable
[    2.697245] agpgart-intel 0000:00:00.0: detected 8192K stolen memory
[    2.697643] agpgart-intel 0000:00:00.0: AGP aperture is 256M @ 0x80000000
[    2.703453] brd: module loaded
[    2.706513] loop: module loaded
[    2.707466] libphy: Fixed MDIO Bus: probed
[    2.707543] tun: Universal TUN/TAP device driver, 1.6
[    2.707613] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    2.707873] PPP generic driver version 2.4.2
[    2.708149] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.708238] ehci-pci: EHCI PCI platform driver
[    2.708651] ehci-pci 0000:00:1d.7: EHCI Host Controller
[    2.708741] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
[    2.708864] ehci-pci 0000:00:1d.7: debug port 1
[    2.712855] ehci-pci 0000:00:1d.7: cache line size of 64 is not supported
[    2.712902] ehci-pci 0000:00:1d.7: irq 22, io mem 0x98204400
[    2.724053] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
[    2.724304] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    2.724384] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.724485] usb usb1: Product: EHCI Host Controller
[    2.724555] usb usb1: Manufacturer: Linux 3.16.0-44-generic ehci_hcd
[    2.724631] usb usb1: SerialNumber: 0000:00:1d.7
[    2.725164] hub 1-0:1.0: USB hub found
[    2.725253] hub 1-0:1.0: 8 ports detected
[    2.726295] ehci-platform: EHCI generic platform driver
[    2.726413] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.726502] ohci-pci: OHCI PCI platform driver
[    2.726616] ohci-platform: OHCI generic platform driver
[    2.726720] uhci_hcd: USB Universal Host Controller Interface driver
[    2.727106] uhci_hcd 0000:00:1d.0: UHCI Host Controller
[    2.727195] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
[    2.727308] uhci_hcd 0000:00:1d.0: detected 2 ports
[    2.727435] uhci_hcd 0000:00:1d.0: irq 18, io base 0x00006080
[    2.727682] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    2.727762] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.727864] usb usb2: Product: UHCI Host Controller
[    2.727934] usb usb2: Manufacturer: Linux 3.16.0-44-generic uhci_hcd
[    2.728045] usb usb2: SerialNumber: 0000:00:1d.0
[    2.728575] hub 2-0:1.0: USB hub found
[    2.728662] hub 2-0:1.0: 2 ports detected
[    2.729324] uhci_hcd 0000:00:1d.1: UHCI Host Controller
[    2.729412] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
[    2.729523] uhci_hcd 0000:00:1d.1: detected 2 ports
[    2.729654] uhci_hcd 0000:00:1d.1: irq 20, io base 0x00006060
[    2.729899] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    2.729979] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.730081] usb usb3: Product: UHCI Host Controller
[    2.730151] usb usb3: Manufacturer: Linux 3.16.0-44-generic uhci_hcd
[    2.730227] usb usb3: SerialNumber: 0000:00:1d.1
[    2.730722] hub 3-0:1.0: USB hub found
[    2.730812] hub 3-0:1.0: 2 ports detected
[    2.731473] uhci_hcd 0000:00:1d.2: UHCI Host Controller
[    2.731560] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
[    2.731672] uhci_hcd 0000:00:1d.2: detected 2 ports
[    2.731799] uhci_hcd 0000:00:1d.2: irq 21, io base 0x00006040
[    2.732092] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
[    2.732178] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.732280] usb usb4: Product: UHCI Host Controller
[    2.732350] usb usb4: Manufacturer: Linux 3.16.0-44-generic uhci_hcd
[    2.732426] usb usb4: SerialNumber: 0000:00:1d.2
[    2.732954] hub 4-0:1.0: USB hub found
[    2.733043] hub 4-0:1.0: 2 ports detected
[    2.733772] uhci_hcd 0000:00:1d.3: UHCI Host Controller
[    2.733859] uhci_hcd 0000:00:1d.3: new USB bus registered, assigned bus number 5
[    2.733972] uhci_hcd 0000:00:1d.3: detected 2 ports
[    2.734071] uhci_hcd 0000:00:1d.3: irq 22, io base 0x00006020
[    2.734314] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001
[    2.734395] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.734497] usb usb5: Product: UHCI Host Controller
[    2.734567] usb usb5: Manufacturer: Linux 3.16.0-44-generic uhci_hcd
[    2.734643] usb usb5: SerialNumber: 0000:00:1d.3
[    2.735162] hub 5-0:1.0: USB hub found
[    2.735251] hub 5-0:1.0: 2 ports detected
[    2.735979] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSS0] at 0x60,0x64 irq 1,12
[    2.749635] serio: i8042 KBD port at 0x60,0x64 irq 1
[    2.749733] serio: i8042 AUX port at 0x60,0x64 irq 12
[    2.750351] mousedev: PS/2 mouse device common for all mice
[    2.751204] rtc_cmos 00:01: RTC can wake from S4
[    2.751568] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    2.751689] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[    2.751967] device-mapper: uevent: version 1.0.3
[    2.752370] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    2.752569] platform eisa.0: Probing EISA bus 0
[    2.752643] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    2.752722] platform eisa.0: Cannot allocate resource for EISA slot 1
[    2.752799] platform eisa.0: Cannot allocate resource for EISA slot 2
[    2.752876] platform eisa.0: Cannot allocate resource for EISA slot 3
[    2.752954] platform eisa.0: Cannot allocate resource for EISA slot 4
[    2.753031] platform eisa.0: Cannot allocate resource for EISA slot 5
[    2.753107] platform eisa.0: Cannot allocate resource for EISA slot 6
[    2.753184] platform eisa.0: Cannot allocate resource for EISA slot 7
[    2.753262] platform eisa.0: Cannot allocate resource for EISA slot 8
[    2.753338] platform eisa.0: EISA: Detected 0 cards
[    2.753436] cpufreq-nforce2: No nForce2 chipset.
[    2.753521] ledtrig-cpu: registered to indicate activity on CPUs
[    2.753874] TCP: cubic registered
[    2.754516] NET: Registered protocol family 10
[    2.755206] NET: Registered protocol family 17
[    2.755313] Key type dns_resolver registered
[    2.755967] Using IPI No-Shortcut mode
[    2.756538] Loading compiled-in X.509 certificates
[    2.767627] Loaded X.509 cert 'Magrathea: Glacier signing key: 73fb7d3d31c3e71a2ad520f42b540bca3450c0b8'
[    2.767779] registered taskstats version 1
[    2.774232] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[    2.775685] Key type trusted registered
[    2.789020] Key type encrypted registered
[    2.789111] AppArmor: AppArmor sha1 policy hashing enabled
[    2.789188] ima: No TPM chip found, activating TPM-bypass!
[    2.789303] evm: HMAC attrs: 0x1
[    2.790078]   Magic number: 11:869:225
[    2.790307] rtc_cmos 00:01: setting system clock to 2015-08-07 11:14:59 UTC (1438946099)
[    2.791494] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    2.791573] EDD information not available.
[    2.791909] PM: Hibernation image not present or could not be loaded.
[    2.792683] Freeing unused kernel memory: 856K (c1a55000 - c1b2b000)
[    2.792927] Write protecting the kernel text: 6956k
[    2.793212] Write protecting the kernel read-only data: 2924k
[    2.793287] NX-protecting the kernel data: 5332k
[    2.831325] systemd-udevd[99]: starting version 208
[    2.834385] random: systemd-udevd urandom read with 6 bits of entropy available
[    2.889895] wmi: Mapper loaded
[    3.099489] [drm] Initialized drm 1.1.0 20060810
[    3.170540] atl1c 0000:01:00.0: version 1.0.1.1-NAPI
[    3.279465] ahci 0000:00:1f.2: version 3.0
[    3.279898] ahci 0000:00:1f.2: irq 42 for MSI/MSI-X
[    3.279992] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[    3.280168] ahci 0000:00:1f.2: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0x3 impl SATA mode
[    3.280286] ahci 0000:00:1f.2: flags: 64bit ncq ilck stag pm led clo pmp pio slum part 
[    3.296122] usb 1-4: new high-speed USB device number 3 using ehci-pci
[    3.322943] scsi0 : ahci
[    3.324330] scsi1 : ahci
[    3.325019] scsi2 : ahci
[    3.326774] scsi3 : ahci
[    3.329302] ata1: SATA max UDMA/133 abar m1024@0x98204000 port 0x98204100 irq 42
[    3.329436] ata2: SATA max UDMA/133 abar m1024@0x98204000 port 0x98204180 irq 42
[    3.329557] ata3: DUMMY
[    3.329629] ata4: DUMMY
[    3.534577] usb 1-4: New USB device found, idVendor=0402, idProduct=9665
[    3.534678] usb 1-4: New USB device strings: Mfr=3, Product=1, SerialNumber=0
[    3.534759] usb 1-4: Product: 1.3M WebCam
[    3.534829] usb 1-4: Manufacturer: XPA5B1S4Y
[    3.788193] usb 3-1: new full-speed USB device number 2 using uhci_hcd
[    3.820167] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    3.820805] ata1.00: unexpected _GTF length (4)
[    3.821249] ata1.00: ATA-9: SanDisk SDSSDP128G, 3.2.0, max UDMA/133
[    3.821342] ata1.00: 246162672 sectors, multi 1: LBA48 NCQ (depth 31/32)
[    3.822341] ata1.00: unexpected _GTF length (4)
[    3.822844] ata1.00: configured for UDMA/133
[    3.823222] scsi 0:0:0:0: Direct-Access     ATA      SanDisk SDSSDP12 0    PQ: 0 ANSI: 5
[    3.824358] sd 0:0:0:0: [sda] 246162672 512-byte logical blocks: (126 GB/117 GiB)
[    3.824417] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    3.825353] sd 0:0:0:0: [sda] Write Protect is off
[    3.825432] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    3.825542] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    3.827783]  sda: sda1 sda2 < sda5 >
[    3.829234] sd 0:0:0:0: [sda] Attached SCSI disk
[    3.950868] usb 3-1: New USB device found, idVendor=046d, idProduct=c52b
[    3.950966] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.951045] usb 3-1: Product: USB Receiver
[    3.951113] usb 3-1: Manufacturer: Logitech
[    3.991316] hidraw: raw HID events driver (C) Jiri Kosina
[    4.048775] usbcore: registered new interface driver usbhid
[    4.048869] usbhid: USB HID core driver
[    4.081092] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:1d.1-1/input2
[    4.140104] ata2: SATA link down (SStatus 0 SControl 300)
[    4.142140] input: Logitech Unifying Device. Wireless PID:400a as /devices/pci0000:00/0000:00:1d.1/usb3/3-1/3-1:1.2/0003:046D:C52B.0003/0003:046D:C52B.0004/input/input7
[    4.143474] logitech-djdevice 0003:046D:C52B.0004: input,hidraw1: USB HID v1.11 Mouse [Logitech Unifying Device. Wireless PID:400a] on usb-0000:00:1d.1-1:1
[    4.285043] psmouse serio1: synaptics: queried max coordinates: x [..5612], y [..4618]
[    4.391978] psmouse serio1: synaptics: Touchpad model: 1, fw: 7.2, id: 0x1c0b1, caps: 0xd04733/0xa40000/0xa0000, board id: 0, fw id: 528321
[    4.457831] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input6
[    5.458448] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    6.166197] systemd-udevd[253]: starting version 208
[    6.793944] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    6.880441] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMBA) (20140424/utaddress-254)
[    6.880680] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.880801] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000053E (\GPIO) (20140424/utaddress-254)
[    6.881029] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.881147] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000053E (\GPIO) (20140424/utaddress-254)
[    6.881373] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.881489] lpc_ich: Resource conflict(s) found affecting gpio_ich
[    6.988658] cfg80211: Calling CRDA to update world regulatory domain
[    7.101980] media: Linux media interface: v0.10
[    7.103699] random: nonblocking pool is initialized
[    7.363247] Linux video capture interface: v2.00
[    7.422772] ath: phy0: Enable LNA combining
[    7.425492] ath: phy0: ASPM enabled: 0x42
[    7.425589] ath: EEPROM regdomain: 0x65
[    7.425595] ath: EEPROM indicates we should expect a direct regpair map
[    7.425604] ath: Country alpha2 being used: 00
[    7.425609] ath: Regpair used: 0x65
[    7.482183] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[    7.484086] ieee80211 phy0: Atheros AR9285 Rev:2 mem=0xf8120000, irq=17
[    7.769826] uvcvideo: Found UVC 1.00 device 1.3M WebCam (0402:9665)
[    7.804637] input: 1.3M WebCam as /devices/pci0000:00/0000:00:1d.7/usb1/1-4/1-4:1.0/input/input8
[    7.807785] usbcore: registered new interface driver uvcvideo
[    7.807884] USB Video Class driver (1.1.1)
[    8.247994] snd_hda_intel 0000:00:1b.0: irq 43 for MSI/MSI-X
[    8.361661] sound hdaudioC0D0: autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[    8.361674] sound hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[    8.361684] sound hdaudioC0D0:    hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[    8.361691] sound hdaudioC0D0:    mono: mono_out=0x0
[    8.361697] sound hdaudioC0D0:    inputs:
[    8.361706] sound hdaudioC0D0:      Mic=0x18
[    8.361715] sound hdaudioC0D0:      Internal Mic=0x12
[    8.378990] input: HDA Intel Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
[    8.380693] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
[    8.447755] acer_wmi: Acer Laptop ACPI-WMI Extras
[    8.447804] acer_wmi: Function bitmap for Communication Button: 0x1
[    8.448097] acer_wmi: Brightness must be controlled by acpi video driver
[    8.455767] input: Acer WMI hotkeys as /devices/virtual/input/input11
[    8.458138] input: Acer BMA150 accelerometer as /devices/virtual/input/input12
[    8.588580] cfg80211: World regulatory domain updated:
[    8.588591] cfg80211:  DFS Master region: unset
[    8.588598] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[    8.588609] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    8.588617] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    8.588626] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[    8.588634] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[    8.588641] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   18.250894] lp: driver loaded but no devices found
[   18.336706] init: plymouth-upstart-bridge main process (612) killed by TERM signal
[   18.354012] ppdev: user-space parallel port driver
[   19.517808] Adding 2084860k swap on /dev/sda5.  Priority:-1 extents:1 across:2084860k SSFS
[   23.115713] init: Error while reading from descriptor: Broken pipe
[   23.230393] init: failsafe main process (897) killed by TERM signal
[   23.253973] init: samba-ad-dc main process (889) terminated with status 1
[   23.477097] Bluetooth: Core ver 2.19
[   23.477188] NET: Registered protocol family 31
[   23.477195] Bluetooth: HCI device and connection manager initialized
[   23.478366] Bluetooth: HCI socket layer initialized
[   23.478384] Bluetooth: L2CAP socket layer initialized
[   23.478426] Bluetooth: SCO socket layer initialized
[   23.504832] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   23.504841] Bluetooth: BNEP filters: protocol multicast
[   23.504866] Bluetooth: BNEP socket layer initialized
[   24.484191] Bluetooth: RFCOMM TTY layer initialized
[   24.484219] Bluetooth: RFCOMM socket layer initialized
[   24.484245] Bluetooth: RFCOMM ver 1.11
[   25.520300] audit: type=1400 audit(1438946122.228:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1098 comm="apparmor_parser"
[   25.520328] audit: type=1400 audit(1438946122.228:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=1098 comm="apparmor_parser"
[   25.568395] audit: type=1400 audit(1438946122.276:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1099 comm="apparmor_parser"
[   25.568423] audit: type=1400 audit(1438946122.276:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=1099 comm="apparmor_parser"
[   25.568444] audit: type=1400 audit(1438946122.276:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="third_party" pid=1099 comm="apparmor_parser"
[   25.575581] audit: type=1400 audit(1438946122.280:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1098 comm="apparmor_parser"
[   25.575615] audit: type=1400 audit(1438946122.280:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1098 comm="apparmor_parser"
[   25.575639] audit: type=1400 audit(1438946122.280:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1098 comm="apparmor_parser"
[   25.630899] systemd-logind[1075]: Watching system buttons on /dev/input/event3 (Power Button)
[   25.631242] systemd-logind[1075]: Watching system buttons on /dev/input/event0 (Power Button)
[   25.631549] systemd-logind[1075]: Watching system buttons on /dev/input/event2 (Lid Switch)
[   25.631862] systemd-logind[1075]: Watching system buttons on /dev/input/event1 (Sleep Button)
[   25.631989] systemd-logind[1075]: New seat seat0.
[   25.637727] audit: type=1400 audit(1438946122.344:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/mission-control-5" pid=1098 comm="apparmor_parser"
[   25.637776] audit: type=1400 audit(1438946122.344:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/telepathy/telepathy-*" pid=1098 comm="apparmor_parser"
[   25.731963] atl1c 0000:01:00.0: irq 44 for MSI/MSI-X
[   25.754209] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   25.829270] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   27.743322] wlan0: authenticate with f4:ca:e5:e4:c6:dc
[   27.760297] wlan0: send auth to f4:ca:e5:e4:c6:dc (try 1/3)
[   27.762069] wlan0: authenticated
[   27.764103] wlan0: associate with f4:ca:e5:e4:c6:dc (try 1/3)
[   27.767498] wlan0: RX AssocResp from f4:ca:e5:e4:c6:dc (capab=0x411 status=0 aid=4)
[   27.767617] wlan0: associated
[   27.767683] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   28.287130] wlan0: deauthenticating from f4:ca:e5:e4:c6:dc by local choice (Reason: 2=PREV_AUTH_NOT_VALID)
[   28.296843] cfg80211: Calling CRDA to update world regulatory domain
[   28.300961] wlan0: authenticate with f4:ca:e5:e4:c6:dc
[   28.317437] wlan0: send auth to f4:ca:e5:e4:c6:dc (try 1/3)
[   28.320793] cfg80211: World regulatory domain updated:
[   28.320810] cfg80211:  DFS Master region: unset
[   28.320909] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
[   28.320913] wlan0: authenticated
[   28.320926] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   28.320934] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   28.320943] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
[   28.320951] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   28.320959] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
[   28.332075] wlan0: associate with f4:ca:e5:e4:c6:dc (try 1/3)
[   28.335926] wlan0: RX AssocResp from f4:ca:e5:e4:c6:dc (capab=0x411 status=0 aid=4)
[   28.336107] wlan0: associated
[   32.014463] systemd-logind[1075]: Failed to start unit user@111.service: Unknown unit: user@111.service
[   32.014496] systemd-logind[1075]: Failed to start user service: Unknown unit: user@111.service
[   32.053044] systemd-logind[1075]: New session c1 of user lightdm.
[   32.053137] systemd-logind[1075]: Linked /tmp/.X11-unix/X0 to /run/user/111/X11-display.
[   47.001977] systemd-logind[1075]: Failed to start unit user@1000.service: Unknown unit: user@1000.service
[   47.002000] systemd-logind[1075]: Failed to start user service: Unknown unit: user@1000.service
[   47.035225] systemd-logind[1075]: New session c2 of user guillaume.
[   47.035317] systemd-logind[1075]: Linked /tmp/.X11-unix/X0 to /run/user/1000/X11-display.
[   82.345733] perf interrupt took too long (2520 > 2500), lowering kernel.perf_event_max_sample_rate to 50000
[  686.046546] perf interrupt took too long (5017 > 5000), lowering kernel.perf_event_max_sample_rate to 25000

Hors ligne

#9 Le 07/08/2015, à 13:57

moko138

Re : Une erreur est survenue lors du montage /.

Pour l'instant, je ne repère que

[   23.11...] init: Error while reading from descriptor: Broken pipe

Mais c'est le dmesg du démarrage en recovery...
Que donne

cat /var/log/dmesg.0 | grep remount

%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#10 Le 07/08/2015, à 14:07

pepenunux

Re : Une erreur est survenue lors du montage /.

Ça ne donne rien sad

Hors ligne

#11 Le 07/08/2015, à 14:23

moko138

Re : Une erreur est survenue lors du montage /.

Alors on va remonter dans les archives jusqu'à trouver remount :

zless /var/log/dmesg.1.gz | grep remount

Si le retour est vide tu remplaces 1 par 2 etc.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#12 Le 07/08/2015, à 14:36

pepenunux

Re : Une erreur est survenue lors du montage /.

aucune réaction avec 1 ou 2 !

Hors ligne

#13 Le 07/08/2015, à 14:44

pepenunux

Re : Une erreur est survenue lors du montage /.

Ah....j'ai ça au 5eme essai !

guillaume@guillaume-AOD255:~$ zless /var/log/dmesg.5.gz | grep remount
gzip: /var/log/dmesg.5.gz: No such file or directory
/var/log/dmesg.5.gz: Aucun fichier ou dossier de ce type
guillaume@guillaume-AOD255:~$ 

Hors ligne

#14 Le 07/08/2015, à 14:50

moko138

Re : Une erreur est survenue lors du montage /.

Essaie aussi avec 3 et 4.

Le message est-il exactement

Une erreur est survenue lors du montage /.

Si non, donne le message exact.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#15 Le 07/08/2015, à 15:11

pepenunux

Re : Une erreur est survenue lors du montage /.

testé avec 3 et 4....meme résultat  ! rien...

pour le message, oui c'est bien le message exact.

A cette page, kubuntu me donne le choix de passer en appuyant sur "S" ou de récupérer en manuel avec "M"

Hors ligne

#16 Le 07/08/2015, à 15:32

moko138

Re : Une erreur est survenue lors du montage /.

Eh bien "S" !

Et si le démarrage aboutit, donne le contenu de

cd && dmesg > dmesg150807b.txt

Et si le démarrage n'aboutit pas, tu donnes le message d'erreur.


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#17 Le 07/08/2015, à 15:52

pepenunux

Re : Une erreur est survenue lors du montage /.

Si je fais S...le démarrage se poursuit....puis je n'ai plus d'affichage!

Hors ligne

#18 Le 07/08/2015, à 15:58

moko138

Re : Une erreur est survenue lors du montage /.

NB : ceci n'est PAS à faire en session root mais dans ta session normale.
Passe en console par Ctrl Alt F1
tu te logues à ton user habituel,
tu tapes ton mdp à l'aveugle.
puis

sudo rm .*authority

ne pas oublier le point devant l'astérisque
puis

sudo reboot

%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#19 Le 07/08/2015, à 16:29

pepenunux

Re : Une erreur est survenue lors du montage /.

OK.
Fait puis reboot.j'ai re-appuyé sur S au démarrage.
Par contre, je n'ai pas encore d'image !
hmm

Hors ligne

#20 Le 07/08/2015, à 17:51

moko138

Re : Une erreur est survenue lors du montage /.

Fais, en session live, un rapport boot-info SANS la réparation recommandee,
doc.ubuntu-fr.org/tutoriel/boot-info.

Ma connexion devient pourrie : si quelqu'un veut bien prendre le relais...


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#21 Le 07/08/2015, à 18:04

erresse

Re : Une erreur est survenue lors du montage /.

pepenunux, quand tu auras ouvert une session "live", passe la commande :

sudo blkid

et compare les UUID calculés avec ceux qui figurent dans le listing de ton fstab (message #4 ci-dessus).
Si tu vois que l'UUID du disque racine "/" est différent de celui fourni par la commande "blkid", ça expliquerait pourquoi il ne peut pas monter la racine du système et donc pourquoi tu ne peux pas démarrer...
Auquel cas, bien sûr, tu pourrais corriger le fichier fstab avec le bon UUID et tenter de redémarrer.


Plus de 50 ans d'informatique, ça en fait des lignes de commandes en console, mais on n'avait pas le choix...
Excellente raison pour, aujourd'hui qu'on le peut, utiliser au maximum les INTERFACES GRAPHIQUES !
Important : Une fois résolu, pensez à clore votre sujet en ajoutant [Résolu] devant le titre du 1er message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.

Hors ligne

#22 Le 07/08/2015, à 18:50

moko138

Re : Une erreur est survenue lors du montage /.

Merci, eresse !  smile


%NOINDEX%
Un utilitaire précieux : ncdu
Photo, mini-tutoriel :  À la découverte de dcraw

Hors ligne

#23 Le 07/08/2015, à 21:01

pepenunux

Re : Une erreur est survenue lors du montage /.

Un grand MERCI pour votre aide.
J'ai dût m'absenter.
Je fais les manip' dès que possible.
Merci encore.

Hors ligne

#24 Le 08/08/2015, à 12:22

pepenunux

Re : Une erreur est survenue lors du montage /.

erresse a écrit :

pepenunux, quand tu auras ouvert une session "live", passe la commande :

sudo blkid

et compare les UUID calculés avec ceux qui figurent dans le listing de ton fstab (message #4 ci-dessus).
Si tu vois que l'UUID du disque racine "/" est différent de celui fourni par la commande "blkid", ça expliquerait pourquoi il ne peut pas monter la racine du système et donc pourquoi tu ne peux pas démarrer...
Auquel cas, bien sûr, tu pourrais corriger le fichier fstab avec le bon UUID et tenter de redémarrer.

alors, sudo blkid me donne ça:

/dev/loop0: TYPE="squashfs"
/dev/sda1: UUID="4e071337-edab-4abe-a1b7-9b8f4d638a34" TYPE="ext4"
/dev/sda5: UUID="c36c3d36-3883-44a9-af27-047dcb097913" TYPE="swap"
/dev/sr0: LABEL="Ubuntu 14.04.2 LTS amd64" TYPE="iso9660"

je ne vois pas beaucoup de différence...qu'en pensez vous ?

Hors ligne

#25 Le 08/08/2015, à 12:37

erresse

Re : Une erreur est survenue lors du montage /.

Effectivement, je n'en vois pas non plus... Dommage, mais ça élimine donc cette cause d'erreur, on sait maintenant que ça ne vient pas de là !
Et donc, puisque ce n'est pas l'identification des partitions qui foire, ni le contexte graphique... Qui a une autre piste ???
Après, je ne vois plus que la solution brutale de réinstaller le système, en évitant de le bricoler ensuite...


Plus de 50 ans d'informatique, ça en fait des lignes de commandes en console, mais on n'avait pas le choix...
Excellente raison pour, aujourd'hui qu'on le peut, utiliser au maximum les INTERFACES GRAPHIQUES !
Important : Une fois résolu, pensez à clore votre sujet en ajoutant [Résolu] devant le titre du 1er message, et un bref récapitulatif de la solution à la fin de celui-ci. Merci.

Hors ligne