Seguridad Wireless - Wifi

Sistemas operativos => Zona GNU/Linux => Mensaje iniciado por: Winxdunero94 en 09-11-2014, 00:44 (Domingo)

Título: Problema grub
Publicado por: Winxdunero94 en 09-11-2014, 00:44 (Domingo)
Hola a todos, soy el plasta de las 10.000 preguntas por días xD  

Tengo un problema y voy a dar muchos datos para que sea más preciso a la hora de orientarme al camino de la solución.

Verán como he dicho en otros temas tengo Bugtraq 2+Wifislax, pues al instalar Bugtraq 2 se me quedó el arranque con más opciones de las yo que  quería. En vez de salir Bugtraq 2, Bugtraq 2 (Modo recuperación) Testmem, Wifislax 4.9 y Wifislax 4.9 (Modo recuperación) me salía muchisimas más y el problema es que toqueteé el Grub.cfg y puse algo más y ahora solo me da la opción de entrar a Bugtraq 2 solamente.

Estoy en el modo Live y quería modificar el texto para que un "SANTO" me guie y me ayude con este gran problema.

Ahora mismo mi grub está así.

 #
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
set default="0"
if [ "${prev_saved_entry}" ]; then
  set saved_entry="${prev_saved_entry}"
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z "${boot_once}" ]; then
    saved_entry="${chosen}"
    save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

insmod part_gpt
insmod ext2
set root='(hd1,gpt9)'
search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  insmod part_gpt
  insmod ext2
  set root='(hd1,gpt9)'
  search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
  set locale_dir=($root)/boot/grub/locale
  set lang=es_ES
  insmod gettext
fi
terminal_output gfxterm
insmod part_gpt
insmod ext2
set root='(hd1,gpt9)'
search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
insmod png
background_image -m stretch /bugtraq/wallpapers/wallpaper_login.png
if [ "${recordfail}" = 1 ]; then
  set timeout=-1
else
  set timeout=10
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
insmod part_gpt
insmod ext2
set root='(hd1,gpt9)'
search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
insmod png
if background_image /bugtraq/wallpapers/wallpaper_login.png; then
  true
else
  set menu_color_normal=white/black
  set menu_color_highlight=black/light-gray
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
   set gfxpayload="${1}"
   if [ "${1}" = "keep" ]; then
      set vt_handoff=vt.handoff=7
   else
      set vt_handoff=
   fi
}
if [ "${recordfail}" != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
    if hwmatch ${prefix}/gfxblacklist.txt 3; then
      if [ ${match} = 0 ]; then
        set linux_gfx_mode=keep
      else
        set linux_gfx_mode=text
      fi
    else
      set linux_gfx_mode=text
    fi
  else
    set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
if [ "${linux_gfx_mode}" != "text" ]; then load_video; fi
menuentry "BUGTRAQ 2"  {
   recordfail
   gfxmode $linux_gfx_mode
   insmod gzio
   insmod part_gpt
   insmod ext2
   set root='(hd1,gpt9)'
   search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
   linux   /boot/vmlinuz-3.2.0-41-generic root=UUID=5f77a3c3-c1ed-430b-aa91-5dbb33f96a46 ro   quiet splash $vt_handoff
   initrd   /boot/initrd.img-3.2.0-41-generic
}
menuentry "BUGTRAQ 2" (modo recuperación) {
#   recordfail
#   insmod gzio
#   insmod part_gpt
#   insmod ext2
#   set root='(hd1,gpt9)'
#   search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
#   echo   'Cargando Linux 3.2.0-41-generic ...'
#   linux   /boot/vmlinuz-3.2.0-41-generic root=UUID=5f77a3c3-c1ed-430b-aa91-5dbb33f96a46 ro recovery nomodeset
#   echo   'Cargando el disco RAM inicial...'
#   initrd   /boot/initrd.img-3.2.0-41-generic
#}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
#   insmod part_gpt
#   insmod ext2
#   set root='(hd1,gpt9)'
#   search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
#   linux16   /boot/memtest86+.bin
#}
menuentry "Memory test (memtest86+, serial console 115200)" {
#   insmod part_gpt
#   insmod ext2
#   set root='(hd1,gpt9)'
#   search --no-floppy --fs-uuid --set=root 5f77a3c3-c1ed-430b-aa91-5dbb33f96a46
#   linux16   /boot/memtest86+.bin console=ttyS0,115200n8
#}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Wifislax 4.9 GNU/Linux' {
   insmod part_gpt
   insmod ext2
   set root='(hd1,gpt8)'
   search --no-floppy --fs-uuid --set=root 3b306730-bf94-46b1-a28c-0d83ca021b91
   linux /boot/vmlinuz-3.13.11-pae-wifislax root=/dev/sda8 ro acpi_backlight=vendor quiet splash vga=788 rw
}
menuentry "Wifislax 4.9 GNU/Linux 2" {
   insmod part_gpt
   insmod ext2
   set root='(hd1,gpt8)'
   search --no-floppy --fs-uuid --set=root 3b306730-bf94-46b1-a28c-0d83ca021b91
   linux /boot/vmlinuz-3.13.11-pae-wifislax root=/dev/sda8 ro acpi_backlight=vendor quiet splash vga=788 rw
}
menuentry "Wifislax 4.9 GNU/Linux, con Linux 3.13.11-pae-wifislax (modo recuperación)'  {
   insmod part_gpt
   insmod ext2
   set root='(hd1,gpt8)'
   search --no-floppy --fs-uuid --set=root 3b306730-bf94-46b1-a28c-0d83ca021b91
   linux /boot/vmlinuz-3.13.11-pae-wifislax root=/dev/sda8 ro single
}

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/40_custom ###
# 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.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###


Pues quiero tener el acceso a estos 2 sistemas más las opciones de test.

Gracias al que me lo solucione.
Título: Re: Problema grub
Publicado por: Winxdunero94 en 09-11-2014, 03:00 (Domingo)
Bueno he toqueteado por aquí y por allá y ya pude solucionarlo. Gracias aunque nadie me ha contestado xD.

Es lo bueno de tener iniciativa y autodidacto. Todos los que empiezan en Linux deben ser así.