You are not logged in.

#1 2016-01-15 16:55:00

D101101
Member
Registered: 2014-07-02
Posts: 36

[SOLVED] dm-crypt:simple partition layout with LUKS

Hello. I have tried to install Archlinux with encrypted root and home partition, but in the result I can't boot.

I use a laptop with UEFI
grub is installed in /mnt chroot with the command:

grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootloader-id=grub --boot-directory=/boot/efi --recheck --debug
grub-mkconfig -o /boot/efi/grub/grub.cfg

Error:

error: no such device: 50e997bd-4fb6-47df-811a-c6bb341a3ecc.
Loading Linux linux ...
error: disk 'cryptouuid/d3ed1877-f966-4479-9fa8-0f5e5fa9eb93' not found.
Loading initial ramdisk ...
alloc magic is broken at 0xbafd9280: bb064700
Aborted. Press any key to exit.

Boot from archlinux image:

parted -l:

Model: ATA ST500LT012-9WS14 (scsi)
Disk /dev/sda: 500GB
Sector size (logical/physical): 512B/4096B
Partition Table: gpt
Disk Flags: 

Number  Start   End     Size    File system  Name    Flags
 1      1049kB  538MB   537MB   fat32                boot, esp
 2      538MB   22.0GB  21.5GB               rootfs
 3      22.0GB  500GB   478GB                home

lsblk:

NAME       FSTYPE      LABEL       UUID                                 MOUNTPOINT
sda                                                                     
├─sda1     vfat                    E628-ECDA                            /mnt/boot/efi
├─sda2     crypto_LUKS             d3ed1877-f966-4479-9fa8-0f5e5fa9eb93 
│ └─rootfs ext4                    50e997bd-4fb6-47df-811a-c6bb341a3ecc /mnt
└─sda3     crypto_LUKS             952c4ccc-4225-434e-82fc-7d527e51f5e0 
  └─home   ext4                    c1c3ee5c-76cc-402a-91e9-5be87014d6d0 /mnt/home

fstab

# 
# /etc/fstab: static file system information
#
# <file system>	<dir>	<type>	<options>	<dump>	<pass>
# /dev/mapper/cryptroot
UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc	/         	ext4      	rw,relatime,data=ordered	0 1

# /dev/mapper/crypthome
UUID=c1c3ee5c-76cc-402a-91e9-5be87014d6d0	/home     	ext4      	rw,relatime,data=ordered	0 2

# /dev/sda1
UUID=E628-ECDA                              /boot/efi 	vfat      	rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro	0 2

crypttab

# crypttab: mappings for encrypted partitions
#
# Each mapped device will be created in /dev/mapper, so your /etc/fstab
# should use the /dev/mapper/<name> paths for encrypted devices.
#
# The Arch specific syntax has been deprecated, see crypttab(5) for the
# new supported syntax.
#
# NOTE: Do not list your root (/) partition here, it must be set up
#       beforehand by the initramfs (/etc/mkinitcpio.conf).

# <name>       <device>                                     <password>              <options>
# home         UUID=b8ad5c18-f445-495d-9095-c9ec4f9d2f37    /etc/mypassword1
# data1        /dev/sda3                                    /etc/mypassword2
# data2        /dev/sda5                                    /etc/cryptfs.key
# swap         /dev/sdx4                                    /dev/urandom            swap,cipher=aes-cbc-essiv:sha256,size=256
# vol          /dev/sdb7                                    none

crypthome       UUID=952c4ccc-4225-434e-82fc-7d527e51f5e0       /etc/home.key       luks,timeout=180

mkinitcpio.conf:

# vim:set ft=sh
# MODULES
# The following modules are loaded before any boot hooks are
# run.  Advanced users may wish to specify all system modules
# in this array.  For instance:
#     MODULES="piix ide_disk reiserfs"
MODULES=""

# BINARIES
# This setting includes any additional binaries a given user may
# wish into the CPIO image.  This is run last, so it may be used to
# override the actual binaries included by a given hook
# BINARIES are dependency parsed, so you may safely ignore libraries
BINARIES=""

# FILES
# This setting is similar to BINARIES above, however, files are added
# as-is and are not parsed in any way.  This is useful for config files.
FILES=""

# HOOKS
# This is the most important setting in this file.  The HOOKS control the
# modules and scripts added to the image, and what happens at boot time.
# Order is important, and it is recommended that you do not change the
# order in which HOOKS are added.  Run 'mkinitcpio -H <hook name>' for
# help on a given hook.
# 'base' is _required_ unless you know precisely what you are doing.
# 'udev' is _required_ in order to automatically load modules
# 'filesystems' is _required_ unless you specify your fs modules in MODULES
# Examples:
##   This setup specifies all modules in the MODULES setting above.
##   No raid, lvm2, or encrypted root is needed.
#    HOOKS="base"
#
##   This setup will autodetect all modules for your system and should
##   work as a sane default
#    HOOKS="base udev autodetect block filesystems"
#
##   This setup will generate a 'full' image which supports most systems.
##   No autodetection is done.
#    HOOKS="base udev block filesystems"
#
##   This setup assembles a pata mdadm array with an encrypted root FS.
##   Note: See 'mkinitcpio -H mdadm' for more information on raid devices.
#    HOOKS="base udev block mdadm encrypt filesystems"
#
##   This setup loads an lvm2 volume group on a usb device.
#    HOOKS="base udev block lvm2 filesystems"
#
##   NOTE: If you have /usr on a separate partition, you MUST include the
#    usr, fsck and shutdown hooks.
HOOKS="base udev autodetect modconf block encrypt filesystems keyboard fsck"

# COMPRESSION
# Use this to compress the initramfs image. By default, gzip compression
# is used. Use 'cat' to create an uncompressed image.
#COMPRESSION="gzip"
#COMPRESSION="bzip2"
#COMPRESSION="lzma"
#COMPRESSION="xz"
#COMPRESSION="lzop"
#COMPRESSION="lz4"

# COMPRESSION_OPTIONS
# Additional options for the compressor
#COMPRESSION_OPTIONS=""

/etc/default/grub:

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="Arch"
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX="cryptdevice=/dev/sda2:cryptroot"

# Preload both GPT and MBR modules so that they are not missed
GRUB_PRELOAD_MODULES="part_gpt part_msdos"

# Uncomment to enable Hidden Menu, and optionally hide the timeout count
#GRUB_HIDDEN_TIMEOUT=5
#GRUB_HIDDEN_TIMEOUT_QUIET=true

# Uncomment to use basic console
GRUB_TERMINAL_INPUT=console

# Uncomment to disable graphical terminal
#GRUB_TERMINAL_OUTPUT=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
GRUB_GFXMODE=auto

# Uncomment to allow the kernel use the same resolution used by grub
GRUB_GFXPAYLOAD_LINUX=keep

# Uncomment if you want GRUB to pass to the Linux kernel the old parameter 
# format "root=/dev/xxx" instead of "root=/dev/disk/by-uuid/xxx" 
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
GRUB_DISABLE_RECOVERY=true

# Uncomment and set to the desired menu colors.  Used by normal and wallpaper 
# modes only.  Entries specified as foreground/background.
#GRUB_COLOR_NORMAL="light-blue/black"
#GRUB_COLOR_HIGHLIGHT="light-cyan/blue"

# Uncomment one of them for the gfx desired, a image background or a gfxtheme
#GRUB_BACKGROUND="/path/to/wallpaper"
#GRUB_THEME="/path/to/gfxtheme"

# Uncomment to get a beep at GRUB start
#GRUB_INIT_TUNE="480 440 1"

#GRUB_SAVEDEFAULT="true"

grub.cfg:

#
# 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 ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
  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 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 loadfont unicode ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt 
	insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 
	insmod ext2
	set root='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'  50e997bd-4fb6-47df-811a-c6bb341a3ecc
	else
	  search --no-floppy --fs-uuid --set=root 50e997bd-4fb6-47df-811a-c6bb341a3ecc
	fi
	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw cryptdevice=/dev/sda2:cryptroot quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
	menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt 
		insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 
		insmod ext2
		set root='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'  50e997bd-4fb6-47df-811a-c6bb341a3ecc
		else
		  search --no-floppy --fs-uuid --set=root 50e997bd-4fb6-47df-811a-c6bb341a3ecc
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw cryptdevice=/dev/sda2:cryptroot quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
	}
	menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt 
		insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 
		insmod ext2
		set root='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'
		if [ x$feature_platform_search_hint = xy ]; then
		  search --no-floppy --fs-uuid --set=root --hint='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'  50e997bd-4fb6-47df-811a-c6bb341a3ecc
		else
		  search --no-floppy --fs-uuid --set=root 50e997bd-4fb6-47df-811a-c6bb341a3ecc
		fi
		echo	'Loading Linux linux ...'
		linux	/boot/vmlinuz-linux root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw cryptdevice=/dev/sda2:cryptroot quiet
		echo	'Loading initial ramdisk ...'
		initrd	/boot/intel-ucode.img /boot/initramfs-linux-fallback.img
	}
}

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

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

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### 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 ###

### BEGIN /etc/grub.d/60_memtest86+ ###
### END /etc/grub.d/60_memtest86+ ###

This is my first try to configure the boot process with encryption, and I'm not sure how it should look like.
All the information I took from archwiki, but it looks like I missed something...

Last edited by D101101 (2016-01-18 10:06:48)

Offline

#2 2016-01-15 22:38:08

clfarron4
Member
From: London, UK
Registered: 2013-06-28
Posts: 2,163
Website

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

D101101 wrote:

Hello. I have tried to install Archlinux with encrypted root and home partition, but in the result I can't boot.
grub.cfg:

#

[snip]

	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw cryptdevice=/dev/sda2:cryptroot quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
[snip]

This is my first try to configure the boot process with encryption, and I'm not sure how it should look like.
All the information I took from archwiki, but it looks like I missed something...

I wonder if the "linux" line here is correct. Looking at wiki, I think you've gotten the wrong "root" entry. Also, I'd be using UUIDs for the "cryptdevice" entry. Try this:

        linux	/boot/vmlinuz-linux quiet cryptdevice=UUID=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93:cryptroot root=/dev/mapper/cryptroot

Something I've noticed is that grub-mkconfig isn't that great when it comes to dealing with luks encrypted setups and some manual intervention is always needed.

Last edited by clfarron4 (2016-01-15 22:39:57)


Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository

Offline

#3 2016-01-16 04:07:28

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

clfarron4, thanks for the reply.
It looks believable, but nothing has changed.

I think the error occurs before this line

error: no such device: 50e997bd-4fb6-47df-811a-c6bb341a3ecc.
Loading Linux linux ...

i.e it is somewhere in the "if"

set root='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'
	if [ x$feature_platform_search_hint = xy ]; then
	  search --no-floppy --fs-uuid --set=root --hint='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'  50e997bd-4fb6-47df-811a-c6bb341a3ecc
	else
	  search --no-floppy --fs-uuid --set=root 50e997bd-4fb6-47df-811a-c6bb341a3ecc
	fi

I'm not sure how I should change it

Offline

#4 2016-01-16 04:25:54

TheSaint
Member
From: my computer
Registered: 2007-08-19
Posts: 1,523

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Best attempt is to do manually tests by editing the grub at boot time. Even better if you try the grub shell and with the help of auto-completion to find the encrypted partitions.


do it good first, it will be faster than do it twice the saint wink

Offline

#5 2016-01-16 05:49:54

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

TheSaint, I've never used it, so I'll try it later
At the moment I need a working example "grub.cfg"

Offline

#6 2016-01-16 05:52:43

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Apparently your /boot is in the encrypted / , so are you prompted for the passphrase before:

error: no such device: 50e997bd-4fb6-47df-811a-c6bb341a3ecc.

EDIT: wait, --boot-directory=/boot/efi is probably wrong anyway
so I suppose the efi binary can locate normal.mod (and grub.cfg obviously) in the ESP, but it cannot be aware that the /boot (/) is encrypted that way.
So you probably want to reinstall grub with the proper option (i.e. leave out --boot-directory=/boot/efi)

Last edited by tom.ty89 (2016-01-16 05:57:26)

Offline

#7 2016-01-16 05:57:52

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

tom.ty89, Thanks, I think I understood
I wanted to get rid of the boot partition, by installing grub at $esp, but forgot about the core

EDIT: wait, --boot-directory=/boot/efi is probably wrong anyway

I took it from the wiki
https://wiki.archlinux.org/index.php/GR … all_method

Last edited by D101101 (2016-01-16 06:00:29)

Offline

#8 2016-01-16 06:01:38

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

It's actually possible that you have "the whole grub" on the ESP and then try to load kernel and initramfs in an encrypted partition, it's just you need to write your own grub.cfg, e.g.:
https://gist.github.com/tomty89/53c1bb1496ee9a1f76e6

Offline

#9 2016-01-16 06:04:15

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Thanks, I'll try it

Offline

#10 2016-01-16 06:38:35

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

s_1452926176_6207266_3456764b8e.jpg
...
so I do not know how to mount it

Offline

#11 2016-01-16 07:45:09

TheSaint
Member
From: my computer
Registered: 2007-08-19
Posts: 1,523

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Maybe your root partition is named /dev/mapper/cryptroot instead of /dev/sda2.
Then as you're dropped onto grub shell what about trying the grub.cfg options, like i.e

search --no-floppy --fs-uuid --set=root --hint='cryptouuid/d3ed1877f96644799fa80f5e5fa9eb93'  50e997bd-4fb6-47df-811a-c6bb341a3ecc

Definitely you need another computer or smartphone to do the tests and read the forum wink


do it good first, it will be faster than do it twice the saint wink

Offline

#12 2016-01-16 08:02:39

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

TheSaint wrote:

Maybe your root partition is named /dev/mapper/cryptroot instead of /dev/sda2.

if I understand correctly, it's the name of my decrypted root partition, after I successfully completed a command similar to:

linux	/boot/vmlinuz-linux quiet cryptdevice=UUID=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93:cryptroot

i.e after I myself mount it with the same name

Offline

#13 2016-01-16 08:13:39

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

I'm still not clear an important point, when should it  ask me for my passphrase?

Offline

#14 2016-01-16 08:18:20

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

In this case, it should ask when you run the cryptomount command. However somehow grub seems to be not able to detect it as a luks partition. Have you `insmod luks`?

EDIT:
FWIW, this is the correct way

cryptomount -u d3ed1877f96644799fa80f5e5fa9eb93

cryptomount -u needs the luks UUID with hyphen stripped
You can also try:

cryptomount hd2,gpt2

that is, device name of the partition in grub with brackets stripped.
You can determine whether it's hd2 by checking the UUID hd2,gpt1 (then unencrypted ESP)

Last edited by tom.ty89 (2016-01-16 08:23:23)

Offline

#15 2016-01-16 08:23:19

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

I have tried once to boot with this configuration
s_1452932525_4425304_737410ce3b.jpg

It failed at

cryptomount -u 

Last edited by D101101 (2016-01-16 08:26:10)

Offline

#16 2016-01-16 08:31:59

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

hm, I tried again in the grub shell and it works
I think the first time I did not use `insmod luks`
Now I try again to boot

Last edited by D101101 (2016-01-16 08:32:14)

Offline

#17 2016-01-16 08:33:02

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

No idea then. Maybe you set up LUKS with certain configuartion that grub doesn't support?
Try not to have the insmod lines you have but only and purely `insmod luks`, that's the only thing I can think of.

Btw, not relevant to the current issue, but it should be root=UUID=$uuid

Offline

#18 2016-01-16 09:10:36

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

God, I get it

two problems:
1) In order to boot the system I need to execute `insmod luks` in grub shell by myself
2) I need to enter my passphrase twice (first cryptomount, second linux cryptdevice)

Any ideas how to fix this?

EDIT:
grub.cfg:

menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt 
	insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 
	insmod ext2
	set crypto_uuid=d3ed1877f96644799fa80f5e5fa9eb93
	set crypt_uuid=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93
	cryptomount -u $crypto_uuid
	probe -u (crypto0) -s uuid
    set root=(crypto0)
	echo	'Loading Linux linux ...'
	linux	/boot/vmlinuz-linux cryptdevice=UUID=$crypt_uuid:cryptroot root=UUID=$uuid rw quiet
	echo	'Loading initial ramdisk ...'
	initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
}

Last edited by D101101 (2016-01-16 09:18:52)

Offline

#19 2016-01-16 09:40:39

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

As I said, try to remove:

	insmod gzio
	insmod part_gpt 
	insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 
	insmod ext2

or at least

	insmod cryptodisk luks gcry_rijndael gcry_rijndael gcry_sha256 

instead, have

insmod luks

maybe you should put it BEFORE menuentry too.

For the second issue, you need probably need a keyfile in the initramfs: http://www.pavelkogan.com/2014/05/23/lu … ncryption/ (Bonus: Login once)
I've never really tested that. Take it as a reference with caution.

P.S. https://projects.archlinux.org/svntogit … ptsetup#n7

Last edited by tom.ty89 (2016-01-16 09:44:34)

Offline

#20 2016-01-16 11:01:23

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Thank you so much

maybe you should put it BEFORE menuentry too.

Yes, it helps

grub.cfg:

menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-50e997bd-4fb6-47df-811a-c6bb341a3ecc' {
    load_video
    set gfxpayload=keep
    #insmod part_gpt 
    #insmod cryptodisk luks
    set crypto_uuid=d3ed1877f96644799fa80f5e5fa9eb93
    set crypt_uuid=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93
    cryptomount -u $crypto_uuid
    probe -u (crypto0) -s uuid
    set root=(crypto0)
    echo	'Loading Linux linux ...'
    linux	/boot/vmlinuz-linux cryptdevice=UUID=$crypt_uuid:cryptroot root=UUID=$uuid rw quiet
    echo	'Loading initial ramdisk ...'
    initrd	/boot/intel-ucode.img /boot/initramfs-linux.img
}

Now all works
Two more questions, I hope the last

# journalctl | grep home
янв 16 13:24:34 Arch systemd[1]: Starting Cryptography Setup for crypthome...
янв 16 13:24:34 Arch systemd-cryptsetup[365]: Key file /etc/home.key is world-readable. This is not a good idea!
янв 16 13:24:37 Arch systemd[1]: Started Cryptography Setup for crypthome.
янв 16 13:24:37 Arch systemd[1]: Found device /dev/mapper/crypthome.
янв 16 13:24:37 Arch systemd-fsck[398]: /dev/mapper/crypthome: clean, 11/29188096 files, 1882606/116721670 blocks
янв 16 13:24:37 Arch systemd[1]: Mounting /home...
янв 16 13:24:37 Arch systemd[1]: Mounted /home.
янв 16 13:27:37 Arch systemd[1]: Stopping Cryptography Setup for crypthome...
янв 16 13:27:37 Arch systemd[1]: Unmounting /home...
янв 16 13:27:37 Arch systemd[1]: Stopped (with error) /dev/mapper/crypthome.
янв 16 13:27:37 Arch systemd[1]: Unmounted /home.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-952c4ccc4225434e82fc7d527e51f5e0-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-name-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped Cryptography Setup for crypthome.
Key file /etc/home.key is world-readable. This is not a good idea!

Have a better idea?

Stopped (with error) /dev/mapper/crypthome.

Why?

Offline

#21 2016-01-16 14:47:09

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

The world-readable message is just a warning for the keyfile's permission. For example, if it's 644 now, chmod it to 600, so that only the owner (root) can read it.

Not sure about these:

янв 16 13:27:37 Arch systemd[1]: Stopping Cryptography Setup for crypthome...
янв 16 13:27:37 Arch systemd[1]: Unmounting /home...
янв 16 13:27:37 Arch systemd[1]: Stopped (with error) /dev/mapper/crypthome.
янв 16 13:27:37 Arch systemd[1]: Unmounted /home.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-952c4ccc4225434e82fc7d527e51f5e0-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-name-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped Cryptography Setup for crypthome.

Maybe you should paste a full `journalctl -b`.

Offline

#22 2016-01-16 15:38:39

loqs
Member
Registered: 2014-03-06
Posts: 17,364

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

tom.ty89 wrote:

Not sure about these:

янв 16 13:27:37 Arch systemd[1]: Stopping Cryptography Setup for crypthome...
янв 16 13:27:37 Arch systemd[1]: Unmounting /home...
янв 16 13:27:37 Arch systemd[1]: Stopped (with error) /dev/mapper/crypthome.
янв 16 13:27:37 Arch systemd[1]: Unmounted /home.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-952c4ccc4225434e82fc7d527e51f5e0-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped /dev/disk/by-id/dm-name-crypthome.
янв 16 13:27:37 Arch systemd[1]: Stopped Cryptography Setup for crypthome.

.

https://bbs.archlinux.org/viewtopic.php?id=205275
Unfortunately no one replied with an explanation of why it fails.

Offline

#23 2016-01-16 18:19:12

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Perhaps you can try this manually:

systemctl stop home.mount
systemctl status home.mount

in a boot with UUID in the fstab entry and in a boot with /dev/mapper/crypthome in the entry RESPECTIVELY.

Login as root in the tty to do this though, because other users needs /home.

Offline

#24 2016-01-16 20:11:54

D101101
Member
Registered: 2014-07-02
Posts: 36

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Thanks again for your help, I think my problem solved
I think the last problem can be a bug

systemctl stop home.mount
systemctl status home.mount

exit successful


tom.ty89 wrote:

Maybe you should paste a full `journalctl -b`.

previous boot

-- Logs begin at Сб 2016-01-16 12:01:34 MSK, end at Сб 2016-01-16 22:58:25 MSK. --
янв 16 22:54:47 Arch systemd-journald[264]: Runtime journal (/run/log/journal/) is currently using 8.0M.
                                               Maximum allowed usage is set to 192.1M.
                                               Leaving at least 288.1M free (of currently available 1.8G of space).
                                               Enforced usage limit is thus 192.1M, of which 184.1M are still available.
янв 16 22:54:47 Arch systemd-journald[264]: System journal (/var/log/journal/) is currently using 32.0M.
                                               Maximum allowed usage is set to 1.9G.
                                               Leaving at least 2.9G free (of currently available 13.4G of space).
                                               Enforced usage limit is thus 1.9G, of which 1.9G are still available.
янв 16 22:54:47 Arch systemd-journald[264]: Time spent on flushing to /var is 597.647ms for 2 entries.
янв 16 22:54:47 Arch kernel: microcode: CPU0 microcode updated early to revision 0x1b, date = 2014-05-29
янв 16 22:54:48 Arch kernel: Initializing cgroup subsys cpuset
янв 16 22:54:48 Arch kernel: Initializing cgroup subsys cpu
янв 16 22:54:48 Arch kernel: Initializing cgroup subsys cpuacct
янв 16 22:54:48 Arch kernel: Linux version 4.3.3-2-ARCH (builduser@tobias) (gcc version 5.3.0 (GCC) ) #1 SMP PREEMPT Wed Dec 23 20:09:18 CET 2015
янв 16 22:54:48 Arch kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-linux cryptdevice=UUID=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93:cryptroot root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw quiet
янв 16 22:54:48 Arch kernel: x86/fpu: xstate_offset[2]: 0240, xstate_sizes[2]: 0100
янв 16 22:54:48 Arch kernel: x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
янв 16 22:54:48 Arch kernel: x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
янв 16 22:54:48 Arch kernel: x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
янв 16 22:54:48 Arch kernel: x86/fpu: Enabled xstate features 0x7, context size is 0x340 bytes, using 'standard' format.
янв 16 22:54:48 Arch kernel: x86/fpu: Using 'eager' FPU context switches.
янв 16 22:54:48 Arch kernel: e820: BIOS-provided physical RAM map:
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000040005000-0x00000000c95a6fff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000c95a7000-0x00000000c9a38fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000c9a39000-0x00000000c9a48fff] ACPI data
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000c9a49000-0x00000000ca0a2fff] ACPI NVS
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ca0a3000-0x00000000ca82ffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ca830000-0x00000000ca8cbfff] type 20
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ca8cc000-0x00000000ca8ccfff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ca8cd000-0x00000000ca90ffff] ACPI NVS
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ca910000-0x00000000cad26fff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000cad27000-0x00000000caff3fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000caff4000-0x00000000caffffff] usable
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000cb800000-0x00000000cf9fffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
янв 16 22:54:48 Arch kernel: BIOS-e820: [mem 0x0000000100000000-0x000000012f5fffff] usable
янв 16 22:54:48 Arch kernel: NX (Execute Disable) protection: active
янв 16 22:54:48 Arch kernel: efi: EFI v2.31 by American Megatrends
янв 16 22:54:48 Arch kernel: efi:  ACPI=0xc9a3c000  ACPI 2.0=0xc9a3c000  SMBIOS=0xca82e498 
янв 16 22:54:48 Arch kernel: SMBIOS 2.7 present.
янв 16 22:54:48 Arch kernel: DMI: SAMSUNG ELECTRONICS CO., LTD. 450R4E/450R5E/450R4V/450R5V/NP450R5E-X01RU, BIOS P01RBG.010.130420.ZW 04/20/2013
янв 16 22:54:48 Arch kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
янв 16 22:54:48 Arch kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
янв 16 22:54:48 Arch kernel: e820: last_pfn = 0x12f600 max_arch_pfn = 0x400000000
янв 16 22:54:48 Arch kernel: MTRR default type: uncachable
янв 16 22:54:48 Arch kernel: MTRR fixed ranges enabled:
янв 16 22:54:48 Arch kernel:   00000-9FFFF write-back
янв 16 22:54:48 Arch kernel:   A0000-FFFFF uncachable
янв 16 22:54:48 Arch kernel: MTRR variable ranges enabled:
янв 16 22:54:48 Arch kernel:   0 base 000000000 mask F00000000 write-back
янв 16 22:54:48 Arch kernel:   1 base 100000000 mask FE0000000 write-back
янв 16 22:54:48 Arch kernel:   2 base 120000000 mask FF0000000 write-back
янв 16 22:54:48 Arch kernel:   3 base 0E0000000 mask FE0000000 uncachable
янв 16 22:54:48 Arch kernel:   4 base 0D0000000 mask FF0000000 uncachable
янв 16 22:54:48 Arch kernel:   5 base 0CC000000 mask FFC000000 uncachable
янв 16 22:54:48 Arch kernel:   6 base 0CB800000 mask FFF800000 uncachable
янв 16 22:54:48 Arch kernel:   7 base 12F800000 mask FFF800000 uncachable
янв 16 22:54:48 Arch kernel:   8 base 12F600000 mask FFFE00000 uncachable
янв 16 22:54:48 Arch kernel:   9 disabled
янв 16 22:54:48 Arch kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
янв 16 22:54:48 Arch kernel: e820: update [mem 0xcb800000-0xffffffff] usable ==> reserved
янв 16 22:54:48 Arch kernel: e820: last_pfn = 0xcb000 max_arch_pfn = 0x400000000
янв 16 22:54:48 Arch kernel: Scanning 1 areas for low memory corruption
янв 16 22:54:48 Arch kernel: Base memory trampoline at [ffff880000098000] 98000 size 24576
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x00000000-0x000fffff]
янв 16 22:54:48 Arch kernel:  [mem 0x00000000-0x000fffff] page 4k
янв 16 22:54:48 Arch kernel: BRK [0x02b3f000, 0x02b3ffff] PGTABLE
янв 16 22:54:48 Arch kernel: BRK [0x02b40000, 0x02b40fff] PGTABLE
янв 16 22:54:48 Arch kernel: BRK [0x02b41000, 0x02b41fff] PGTABLE
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x12f400000-0x12f5fffff]
янв 16 22:54:48 Arch kernel:  [mem 0x12f400000-0x12f5fffff] page 2M
янв 16 22:54:48 Arch kernel: BRK [0x02b42000, 0x02b42fff] PGTABLE
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x120000000-0x12f3fffff]
янв 16 22:54:48 Arch kernel:  [mem 0x120000000-0x12f3fffff] page 2M
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x100000000-0x11fffffff]
янв 16 22:54:48 Arch kernel:  [mem 0x100000000-0x11fffffff] page 2M
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x00100000-0x1fffffff]
янв 16 22:54:48 Arch kernel:  [mem 0x00100000-0x001fffff] page 4k
янв 16 22:54:48 Arch kernel:  [mem 0x00200000-0x1fffffff] page 2M
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x20200000-0x40003fff]
янв 16 22:54:48 Arch kernel:  [mem 0x20200000-0x3fffffff] page 2M
янв 16 22:54:48 Arch kernel:  [mem 0x40000000-0x40003fff] page 4k
янв 16 22:54:48 Arch kernel: BRK [0x02b43000, 0x02b43fff] PGTABLE
янв 16 22:54:48 Arch kernel: BRK [0x02b44000, 0x02b44fff] PGTABLE
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0x40005000-0xc95a6fff]
янв 16 22:54:48 Arch kernel:  [mem 0x40005000-0x401fffff] page 4k
янв 16 22:54:48 Arch kernel:  [mem 0x40200000-0xc93fffff] page 2M
янв 16 22:54:48 Arch kernel:  [mem 0xc9400000-0xc95a6fff] page 4k
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0xca8cc000-0xca8ccfff]
янв 16 22:54:48 Arch kernel:  [mem 0xca8cc000-0xca8ccfff] page 4k
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0xca910000-0xcad26fff]
янв 16 22:54:48 Arch kernel:  [mem 0xca910000-0xca9fffff] page 4k
янв 16 22:54:48 Arch kernel:  [mem 0xcaa00000-0xcabfffff] page 2M
янв 16 22:54:48 Arch kernel:  [mem 0xcac00000-0xcad26fff] page 4k
янв 16 22:54:48 Arch kernel: init_memory_mapping: [mem 0xcaff4000-0xcaffffff]
янв 16 22:54:48 Arch kernel:  [mem 0xcaff4000-0xcaffffff] page 4k
янв 16 22:54:48 Arch kernel: RAMDISK: [mem 0x372dc000-0x37965fff]
янв 16 22:54:48 Arch kernel: ACPI: Early table checksum verification disabled
янв 16 22:54:48 Arch kernel: ACPI: RSDP 0x00000000C9A3C000 000024 (v02 SECCSD)
янв 16 22:54:48 Arch kernel: ACPI: XSDT 0x00000000C9A3C088 00008C (v01 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: FACP 0x00000000C9A44F10 00010C (v05 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: DSDT 0x00000000C9A3C1A0 008D6A (v02 SECCSD LH43STAR 00000022 INTL 20051117)
янв 16 22:54:48 Arch kernel: ACPI: FACS 0x00000000CA0A1080 000040
янв 16 22:54:48 Arch kernel: ACPI: APIC 0x00000000C9A45020 000072 (v03 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: FPDT 0x00000000C9A45098 000044 (v01 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: MCFG 0x00000000C9A450E0 00003C (v01 SECCSD LH43STAR 01072009 MSFT 00000097)
янв 16 22:54:48 Arch kernel: ACPI: MSDM 0x00000000C9A45120 000055 (v03 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: HPET 0x00000000C9A45178 000038 (v01 SECCSD LH43STAR 01072009 AMI. 00000005)
янв 16 22:54:48 Arch kernel: ACPI: SSDT 0x00000000C9A451B0 000315 (v01 SataRe SataTabl 00001000 INTL 20091112)
янв 16 22:54:48 Arch kernel: ACPI: SSDT 0x00000000C9A454C8 0009C2 (v01 PmRef  Cpu0Ist  00003000 INTL 20051117)
янв 16 22:54:48 Arch kernel: ACPI: SSDT 0x00000000C9A45E90 000A7E (v01 PmRef  CpuPm    00003000 INTL 20051117)
янв 16 22:54:48 Arch kernel: ACPI: DMAR 0x00000000C9A46910 0000B8 (v01 INTEL  SNB      00000001 INTL 00000001)
янв 16 22:54:48 Arch kernel: ACPI: BGRT 0x00000000C9A469C8 000038 (v00 SECCSD LH43STAR 01072009 AMI  00010013)
янв 16 22:54:48 Arch kernel: ACPI: SSDT 0x00000000C9A46A00 0007E3 (v01 SgRef  SgTabl   00001000 INTL 20051117)
янв 16 22:54:48 Arch kernel: ACPI: SSDT 0x00000000C9A471E8 00152E (v01 OptRef OptTabl  00001000 INTL 20051117)
янв 16 22:54:48 Arch kernel: ACPI: Local APIC address 0xfee00000
янв 16 22:54:48 Arch kernel: No NUMA configuration found
янв 16 22:54:48 Arch kernel: Faking a node at [mem 0x0000000000000000-0x000000012f5fffff]
янв 16 22:54:48 Arch kernel: NODE_DATA(0) allocated [mem 0x12f5f6000-0x12f5f9fff]
янв 16 22:54:48 Arch kernel:  [ffffea0000000000-ffffea0004bfffff] PMD -> [ffff88012ac00000-ffff88012ebfffff] on node 0
янв 16 22:54:48 Arch kernel: Zone ranges:
янв 16 22:54:48 Arch kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
янв 16 22:54:48 Arch kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
янв 16 22:54:48 Arch kernel:   Normal   [mem 0x0000000100000000-0x000000012f5fffff]
янв 16 22:54:48 Arch kernel: Movable zone start for each node
янв 16 22:54:48 Arch kernel: Early memory node ranges
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x0000000000100000-0x000000001fffffff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x0000000020200000-0x0000000040003fff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x0000000040005000-0x00000000c95a6fff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x00000000ca8cc000-0x00000000ca8ccfff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x00000000ca910000-0x00000000cad26fff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x00000000caff4000-0x00000000caffffff]
янв 16 22:54:48 Arch kernel:   node   0: [mem 0x0000000100000000-0x000000012f5fffff]
янв 16 22:54:48 Arch kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000012f5fffff]
янв 16 22:54:48 Arch kernel: On node 0 totalpages: 1019239
янв 16 22:54:48 Arch kernel:   DMA zone: 64 pages used for memmap
янв 16 22:54:48 Arch kernel:   DMA zone: 23 pages reserved
янв 16 22:54:48 Arch kernel:   DMA zone: 3997 pages, LIFO batch:0
янв 16 22:54:48 Arch kernel:   DMA32 zone: 12832 pages used for memmap
янв 16 22:54:48 Arch kernel:   DMA32 zone: 821194 pages, LIFO batch:31
янв 16 22:54:48 Arch kernel:   Normal zone: 3032 pages used for memmap
янв 16 22:54:48 Arch kernel:   Normal zone: 194048 pages, LIFO batch:31
янв 16 22:54:48 Arch kernel: Reserving Intel graphics stolen memory at 0xcba00000-0xcf9fffff
янв 16 22:54:48 Arch kernel: ACPI: PM-Timer IO Port: 0x408
янв 16 22:54:48 Arch kernel: ACPI: Local APIC address 0xfee00000
янв 16 22:54:48 Arch kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
янв 16 22:54:48 Arch kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
янв 16 22:54:48 Arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
янв 16 22:54:48 Arch kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
янв 16 22:54:48 Arch kernel: ACPI: IRQ0 used by override.
янв 16 22:54:48 Arch kernel: ACPI: IRQ9 used by override.
янв 16 22:54:48 Arch kernel: Using ACPI (MADT) for SMP configuration information
янв 16 22:54:48 Arch kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
янв 16 22:54:48 Arch kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000fffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0x20000000-0x201fffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0x40004000-0x40004fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xc95a7000-0xc9a38fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xc9a39000-0xc9a48fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xc9a49000-0xca0a2fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xca0a3000-0xca82ffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xca830000-0xca8cbfff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xca8cd000-0xca90ffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xcad27000-0xcaff3fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xcb000000-0xcb7fffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xcb800000-0xcf9fffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xcfa00000-0xf7ffffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfebfffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfed04000-0xfed1bfff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
янв 16 22:54:48 Arch kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
янв 16 22:54:48 Arch kernel: e820: [mem 0xcfa00000-0xf7ffffff] available for PCI devices
янв 16 22:54:48 Arch kernel: Booting paravirtualized kernel on bare hardware
янв 16 22:54:48 Arch kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
янв 16 22:54:48 Arch kernel: setup_percpu: NR_CPUS:128 nr_cpumask_bits:128 nr_cpu_ids:4 nr_node_ids:1
янв 16 22:54:48 Arch kernel: PERCPU: Embedded 32 pages/cpu @ffff88012f200000 s92824 r8192 d30056 u524288
янв 16 22:54:48 Arch kernel: pcpu-alloc: s92824 r8192 d30056 u524288 alloc=1*2097152
янв 16 22:54:48 Arch kernel: pcpu-alloc: [0] 0 1 2 3 
янв 16 22:54:48 Arch kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1003288
янв 16 22:54:48 Arch kernel: Policy zone: Normal
янв 16 22:54:48 Arch kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux cryptdevice=UUID=d3ed1877-f966-4479-9fa8-0f5e5fa9eb93:cryptroot root=UUID=50e997bd-4fb6-47df-811a-c6bb341a3ecc rw quiet
янв 16 22:54:48 Arch kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
янв 16 22:54:48 Arch kernel: Calgary: detecting Calgary via BIOS EBDA area
янв 16 22:54:48 Arch kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
янв 16 22:54:48 Arch kernel: Memory: 3897884K/4076956K available (5666K kernel code, 937K rwdata, 1796K rodata, 1188K init, 1164K bss, 179072K reserved, 0K cma-reserved)
янв 16 22:54:49 Arch kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
янв 16 22:54:49 Arch kernel: Preemptible hierarchical RCU implementation.
янв 16 22:54:49 Arch kernel:         Build-time adjustment of leaf fanout to 64.
янв 16 22:54:49 Arch kernel:         RCU restricting CPUs from NR_CPUS=128 to nr_cpu_ids=4.
янв 16 22:54:49 Arch kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
янв 16 22:54:49 Arch kernel: NR_IRQS:8448 nr_irqs:456 16
янв 16 22:54:49 Arch kernel: Console: colour dummy device 80x25
янв 16 22:54:49 Arch kernel: console [tty0] enabled
янв 16 22:54:49 Arch kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
янв 16 22:54:49 Arch kernel: hpet clockevent registered
янв 16 22:54:49 Arch kernel: tsc: Fast TSC calibration using PIT
янв 16 22:54:49 Arch kernel: tsc: Detected 2594.076 MHz processor
янв 16 22:54:49 Arch kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5190.32 BogoMIPS (lpj=8646920)
янв 16 22:54:49 Arch kernel: pid_max: default: 32768 minimum: 301
янв 16 22:54:49 Arch kernel: ACPI: Core revision 20150818
янв 16 22:54:49 Arch kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
янв 16 22:54:49 Arch kernel: Security Framework initialized
янв 16 22:54:49 Arch kernel: Yama: becoming mindful.
янв 16 22:54:49 Arch kernel: Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
янв 16 22:54:49 Arch kernel: Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
янв 16 22:54:49 Arch kernel: Mount-cache hash table entries: 8192 (order: 4, 65536 bytes)
янв 16 22:54:49 Arch kernel: Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes)
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys io
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys memory
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys devices
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys freezer
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys net_cls
янв 16 22:54:49 Arch kernel: Initializing cgroup subsys pids
янв 16 22:54:49 Arch kernel: CPU: Physical Processor ID: 0
янв 16 22:54:49 Arch kernel: CPU: Processor Core ID: 0
янв 16 22:54:49 Arch kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
янв 16 22:54:49 Arch kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
янв 16 22:54:49 Arch kernel: mce: CPU supports 7 MCE banks
янв 16 22:54:49 Arch kernel: CPU0: Thermal monitoring enabled (TM1)
янв 16 22:54:49 Arch kernel: process: using mwait in idle threads
янв 16 22:54:49 Arch kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
янв 16 22:54:49 Arch kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
янв 16 22:54:49 Arch kernel: Freeing SMP alternatives memory: 20K (ffffffff81a15000 - ffffffff81a1a000)
янв 16 22:54:49 Arch kernel: ftrace: allocating 22571 entries in 89 pages
янв 16 22:54:49 Arch kernel: DMAR: Host address width 36
янв 16 22:54:49 Arch kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
янв 16 22:54:49 Arch kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020e60262 ecap f0101a
янв 16 22:54:49 Arch kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
янв 16 22:54:49 Arch kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap c9008020660262 ecap f0105a
янв 16 22:54:49 Arch kernel: DMAR: RMRR base: 0x000000c99b0000 end: 0x000000c99ccfff
янв 16 22:54:49 Arch kernel: DMAR: RMRR base: 0x000000cb800000 end: 0x000000cf9fffff
янв 16 22:54:49 Arch kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
янв 16 22:54:49 Arch kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
янв 16 22:54:49 Arch kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
янв 16 22:54:49 Arch kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
янв 16 22:54:49 Arch kernel: x2apic enabled
янв 16 22:54:49 Arch kernel: Switched APIC routing to cluster x2apic.
янв 16 22:54:49 Arch kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
янв 16 22:54:49 Arch kernel: TSC deadline timer enabled
янв 16 22:54:49 Arch kernel: smpboot: CPU0: Intel(R) Core(TM) i5-3230M CPU @ 2.60GHz (family: 0x6, model: 0x3a, stepping: 0x9)
янв 16 22:54:49 Arch kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Intel PMU driver.
янв 16 22:54:49 Arch kernel: ... version:                3
янв 16 22:54:49 Arch kernel: ... bit width:              48
янв 16 22:54:49 Arch kernel: ... generic registers:      4
янв 16 22:54:49 Arch kernel: ... value mask:             0000ffffffffffff
янв 16 22:54:49 Arch kernel: ... max period:             0000ffffffffffff
янв 16 22:54:49 Arch kernel: ... fixed-purpose events:   3
янв 16 22:54:49 Arch kernel: ... event mask:             000000070000000f
янв 16 22:54:49 Arch kernel: x86: Booting SMP configuration:
янв 16 22:54:49 Arch kernel: .... node  #0, CPUs:      #1
янв 16 22:54:49 Arch kernel: microcode: CPU1 microcode updated early to revision 0x1b, date = 2014-05-29
янв 16 22:54:49 Arch kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
янв 16 22:54:49 Arch kernel:  #2 #3
янв 16 22:54:49 Arch kernel: x86: Booted up 1 node, 4 CPUs
янв 16 22:54:49 Arch kernel: smpboot: Total of 4 processors activated (20760.30 BogoMIPS)
янв 16 22:54:49 Arch kernel: devtmpfs: initialized
янв 16 22:54:49 Arch kernel: PM: Registering ACPI NVS region [mem 0xc9a49000-0xca0a2fff] (6660096 bytes)
янв 16 22:54:49 Arch kernel: PM: Registering ACPI NVS region [mem 0xca8cd000-0xca90ffff] (274432 bytes)
янв 16 22:54:49 Arch kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
янв 16 22:54:49 Arch kernel: pinctrl core: initialized pinctrl subsystem
янв 16 22:54:49 Arch kernel: RTC time: 19:54:38, date: 01/16/16
янв 16 22:54:49 Arch kernel: NET: Registered protocol family 16
янв 16 22:54:49 Arch kernel: cpuidle: using governor ladder
янв 16 22:54:49 Arch kernel: cpuidle: using governor menu
янв 16 22:54:49 Arch kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
янв 16 22:54:49 Arch kernel: ACPI: bus type PCI registered
янв 16 22:54:49 Arch kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
янв 16 22:54:49 Arch kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
янв 16 22:54:49 Arch kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
янв 16 22:54:49 Arch kernel: pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
янв 16 22:54:49 Arch kernel: PCI: Using configuration type 1 for base access
янв 16 22:54:49 Arch kernel: perf_event_intel: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
янв 16 22:54:49 Arch kernel: ACPI: Added _OSI(Module Device)
янв 16 22:54:49 Arch kernel: ACPI: Added _OSI(Processor Device)
янв 16 22:54:49 Arch kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
янв 16 22:54:49 Arch kernel: ACPI: Added _OSI(Processor Aggregator Device)
янв 16 22:54:49 Arch kernel: ACPI: Executed 1 blocks of module-level executable AML code
янв 16 22:54:49 Arch kernel: [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
янв 16 22:54:49 Arch kernel: ACPI: Dynamic OEM Table Load:
янв 16 22:54:49 Arch kernel: ACPI: SSDT 0xFFFF880129F91800 000775 (v01 PmRef  Cpu0Cst  00003001 INTL 20051117)
янв 16 22:54:49 Arch kernel: ACPI: Dynamic OEM Table Load:
янв 16 22:54:49 Arch kernel: ACPI: SSDT 0xFFFF880129A29800 000303 (v01 PmRef  ApIst    00003000 INTL 20051117)
янв 16 22:54:49 Arch kernel: ACPI: Dynamic OEM Table Load:
янв 16 22:54:49 Arch kernel: ACPI: SSDT 0xFFFF8801299F7800 000119 (v01 PmRef  ApCst    00003000 INTL 20051117)
янв 16 22:54:49 Arch kernel: ACPI : EC: EC started
янв 16 22:54:49 Arch kernel: ACPI: Interpreter enabled
янв 16 22:54:49 Arch kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20150818/hwxface-580)
янв 16 22:54:49 Arch kernel: ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20150818/hwxface-580)
янв 16 22:54:49 Arch kernel: ACPI: (supports S0 S3 S4 S5)
янв 16 22:54:49 Arch kernel: ACPI: Using IOAPIC for interrupt routing
янв 16 22:54:49 Arch kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
янв 16 22:54:49 Arch kernel: ACPI: Power Resource [FN00] (off)
янв 16 22:54:49 Arch kernel: ACPI: Power Resource [FN01] (off)
янв 16 22:54:49 Arch kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
янв 16 22:54:49 Arch kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
янв 16 22:54:49 Arch kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME]
янв 16 22:54:49 Arch kernel: acpi PNP0A08:00: _OSC: OS now controls [AER PCIeCapability]
янв 16 22:54:49 Arch kernel: acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
янв 16 22:54:49 Arch kernel: PCI host bridge to bus 0000:00
янв 16 22:54:49 Arch kernel: pci_bus 0000:00: root bus resource [bus 00-3e]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000c3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c4000-0x000c7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000c8000-0x000cbfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000cc000-0x000cffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d0000-0x000d3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d4000-0x000d7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000d8000-0x000dbfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000dc000-0x000dffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000e3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e4000-0x000e7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000e8000-0x000ebfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000ec000-0x000effff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0x000f0000-0x000fffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: root bus resource [mem 0xcfa00000-0xfeafffff window]
янв 16 22:54:50 Arch kernel: pci 0000:00:00.0: [8086:0154] type 00 class 0x060000
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:02.0: [8086:0166] type 00 class 0x030000
янв 16 22:54:50 Arch kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf7400000-0xf77fffff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:00:02.0: reg 0x18: [mem 0xd0000000-0xdfffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:00:02.0: reg 0x20: [io  0xf000-0xf03f]
янв 16 22:54:50 Arch kernel: pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
янв 16 22:54:50 Arch kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf7a00000-0xf7a0ffff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:14.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
янв 16 22:54:50 Arch kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf7a1a000-0xf7a1a00f 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
янв 16 22:54:50 Arch kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xf7a18000-0xf7a183ff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1a.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
янв 16 22:54:50 Arch kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf7a10000-0xf7a13fff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3: [8086:1e16] type 01 class 0x060400
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
янв 16 22:54:50 Arch kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf7a17000-0xf7a173ff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1d.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.0: [8086:1e59] type 00 class 0x060100
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x10: [io  0xf0b0-0xf0b7]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x14: [io  0xf0a0-0xf0a3]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x18: [io  0xf090-0xf097]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x1c: [io  0xf080-0xf083]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x20: [io  0xf060-0xf07f]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf7a16000-0xf7a167ff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.2: PME# supported from D3hot
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf7a15000-0xf7a150ff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:00:1f.3: reg 0x20: [io  0xf040-0xf05f]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: [10de:1140] type 00 class 0x030200
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: reg 0x10: [mem 0xf6000000-0xf6ffffff]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: reg 0x14: [mem 0xe0000000-0xefffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xf0000000-0xf1ffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: reg 0x30: [mem 0xf7000000-0xf707ffff pref]
янв 16 22:54:50 Arch kernel: pci 0000:01:00.0: System wakeup disabled by ACPI
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:02:00.0: [168c:0032] type 00 class 0x028000
янв 16 22:54:50 Arch kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf7900000-0xf797ffff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:02:00.0: reg 0x30: [mem 0xf7980000-0xf798ffff pref]
янв 16 22:54:50 Arch kernel: pci 0000:02:00.0: supports D1 D2
янв 16 22:54:50 Arch kernel: pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf7900000-0xf79fffff]
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: [10ec:8168] type 00 class 0x020000
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: reg 0x10: [io  0xd000-0xd0ff]
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: reg 0x18: [mem 0xf7800000-0xf7800fff 64bit]
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: reg 0x20: [mem 0xf2100000-0xf2103fff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: supports D1 D2
янв 16 22:54:50 Arch kernel: pci 0000:03:00.0: PME# supported from D0 D1 D2 D3hot D3cold
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf7800000-0xf78fffff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 10 11) *0, disabled.
янв 16 22:54:50 Arch kernel: ACPI: Enabled 4 GPEs in block 00 to 3F
янв 16 22:54:50 Arch kernel: ACPI : EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
янв 16 22:54:50 Arch kernel: ACPI : EC: 0 stale EC events cleared
янв 16 22:54:50 Arch kernel: vgaarb: setting as boot device: PCI:0000:00:02.0
янв 16 22:54:50 Arch kernel: vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
янв 16 22:54:50 Arch kernel: vgaarb: loaded
янв 16 22:54:50 Arch kernel: vgaarb: bridge control possible 0000:00:02.0
янв 16 22:54:50 Arch kernel: PCI: Using ACPI for IRQ routing
янв 16 22:54:50 Arch kernel: PCI: pci_cache_line_size set to 64 bytes
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0xc95a7000-0xcbffffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0xca8cd000-0xcbffffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0xcad27000-0xcbffffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0xcb000000-0xcbffffff]
янв 16 22:54:50 Arch kernel: e820: reserve RAM buffer [mem 0x12f600000-0x12fffffff]
янв 16 22:54:50 Arch kernel: NetLabel: Initializing
янв 16 22:54:50 Arch kernel: NetLabel:  domain hash size = 128
янв 16 22:54:50 Arch kernel: NetLabel:  protocols = UNLABELED CIPSOv4
янв 16 22:54:50 Arch kernel: NetLabel:  unlabeled traffic allowed by default
янв 16 22:54:50 Arch kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
янв 16 22:54:50 Arch kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
янв 16 22:54:50 Arch kernel: clocksource: Switched to clocksource hpet
янв 16 22:54:50 Arch kernel: pnp: PnP ACPI init
янв 16 22:54:50 Arch kernel: system 00:00: [mem 0xfed40000-0xfed44fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x0680-0x069f] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x1000-0x100f] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0xffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0xffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x0400-0x0453] could not be reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x0458-0x047f] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x0500-0x057f] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x0a00-0x0a07] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: [io  0x164e-0x164f] has been reserved
янв 16 22:54:50 Arch kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
янв 16 22:54:50 Arch kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
янв 16 22:54:50 Arch kernel: system 00:03: [io  0x0454-0x0457] has been reserved
янв 16 22:54:50 Arch kernel: system 00:03: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
янв 16 22:54:50 Arch kernel: pnp 00:04: Plug and Play ACPI device, IDs MSF0001 PNP0303 (active)
янв 16 22:54:50 Arch kernel: pnp 00:05: Plug and Play ACPI device, IDs ETD0b00 SYN0002 PNP0f13 (active)
янв 16 22:54:50 Arch kernel: system 00:06: [io  0x04d0-0x04d1] has been reserved
янв 16 22:54:50 Arch kernel: system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed1c000-0xfed1ffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xf8000000-0xfbffffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
янв 16 22:54:50 Arch kernel: system 00:07: [mem 0xcfa00000-0xcfa00fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
янв 16 22:54:50 Arch kernel: system 00:08: [mem 0x20000000-0x201fffff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:08: [mem 0x40004000-0x40004fff] has been reserved
янв 16 22:54:50 Arch kernel: system 00:08: Plug and Play ACPI device, IDs PNP0c01 (active)
янв 16 22:54:50 Arch kernel: pnp: PnP ACPI: found 9 devices
янв 16 22:54:50 Arch kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [mem 0xf6000000-0xf70fffff]
янв 16 22:54:50 Arch kernel: pci 0000:00:01.0:   bridge window [mem 0xe0000000-0xf1ffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.0:   bridge window [mem 0xf7900000-0xf79fffff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3: PCI bridge to [bus 03]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [io  0xd000-0xdfff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf7800000-0xf78fffff]
янв 16 22:54:50 Arch kernel: pci 0000:00:1c.3:   bridge window [mem 0xf2100000-0xf21fffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000c3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 8 [mem 0x000c4000-0x000c7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 9 [mem 0x000c8000-0x000cbfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 10 [mem 0x000cc000-0x000cffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 11 [mem 0x000d0000-0x000d3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 12 [mem 0x000d4000-0x000d7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 13 [mem 0x000d8000-0x000dbfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 14 [mem 0x000dc000-0x000dffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 15 [mem 0x000e0000-0x000e3fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 16 [mem 0x000e4000-0x000e7fff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 17 [mem 0x000e8000-0x000ebfff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 18 [mem 0x000ec000-0x000effff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 19 [mem 0x000f0000-0x000fffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:00: resource 20 [mem 0xcfa00000-0xfeafffff window]
янв 16 22:54:50 Arch kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
янв 16 22:54:50 Arch kernel: pci_bus 0000:01: resource 1 [mem 0xf6000000-0xf70fffff]
янв 16 22:54:50 Arch kernel: pci_bus 0000:01: resource 2 [mem 0xe0000000-0xf1ffffff 64bit pref]
янв 16 22:54:50 Arch kernel: pci_bus 0000:02: resource 1 [mem 0xf7900000-0xf79fffff]
янв 16 22:54:50 Arch kernel: pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
янв 16 22:54:50 Arch kernel: pci_bus 0000:03: resource 1 [mem 0xf7800000-0xf78fffff]
янв 16 22:54:50 Arch kernel: pci_bus 0000:03: resource 2 [mem 0xf2100000-0xf21fffff 64bit pref]
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 2
янв 16 22:54:50 Arch kernel: TCP established hash table entries: 32768 (order: 6, 262144 bytes)
янв 16 22:54:50 Arch kernel: TCP bind hash table entries: 32768 (order: 7, 524288 bytes)
янв 16 22:54:50 Arch kernel: TCP: Hash tables configured (established 32768 bind 32768)
янв 16 22:54:50 Arch kernel: UDP hash table entries: 2048 (order: 4, 65536 bytes)
янв 16 22:54:50 Arch kernel: UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 1
янв 16 22:54:50 Arch kernel: pci 0000:00:02.0: Video device with shadowed ROM
янв 16 22:54:50 Arch kernel: PCI: CLS 64 bytes, default 64
янв 16 22:54:50 Arch kernel: Unpacking initramfs...
янв 16 22:54:50 Arch kernel: Freeing initrd memory: 6696K (ffff8800372dc000 - ffff880037966000)
янв 16 22:54:50 Arch kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
янв 16 22:54:50 Arch kernel: software IO TLB [mem 0xc39a7000-0xc79a7000] (64MB) mapped at [ffff8800c39a7000-ffff8800c79a6fff]
янв 16 22:54:50 Arch kernel: RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
янв 16 22:54:50 Arch kernel: hw unit of domain pp0-core 2^-16 Joules
янв 16 22:54:50 Arch kernel: hw unit of domain package 2^-16 Joules
янв 16 22:54:50 Arch kernel: hw unit of domain pp1-gpu 2^-16 Joules
янв 16 22:54:50 Arch kernel: microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x1b
янв 16 22:54:50 Arch kernel: microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x1b
янв 16 22:54:50 Arch kernel: microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x1b
янв 16 22:54:50 Arch kernel: microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x1b
янв 16 22:54:50 Arch kernel: microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
янв 16 22:54:50 Arch kernel: Scanning for low memory corruption every 60 seconds
янв 16 22:54:50 Arch kernel: futex hash table entries: 1024 (order: 4, 65536 bytes)
янв 16 22:54:50 Arch kernel: Initialise system trusted keyring
янв 16 22:54:50 Arch kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
янв 16 22:54:50 Arch kernel: zbud: loaded
янв 16 22:54:50 Arch kernel: VFS: Disk quotas dquot_6.6.0
янв 16 22:54:50 Arch kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
янв 16 22:54:50 Arch kernel: Key type big_key registered
янв 16 22:54:50 Arch kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 250)
янв 16 22:54:50 Arch kernel: io scheduler noop registered
янв 16 22:54:50 Arch kernel: io scheduler deadline registered
янв 16 22:54:50 Arch kernel: io scheduler cfq registered (default)
янв 16 22:54:50 Arch kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
янв 16 22:54:50 Arch kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
янв 16 22:54:50 Arch kernel: efifb: probing for efifb
янв 16 22:54:50 Arch kernel: efifb: framebuffer at 0xd0000000, mapped to 0xffffc90000800000, using 1920k, total 1920k
янв 16 22:54:50 Arch kernel: efifb: mode is 800x600x32, linelength=3200, pages=1
янв 16 22:54:50 Arch kernel: efifb: scrolling: redraw
янв 16 22:54:50 Arch kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
янв 16 22:54:50 Arch kernel: Console: switching to colour frame buffer device 100x37
янв 16 22:54:50 Arch kernel: fb0: EFI VGA frame buffer device
янв 16 22:54:50 Arch kernel: intel_idle: MWAIT substates: 0x21120
янв 16 22:54:50 Arch kernel: intel_idle: v0.4 model 0x3A
янв 16 22:54:50 Arch kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
янв 16 22:54:50 Arch kernel: GHES: HEST is not enabled!
янв 16 22:54:50 Arch kernel: Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
янв 16 22:54:50 Arch kernel: Linux agpgart interface v0.103
янв 16 22:54:50 Arch kernel: rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
янв 16 22:54:50 Arch kernel: rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
янв 16 22:54:50 Arch kernel: Intel P-state driver initializing.
янв 16 22:54:50 Arch kernel: ledtrig-cpu: registered to indicate activity on CPUs
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 10
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 17
янв 16 22:54:50 Arch kernel: registered taskstats version 1
янв 16 22:54:50 Arch kernel: Loading compiled-in X.509 certificates
янв 16 22:54:50 Arch kernel: zswap: loaded using pool lzo/zbud
янв 16 22:54:50 Arch kernel:   Magic number: 0:79:951
янв 16 22:54:50 Arch kernel: tty tty8: hash matches
янв 16 22:54:50 Arch kernel: memory memory4: hash matches
янв 16 22:54:50 Arch kernel: rtc_cmos 00:02: setting system clock to 2016-01-16 19:54:38 UTC (1452974078)
янв 16 22:54:50 Arch kernel: PM: Hibernation image not present or could not be loaded.
янв 16 22:54:50 Arch kernel: Freeing unused kernel memory: 1188K (ffffffff818ec000 - ffffffff81a15000)
янв 16 22:54:50 Arch kernel: Write protecting the kernel read-only data: 8192k
янв 16 22:54:50 Arch kernel: Freeing unused kernel memory: 464K (ffff88000258c000 - ffff880002600000)
янв 16 22:54:50 Arch kernel: Freeing unused kernel memory: 252K (ffff8800027c1000 - ffff880002800000)
янв 16 22:54:50 Arch kernel: random: systemd-tmpfile urandom read with 2 bits of entropy available
янв 16 22:54:50 Arch kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
янв 16 22:54:50 Arch kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
янв 16 22:54:50 Arch kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
янв 16 22:54:50 Arch kernel: ACPI: bus type USB registered
янв 16 22:54:50 Arch kernel: usbcore: registered new interface driver usbfs
янв 16 22:54:50 Arch kernel: usbcore: registered new interface driver hub
янв 16 22:54:50 Arch kernel: usbcore: registered new device driver usb
янв 16 22:54:50 Arch kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
янв 16 22:54:50 Arch kernel: ehci-pci: EHCI PCI platform driver
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: debug port 2
янв 16 22:54:50 Arch kernel: SCSI subsystem initialized
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: irq 16, io mem 0xf7a18000
янв 16 22:54:50 Arch kernel: libata version 3.00 loaded.
янв 16 22:54:50 Arch kernel: AVX version of gcm_enc/dec engaged.
янв 16 22:54:50 Arch kernel: AES CTR mode by8 optimization enabled
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
янв 16 22:54:50 Arch kernel: hub 1-0:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 1-0:1.0: 2 ports detected
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x0000b930
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
янв 16 22:54:50 Arch kernel: hub 2-0:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 2-0:1.0: 4 ports detected
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
янв 16 22:54:50 Arch kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
янв 16 22:54:50 Arch kernel: hub 3-0:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 3-0:1.0: 4 ports detected
янв 16 22:54:50 Arch kernel: ahci 0000:00:1f.2: version 3.0
янв 16 22:54:50 Arch kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x1 impl SATA mode
янв 16 22:54:50 Arch kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo pio slum part ems apst 
янв 16 22:54:50 Arch kernel: scsi host0: ahci
янв 16 22:54:50 Arch kernel: scsi host1: ahci
янв 16 22:54:50 Arch kernel: scsi host2: ahci
янв 16 22:54:50 Arch kernel: scsi host3: ahci
янв 16 22:54:50 Arch kernel: scsi host4: ahci
янв 16 22:54:50 Arch kernel: scsi host5: ahci
янв 16 22:54:50 Arch kernel: ata1: SATA max UDMA/133 abar m2048@0xf7a16000 port 0xf7a16100 irq 28
янв 16 22:54:50 Arch kernel: ata2: DUMMY
янв 16 22:54:50 Arch kernel: ata3: DUMMY
янв 16 22:54:50 Arch kernel: ata4: DUMMY
янв 16 22:54:50 Arch kernel: ata5: DUMMY
янв 16 22:54:50 Arch kernel: ata6: DUMMY
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 4
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: debug port 2
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf7a17000
янв 16 22:54:50 Arch kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
янв 16 22:54:50 Arch kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
янв 16 22:54:50 Arch kernel: hub 4-0:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 4-0:1.0: 2 ports detected
янв 16 22:54:50 Arch kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
янв 16 22:54:50 Arch kernel: usb 4-1: new high-speed USB device number 2 using ehci-pci
янв 16 22:54:50 Arch kernel: ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
янв 16 22:54:50 Arch kernel: ata1.00: ATA-8: ST500LT012-9WS142, 0001SDM1, max UDMA/133
янв 16 22:54:50 Arch kernel: ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd ef/10:06:00:00:00:00 (SET FEATURES) succeeded
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:00 (SECURITY FREEZE LOCK) filtered out
янв 16 22:54:50 Arch kernel: ata1.00: ACPI cmd b1/c1:00:00:00:00:00 (DEVICE CONFIGURATION OVERLAY) filtered out
янв 16 22:54:50 Arch kernel: ata1.00: configured for UDMA/133
янв 16 22:54:50 Arch kernel: scsi 0:0:0:0: Direct-Access     ATA      ST500LT012-9WS14 SDM1 PQ: 0 ANSI: 5
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] 4096-byte physical blocks
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] Write Protect is off
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
янв 16 22:54:50 Arch kernel: hub 1-1:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 1-1:1.0: 6 ports detected
янв 16 22:54:50 Arch kernel: hub 4-1:1.0: USB hub found
янв 16 22:54:50 Arch kernel: hub 4-1:1.0: 6 ports detected
янв 16 22:54:50 Arch kernel:  sda: sda1 sda2 sda3
янв 16 22:54:50 Arch kernel: sd 0:0:0:0: [sda] Attached SCSI disk
янв 16 22:54:50 Arch kernel: usb 1-1.3: new full-speed USB device number 3 using ehci-pci
янв 16 22:54:50 Arch kernel: device-mapper: uevent: version 1.0.3
янв 16 22:54:50 Arch kernel: device-mapper: ioctl: 4.33.0-ioctl (2015-8-18) initialised: dm-devel@redhat.com
янв 16 22:54:50 Arch kernel: usb 1-1.4: new high-speed USB device number 4 using ehci-pci
янв 16 22:54:50 Arch kernel: tsc: Refined TSC clocksource calibration: 2594.106 MHz
янв 16 22:54:50 Arch kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x25647bfab01, max_idle_ns: 440795211785 ns
янв 16 22:54:50 Arch kernel: clocksource: Switched to clocksource tsc
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 38
янв 16 22:54:50 Arch kernel: sha256_ssse3: Using AVX optimized SHA-256 implementation
янв 16 22:54:50 Arch kernel: EXT4-fs (dm-0): mounted filesystem with ordered data mode. Opts: (null)
янв 16 22:54:50 Arch kernel: random: nonblocking pool is initialized
янв 16 22:54:50 Arch kernel: ip_tables: (C) 2000-2006 Netfilter Core Team
янв 16 22:54:50 Arch systemd[1]: systemd 228 running in system mode. (+PAM -AUDIT -SELINUX -IMA -APPARMOR +SMACK -SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN)
янв 16 22:54:50 Arch systemd[1]: Detected architecture x86-64.
янв 16 22:54:50 Arch systemd[1]: Set hostname to <Arch>.
янв 16 22:54:50 Arch systemd[1]: display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service failed to load: No such file or directory.
янв 16 22:54:50 Arch systemd[1]: Started Forward Password Requests to Wall Directory Watch.
янв 16 22:54:50 Arch systemd[1]: Listening on Journal Socket (/dev/log).
янв 16 22:54:50 Arch systemd[1]: Reached target Remote File Systems.
янв 16 22:54:50 Arch systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
янв 16 22:54:50 Arch systemd[1]: Listening on udev Kernel Socket.
янв 16 22:54:50 Arch systemd[1]: Reached target Swap.
янв 16 22:54:50 Arch systemd[1]: Listening on Journal Socket.
янв 16 22:54:50 Arch systemd[1]: Listening on Device-mapper event daemon FIFOs.
янв 16 22:54:50 Arch systemd[1]: Created slice System Slice.
янв 16 22:54:50 Arch systemd[1]: Created slice system-getty.slice.
янв 16 22:54:50 Arch systemd[1]: Mounting Temporary Directory...
янв 16 22:54:50 Arch systemd[1]: Mounting Huge Pages File System...
янв 16 22:54:50 Arch systemd[1]: Starting Remount Root and Kernel File Systems...
янв 16 22:54:50 Arch systemd[1]: Starting Journal Service...
янв 16 22:54:50 Arch systemd[1]: Created slice system-systemd\x2dcryptsetup.slice.
янв 16 22:54:50 Arch systemd[1]: Created slice system-systemd\x2dfsck.slice.
янв 16 22:54:50 Arch systemd[1]: Created slice User and Session Slice.
янв 16 22:54:50 Arch systemd[1]: Reached target Slices.
янв 16 22:54:50 Arch systemd[1]: Reached target Paths.
янв 16 22:54:50 Arch systemd[1]: Mounting Debug File System...
янв 16 22:54:50 Arch systemd[1]: Starting Setup Virtual Console...
янв 16 22:54:50 Arch systemd[1]: Mounting POSIX Message Queue File System...
янв 16 22:54:50 Arch systemd[1]: Starting Create list of required static device nodes for the current kernel...
янв 16 22:54:50 Arch systemd[1]: Mounting Configuration File System...
янв 16 22:54:50 Arch systemd[1]: Starting Apply Kernel Variables...
янв 16 22:54:50 Arch systemd[1]: Listening on udev Control Socket.
янв 16 22:54:50 Arch systemd[1]: Listening on LVM2 metadata daemon socket.
янв 16 22:54:50 Arch systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
янв 16 22:54:50 Arch systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
янв 16 22:54:50 Arch systemd[1]: Started Create list of required static device nodes for the current kernel.
янв 16 22:54:50 Arch systemd[1]: Started Apply Kernel Variables.
янв 16 22:54:50 Arch kernel: EXT4-fs (dm-0): re-mounted. Opts: data=ordered
янв 16 22:54:50 Arch systemd[1]: Mounted POSIX Message Queue File System.
янв 16 22:54:50 Arch systemd[1]: Mounted Configuration File System.
янв 16 22:54:50 Arch systemd[1]: Mounted Huge Pages File System.
янв 16 22:54:50 Arch systemd[1]: Mounted Debug File System.
янв 16 22:54:50 Arch systemd[1]: Mounted Temporary Directory.
янв 16 22:54:50 Arch systemd[1]: Started Remount Root and Kernel File Systems.
янв 16 22:54:50 Arch systemd[1]: Starting udev Coldplug all Devices...
янв 16 22:54:50 Arch systemd[1]: Starting Create Static Device Nodes in /dev...
янв 16 22:54:50 Arch systemd[1]: Starting Load/Save Random Seed...
янв 16 22:54:50 Arch systemd[1]: Started Load/Save Random Seed.
янв 16 22:54:50 Arch systemd[1]: Started udev Coldplug all Devices.
янв 16 22:54:50 Arch systemd[1]: Started Setup Virtual Console.
янв 16 22:54:50 Arch systemd[1]: Started Create Static Device Nodes in /dev.
янв 16 22:54:50 Arch systemd[1]: Reached target Local File Systems (Pre).
янв 16 22:54:50 Arch systemd[1]: Starting udev Kernel Device Manager...
янв 16 22:54:50 Arch systemd[1]: Started udev Kernel Device Manager.
янв 16 22:54:50 Arch kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x000000000000F040-0x000000000000F05F conflicts with OpRegion 0x000000000000F040-0x000000000000F04F (\_SB_.PCI0.SBUS.SMBI) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
янв 16 22:54:50 Arch kernel: wmi: Mapper loaded
янв 16 22:54:50 Arch kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input2
янв 16 22:54:50 Arch kernel: ACPI: Lid Switch [LID0]
янв 16 22:54:50 Arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3
янв 16 22:54:50 Arch kernel: ACPI: Power Button [PWRB]
янв 16 22:54:50 Arch kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
янв 16 22:54:50 Arch kernel: ACPI: Power Button [PWRF]
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB_.PCI0.PEG0.PEGP.GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB_.PCI0.PEG0.PEGP.GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000055F (\_SB_.PCI0.PEG0.PEGP.GPIO) (20150818/utaddress-254)
янв 16 22:54:50 Arch kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
янв 16 22:54:50 Arch kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
янв 16 22:54:50 Arch kernel: FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
янв 16 22:54:50 Arch kernel: ACPI: Invalid active2 threshold
янв 16 22:54:50 Arch kernel: thermal LNXTHERM:00: registered as thermal_zone0
янв 16 22:54:50 Arch kernel: ACPI: Thermal Zone [TZ00] (52 C)
янв 16 22:54:50 Arch kernel: thermal LNXTHERM:01: registered as thermal_zone1
янв 16 22:54:50 Arch kernel: ACPI: Thermal Zone [TZ01] (52 C)
янв 16 22:54:50 Arch kernel: [drm] Initialized drm 1.1.0 20060810
янв 16 22:54:50 Arch kernel: ACPI: Battery Slot [BAT1] (battery present)
янв 16 22:54:50 Arch kernel: ACPI: AC Adapter [ADP1] (on-line)
янв 16 22:54:50 Arch kernel: input: PC Speaker as /devices/platform/pcspkr/input/input5
янв 16 22:54:50 Arch kernel: [drm] Memory usable by graphics device = 2048M
янв 16 22:54:50 Arch kernel: checking generic (d0000000 1e0000) vs hw (d0000000 10000000)
янв 16 22:54:50 Arch kernel: fb: switching to inteldrmfb from EFI VGA
янв 16 22:54:50 Arch kernel: Console: switching to colour dummy device 80x25
янв 16 22:54:50 Arch kernel: [drm] Replacing VGA console driver
янв 16 22:54:50 Arch kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
янв 16 22:54:50 Arch kernel: [drm] Driver supports precise vblank timestamp query.
янв 16 22:54:50 Arch kernel: vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
янв 16 22:54:50 Arch kernel: [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
янв 16 22:54:50 Arch kernel: ACPI: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
янв 16 22:54:50 Arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0d/LNXVIDEO:00/input/input7
янв 16 22:54:50 Arch kernel: ACPI: Video Device [GFX0] (multi-head: yes  rom: no  post: no)
янв 16 22:54:50 Arch kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input8
янв 16 22:54:50 Arch kernel: [drm] Initialized i915 1.6.0 20150731 for 0000:00:02.0 on minor 0
янв 16 22:54:50 Arch kernel: fbcon: inteldrmfb (fb0) is primary device
янв 16 22:54:50 Arch kernel: r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
янв 16 22:54:50 Arch kernel: r8169 0000:03:00.0: can't disable ASPM; OS doesn't have ASPM control
янв 16 22:54:50 Arch kernel: r8169 0000:03:00.0 eth0: RTL8168evl/8111evl at 0xffffc90000660000, 18:67:b0:3f:0f:bb, XID 0c900800 IRQ 31
янв 16 22:54:50 Arch kernel: r8169 0000:03:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
янв 16 22:54:50 Arch kernel: snd_hda_intel 0000:00:1b.0: enabling device (0000 -> 0002)
янв 16 22:54:50 Arch kernel: ath9k 0000:02:00.0: enabling device (0000 -> 0002)
янв 16 22:54:50 Arch kernel: ath: phy0: Set BT/WLAN RX diversity capability
янв 16 22:54:50 Arch kernel: iTCO_vendor_support: vendor-support=0
янв 16 22:54:50 Arch kernel: ath: phy0: ASPM enabled: 0x42
янв 16 22:54:50 Arch kernel: ath: EEPROM regdomain: 0x65
янв 16 22:54:50 Arch kernel: ath: EEPROM indicates we should expect a direct regpair map
янв 16 22:54:50 Arch kernel: ath: Country alpha2 being used: 00
янв 16 22:54:50 Arch kernel: ath: Regpair used: 0x65
янв 16 22:54:50 Arch kernel: iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11
янв 16 22:54:50 Arch kernel: iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
янв 16 22:54:50 Arch kernel: iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
янв 16 22:54:50 Arch kernel: ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
янв 16 22:54:50 Arch kernel: ieee80211 phy0: Atheros AR9485 Rev:1 mem=0xffffc90000900000, irq=16
янв 16 22:54:50 Arch kernel: intel_rapl: Found RAPL domain package
янв 16 22:54:50 Arch kernel: intel_rapl: Found RAPL domain core
янв 16 22:54:50 Arch kernel: intel_rapl: Found RAPL domain uncore
янв 16 22:54:50 Arch kernel: media: Linux media interface: v0.10
янв 16 22:54:50 Arch systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
янв 16 22:54:50 Arch systemd[1]: Starting Load/Save RF Kill Switch Status...
янв 16 22:54:50 Arch kernel: Linux video capture interface: v2.00
янв 16 22:54:50 Arch systemd[1]: Found device ST500LT012-9WS142 1.
янв 16 22:54:50 Arch systemd[1]: Starting File System Check on /dev/disk/by-uuid/E628-ECDA...
янв 16 22:54:50 Arch kernel: uvcvideo: Found UVC 1.00 device Webcam SC-10HDD12636P (0c45:64e0)
янв 16 22:54:50 Arch kernel: psmouse serio1: elantech: assuming hardware version 3 (with firmware version 0x350f00)
янв 16 22:54:50 Arch kernel: Console: switching to colour frame buffer device 170x48
янв 16 22:54:50 Arch kernel: i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
янв 16 22:54:50 Arch kernel: psmouse serio1: elantech: Synaptics capabilities query result 0x08, 0x17, 0x0c.
янв 16 22:54:50 Arch kernel: input: Webcam SC-10HDD12636P as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/input/input9
янв 16 22:54:50 Arch kernel: usbcore: registered new interface driver uvcvideo
янв 16 22:54:50 Arch kernel: USB Video Class driver (1.1.1)
янв 16 22:54:50 Arch kernel: psmouse serio1: elantech: Elan sample query result 01, 22, 85
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:      Mic=0x18
янв 16 22:54:50 Arch kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x12
янв 16 22:54:50 Arch kernel: Bluetooth: Core ver 2.20
янв 16 22:54:50 Arch kernel: NET: Registered protocol family 31
янв 16 22:54:50 Arch kernel: Bluetooth: HCI device and connection manager initialized
янв 16 22:54:50 Arch kernel: Bluetooth: HCI socket layer initialized
янв 16 22:54:50 Arch kernel: Bluetooth: L2CAP socket layer initialized
янв 16 22:54:50 Arch kernel: Bluetooth: SCO socket layer initialized
янв 16 22:54:50 Arch kernel: ath9k 0000:02:00.0 wlp2s0: renamed from wlan0
янв 16 22:54:50 Arch kernel: input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input6
янв 16 22:54:50 Arch kernel: r8169 0000:03:00.0 enp3s0: renamed from eth0
янв 16 22:54:50 Arch systemd[1]: Started Load/Save RF Kill Switch Status.
янв 16 22:54:50 Arch systemd[1]: Found device ST500LT012-9WS142 home.
янв 16 22:54:50 Arch systemd[1]: Starting Cryptography Setup for crypthome...
янв 16 22:54:50 Arch systemd[1]: Created slice system-systemd\x2dbacklight.slice.
янв 16 22:54:50 Arch systemd[1]: Starting Load/Save Screen Backlight Brightness of backlight:intel_backlight...
янв 16 22:54:50 Arch kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
янв 16 22:54:50 Arch kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
янв 16 22:54:50 Arch kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
янв 16 22:54:50 Arch kernel: mousedev: PS/2 mouse device common for all mice
янв 16 22:54:50 Arch systemd[1]: Started Load/Save Screen Backlight Brightness of backlight:intel_backlight.
янв 16 22:54:50 Arch systemd[1]: Reached target Sound Card.
янв 16 22:54:50 Arch kernel: usbcore: registered new interface driver btusb
янв 16 22:54:50 Arch kernel: usbcore: registered new interface driver ath3k
янв 16 22:54:50 Arch systemd[1]: Reached target Bluetooth.
янв 16 22:54:50 Arch systemd[1]: Started File System Check on /dev/disk/by-uuid/E628-ECDA.
янв 16 22:54:50 Arch systemd[1]: Mounting /boot/efi...
янв 16 22:54:50 Arch systemd[1]: Mounted /boot/efi.
янв 16 22:54:50 Arch systemd-journald[264]: Journal started
янв 16 22:54:49 Arch systemd-cryptsetup[355]: Set cipher aes, mode xts-plain64, key size 256 bits for device /dev/disk/by-uuid/952c4ccc-4225-434e-82fc-7d527e51f5e0.
янв 16 22:54:50 Arch systemd[1]: Started Journal Service.
янв 16 22:54:50 Arch systemd[1]: Starting Flush Journal to Persistent Storage...
янв 16 22:54:50 Arch systemd-fsck[334]: fsck.fat 3.0.28 (2015-05-16)
янв 16 22:54:50 Arch systemd-fsck[334]: /dev/sda1: 338 files, 3090/130812 clusters
янв 16 22:54:51 Arch systemd[1]: Started Flush Journal to Persistent Storage.
янв 16 22:54:55 Arch systemd[1]: Found device /dev/mapper/crypthome.
янв 16 22:54:55 Arch systemd[1]: Found device /dev/disk/by-uuid/c1c3ee5c-76cc-402a-91e9-5be87014d6d0.
янв 16 22:54:55 Arch systemd[1]: Started Cryptography Setup for crypthome.
янв 16 22:54:55 Arch systemd[1]: Reached target Encrypted Volumes.
янв 16 22:54:55 Arch systemd[1]: Starting File System Check on /dev/disk/by-uuid/c1c3ee5c-76cc-402a-91e9-5be87014d6d0...
янв 16 22:54:55 Arch systemd-fsck[399]: /dev/mapper/crypthome: clean, 4612/29188096 files, 3313871/116721670 blocks
янв 16 22:54:55 Arch systemd[1]: Started File System Check on /dev/disk/by-uuid/c1c3ee5c-76cc-402a-91e9-5be87014d6d0.
янв 16 22:54:55 Arch systemd[1]: Mounting /home...
янв 16 22:54:55 Arch kernel: EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: data=ordered
янв 16 22:54:55 Arch systemd[1]: Mounted /home.
янв 16 22:54:55 Arch systemd[1]: Reached target Local File Systems.
янв 16 22:54:55 Arch systemd[1]: Starting Create Volatile Files and Directories...
янв 16 22:54:56 Arch systemd[1]: Started Create Volatile Files and Directories.
янв 16 22:54:56 Arch systemd[1]: Starting Update UTMP about System Boot/Shutdown...
янв 16 22:54:56 Arch systemd[1]: Started Update UTMP about System Boot/Shutdown.
янв 16 22:54:56 Arch systemd[1]: Reached target System Initialization.
янв 16 22:54:56 Arch systemd[1]: Listening on D-Bus System Message Bus Socket.
янв 16 22:54:56 Arch systemd[1]: Reached target Sockets.
янв 16 22:54:56 Arch systemd[1]: Started Daily verification of password and group files.
янв 16 22:54:56 Arch systemd[1]: Started Daily Cleanup of Temporary Directories.
янв 16 22:54:56 Arch systemd[1]: Started Daily man-db cache update.
янв 16 22:54:56 Arch systemd[1]: Reached target Basic System.
янв 16 22:54:56 Arch systemd[1]: Starting dhcpcd on all interfaces...
янв 16 22:54:56 Arch systemd[1]: Starting Permit User Sessions...
янв 16 22:54:56 Arch systemd[1]: Started D-Bus System Message Bus.
янв 16 22:54:56 Arch dhcpcd[412]: dev: loaded udev
янв 16 22:54:56 Arch dhcpcd[412]: forked to background, child pid 415
янв 16 22:54:56 Arch systemd[1]: Starting Login Service...
янв 16 22:54:56 Arch systemd[1]: Started Bumblebee C Daemon.
янв 16 22:54:56 Arch systemd[1]: Started Daily rotation of log files.
янв 16 22:54:56 Arch systemd[1]: Reached target Timers.
янв 16 22:54:56 Arch systemd[1]: Started dhcpcd on all interfaces.
янв 16 22:54:56 Arch systemd[1]: Started Permit User Sessions.
янв 16 22:54:56 Arch systemd[1]: Started Getty on tty1.
янв 16 22:54:56 Arch systemd[1]: Reached target Login Prompts.
янв 16 22:54:56 Arch systemd[1]: Reached target Network.
янв 16 22:54:56 Arch systemd[1]: Started Login Service.
янв 16 22:54:56 Arch systemd[1]: Reached target Multi-User System.
янв 16 22:54:56 Arch systemd[1]: Reached target Graphical Interface.
янв 16 22:54:56 Arch systemd[1]: Startup finished in 7.029s (kernel) + 11.863s (userspace) = 34.228s.
янв 16 22:54:56 Arch systemd-logind[428]: New seat seat0.
янв 16 22:54:56 Arch systemd-logind[428]: Watching system buttons on /dev/input/event3 (Power Button)
янв 16 22:54:56 Arch kernel: r8169 0000:03:00.0 enp3s0: link down
янв 16 22:54:56 Arch kernel: r8169 0000:03:00.0 enp3s0: link down
янв 16 22:54:56 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): enp3s0: link is not ready
янв 16 22:54:56 Arch kernel: IPv6: ADDRCONF(NETDEV_UP): wlp2s0: link is not ready
янв 16 22:54:56 Arch systemd-logind[428]: Watching system buttons on /dev/input/event6 (Video Bus)
янв 16 22:54:56 Arch dhcpcd[415]: enp3s0: waiting for carrier
янв 16 22:54:56 Arch systemd-logind[428]: Watching system buttons on /dev/input/event5 (Video Bus)
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: waiting for carrier
янв 16 22:54:56 Arch systemd-logind[428]: Watching system buttons on /dev/input/event2 (Power Button)
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: carrier acquired
янв 16 22:54:56 Arch systemd-logind[428]: Watching system buttons on /dev/input/event1 (Lid Switch)
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: adding address fe80::709a:715a:1136:a5f1
янв 16 22:54:56 Arch dhcpcd[415]: DUID 00:01:00:01:1e:2c:c3:74:24:fd:52:87:b5:71
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: IAID 52:87:b5:71
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: carrier lost
янв 16 22:54:56 Arch dhcpcd[415]: wlp2s0: deleting address fe80::709a:715a:1136:a5f1
янв 16 22:54:57 Arch login[430]: pam_unix(login:session): session opened for user sergey by LOGIN(uid=0)
янв 16 22:54:57 Arch systemd[1]: Created slice User Slice of sergey.
янв 16 22:54:57 Arch systemd[1]: Starting User Manager for UID 1000...
янв 16 22:54:57 Arch systemd-logind[428]: New session c1 of user sergey.
янв 16 22:54:57 Arch systemd[1]: Started Session c1 of user sergey.
янв 16 22:54:57 Arch systemd[448]: pam_unix(systemd-user:session): session opened for user sergey by (uid=0)
янв 16 22:54:57 Arch systemd[448]: Reached target Paths.
янв 16 22:54:57 Arch systemd[448]: Reached target Timers.
янв 16 22:54:57 Arch login[430]: LOGIN ON tty1 BY sergey
янв 16 22:54:57 Arch systemd[448]: Starting D-Bus User Message Bus Socket.
янв 16 22:54:57 Arch systemd[448]: Listening on D-Bus User Message Bus Socket.
янв 16 22:54:57 Arch systemd[448]: Reached target Sockets.
янв 16 22:54:57 Arch systemd[448]: Reached target Basic System.
янв 16 22:54:57 Arch systemd[448]: Reached target Default.
янв 16 22:54:57 Arch systemd[448]: Startup finished in 244ms.
янв 16 22:54:57 Arch systemd[1]: Started User Manager for UID 1000.
янв 16 22:54:58 Arch bumblebeed[429]: modprobe: FATAL: Module bbswitch not found in directory /lib/modules/4.3.3-2-ARCH
янв 16 22:54:58 Arch bumblebeed[429]: [   21.017341] [ERROR]Module bbswitch could not be loaded (timeout?)
янв 16 22:54:58 Arch bumblebeed[429]: [   21.017368] [WARN]No switching method available. The dedicated card will always be on.
янв 16 22:54:58 Arch bumblebeed[429]: [   21.019500] [INFO]/usr/bin/bumblebeed 3.2.1 started
янв 16 22:54:59 Arch dhcpcd[415]: enp3s0: carrier acquired
янв 16 22:54:59 Arch kernel: r8169 0000:03:00.0 enp3s0: link up
янв 16 22:54:59 Arch kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp3s0: link becomes ready
янв 16 22:54:59 Arch dhcpcd[415]: enp3s0: adding address fe80::d38c:718d:52cd:8cfb
янв 16 22:54:59 Arch dhcpcd[415]: enp3s0: IAID b0:3f:0f:bb
янв 16 22:54:59 Arch systemd[448]: Started D-Bus User Message Bus.
янв 16 22:54:59 Arch dhcpcd[415]: enp3s0: soliciting an IPv6 router
янв 16 22:55:00 Arch dhcpcd[415]: enp3s0: rebinding lease of 192.168.1.101
янв 16 22:55:00 Arch dhcpcd[415]: enp3s0: probing address 192.168.1.101/24
янв 16 22:55:02 Arch dbus-daemon[497]: Activating service name='org.xfce.Xfconf'
янв 16 22:55:02 Arch dbus-daemon[497]: Successfully activated service 'org.xfce.Xfconf'
янв 16 22:55:02 Arch dbus[414]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
янв 16 22:55:02 Arch systemd[1]: Starting Daemon for power management...
янв 16 22:55:02 Arch dbus[414]: [system] Successfully activated service 'org.freedesktop.UPower'
янв 16 22:55:02 Arch systemd[1]: Started Daemon for power management.
янв 16 22:55:02 Arch dbus[414]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service'
янв 16 22:55:02 Arch systemd[1]: Starting Authorization Manager...
янв 16 22:55:03 Arch polkitd[533]: Started polkitd version 0.113
янв 16 22:55:03 Arch polkitd[533]: Loading rules from directory /etc/polkit-1/rules.d
янв 16 22:55:03 Arch polkitd[533]: Loading rules from directory /usr/share/polkit-1/rules.d
янв 16 22:55:03 Arch polkitd[533]: Finished loading, compiling and executing 1 rules
янв 16 22:55:03 Arch dbus[414]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
янв 16 22:55:03 Arch systemd[1]: Started Authorization Manager.
янв 16 22:55:03 Arch polkitd[533]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
янв 16 22:55:04 Arch dhcpcd[415]: enp3s0: leased 192.168.1.101 for infinity
янв 16 22:55:04 Arch dhcpcd[415]: enp3s0: adding route to 192.168.1.0/24
янв 16 22:55:04 Arch dhcpcd[415]: enp3s0: adding default route via 192.168.1.1
янв 16 22:55:04 Arch dhcpcd[415]: enp3s0: removing route to 192.168.1.0/24
янв 16 22:55:12 Arch dhcpcd[415]: enp3s0: no IPv6 Routers available
янв 16 22:57:28 Arch systemd-logind[428]: System is rebooting.
янв 16 22:57:29 Arch systemd[1]: Stopping User Manager for UID 1000...
янв 16 22:57:29 Arch systemd[1]: Starting Generate shutdown-ramfs...
янв 16 22:57:29 Arch systemd[1]: Stopped target Bluetooth.
янв 16 22:57:29 Arch systemd[1]: Stopped target Graphical Interface.
янв 16 22:57:29 Arch systemd[1]: Stopped target Multi-User System.
янв 16 22:57:29 Arch systemd[1]: Stopping D-Bus System Message Bus...
янв 16 22:57:29 Arch systemd[1]: Stopped target Timers.
янв 16 22:57:29 Arch systemd[1]: Stopped Daily Cleanup of Temporary Directories.
янв 16 22:57:29 Arch systemd[1]: Stopped Daily verification of password and group files.
янв 16 22:57:29 Arch systemd[1]: Stopped Daily man-db cache update.
янв 16 22:57:29 Arch systemd[1]: Stopped target Sound Card.
янв 16 22:57:29 Arch systemd[1]: Stopped target Login Prompts.
янв 16 22:57:29 Arch systemd[1]: Stopping Bumblebee C Daemon...
янв 16 22:57:29 Arch bumblebeed[429]: [  171.305666] [WARN]Received Terminated signal.
янв 16 22:57:29 Arch systemd[1]: Stopping Session c1 of user sergey.
янв 16 22:57:29 Arch systemd[1]: Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
янв 16 22:57:29 Arch systemd[1]: Stopped target Network.
янв 16 22:57:29 Arch systemd[1]: Stopping dhcpcd on all interfaces...
янв 16 22:57:29 Arch systemd[1]: Stopping Daemon for power management...
янв 16 22:57:29 Arch systemd[1]: Stopping Authorization Manager...
янв 16 22:57:29 Arch systemd[1]: Stopped Daily rotation of log files.
янв 16 22:57:29 Arch systemd[1]: Stopping Getty on tty1...
янв 16 22:57:29 Arch systemd[1]: Stopped D-Bus System Message Bus.
янв 16 22:57:29 Arch systemd[1]: Stopped Bumblebee C Daemon.
янв 16 22:57:29 Arch systemd[1]: Stopped Authorization Manager.
янв 16 22:57:29 Arch dhcpcd[614]: sending signal TERM to pid 415
янв 16 22:57:29 Arch dhcpcd[614]: waiting for pid 415 to exit
янв 16 22:57:29 Arch dhcpcd[415]: received SIGTERM, stopping
янв 16 22:57:29 Arch dhcpcd[415]: wlp2s0: removing interface
янв 16 22:57:29 Arch dhcpcd[415]: enp3s0: removing interface
янв 16 22:57:29 Arch systemd[1]: Stopped Daemon for power management.
янв 16 22:57:29 Arch dhcpcd[415]: dhcpcd exited
янв 16 22:57:29 Arch systemd[448]: Stopping D-Bus User Message Bus...
янв 16 22:57:29 Arch systemd[448]: Stopped target Default.
янв 16 22:57:29 Arch systemd[448]: Stopped D-Bus User Message Bus.
янв 16 22:57:29 Arch systemd[448]: Stopped target Basic System.
янв 16 22:57:29 Arch systemd[448]: Stopped target Timers.
янв 16 22:57:29 Arch systemd[448]: Stopped target Paths.
янв 16 22:57:29 Arch systemd[448]: Stopped target Sockets.
янв 16 22:57:29 Arch systemd[448]: Closed D-Bus User Message Bus Socket.
янв 16 22:57:29 Arch systemd[448]: Reached target Shutdown.
янв 16 22:57:29 Arch systemd[448]: Starting Exit the Session...
янв 16 22:57:29 Arch systemd[1]: Stopped dhcpcd on all interfaces.
янв 16 22:57:29 Arch dhcpcd[614]: sending signal TERM to pid 415
янв 16 22:57:29 Arch dhcpcd[614]: waiting for pid 415 to exit
янв 16 22:57:29 Arch systemd[448]: Received SIGRTMIN+24 from PID 627 (kill).
янв 16 22:57:29 Arch systemd[1]: Stopped User Manager for UID 1000.
янв 16 22:57:29 Arch systemd[450]: pam_unix(systemd-user:session): session closed for user sergey
янв 16 22:57:29 Arch mkinitcpio[612]: ==> Starting build: none
янв 16 22:57:29 Arch mkinitcpio[612]: -> Running build hook: [sd-shutdown]
янв 16 22:57:29 Arch mkinitcpio[612]: ==> Build complete.
янв 16 22:57:29 Arch systemd[1]: Started Generate shutdown-ramfs.
янв 16 22:57:30 Arch login[430]: pam_unix(login:session): session closed for user sergey
янв 16 22:57:30 Arch login[430]: pam_systemd(login:session): Failed to release session: Connection reset by peer
янв 16 22:57:30 Arch systemd-logind[428]: Failed to abandon session scope: Transport endpoint is not connected
янв 16 22:57:30 Arch systemd[1]: Stopped Getty on tty1.
янв 16 22:57:30 Arch systemd[1]: Stopped Session c1 of user sergey.
янв 16 22:57:30 Arch systemd[1]: Removed slice User Slice of sergey.
янв 16 22:57:30 Arch systemd[1]: Stopping Login Service...
янв 16 22:57:30 Arch systemd[1]: Removed slice system-getty.slice.
янв 16 22:57:30 Arch systemd[1]: Stopping Permit User Sessions...
янв 16 22:57:30 Arch systemd[1]: Stopped Permit User Sessions.
янв 16 22:57:30 Arch systemd[1]: Stopped target Remote File Systems.
янв 16 22:57:30 Arch systemd[1]: Stopped Login Service.
янв 16 22:57:30 Arch systemd[1]: Stopped target Basic System.
янв 16 22:57:30 Arch systemd[1]: Stopped target Slices.
янв 16 22:57:30 Arch systemd[1]: Stopped target Paths.
янв 16 22:57:30 Arch systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
янв 16 22:57:30 Arch systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
янв 16 22:57:30 Arch systemd[1]: Stopped target Sockets.
янв 16 22:57:30 Arch systemd[1]: Removed slice User and Session Slice.
янв 16 22:57:30 Arch systemd[1]: Closed D-Bus System Message Bus Socket.
янв 16 22:57:30 Arch systemd[1]: Stopped target System Initialization.
янв 16 22:57:30 Arch systemd[1]: Stopping Load/Save Random Seed...
янв 16 22:57:30 Arch systemd[1]: Stopped target Encrypted Volumes.
янв 16 22:57:30 Arch systemd[1]: Stopping Cryptography Setup for crypthome...
янв 16 22:57:30 Arch systemd[1]: Stopped Apply Kernel Variables.
янв 16 22:57:30 Arch systemd[1]: Stopping Load/Save Screen Backlight Brightness of backlight:intel_backlight...
янв 16 22:57:30 Arch systemd[1]: Stopped Setup Virtual Console.
янв 16 22:57:30 Arch systemd[1]: Stopped target Swap.
янв 16 22:57:30 Arch systemd[1]: Stopping Update UTMP about System Boot/Shutdown...
янв 16 22:57:30 Arch systemd[1]: Stopped Load/Save Random Seed.
янв 16 22:57:30 Arch systemd[1]: Stopped Load/Save Screen Backlight Brightness of backlight:intel_backlight.
янв 16 22:57:30 Arch systemd[1]: Stopped Update UTMP about System Boot/Shutdown.
янв 16 22:57:30 Arch systemd[1]: Stopped Create Volatile Files and Directories.
янв 16 22:57:30 Arch systemd[1]: Stopped target Local File Systems.
янв 16 22:57:30 Arch systemd[1]: Unmounting /run/user/1000...
янв 16 22:57:30 Arch systemd[1]: Unmounting /home...
янв 16 22:57:30 Arch systemd[1]: Unmounting Temporary Directory...
янв 16 22:57:30 Arch systemd[1]: Unmounting /boot/efi...
янв 16 22:57:30 Arch systemd[1]: Removed slice system-systemd\x2dbacklight.slice.
янв 16 22:57:30 Arch systemd[1]: Stopped (with error) /dev/mapper/crypthome.
янв 16 22:57:30 Arch systemd[1]: Unmounted Temporary Directory.
янв 16 22:57:30 Arch systemd[1]: Unmounted /run/user/1000.
янв 16 22:57:30 Arch systemd[1]: Unmounted /boot/efi.
янв 16 22:57:30 Arch systemd[1]: Stopped File System Check on /dev/disk/by-uuid/E628-ECDA.
янв 16 22:57:30 Arch systemd[1]: Unmounted /home.
янв 16 22:57:30 Arch systemd[1]: Stopped File System Check on /dev/disk/by-uuid/c1c3ee5c-76cc-402a-91e9-5be87014d6d0.
янв 16 22:57:30 Arch systemd[1]: Stopped target Local File Systems (Pre).
янв 16 22:57:30 Arch systemd[1]: Stopped Remount Root and Kernel File Systems.
янв 16 22:57:30 Arch systemd[1]: Stopped Create Static Device Nodes in /dev.
янв 16 22:57:30 Arch systemd[1]: Removed slice system-systemd\x2dfsck.slice.
янв 16 22:57:30 Arch systemd[1]: Stopped /dev/disk/by-uuid/c1c3ee5c-76cc-402a-91e9-5be87014d6d0.
янв 16 22:57:30 Arch systemd[1]: Stopped /dev/disk/by-id/dm-uuid-CRYPT-LUKS1-952c4ccc4225434e82fc7d527e51f5e0-crypthome.
янв 16 22:57:30 Arch systemd[1]: Stopped /dev/disk/by-id/dm-name-crypthome.
янв 16 22:57:30 Arch systemd[1]: Stopped /dev/dm-1.
янв 16 22:57:30 Arch systemd[1]: Stopped /sys/devices/virtual/block/dm-1.
янв 16 22:57:30 Arch systemd[1]: Stopped Cryptography Setup for crypthome.
янв 16 22:57:30 Arch systemd[1]: Reached target Unmount All Filesystems.
янв 16 22:57:30 Arch systemd[1]: Removed slice system-systemd\x2dcryptsetup.slice.
янв 16 22:57:30 Arch systemd[1]: Reached target Shutdown.
янв 16 22:57:30 Arch systemd[1]: Reached target Final Step.
янв 16 22:57:30 Arch systemd[1]: Starting Reboot...
янв 16 22:57:30 Arch systemd[1]: Shutting down.
янв 16 22:57:30 Arch systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
янв 16 22:57:30 Arch systemd[1]: Set hardware watchdog to 10min.
янв 16 22:57:30 Arch kernel: watchdog watchdog0: watchdog did not stop!
янв 16 22:57:31 Arch systemd-shutdown[1]: Sending SIGTERM to remaining processes...
янв 16 22:57:31 Arch systemd-journald[264]: Journal stopped

errors:

-- Logs begin at Сб 2016-01-16 12:01:34 MSK, end at Сб 2016-01-16 22:58:25 MSK. --
янв 16 22:57:30 Arch login[430]: pam_systemd(login:session): Failed to release session: Connection reset by peer
янв 16 22:57:30 Arch systemd-logind[428]: Failed to abandon session scope: Transport endpoint is not connected
янв 16 22:57:30 Arch systemd[1]: Stopped (with error) /dev/mapper/crypthome.
янв 16 22:57:30 Arch kernel: watchdog watchdog0: watchdog did not stop!

Last edited by D101101 (2016-01-16 20:12:50)

Offline

#25 2016-01-17 09:11:31

tom.ty89
Member
Registered: 2012-11-15
Posts: 897

Re: [SOLVED] dm-crypt:simple partition layout with LUKS

Maybe you can open an issue on systemd's github, if you don't mind.

Offline

Board footer

Powered by FluxBB