Install CentOS7 with Software RAID 1
Note: This is an 'informal' tutorial, written in the first person and not edited to the same degree as full tutorials. |
Contents |
The Goal
A problem I had been struggling with since the release of RHEL/CentOS 7 is how to install on a software RAID 1 array such that either disk could be used to boot.
The Problem
There are two problems;
- The default behaviour of anaconda prevents the creation of the biosboot partition on both disks. When I tried to to manually create the partitions by dropping to shell, anaconda would later fault out and the install would not complete. To get around this, a kickstart script is needed, which was booted off of a PXE server.
- After the kickstart install, only one disk was bootable. Trying to install grup on the second disk caused a crash.
The Fixes
Install
I have a PXE Server already, so I decided to create a kickstart script and added an entry for it.
The kickstart script used to perform the CentOS 7 install was:
Note: Update this to match the IP of your PXE server and update the partition sizes, host name and desired VG name to what you want. |
Note: The root password is 'initial'. |
#version=RHEL7 # System authorization information auth --enableshadow --passalgo=sha512 # Use network installation url --url="http://10.255.255.254/c7/x86_64/img/" # Run the Setup Agent on first boot firstboot --disable ignoredisk --only-use=sda,sdb # Keyboard layouts keyboard us # System language lang en_CA.UTF-8 # Network information network --bootproto=dhcp --ipv6=auto --activate network --hostname=an-nas02.kw01.alteeve.ca # Root password rootpw --iscrypted $6$0riSEDMyCvHPdhCv$lvuhEOqU2yo9szCJHtAsVUK3maHyWlpZmVi6PCRkrOfifL/38J7SaGUopehv/rzwQvhqxNla/jPvD10uwuPY4/ # System timezone timezone Europe/London --isUtc # System bootloader configuration bootloader --location=mbr --boot-drive=sda # Partition clearing information clearpart --drives=sda,sdb --all --initlabel # Disk partitioning information part biosboot --fstype=biosboot --size=2 --ondisk=sda part biosboot --fstype=biosboot --size=2 --ondisk=sdb part raid.11 --size=500 --grow --ondisk=sda part raid.12 --size=500 --grow --ondisk=sdb raid pv.11 --fstype="lvmpv" --level=1 --device=md0 raid.11 raid.12 volgroup an-nas02_vg0 --pesize=4096 pv.11 logvol swap --fstype="swap" --size=32768 --name=lv_swap --vgname=an-nas02_vg0 logvol /boot --fstype="xfs" --size=512 --name=lv_boot --vgname=an-nas02_vg0 logvol / --fstype="xfs" --size=256000 --name=lv_root --vgname=an-nas02_vg0 eula --agreed %packages @core vim perl %end
To boot off of this kickstart file, I used the following PXE boot entry:
LABEL c7_x86_64 MENU LABEL ^2) CentOS 7 x86_64 - an-nas02 KERNEL boot/c7/x86_64/vmlinuz APPEND initrd=boot/c7/x86_64/initrd.img inst.repo=http://10.255.255.254/c7/x86_64/img/ ks=http://10.255.255.254/c7/x86_64/ks/an-nas02.ks
With this in place, boot off of the PXE server, select the entry and go grab a coffee. When you get back, the install should be finished.
Booting Off Both Disks
After the install completed, I tested booting off of each disk by using my mainboard's BIOS manual boot device selection (pressing <F8> during the BIOS boot process). It turned out that I could only boot off of the second disk, not the first.
Easy enough, I figured. I booted the OS and tried to install grub2 on the the first disk:
grub2-install --no-floppy /dev/sda
Installing for i386-pc platform. *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x42faba] grub2-install[0x4dd1ea] grub2-install[0x4d26ee] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x4dd340] grub2-install[0x4dd383] grub2-install[0x4cac1c] grub2-install[0x4dd3e2] grub2-install[0x4ddae9] grub2-install[0x4c4e3c] grub2-install[0x4c4416] grub2-install[0x40557f] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-009bf000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x42faba] grub2-install[0x4dd1ea] grub2-install[0x4d26ee] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x4dd340] grub2-install[0x4dd383] grub2-install[0x4cac1c] grub2-install[0x4dd3e2] grub2-install[0x4ddae9] grub2-install[0x4c4e3c] grub2-install[0x4c4416] grub2-install[0x40557f] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-009bf000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x42faba] grub2-install[0x4dd1ea] grub2-install[0x4d26ee] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x4dd340] grub2-install[0x4dd383] grub2-install[0x4cac1c] grub2-install[0x4dd3e2] grub2-install[0x4ddae9] grub2-install[0x4c4e3c] grub2-install[0x4c4416] grub2-install[0x40557f] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-009e7000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x42faba] grub2-install[0x4dd1ea] grub2-install[0x4d26ee] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x4dd340] grub2-install[0x4dd383] grub2-install[0x4cac1c] grub2-install[0x4dd3e2] grub2-install[0x4ddae9] grub2-install[0x4c4e3c] grub2-install[0x4c4416] grub2-install[0x40557f] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-009e7000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x42faba] grub2-install[0x4dd1ea] grub2-install[0x4d26ee] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x4dd340] grub2-install[0x4dd383] grub2-install[0x4cac1c] grub2-install[0x4dd3e2] grub2-install[0x4ddae9] grub2-install[0x4c4e3c] grub2-install[0x4c4416] grub2-install[0x40557f] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-009e7000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] grub2-install: warning: Couldn't find physical volume ‘(null)’. Some modules may be missing from core image.. grub2-install: warning: Couldn't find physical volume ‘(null)’. Some modules may be missing from core image.. *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4c7732] grub2-install[0x4c60ee] grub2-install[0x4c6142] grub2-install[0x414cf0] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f663787a000-7f663787b000 rw-p 00000000 00:00 0 7f663787b000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4c8f97] grub2-install[0x4c9bc7] grub2-install[0x4c61d3] grub2-install[0x4c60cb] grub2-install[0x4ca1e0] grub2-install[0x4c60fa] grub2-install[0x4c6142] grub2-install[0x414cf0] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637879000-7f663787a000 rw-p 00000000 00:00 0 7f663787a000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4c60b1] grub2-install[0x4c65f0] grub2-install[0x4c611f] grub2-install[0x4c9c31] grub2-install[0x4c610d] grub2-install[0x4ca1e0] grub2-install[0x4c60fa] grub2-install[0x4c6142] grub2-install[0x414cf0] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637878000-7f6637879000 rw-p 00000000 00:00 0 7f6637879000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x4769aa] grub2-install[0x4d273f] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x414f8b] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637878000-7f6637879000 rw-p 00000000 00:00 0 7f6637879000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x4769aa] grub2-install[0x4d273f] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x414f8b] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637878000-7f6637879000 rw-p 00000000 00:00 0 7f6637879000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x4cddeb] grub2-install[0x4cc718] grub2-install[0x4cc857] grub2-install[0x4cc903] grub2-install[0x4ccc8f] grub2-install[0x4ccebc] grub2-install[0x4cb0bb] grub2-install[0x4c51df] grub2-install[0x4c5404] grub2-install[0x4c5565] grub2-install[0x4769aa] grub2-install[0x4d273f] grub2-install[0x4dfba6] grub2-install[0x4d27d6] grub2-install[0x414f8b] grub2-install[0x4066af] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637878000-7f6637879000 rw-p 00000000 00:00 0 7f6637879000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] Installation finished. No error reported. *** Error in `grub2-install': double free or corruption (fasttop): 0x000000000095c3b0 *** ======= Backtrace: ========= /lib64/libc.so.6(+0x7d1ad)[0x7f6636fe71ad] grub2-install[0x4ce7e2] grub2-install[0x4df728] grub2-install[0x4df8ad] grub2-install[0x4df898] grub2-install[0x42b826] grub2-install[0x4070fe] /lib64/libc.so.6(__libc_start_main+0xf5)[0x7f6636f8baf5] grub2-install[0x402fa9] ======= Memory map: ======== 00400000-00532000 r-xp 00000000 fd:01 537879677 /usr/sbin/grub2-install 00731000-00732000 r--p 00131000 fd:01 537879677 /usr/sbin/grub2-install 00732000-0073e000 rw-p 00132000 fd:01 537879677 /usr/sbin/grub2-install 0073e000-0075e000 rw-p 00000000 00:00 0 00950000-01178000 rw-p 00000000 00:00 0 [heap] 7f662f929000-7f6635e4f000 r--p 00000000 fd:01 268437816 /usr/lib/locale/locale-archive 7f6635e4f000-7f6635e64000 r-xp 00000000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6635e64000-7f6636063000 ---p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636063000-7f6636064000 r--p 00014000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636064000-7f6636065000 rw-p 00015000 fd:01 538228900 /usr/lib64/libgcc_s-4.8.2-20140120.so.1 7f6636065000-7f663606c000 r-xp 00000000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663606c000-7f663626b000 ---p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626b000-7f663626c000 r--p 00006000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626c000-7f663626d000 rw-p 00007000 fd:01 538228932 /usr/lib64/librt-2.17.so 7f663626d000-7f6636270000 r-xp 00000000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636270000-7f663646f000 ---p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f663646f000-7f6636470000 r--p 00002000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636470000-7f6636471000 rw-p 00003000 fd:01 537385395 /usr/lib64/libdl-2.17.so 7f6636471000-7f66364d0000 r-xp 00000000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66364d0000-7f66366d0000 ---p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d0000-7f66366d1000 r--p 0005f000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d1000-7f66366d2000 rw-p 00060000 fd:01 537385400 /usr/lib64/libpcre.so.1.2.0 7f66366d2000-7f66366e3000 r-xp 00000000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66366e3000-7f66368e2000 ---p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e2000-7f66368e3000 r--p 00010000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e3000-7f66368e4000 rw-p 00011000 fd:01 537385243 /usr/lib64/libudev.so.1.4.0 7f66368e4000-7f6636928000 r-xp 00000000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636928000-7f6636b27000 ---p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b27000-7f6636b28000 r--p 00043000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b28000-7f6636b29000 rw-p 00044000 fd:01 537385398 /usr/lib64/libsepol.so.1 7f6636b29000-7f6636b4a000 r-xp 00000000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636b4a000-7f6636d4a000 ---p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4a000-7f6636d4b000 r--p 00021000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4b000-7f6636d4c000 rw-p 00022000 fd:01 537385409 /usr/lib64/libselinux.so.1 7f6636d4c000-7f6636d4e000 rw-p 00000000 00:00 0 7f6636d4e000-7f6636d64000 r-xp 00000000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636d64000-7f6636f64000 ---p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f64000-7f6636f65000 r--p 00016000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f65000-7f6636f66000 rw-p 00017000 fd:01 538228928 /usr/lib64/libpthread-2.17.so 7f6636f66000-7f6636f6a000 rw-p 00000000 00:00 0 7f6636f6a000-7f6637120000 r-xp 00000000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637120000-7f6637320000 ---p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637320000-7f6637324000 r--p 001b6000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637324000-7f6637326000 rw-p 001ba000 fd:01 537384933 /usr/lib64/libc-2.17.so 7f6637326000-7f663732b000 rw-p 00000000 00:00 0 7f663732b000-7f6637366000 r-xp 00000000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637366000-7f6637565000 ---p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637565000-7f6637566000 r--p 0003a000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637566000-7f6637569000 rw-p 0003b000 fd:01 537844448 /usr/lib64/libdevmapper.so.1.02 7f6637569000-7f663756a000 rw-p 00000000 00:00 0 7f663756a000-7f663758e000 r-xp 00000000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663758e000-7f663778d000 ---p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778d000-7f663778e000 r--p 00023000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778e000-7f663778f000 rw-p 00024000 fd:01 537385264 /usr/lib64/liblzma.so.5.0.99 7f663778f000-7f66377b0000 r-xp 00000000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f6637878000-7f663797c000 rw-p 00000000 00:00 0 7f663797c000-7f6637983000 r--s 00000000 fd:01 537385230 /usr/lib64/gconv/gconv-modules.cache 7f6637983000-7f66379a1000 r--p 00000000 fd:01 805612845 /usr/share/locale/en/LC_MESSAGES/grub.mo 7f66379a1000-7f66379a9000 rw-p 00000000 00:00 0 7f66379a9000-7f66379af000 rw-p 00000000 00:00 0 7f66379af000-7f66379b0000 r--p 00020000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b0000-7f66379b1000 rw-p 00021000 fd:01 538228909 /usr/lib64/ld-2.17.so 7f66379b1000-7f66379b2000 rw-p 00000000 00:00 0 7fff16c4a000-7fff16c6d000 rw-p 00000000 00:00 0 [stack] 7fff16dfe000-7fff16e00000 r-xp 00000000 00:00 0 [vdso] ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall] Aborted
Well foo.
After some digging around and some help from randomuser on freenode's #centos channel, the problem turned out to be that /boot was on a Logical Volume, which *should* work. The fix was to prevent grub2-probe from looking for the filesystem probe.
grub2-install --grub-probe=/dev/null /dev/sda
Installing for i386-pc platform. Installation finished. No error reported.
With this, I could properly boot off of either disk!
Any questions, feedback, advice, complaints or meanderings are welcome. | ||||
Us: Alteeve's Niche! | Support: Mailing List | IRC: #clusterlabs on Freenode | © Alteeve's Niche! Inc. 1997-2019 | |
legal stuff: All info is provided "As-Is". Do not use anything here unless you are willing and able to take responsibility for your own actions. |