* Three question about grub2
@ 2009-08-07 8:49 J.Bakshi
2009-08-07 8:56 ` Felix Zielcke
0 siblings, 1 reply; 5+ messages in thread
From: J.Bakshi @ 2009-08-07 8:49 UTC (permalink / raw)
To: Grub-devel
Hello list,
I am collecting some toolkits in my usb-stick powered with grub2. I
installed grub2 in this stick from my debian squeeze box. During grub
configuration some question has developed in my mind and I might be
permitted to ask those in this list.
1] I am trying to boot the latest memtest86+ (v2.11) with grub2 as
`````````````````````
menuentry "memtest86+-2.11"
{
set root=(hd0,2)
linux /memtest86+-2.11.bin
}
```````````````````````````
but grub reports
````````````````````
zImage doesn't suppoert 32-bit boot (try with linux16)
```````````````````````
I did some googling with this error but haven't found any solution.
What does it mean and how can I fix it ?
2] In syslinux.cfg we use "TEXT" to display message. How to do the
same in grub2 ?
3] I have seen some distro has keyboard interactive feature in GRUB.
Like "press F2" for help etc. There should be a file with the required
messages to display. But how to bind it with F2 key within grub
configuration to make it work ?
I will be very grateful if someone kindly explain these. Also like to
know if any good doc is available.
Thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Three question about grub2
2009-08-07 8:49 Three question about grub2 J.Bakshi
@ 2009-08-07 8:56 ` Felix Zielcke
2009-08-07 9:18 ` J.Bakshi
0 siblings, 1 reply; 5+ messages in thread
From: Felix Zielcke @ 2009-08-07 8:56 UTC (permalink / raw)
To: The development of GRUB 2
Am Freitag, den 07.08.2009, 14:19 +0530 schrieb J.Bakshi:
> Hello list,
>
> I am collecting some toolkits in my usb-stick powered with grub2. I
> installed grub2 in this stick from my debian squeeze box. During grub
> configuration some question has developed in my mind and I might be
> permitted to ask those in this list.
>
> 1] I am trying to boot the latest memtest86+ (v2.11) with grub2 as
>
> `````````````````````
> menuentry "memtest86+-2.11"
> {
> set root=(hd0,2)
> linux /memtest86+-2.11.bin
> }
> ```````````````````````````
>
> but grub reports
>
> ````````````````````
> zImage doesn't suppoert 32-bit boot (try with linux16)
> ```````````````````````
>
> I did some googling with this error but haven't found any solution.
> What does it mean and how can I fix it ?
grub tells you.
Use linux16 /memtest86+-2.11.bin
> 2] In syslinux.cfg we use "TEXT" to display message. How to do the
> same in grub2 ?
echo command.
> 3] I have seen some distro has keyboard interactive feature in GRUB.
> Like "press F2" for help etc. There should be a file with the required
> messages to display. But how to bind it with F2 key within grub
> configuration to make it work ?
Official grub2 doestn't have such a feature.
I don't know if Colin Bennet implemented this with his theme support or
if the screenshots there just show how it could be displayed if there
were such a feature.
> I will be very grateful if someone kindly explain these. Also like to
> know if any good doc is available.
All avaible documentation is in the official wiki http://grub.enbug.org
--
Felix Zielcke
Proud Debian Maintainer
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Three question about grub2
2009-08-07 8:56 ` Felix Zielcke
@ 2009-08-07 9:18 ` J.Bakshi
2009-08-07 11:54 ` J.Bakshi
0 siblings, 1 reply; 5+ messages in thread
From: J.Bakshi @ 2009-08-07 9:18 UTC (permalink / raw)
To: The development of GRUB 2
On Fri, Aug 7, 2009 at 2:26 PM, Felix Zielcke<fzielcke@z-51.de> wrote:
> Am Freitag, den 07.08.2009, 14:19 +0530 schrieb J.Bakshi:
>> Hello list,
>>
>> I am collecting some toolkits in my usb-stick powered with grub2. I
>> installed grub2 in this stick from my debian squeeze box. During grub
>> configuration some question has developed in my mind and I might be
>> permitted to ask those in this list.
>>
>> 1] I am trying to boot the latest memtest86+ (v2.11) with grub2 as
>>
>> `````````````````````
>> menuentry "memtest86+-2.11"
>> {
>> set root=(hd0,2)
>> linux /memtest86+-2.11.bin
>> }
>> ```````````````````````````
>>
>> but grub reports
>>
>> ````````````````````
>> zImage doesn't suppoert 32-bit boot (try with linux16)
>> ```````````````````````
>>
>> I did some googling with this error but haven't found any solution.
>> What does it mean and how can I fix it ?
>
> grub tells you.
> Use linux16 /memtest86+-2.11.bin
>
>> 2] In syslinux.cfg we use "TEXT" to display message. How to do the
>> same in grub2 ?
>
> echo command.
>
>> 3] I have seen some distro has keyboard interactive feature in GRUB.
>> Like "press F2" for help etc. There should be a file with the required
>> messages to display. But how to bind it with F2 key within grub
>> configuration to make it work ?
>
> Official grub2 doestn't have such a feature.
> I don't know if Colin Bennet implemented this with his theme support or
> if the screenshots there just show how it could be displayed if there
> were such a feature.
>
>> I will be very grateful if someone kindly explain these. Also like to
>> know if any good doc is available.
>
> All avaible documentation is in the official wiki http://grub.enbug.org
>
Many many thanks. Now memtest86+ is booting without any problem.
Thanks for the other tips.
Wish you a nice time.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Three question about grub2
2009-08-07 9:18 ` J.Bakshi
@ 2009-08-07 11:54 ` J.Bakshi
2009-08-07 12:18 ` Marco Gerards
0 siblings, 1 reply; 5+ messages in thread
From: J.Bakshi @ 2009-08-07 11:54 UTC (permalink / raw)
To: The development of GRUB 2
On Fri, Aug 7, 2009 at 2:48 PM, J.Bakshi<bakshi12@gmail.com> wrote:
> On Fri, Aug 7, 2009 at 2:26 PM, Felix Zielcke<fzielcke@z-51.de> wrote:
>> Am Freitag, den 07.08.2009, 14:19 +0530 schrieb J.Bakshi:
>>> Hello list,
[snip......]
>>> 2] In syslinux.cfg we use "TEXT" to display message. How to do the
>>> same in grub2 ?
>>
>> echo command.
> Many many thanks. Now memtest86+ is booting without any problem.
> Thanks for the other tips.
> Wish you a nice time.
>
[snip...../]
Coming back with one more question in mind. ( already searched bot no
luck yet ). "echo" can dispaly message. Is there ( by any luck ) any
command to display message from a file ?
Thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Three question about grub2
2009-08-07 11:54 ` J.Bakshi
@ 2009-08-07 12:18 ` Marco Gerards
0 siblings, 0 replies; 5+ messages in thread
From: Marco Gerards @ 2009-08-07 12:18 UTC (permalink / raw)
To: The development of GRUB 2
"J.Bakshi" <bakshi12@gmail.com> writes:
> Coming back with one more question in mind. ( already searched bot no
> luck yet ). "echo" can dispaly message. Is there ( by any luck ) any
> command to display message from a file ?
cat
--
Marco
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-08-07 12:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-07 8:49 Three question about grub2 J.Bakshi
2009-08-07 8:56 ` Felix Zielcke
2009-08-07 9:18 ` J.Bakshi
2009-08-07 11:54 ` J.Bakshi
2009-08-07 12:18 ` Marco Gerards
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.