29/06/2012 Cómo arrancar el sistema mínimo desde el disco duro usando grub2 Se tiene que editar el archivo /etc/grub.d/40_custom de la siguiente manera: #!/bin/sh exec tail -n +3 $0 # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. menuentry 'Mi Sistema Minimo' { set root='(hd0,msdos1)' echo 'Cargando Linux 2.6.32-5-686 ...' linux /boot/vmlinuz-2.6.32-5-686 root=/dev/ram0 rw echo 'Cargando mi disco en RAM ...' initrd /boot/sminimo.gz } y ejecutar el comando update-grub2 Y ya está!