In the /boot/grub/grub.conf
file, how would I change the path name of where the kernel boots from if the boot file is located somewhere outside of /boot?
For example, I would want to load the boot kernel from
/home/root/kernel
How would I specify that?
The grub.conf file looks like this right now
title CentOS (2.6.32-358.6.1.el6.i686)
kernel /vmlinuz-2.6.32-358.6.1.el6.i686
initrd /initramfs-2.6.32-358.6.1.el6.i686.img
I tried /../home/root/kernel
but it didn't work. Would I have to change the partition?