On 10/28/2012 06:53 PM, Alan Feuerbacher wrote: > On 10/28/2012 1:14 PM, Armin K. wrote: > >> Forgive me if I missed something, I just did a quick read. >> >> You cannot use /boot device node as root parameter. You need to use the >> correct partition that / is on and I don't see that one in mount output. > > Here is /etc/fstab: > > # Begin /etc/fstab > > # file system mount-point type options dump fsck > # order > > /dev/sdc1 /boot ext3 defaults,acl,user_xattr 1 1 > /dev/sdc5 swap swap pri=1 0 0 > /dev/sdc6 / ext3 defaults,acl,user_xattr 1 1 > /dev/sdc7 /usr ext3 defaults,acl,user_xattr 1 1 > /dev/sdc8 /opt ext3 defaults,acl,user_xattr 1 1 > /dev/sdc9 /usr/local ext3 defaults,acl,user_xattr 1 1 > /dev/sdc10 /usr/src ext3 defaults,acl,user_xattr 1 1 > /dev/sdc11 /var ext3 defaults,acl,user_xattr 1 1 > /dev/sdc12 /tmp ext3 defaults,acl,user_xattr 1 1 > /dev/sdc13 /home ext3 defaults,acl,user_xattr 1 1 > /dev/sr0 /dev/cdrom udf,iso9660 user,noauto 0 0 > /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0 > proc /proc proc nosuid,noexec,nodev 0 0 > sysfs /sys sysfs nosuid,noexec,nodev 0 0 > devpts /dev/pts devpts gid=5,mode=620 0 0 > tmpfs /run tmpfs defaults 0 0 > devtmpfs /dev devtmpfs mode=0755,nosuid 0 0 > > # End /etc/fstab >
I am not sure why you did select such partitioning scheme, but well ... Today most common desktop setups have split / and /home - nothing else Your "set root" should be (hd2,1) linux line should contain /vmlinuz-rightversion root=/dev/sdc6 remember, no /boot is needed on vmlinuz line if /boot is on seperate partition but "set root" should point to the /boot partition itself. -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
