
Code: Select all
/dev/hde3 on / type reiserfs (rw,noatime,notail)
/dev/hde1 on /boot type ext2 (rw,noatime)Actually wat u said might be wrong i am using a reiserfs for my /boot with no problems.spindle wrote:I'm pretty sure that for the boot partition you should use a "true" Linux filesystem like ext2 and not reiserfs.

Code: Select all
cat: /proc/mounts: No such file or directory

It all depends on what disk you want to boot from and whether you want to use GRUB as your main boot loader. If you want to boot from the windows disk, then you should install GRUB into hd0. If you want to boot from the linux disk, install it into hd1. By the way, if you boot from the linux disk, be warned that grub will see it as hd0 and not as hd1. So you'll have to adapt the entries in your grub.conf file for that.Omega21 wrote:Hi there,
I have a strange partition layout:
Windows- hda1
Linux- Boot hdc1 // Root hdc2
When I install GRUB, I need to put it on the MBR, so I can type:
grub> setup (hdx)
My question is which hard drive do I put for the setup line, the windows or linux one? Thanks!
~Ian

Code: Select all
* Linking from new grub.conf name to menu.lst
* Copying files from /lib/grub and /usr/lib/grub to /boot
* To install grub files to another device (like a usb stick), just run:
* emerge --config =grub-0.97-r3
>>> Regenerating /etc/ld.so.cache...
>>> sys-boot/grub-0.97-r3 merged.
>>> No packages selected for removal by clean
>>> Auto-cleaning packages...
>>> No outdated packages were found on your system.
* Regenerating GNU info directory index...
* Processed 107 info files.
Probing devices to guess BIOS drives. This may take a long time.
GNU GRUB version 0.97 (640K lower / 3072K upper memory)
[ Minimal BASH-like line editing is supported. For the first word, TAB
lists possible command completions. Anywhere else TAB lists the possible
completions of a device/filename. ]
grub> quit
Code: Select all
GRUB loading, please wait...
Error 5

This is not a grub error. This means you forgot to include the support for the cpqarray driver in the kernel <*> and not as a module <M>. Activate the support under Device Drivers ---> Block devices ---> Compaq SMART2 support.Matthijs70 wrote:I try to install grub on a Compaq ML370R01 with Gentoo 2007.0 but if fails.
!!! Block device /dev/ida/c0d0p3 is not a valid root device...
!!! The root block device is unspecified or not detected


Code: Select all
nano -w /boot/grub/grub.confCode: Select all
rootnoverfity (hd0,0)
Code: Select all
grub --no-floppy
root (hdx,x)
setup (hdx)
I assume this is all happening because you didn't copy the contents of the /boot dir and didn't emerge grub again. Thus, you don't have the boot symlink nor the splashimage file - which caused the unreadable screen.vitoriung wrote:I accidentaly deleted boot partition, than recreated, reinstaled grub, copied bzImage to /boot, but I dont get a splashscreen - only menu very poor readable, after comment in grub.conf I have clean menu (BW), but with error 15: file not found

Code: Select all
default 0
timeout 30
splashimage=(hd0,0)/boot/grub/splash.xpm.gz
title=Gentoo Linux 2.6.20-r8
root (hd0,0)
kernel /boot/initramfs-genkernel-x86-2.6.20-gentoo-r8 root=/dev/ram0 init=/linuxrc r$
initrd /boot/kernel-genkernel-x86-2.6.20-gentoo-r8Code: Select all
/dev/sda1 /boot reiserfs noatime,notail $
/dev/sda3 / reiserfs noatime,notail $
/dev/sda2 none swap sw 0 0
/dev/cdrom /mnt/cdrom audo noauto,ro 0 0
#/dev/fd0 /mnt/floppy auto noauto 0 0

i get the error 13 as mentioned above but here is the full error:NeddySeagoon wrote:gehzumteufel,
Welcome to gentoo.
Can you tell use what happens when you try to boot and what error message you get ?