From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Qaqsz-0001ka-2S for garchives@archives.gentoo.org; Sun, 26 Jun 2011 15:04:33 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E826F1C204; Sun, 26 Jun 2011 15:02:38 +0000 (UTC) Received: from mail-qy0-f181.google.com (mail-qy0-f181.google.com [209.85.216.181]) by pigeon.gentoo.org (Postfix) with ESMTP id B97CC1C204 for ; Sun, 26 Jun 2011 15:02:38 +0000 (UTC) Received: by qyk9 with SMTP id 9so2301026qyk.19 for ; Sun, 26 Jun 2011 08:02:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:date :message-id:subject:from:to:content-type:content-transfer-encoding; bh=ZN31E5R4dFYYRwo2g1o4CqXj3rqDfVTg25HDakfaJEE=; b=I/bVnG52n7624OqISVk3IFwQj4tr5AYOEPri0cKxmy6feuKAHf6/F6wxnD94DM6wG6 7+tOehaTYTbjD9R0Rron26RdEq6GXwaJqLLcFrlXZ6ZFwHHr10qNFQMacpO65as3973P IotMY3uHlFfG3533ZSGrIKo3OVcyHwKrjAL8A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=ic4dpUAuGCr5GFlH1LfehZBZS7/rz2Pmzo3gPgwBTe6GYSspjD3JLvlyQCOgmlCEsF D4ac4lfExZzWxkexkbgZHnUMZ5AgDRc5SJMU8c3wm84UcWEqL61THllEyxLkPPA/z3Pw uN9nGDO3/rxXB9+aHWMskd7IzsP4lG7Aa5g3U= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@lists.gentoo.org Reply-to: gentoo-user@lists.gentoo.org MIME-Version: 1.0 Received: by 10.224.104.141 with SMTP id p13mr4070798qao.128.1309100558222; Sun, 26 Jun 2011 08:02:38 -0700 (PDT) Received: by 10.224.61.14 with HTTP; Sun, 26 Jun 2011 08:02:38 -0700 (PDT) In-Reply-To: <87pqm08yln.fsf@newsguy.com> References: <87aad8avnj.fsf@newsguy.com> <871uyjb6xy.fsf@newsguy.com> <87wrgaakv8.fsf@newsguy.com> <87sjqyaeta.fsf_-_@newsguy.com> <87oc1mach1.fsf@newsguy.com> <87fwmxa9dy.fsf@newsguy.com> <877h89a1kv.fsf@newsguy.com> <8739ix9zyz.fsf@newsguy.com> <87pqm08yln.fsf@newsguy.com> Date: Sun, 26 Jun 2011 08:02:38 -0700 Message-ID: Subject: Re: [gentoo-user] Re: WAS [.. min install isos] gentoo vm guest not booting From: Mark Knecht To: gentoo-user@lists.gentoo.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: ef2f693ef43f1c743d31dd44fa6e2505 On Sun, Jun 26, 2011 at 7:19 AM, Harry Putnam wrote: > > The boot process does get a little farther but comes to a halt at > > =C2=A0Switching to clock source tsc > > And there it has sat for some time now. =C2=A0Apparently is not going to = continue. That EXACT symptom was EXACTLY what we saw on new hardware when we didn't have the /dev/null, /dev/console issue because they were missing from the recent tarballs. I actually had some photos that showed it but cannot find them. Probably deleted at this point. Here's a;link to the LKML thread and eventually Paul Hartman's pointer to what fixed it: https://lkml.org/lkml/2011/6/16/918 Please consider reviewing the links I sent earlier about the 10 or so steps required to get them into the VM correctly. To verify, boot the VM with the install CD, mount the partitions and just look at /dev. Is everything REALLY there? If /dev/null and /dev/console are there, and are special dev files and not just regular files, then make sure you are starting udev explicitly in rc-update. I am copying the post so you can go through them without worrying that you didn't find the post I'm talking about. HTH, Mark [QUOTE] I have the exact same problem as described in post #3. As this is not my first gentoo install, I also noticed that the English manual does not yet reflect the baselayout2/OpenRC changes. /dev isn't populated so booting with grub "init=3D/sbin/init 3" doesn't do anything. Well, except for printing out the following. Code: /dev/initctl: No such file or directory Here is how to fix the problem described in post #3: (The problem being missing device nodes in /dev before /dev is mounted) Boot from a LiveCD and chroot into your system. Create the needed device nodes with the following commands. Code: cd ~ mkdir test mount --bind / test cd test/dev mknod -m 660 console c 5 1 mknod -m 660 null c 1 3 cd ../.. umount test rmdir test (taken from http://www.gentoo.org/doc/en/udev-guide.xml) OpenRC does not start udev by default at system startup. Make sure it is started at boot: Code: rc-update add udev sysinit [/QUOTE]