[Resolvido]Grub

Iniciado por Aphexleo, 07 de Março de 2009, 23:10

tópico anterior - próximo tópico

Aphexleo

Olá gostaria de saber como eu retiro a lista que o linux fez na hora de escolher sistema operacional

está o seguinte:


## should update-grub adjust the value of the default booted system
## can be true or false
# updatedefaultentry=false

## should update-grub add savedefault to the default options
## can be true or false
# savedefault=false

## ## End Default Options ##

title Ubuntu 8.04.2, kernel 2.6.24-23-generic
root (hd0,4)
kernel /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
initrd /boot/initrd.img-2.6.24-23-generic
quiet

title Ubuntu 8.04.2, kernel 2.6.24-23-generic (recovery mode)
root (hd0,4)
kernel /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
initrd /boot/initrd.img-2.6.24-23-generic

title Ubuntu 8.04.2, kernel 2.6.24-19-generic
root (hd0,4)
kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
initrd /boot/initrd.img-2.6.24-19-generic
quiet

title Ubuntu 8.04.2, kernel 2.6.24-19-generic (recovery mode)
root (hd0,4)
kernel /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
initrd /boot/initrd.img-2.6.24-19-generic

title Ubuntu 8.04.2, memtest86+
root (hd0,4)
kernel /boot/memtest86+.bin
quiet

### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
title Other operating systems:
root


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sda1
title Microsoft Windows XP Professional
root (hd0,0)
savedefault
makeactive
chainloader +1


# This entry automatically added by the Debian installer for a non-linux OS
# on /dev/sdb1
title Microsoft Windows XP Professional
root (hd1,0)
savedefault
makeactive
map (hd0) (hd1)
map (hd1) (hd0)
chainloader +1


e tambem gostaria de saber como eu deixo para deixar se caso não escolha nenhum sistema operacional que inicie via windows?


obg.

raidicar

#1
Para retirar algumas opções, basta adicionar o caracter # no inicio de cada linha, ex:
O que estiver em vermelho não aparecera no boot, por que coloquei o "#" na frente
O que esta em VERDE vai aparecer no boot pois eu não fiz nada nele.

title      Ubuntu 8.04.2, kernel 2.6.24-23-generic
root      (hd0,4)
kernel      /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
initrd      /boot/initrd.img-2.6.24-23-generic
quiet


# title      Ubuntu 8.04.2, kernel 2.6.24-23-generic (recovery mode)
# root      (hd0,4)
# kernel      /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
# initrd      /boot/initrd.img-2.6.24-23-generic

title      Ubuntu 8.04.2, kernel 2.6.24-19-generic
root      (hd0,4)
kernel      /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
initrd      /boot/initrd.img-2.6.24-19-generic
quiet


# title      Ubuntu 8.04.2, kernel 2.6.24-19-generic (recovery mode)
# root      (hd0,4)
# kernel      /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
# initrd      /boot/initrd.img-2.6.24-19-generic


Para alterar a sequencia do boot, vc tem uma linha mais acima que é assim:
default      0
O grub conta os sistemas pela ordem como estão definidos os sistemas no arquivo e, a contagem começa a partir do zero, então, no seu caso:
0 = Ubuntu 8.04.2, kernel 2.6.24-23-generic
1 = Ubuntu 8.04.2, kernel 2.6.24-23-generic (recovery mode)
2 = Ubuntu 8.04.2, kernel 2.6.24-19-generic
E por ai vai, entendeu?

Então, para alterar o sistema padrão a iniciar, altere o valor da linha default para o valor que equivale o sistema que deseja, no seu caso, o windows, ou recorte e cole o boot do xp nafrente do ubuntu, deixando o grub assim:

## ## End Default Options ##

title      Microsoft Windows XP Professional
root      (hd0,0)
savedefault
makeactive
chainloader   +1

# title      Microsoft Windows XP Professional
# root      (hd1,0)
# savedefault
# makeactive
# map      (hd0) (hd1)
# map      (hd1) (hd0)
# chainloader   +1


title      Ubuntu 8.04.2, kernel 2.6.24-23-generic
root      (hd0,4)
kernel      /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
initrd      /boot/initrd.img-2.6.24-23-generic
quiet


title      Ubuntu 8.04.2, kernel 2.6.24-23-generic (recovery mode)
root      (hd0,4)
kernel      /boot/vmlinuz-2.6.24-23-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
initrd      /boot/initrd.img-2.6.24-23-generic


# title      Ubuntu 8.04.2, kernel 2.6.24-19-generic
# root      (hd0,4)
# kernel      /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro quiet splash locale=pt_BR
# initrd      /boot/initrd.img-2.6.24-19-generic
# quiet

# title      Ubuntu 8.04.2, kernel 2.6.24-19-generic (recovery mode)
# root      (hd0,4)
# kernel      /boot/vmlinuz-2.6.24-19-generic root=UUID=4b914552-4885-4027-9676-4444d47182a2 ro single
# initrd      /boot/initrd.img-2.6.24-19-generic

title      Ubuntu 8.04.2, memtest86+
root      (hd0,4)
kernel      /boot/memtest86+.bin
quiet


### END DEBIAN AUTOMAGIC KERNELS LIST

# This is a divider, added to separate the menu items below from the Debian
# ones.
# title      Other operating systems:
# root

Agora, o valor 0 de default equivale ao windows XP que é o primeiro da lista e somente quatro opções aparecerá, pois marquei com o # algumas delas, As opções que vão aparecer são A mais atual do linux, o modo de segurança da versão mais atual, windows XP e mentest, pode retirar o mentest se quiser também.

CUIDADO AO MEXER NESSE ARQUIVO, SEMPRE FAÇA BACKUP DO MESMO ANTES DE FAZER QUALQUER ALTERAÇÃO.
Quem ama extremamente, deixa de viver em si e vive no que ama. Na vida três coisas são certas, o amor, a morte e o Linux !
Se Platão disse, então realmente sofremos de uma perigosa doença mental.

Aphexleo

Feito e resolvido!

Obg.