Thank SO MUCH for significant HELP, guys!
The problem is solved by adding acpi=force to kernel cmdline at /boot/grub2/grub.cfg and /etc/default/grub. It seems something is wrong with Intel DH77EB motherboard as I see in dmesg now:
Code:
[ 0.000000] ACPI: no DMI BIOS year, acpi=force is required to enable ACPI
[ 0.000000] ACPI: acpi=force override
instead of
Code:
[ 0.000000] ACPI: no DMI BIOS year, acpi=force is required to enable ACPI
[ 0.000000] ACPI: Disabling ACPI support
I consider there is a some imperfection in Intel DH77EB motherboard which requires acpi forcing.
Now I see:
lscpu
Code:
Architecture: i686
CPU op-mode(s): 32-bit, 64-bit
Byte Order: Little Endian
CPU(s): 8
On-line CPU(s) list: 0-7
Thread(s) per core: 2
Core(s) per socket: 4
Socket(s): 1
Vendor ID: GenuineIntel
CPU family: 6
Model: 42
Stepping: 7
CPU MHz: 1600.000
BogoMIPS: 6800.41
Virtualization: VT-x
L1d cache: 32K
L1i cache: 32K
L2 cache: 256K
L3 cache: 8192K
cat /proc/cmdline
Code:
BOOT_IMAGE=/boot/vmlinuz-3.4.9-1.fc16.i686.PAE root=UUID=c3a20a9c-df77-4705-8c96-4129cc002140 ro rd.md=0 rd.lvm=0 rd.dm=0 acpi=force KEYTABLE=us quiet SYSFONT=latarcyrheb-sun16 rhgb rd.luks=0 LANG=en_US.UTF-8
At the same time acpi forcing solved another problem - the server now has no "hangs" at reboot and shutdown.
Finally was solved one more CPU problem. There was the line in dmesg before:
Code:
[ 1.190027] p4-clockmod: Warning: EST-capable CPU detected. The acpi-cpufreq module offers voltage scaling in addition to frequency scaling. You should use that instead of p4-clockmod, if possible.
This CPU voltage scaling in addition to frequency scaling issue was solved by creating of file /etc/modprobe.d/blacklist-p4-clockmod.conf with content:
Code:
blacklist p4-clockmod
and adding to /etc/rc.d/rc.local the line:
Code:
modprobe acpi-cpufreq
In other words the kernel module p4-clockmod has been blacklisted and instead of this module another acpi-cpufreq kernel module has been loaded as more suitable for CPU with EST-capability as it follows from dmesg.
dmesg: dmesg_new.txt
Thanks again to everybody and to george_toolan especially for valuable help!