MCP:
Being as /boot/grub/menu.lst is a system file. it should be owned by root, and off limits to a regular user. To see the contents, open a terminal, and try this:
[polack@littleboy ~]$ cat /boot/grub/menu.lst
cat: /boot/grub/menu.lst: Permission denied
[polack@littleboy ~]$ su
Password:
[root@littleboy polack]# cat /boot/grub/menu.lst
timeout 10
color black/cyan yellow/cyan
gfxmenu (hd0,13)/boot/gfxmenu
default 0
title MiniMe 2010
kernel (hd0,13)/boot/vmlinuz BOOT_IMAGE=MiniMe_2010 root=LABEL=minime2010 resume=LABEL=swap1000 vga=791
initrd (hd0,13)/boot/initrd.img
title MiniMe-nonfb
kernel (hd0,13)/boot/vmlinuz BOOT_IMAGE=MiniMe-nonfb root=LABEL=minime2010 resume=LABEL=swap1000
initrd (hd0,13)/boot/initrd.img
title MiniMe-failsafe
kernel (hd0,13)/boot/vmlinuz BOOT_IMAGE=MiniMe-failsafe root=LABEL=minime2010 failsafe
initrd (hd0,13)/boot/initrd.img
title linux
kernel (hd0,13)/boot/vmlinuz BOOT_IMAGE=linux root=LABEL=minime2010 resume=LABEL=swap1000 vga=791
initrd (hd0,13)/boot/initrd.img
title MiniMe 2.6.33.2-pclos1.bfs
kernel (hd0,13)/boot/vmlinuz-2.6.33.2-pclos1.bfs BOOT_IMAGE=2.6.33.2-pclos1.bfs root=LABEL=minime2010 resume=LABEL=swap1000 vga=791
initrd (hd0,13)/boot/initrd-2.6.33.2-pclos1.bfs.img
title MiniMe 2.6.32.11-pclos2
kernel (hd0,13)/boot/vmlinuz-2.6.32.11-pclos2 BOOT_IMAGE=2.6.32.11-pclos2 root=LABEL=minime2010 resume=LABEL=swap1000 vga=791
initrd (hd0,13)/boot/initrd-2.6.32.11-pclos2.img
[root@littleboy polack]# exit
exit
[polack@littleboy ~]$