This is a short fix for the error FAIL(S0030) that comes up during the HP Vertica Installation.
FAIL (S0020): Readahead size of sda (/dev/sda1) is too low for typical systems: 256 <
2048 Readahead size of (/dev/mapper/vg_test-lv_root) is too low for
typical systems: 256 < 2048
[root@primary tmp]# blockdev --report | grep /dev/sda1
rw 256 512 1024 2048 524288000 /dev/sda1
[root@primary tmp]# blockdev --report | grep /dev/sda1
rw 2048 512 1024 2048 524288000 /dev/sda1
--enable on boot time
[root@primary tmp]# echo '/sbin/blockdev --setra 2048 /dev/sda1' /etc/rc.local
[root@primary tmp]# cat /etc/rc.local
#!/bin/sh
#
# This script will be executed *after* all the other init scripts.
# You can put your own initialization stuff in here if you don't
# want to do the full Sys V style init stuff.
touch /var/lock/subsys/local
if test -f /sys/kernel/mm/redhat_transparent_hugepage/enabled; then
echo never /sys/kernel/mm/redhat_transparent_hugepage/enabled
fi
/sbin/blockdev --setra 2048 /dev/sda1