Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. Eliminar Startup Manager (If it says "not installed so not removed" that's OK)
  2. ------------------------
  3. apt-get --purge remove startupmanager
  4.  
  5. Eliminar grub2 (paquetes por separado, asegurandose de no dejar archivos de configuracion)
  6. --------------
  7. apt-get --purge remove grub-pc
  8. apt-get --purge remove grub-common
  9. apt-get --purge remove os-prober
  10. apt-get autoremove
  11.  
  12.  
  13.  
  14. Preparar el instalador de grub (y sus dependencias, grub-common & os-prober)
  15. ------------------------------
  16. apt-get install grub-legacy
  17.  
  18. Mostrar la lista de particiones (el resultado lo usamos a continuacion)
  19. -------------------------------
  20. fdisk -l
  21.  
  22. Instalar archivos de grub en /boot/grub/ (¿y el MBR en sdx?)
  23. --------------------------------------------------------
  24. grub-install /dev/sdx
  25.  
  26. Crear archivo de configuracion /boot/grub/menu.lst
  27. ------------------------------
  28. update-grub
  29.  
  30.  
  31.  
  32. Entrar en el shell de grub
  33. --------------------------
  34. grub
  35.  
  36. Buscar archivo stage1 (el resultado lo usamos a continuacion)
  37. ---------------------
  38. find /boot/grub/stage1
  39.  
  40. Indicar la particion que contiene los archivos de grub
  41. ------------------------------------------------------
  42. root (hdx,x)
  43.  
  44. Instalar
  45. -----------------------------
  46. setup (hdx)
  47.  
  48. quit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement