9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Re: [9fans] booting options for brand new installation
@ 2011-09-14 20:23 Sasha and Tanya Kapshuk
  2011-09-14 21:57 ` Richard Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Sasha and Tanya Kapshuk @ 2011-09-14 20:23 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

howdy,

i've installed plan9 on a separate partition of my hard drive alongside
debian linux.

i'm not 100% clear on what boot option is best for a setting like this.

i want to boot plan9 using grub.

if that's not doable, can anyone please suggest an alternative way of
doing it.

sasha kapshuk.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] booting options for brand new installation
  2011-09-14 20:23 [9fans] booting options for brand new installation Sasha and Tanya Kapshuk
@ 2011-09-14 21:57 ` Richard Miller
  2011-09-15 10:53   ` Sasha and Tanya Kapshuk
  2011-09-15 19:56   ` Sasha and Tanya Kapshuk
  0 siblings, 2 replies; 5+ messages in thread
From: Richard Miller @ 2011-09-14 21:57 UTC (permalink / raw)
  To: 9fans

> i want to boot plan9 using grub.

My /boot/grub/menu.lst includes these lines:

title       Plan 9
root        (hd0,1)
chainloader +1

and the corresponding partition has /386/pbslba as a boot block --
see format(8).





^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] booting options for brand new installation
  2011-09-14 21:57 ` Richard Miller
@ 2011-09-15 10:53   ` Sasha and Tanya Kapshuk
  2011-09-15 19:56   ` Sasha and Tanya Kapshuk
  1 sibling, 0 replies; 5+ messages in thread
From: Sasha and Tanya Kapshuk @ 2011-09-15 10:53 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 382 bytes --]

thanks a lot.

i'll give that a try.


On Thu, Sep 15, 2011 at 12:57 AM, Richard Miller <9fans@hamnavoe.com> wrote:

> > i want to boot plan9 using grub.
>
> My /boot/grub/menu.lst includes these lines:
>
> title       Plan 9
> root        (hd0,1)
> chainloader +1
>
> and the corresponding partition has /386/pbslba as a boot block --
> see format(8).
>
>
>
>

[-- Attachment #2: Type: text/html, Size: 699 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] booting options for brand new installation
  2011-09-14 21:57 ` Richard Miller
  2011-09-15 10:53   ` Sasha and Tanya Kapshuk
@ 2011-09-15 19:56   ` Sasha and Tanya Kapshuk
  2011-09-15 20:36     ` [9fans] booting options for brand new installation [UPDATE] Sasha and Tanya Kapshuk
  1 sibling, 1 reply; 5+ messages in thread
From: Sasha and Tanya Kapshuk @ 2011-09-15 19:56 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 09/15/2011 12:57 AM, Richard Miller wrote:
>> i want to boot plan9 using grub.
>>
> My /boot/grub/menu.lst includes these lines:
>
> title       Plan 9
> root        (hd0,1)
> chainloader +1
>
> and the corresponding partition has /386/pbslba as a boot block --
> see format(8).
>
>
>
>
thanks for the tip, Richard, but i found that debian squeeze doesn't
have /boot/grub/menu.lst anymore.
i tried googling for instructions on how to add alternative systems to
grub2, but so far haven't found anything substantial;
the only thing i did try was i added this to /etc/grub.d/40_custom:
menuentry "Plan9 from Bell Labs" {
     insmod chain
     insmod fat16
     set root=(hd0,1)
     chainloader +1
}

then i ran update-grub as root and rebooted the system;

this time "Plan9 from Bell Labs" did appear in the grub menu; i selected
it and got an error: message: error: invalid signature

the right way of doing it isn't immediately obvious to me;

any input would be appreciated;

sasha kapshuk.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [9fans] booting options for brand new installation [UPDATE]
  2011-09-15 19:56   ` Sasha and Tanya Kapshuk
@ 2011-09-15 20:36     ` Sasha and Tanya Kapshuk
  0 siblings, 0 replies; 5+ messages in thread
From: Sasha and Tanya Kapshuk @ 2011-09-15 20:36 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

On 09/15/2011 10:56 PM, Sasha and Tanya Kapshuk wrote:
> On 09/15/2011 12:57 AM, Richard Miller wrote:
>>> i want to boot plan9 using grub.
>> My /boot/grub/menu.lst includes these lines:
>>
>> title       Plan 9
>> root        (hd0,1)
>> chainloader +1
>>
>> and the corresponding partition has /386/pbslba as a boot block --
>> see format(8).
>>
>>
>>
> thanks for the tip, Richard, but i found that debian squeeze doesn't
> have /boot/grub/menu.lst anymore.
> i tried googling for instructions on how to add alternative systems to
> grub2, but so far haven't found anything substantial;
> the only thing i did try was i added this to /etc/grub.d/40_custom:
> menuentry "Plan9 from Bell Labs" {
>     insmod chain
>     insmod fat16
>     set root=(hd0,1)
>     chainloader +1
> }
>
> then i ran update-grub as root and rebooted the system;
>
> this time "Plan9 from Bell Labs" did appear in the grub menu; i
> selected it and got an error: message: error: invalid signature
>
> the right way of doing it isn't immediately obvious to me;
>
> any input would be appreciated;
>
> sasha kapshuk.
>
i found what the problem was...
my plan9 partition is /dev/sda3, so the following entry in the
/etc/grub.d/40_custom file should read:
menuentry "Plan9 from Bell Labs" {
     insmod chain
     insmod fat16
     set root=(hd0,3) #not set root=(hd0,1)
     chainloader +1
}
it should be followed by running update-grub and rebooting the system;

the instructions above are confirmed to have worked on my system;




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-09-15 20:36 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-14 20:23 [9fans] booting options for brand new installation Sasha and Tanya Kapshuk
2011-09-14 21:57 ` Richard Miller
2011-09-15 10:53   ` Sasha and Tanya Kapshuk
2011-09-15 19:56   ` Sasha and Tanya Kapshuk
2011-09-15 20:36     ` [9fans] booting options for brand new installation [UPDATE] Sasha and Tanya Kapshuk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).