public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-user]  mtab vs grub-install
@ 2005-09-26 23:32 James
  2005-09-26 23:56 ` [gentoo-user] " james
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: James @ 2005-09-26 23:32 UTC (permalink / raw
  To: gentoo-user

Hello,

I have installed 6 different Gentoo systems, all stage one without 
difficulty. However, I decide to install via a stage one install
on a pentiumPro-200MHz. After a few days of compiling it works fine
except for  a boot-mounting problem. Basically, the /dev/hda1 as /boot
is not getting mounted automatically upon boot

/etc/fstab:
/dev/cdroms/cdrom0      /mnt/cdrom      iso9660         noauto,ro       0 0
/dev/fd0                /mnt/floppy     auto            noauto          0 0
proc                    /proc           proc            defaults        0 0shm 
           /dev/shm        tmpfs           nodev,nosuid,noexec     0 0
/dev/hda1               /boot           ext3         noatime,notail  1 2
/dev/hda2               none            swap            sw              0 0

cat /proc/mounts upon reboot:
cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / reiserfs rw,noatime 0 0
proc /proc proc rw,nodiratime 0 0
sysfs /sys sysfs rw 0 0
udev /dev tmpfs rw,nosuid 0 0
devpts /dev/pts devpts rw 0 0
shm /dev/shm tmpfs rw,nosuid,nodev,noexec 0 0
usbfs /proc/bus/usb usbfs rw 0 0

cat /etc/mtab:
/dev/hda3 / reiserfs rw,noatime 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
udev /dev tmpfs rw,nosuid 0 0
devpts /dev/pts devpts rw 0 0
shm /dev/shm tmpfs rw,noexec,nosuid,nodev 0 0
usbfs /proc/bus/usb usbfs rw,devmode=0664,devgid=85 0 0

So I manually mount /boot: mount /dev/hda1 /boot

and now they look fine(?)
cat /etc/mtab
/dev/hda3 / reiserfs rw,noatime 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
udev /dev tmpfs rw,nosuid 0 0
devpts /dev/pts devpts rw 0 0
shm /dev/shm tmpfs rw,noexec,nosuid,nodev 0 0
usbfs /proc/bus/usb usbfs rw,devmode=0664,devgid=85 0 0
/dev/hda1 /boot ext3 rw 0 0

 cat /proc/mounts
rootfs / rootfs rw 0 0
/dev/root / reiserfs rw,noatime 0 0
proc /proc proc rw,nodiratime 0 0
sysfs /sys sysfs rw 0 0
udev /dev tmpfs rw,nosuid 0 0
devpts /dev/pts devpts rw 0 0
shm /dev/shm tmpfs rw,nosuid,nodev,noexec 0 0
usbfs /proc/bus/usb usbfs rw 0 0
/dev/hda1 /boot ext3 rw 0 0

so I re-run 'grub-install /dev/hda'

but I get the same proble, /boot is not mounted upon reboot.

Ideas on fixing this?

James




-- 
gentoo-user@gentoo.org mailing list



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

* [gentoo-user]  Re: mtab vs grub-install
  2005-09-26 23:32 [gentoo-user] mtab vs grub-install James
@ 2005-09-26 23:56 ` james
  2005-09-26 23:59 ` [gentoo-user] " Neil Bothwick
  2005-09-27  0:08 ` [gentoo-user] Solved: " James
  2 siblings, 0 replies; 5+ messages in thread
From: james @ 2005-09-26 23:56 UTC (permalink / raw
  To: gentoo-user

James <wireless <at> tampabay.rr.com> writes:

 
> /etc/fstab:
> /dev/cdroms/cdrom0      /mnt/cdrom      iso9660         noauto,ro       0 0
> /dev/fd0                /mnt/floppy     auto            noauto          0 0
> proc                    /proc           proc            defaults        0 0shm 
>            /dev/shm        tmpfs           nodev,nosuid,noexec     0 0
> /dev/hda1               /boot           ext3         noatime,notail  1 2
> /dev/hda2               none            swap            sw              0 0
/dev/hda3               /               reiserfs        noatime         0 0


the last line of the /etc/fstab was missed, in the original post, but added here.

James

-- 
gentoo-user@gentoo.org mailing list



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

* Re: [gentoo-user]  mtab vs grub-install
  2005-09-26 23:32 [gentoo-user] mtab vs grub-install James
  2005-09-26 23:56 ` [gentoo-user] " james
@ 2005-09-26 23:59 ` Neil Bothwick
  2005-09-27  0:08 ` [gentoo-user] Solved: " James
  2 siblings, 0 replies; 5+ messages in thread
From: Neil Bothwick @ 2005-09-26 23:59 UTC (permalink / raw
  To: gentoo-user

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

On Mon, 26 Sep 2005 23:32:51 +0000 (UTC), James wrote:

> Basically, the /dev/hda1 as /boot
> is not getting mounted automatically upon boot

You don't want /boot mounted automatically.

> /etc/fstab:
/dev/hda1      /boot ext3     noatime,notail  1 2

notail is not a valid mount option for ext3 (resierfs only AFAIK), that's
why it is not mounting. Remove notail or, ideally, replace it with noauto.


-- 
Neil Bothwick

"Apple I" (c) Copyright 1767, Sir Isaac Newton.

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

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

* [gentoo-user]  Solved: mtab vs grub-install
  2005-09-26 23:32 [gentoo-user] mtab vs grub-install James
  2005-09-26 23:56 ` [gentoo-user] " james
  2005-09-26 23:59 ` [gentoo-user] " Neil Bothwick
@ 2005-09-27  0:08 ` James
  2005-09-27  0:17   ` John Jolet
  2 siblings, 1 reply; 5+ messages in thread
From: James @ 2005-09-27  0:08 UTC (permalink / raw
  To: gentoo-user

James <wireless <at> tampabay.rr.com> writes:

typo in the /etc/fstab....

-- 
gentoo-user@gentoo.org mailing list



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

* Re: [gentoo-user]  Solved: mtab vs grub-install
  2005-09-27  0:08 ` [gentoo-user] Solved: " James
@ 2005-09-27  0:17   ` John Jolet
  0 siblings, 0 replies; 5+ messages in thread
From: John Jolet @ 2005-09-27  0:17 UTC (permalink / raw
  To: gentoo-user

well, heck, doesn't "noauto" mean don't mount on boot?  That's what  
it means on my box.....
On Sep 26, 2005, at 7:08 PM, James wrote:

> James <wireless <at> tampabay.rr.com> writes:
>
> typo in the /etc/fstab....
>
> -- 
> gentoo-user@gentoo.org mailing list
>
>

-- 
gentoo-user@gentoo.org mailing list



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

end of thread, other threads:[~2005-09-27  0:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-09-26 23:32 [gentoo-user] mtab vs grub-install James
2005-09-26 23:56 ` [gentoo-user] " james
2005-09-26 23:59 ` [gentoo-user] " Neil Bothwick
2005-09-27  0:08 ` [gentoo-user] Solved: " James
2005-09-27  0:17   ` John Jolet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox