Pagina 1 di 2

[risolto][Boot] Avvio 10.04 riesce SOLO con mouse inserito su NB200

Inviato: sabato 1 maggio 2010, 0:58
da Q_newbie
Per quanto strano possa sembrare, riesco ad avviare lucid lynx solamente se al netbook (toshiba NB200) è collegato un mouse esterno. Ormai ho fatto prove e controprove: senza nessuna periferica usb inserita non riesce a caricare il SO e mi restituisce quest'errore

Codice: Seleziona tutto

gave up waiting for root device. Common problems:
-boot args (cat /proc/cmdline)
  - check rootdeleay= (did the system wait long enough?)
  - check root= (did the system wait for the right device?)
-missing modules (cat /proc/modules; ls /dev)
ALERT! /dev/disk/by-uuid/2ad3805e-efa0-41b3-8f35-4f1eb0bc17e0 does not exist. Dropping to a shell!

BusyBox v. 1.13.3. (Ubuntu 1:1.13.3-1ubuntu9) built-in shell (ash)
Enter 'help' for a list of built-in commands.
Se invece lo faccio partire col mouse inserito, ci mette molto a caricare (3-4 minuti) ma alla fine ci riesce (anche se non vedo la schermata di caricamento ma solo lo schermo nero).
Considerato che:
- il problema mi si presenta da quando ho iniziato a provare lucid, in beta 2
- la 9.10 non mi ha dato nessun problema
- una volta caricato, lucid va più che bene
- ho provato a installare lucid sia col mouse inserito che senza, i risultati non cambiano

..da cosa può dipendere e cosa posso fare?
grazie!

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: sabato 1 maggio 2010, 8:34
da Pingue_pinguino
Ciao

forse il problema sta qua:
ALERT! /dev/disk/by-uuid/2ad3805e-efa0-41b3-8f35-4f1eb0bc17e0 does not exist. Dropping to a shell!
Non trova la partizione contrassegnata con quel uuid.

Controlla che in /etc/fstab e in /boot/grub/grub.cfg che gli uuid indicati corrispondano all'uuid della partizione dove si trova la directory di /boot.

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: sabato 1 maggio 2010, 11:33
da Q_newbie
a me che gli uuid corrispondano (74ff4350-b54f-48f3-94e7-571f36f88fcc)
questo è il file fstab:

Codice: Seleziona tutto

# /etc/fstab: static file system information.
#
# Use 'blkid -o value -s UUID' to print the universally unique identifier
# for a device; this may be used with UUID= as a more robust way to name
# devices that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point>   <type>  <options>       <dump>  <pass>
proc            /proc           proc    nodev,noexec,nosuid 0       0
# / was on /dev/sda5 during installation
UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc /               ext3    errors=remount-ro 0       1
# /home was on /dev/sda7 during installation
UUID=93bd331c-615d-49c8-ac37-c118183400d8 /home           ext3    defaults        0       2
# swap was on /dev/sda6 during installation
UUID=a4459efb-fc40-4b60-94c2-84679b6e1924 none            swap    sw              0       0]
questo invece grub.cfg:

Codice: Seleziona tutto

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
  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
}
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
set locale_dir=($root)/boot/grub/locale
set lang=it
insmod gettext
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 ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, con Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux	/boot/vmlinuz-2.6.32-21-generic root=UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc ro   quiet splash
	initrd	/boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, con Linux 2.6.32-21-generic (modalità ripristino)' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	echo	'Caricamento Linux 2.6.32-21-generic...'
	linux	/boot/vmlinuz-2.6.32-21-generic root=UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc ro single 
	echo	'Caricamento ramdisk iniziale...'
	initrd	/boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Home Edition (on /dev/sda1)" {
	insmod ntfs
	set root='(hd0,1)'
	search --no-floppy --fs-uuid --set e69ac3809ac34bad
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry "Windows Vista (loader) (on /dev/sda3)" {
	insmod ntfs
	set root='(hd0,3)'
	search --no-floppy --fs-uuid --set cc64c77564c760b6
	chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### 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 ###

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 8:01
da Pingue_pinguino
Francamente non so dove sbattere la testa.

Hai provato a dare un

Codice: Seleziona tutto

sudo update-grub
magari l'errore si sistema da solo

Edit: hai una parentesi quadra che non deve esserci al termine di questa riga
UUID=a4459efb-fc40-4b60-94c2-84679b6e1924 none            swap    sw              0      0]
Sicuramente non c'entra nulla ma tu toglila ugualmente

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 18:03
da Q_newbie
Niente, anche con sudo update-grub la situazione non cambia.
grazie mille cmq per i consigli... a questo punto non mi rimane che sperare in un provvidenziale aggiornamento anche se, per quanto ho visto, mi sembra un problema che nessun altro ha incontrato e quindi forse dipende dalla mia specifica configurazione hw.

ciao e grazie ancora.

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 18:12
da il_muflone
puoi postare sudo fdisk -l
?

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 18:48
da Q_newbie
certo,ecco qui:

Codice: Seleziona tutto

Disco /dev/sda: 160.0 GB, 160041885696 byte
255 testine, 63 settori/tracce, 19457 cilindri
Unità = cilindri di 16065 * 512 = 8225280 byte
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Identificativo disco: 0x0ec34726

Dispositivo Boot      Start         End      Blocks   Id  System
/dev/sda1               2        3385    27181980    7  HPFS/NTFS
/dev/sda2            3386       11635    66268125    7  HPFS/NTFS
/dev/sda3           19252       19457     1654695   17  HPFS/NTFS nascosto
/dev/sda4           11636       19251    61175489+   5  Esteso
/dev/sda5   *       11636       13600    15783831   83  Linux
/dev/sda6           13601       13792     1542208+  82  Linux swap / Solaris
/dev/sda7           13793       19251    43849386   83  Linux

Le voci nella tabella delle partizioni non sono nello stesso ordine del disco

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 18:50
da il_muflone
posta pure
cat /etc/default/grub
cat /boot/grub/grub.cfg
sudo blkid

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 19:01
da Q_newbie
etc/default/grub:

Codice: Seleziona tutto

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.

GRUB_DEFAULT=0
#GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# Uncomment to disable graphical terminal (grub-pc only)
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_LINUX_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
boot/grub/grub.cfg

Codice: Seleziona tutto

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
  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
}
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
set locale_dir=($root)/boot/grub/locale
set lang=it
insmod gettext
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 ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, con Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux	/boot/vmlinuz-2.6.32-21-generic root=UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc ro   quiet splash
	initrd	/boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, con Linux 2.6.32-21-generic (modalità ripristino)' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	echo	'Caricamento Linux 2.6.32-21-generic...'
	linux	/boot/vmlinuz-2.6.32-21-generic root=UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc ro single 
	echo	'Caricamento ramdisk iniziale...'
	initrd	/boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Home Edition (on /dev/sda1)" {
	insmod ntfs
	set root='(hd0,1)'
	search --no-floppy --fs-uuid --set e69ac3809ac34bad
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry "Windows Vista (loader) (on /dev/sda3)" {
	insmod ntfs
	set root='(hd0,3)'
	search --no-floppy --fs-uuid --set cc64c77564c760b6
	chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### 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 ###
sudo blkid:

Codice: Seleziona tutto

/dev/sda1: LABEL="XP" UUID="E69AC3809AC34BAD" TYPE="ntfs" 
/dev/sda2: LABEL="Data" UUID="94F6C5D4F6C5B6B0" TYPE="ntfs" 
/dev/sda3: LABEL="HDDRecovery" UUID="CC64C77564C760B6" TYPE="ntfs" 
/dev/sda5: UUID="74ff4350-b54f-48f3-94e7-571f36f88fcc" TYPE="ext3" 
/dev/sda6: UUID="a4459efb-fc40-4b60-94c2-84679b6e1924" TYPE="swap" 
/dev/sda7: UUID="93bd331c-615d-49c8-ac37-c118183400d8" TYPE="ext3" 

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 19:04
da il_muflone
da dove spunta quel 2ad3805e-efa0-41b3-8f35-4f1eb0bc17e0 ?
non c'e` nessuna partizione con quell'uuid

aggiorna il ramdisk iniziale con
sudo update-initramfs -u
e reinstalla grub con
sudo grub-install /dev/sda

e incolla le relative risposte.

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 19:23
da Q_newbie
scusami, errore mio.
il messaggio di errore che ho postato all'inizio lo dava quando ho installato la beta2.
dopo ho reinstallato la definitiva (ma con la home separata) quindi ora il messaggio di errore quando accendo senza mouse inserito è in tutto uguale a quello postato all'inizio, ma l'uuid è quello di sda5 (74ff4350-b54f-48f3-94e7-571f36f88fcc). Non mi ero reso conto della leggera differenza!

la procedura che mi hai indicato nell'ultimo post la faccio comunque?

non capisco perchè non riesce ad avviarsi se l'uuid è quello della partizione giusta.. e poi solamente se il mouse non è inserito..

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 19:40
da il_muflone
modifica il file di grub con
sudo nano /etc/default/grub
e cambia questa riga
#GRUB_DISABLE_LINUX_UUID=true
togliendo il # all'inizio
quindi aggiorna grub con sudo update-grub e riavvia

se anche cosi` non funziona modifica anche fstab con sudo nano /etc/fstab e sostituisci
UUID=74ff4350-b54f-48f3-94e7-571f36f88fcc in /dev/sda5

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 20:15
da Q_newbie
Dunque, ho levato il commento dalla linea del file che mi hai indicato, fatto update e riavviato.
Non mi dà più quell'errore, ma non riesce comunque a caricare il SO. Per vedere dove si impunta ho levato "quiet splash" (premendo e dalla linea di GRUB),e, dopo aver indugiato molto su 

Codice: Seleziona tutto

[     3.038210] sd 2:0:0:0: [sda] Attached SCSI disk
carica fino a

Codice: Seleziona tutto

Begin: Running /scripts/init-bottom ...
Done.

..e lì muore

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 20:16
da il_muflone
dopo 5 minuti circa in genere va in timeout.
fai la prova modificando pure fstab

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 20:36
da Q_newbie
Niente, anche modificando fstab non dà errore ma si impunta..
>:(

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 20:39
da il_muflone
dopo 5 minuti va in timeout o resta li` fermo?

posta nuovamente /boot/grub/grub.cfg

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 21:52
da Devuntu
Sto seguendo il problema anche io perchè mi ritrovo lo stesso identico problema da te citato, e anche io ho un netbook toshiba nb200.
Sto guardando un po' dappertutto in rete ma non ho trovato ancora una soluzione.
Anche da me la 9.10 andava senza alcun problema.
L'unica cosa però che ho notato è che dopo diversi tentativi sono riuscito a farlo avviare entrando nel menù di grub e premento CTRL+x.
Ho installato la lingua italiana, ho cercato e installato 2 aggiornamenti da gestore aggiornamenti, riavvio poi... punto di partenza.

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 23:30
da Flute
Problema simile sempre con Toshiba NB200.
Con Ubuntu 9.10 ci metteva una vita a caricare l' OS, ora con Ubuntu 10.04 "due vite" (circa 4-5 minuti !)
Poi funziona, ma 5 minuti per il boot è improponibile, cerco soluzioni.

Bye. ???

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 23:35
da il_muflone
visto che avete tutti e 3 lo stesso computer dovreste aprire un bug ufficiale.
c'e` certamente qualcosa che non va nella rilevazione di qualcosa.

Re: [Boot] Avvio 10.04 riesce SOLO con mouse inserito

Inviato: domenica 2 maggio 2010, 23:44
da Q_newbie
Muflone innanzi tutto grazie per la pazienza e l'attenzione.
Rispondo alle tue ultime domande:
1. non va in timeout, semplicemente si pianta
2. ecco grub.cfg

Codice: Seleziona tutto

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by /usr/sbin/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
  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
}
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
if loadfont /usr/share/grub/unicode.pf2 ; then
  set gfxmode=640x480
  insmod gfxterm
  insmod vbe
  if terminal_output gfxterm ; then true ; else
    # For backward compatibility with versions of terminal.mod that don't
    # understand terminal_output
    terminal gfxterm
  fi
fi
insmod ext2
set root='(hd0,5)'
search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
set locale_dir=($root)/boot/grub/locale
set lang=it
insmod gettext
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 ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Ubuntu, con Linux 2.6.32-21-generic' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux	/boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 ro   quiet splash
	initrd	/boot/initrd.img-2.6.32-21-generic
}
menuentry 'Ubuntu, con Linux 2.6.32-21-generic (modalità ripristino)' --class ubuntu --class gnu-linux --class gnu --class os {
	recordfail
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	echo	'Caricamento Linux 2.6.32-21-generic...'
	linux	/boot/vmlinuz-2.6.32-21-generic root=/dev/sda5 ro single 
	echo	'Caricamento ramdisk iniziale...'
	initrd	/boot/initrd.img-2.6.32-21-generic
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_memtest86+ ###
menuentry "Memory test (memtest86+)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin
}
menuentry "Memory test (memtest86+, serial console 115200)" {
	insmod ext2
	set root='(hd0,5)'
	search --no-floppy --fs-uuid --set 74ff4350-b54f-48f3-94e7-571f36f88fcc
	linux16	/boot/memtest86+.bin console=ttyS0,115200n8
}
### END /etc/grub.d/20_memtest86+ ###

### BEGIN /etc/grub.d/30_os-prober ###
menuentry "Microsoft Windows XP Home Edition (on /dev/sda1)" {
	insmod ntfs
	set root='(hd0,1)'
	search --no-floppy --fs-uuid --set e69ac3809ac34bad
	drivemap -s (hd0) ${root}
	chainloader +1
}
menuentry "Windows Vista (loader) (on /dev/sda3)" {
	insmod ntfs
	set root='(hd0,3)'
	search --no-floppy --fs-uuid --set cc64c77564c760b6
	chainloader +1
}
### END /etc/grub.d/30_os-prober ###

### 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 ###
@flute e devuntu: ma anche voi avente notato che solo collegando un mouse esterno riesce a caricare?
@il_muflone: come si apre un bug ufficiale? su launchpad o c'è anche un corrispondente in italiano?