From debbugs-submit-bounces@debbugs.gnu.org Tue May 11 09:50:26 2021 Received: (at 48343) by debbugs.gnu.org; 11 May 2021 13:50:26 +0000 Received: from localhost ([127.0.0.1]:35472 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgSmH-00037G-RO for submit@debbugs.gnu.org; Tue, 11 May 2021 09:50:26 -0400 Received: from knopi.disroot.org ([178.21.23.139]:57434) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgSmF-000377-Sd for 48343@debbugs.gnu.org; Tue, 11 May 2021 09:50:24 -0400 Received: from localhost (localhost [127.0.0.1]) by disroot.org (Postfix) with ESMTP id 68F3053B1E; Tue, 11 May 2021 15:50:22 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at disroot.org Received: from knopi.disroot.org ([127.0.0.1]) by localhost (disroot.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dbIwPIpKBAbQ; Tue, 11 May 2021 15:50:21 +0200 (CEST) References: <674973b5-c35e-5a4e-0f3f-de2f3b6e782d@yandex.ru> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=disroot.org; s=mail; t=1620741019; bh=/MzE3gLWL9L6LzzWUfAs+PMXxAnDqnD00NtbWdMqDSg=; h=References:From:To:Cc:Subject:In-reply-to:Date; b=e35vFKJeJUfZtyuDm92mLAezt1OPUmx8pn+rSAejRvppT0HjMMBeS0lapGTAxPVl7 GsQrX7ZXap3AnPlO8H6t5oQfaNNGC9/SgsIYqbGVNSnBocdh/Mp4boKUA9uOew4+Ye iok06ybEC2UqkAKzBUZiCsjrDsRTan0fug5V7TdVJVoD1clygVBV61OqhsP7X8/nwP QQV/VewtLw4aRFItzQeJi9qm6poFAQ9rlsaWTK3R/vdJkfFHozzAC6ldPETfQc88LQ XUI0K8kFr+IYOtDPO/SadaOr7t7gBkk9W44/4d8kt8eJvfL3sabfbsseJTs6g3h0Qk VtrnC9I6GoxIA== From: Bone Baboon To: Sergey Petrov Subject: Re: bug#48343: Cannot boot after installation In-reply-to: <674973b5-c35e-5a4e-0f3f-de2f3b6e782d@yandex.ru> Date: Tue, 11 May 2021 09:48:40 -0400 Message-ID: <87im3pfkjr.fsf@disroot.org> Mime-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 48343 Cc: bug-guix@gnu.org, 48343@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Sergey Petrov writes: > Hi! I've installed ordinary guix system following graphical installer, > but can't boot it, here what I got after installation complete: > > GC Warning: pthread_getattr_pp or pthread_attr_getstack failed for > main thread GC Warning: > Couldn't read /proc/stat > Welcome, this is GMU's early boot Guile. > Use '--repl' for an initrd REPL. > > loading kernel modules... > /dev/nvme0n1p8: clean, > 134898/5169152 files, 1320485/20649216 blocks > loading '/gnu/store/519yr5adx95d26s3nu65mjOcc9731630-system/boot... > making '/gnu/store/519yr5adx95d26s3nu65mj0cc9731630-system' the > current system... > setting up setuid programs in '/run/setuid-programs'... > populating /etc from /gnu/store/d6k3c7p2s6ji0ix2g3lafx4iwOd43a98-etc... > error in finalization thread: Success > [ 3.049660] udevd[272]: no sender credentials received, message ignored > [ 3.098019] sp5100-tco sp5100-tco: Watchdog hardware is disabled > [ 3.104103] Error: Driver 'pcspkr' is already registered, aborting... > [ 3.180575] kvm: disabled by bios > > At this point computer hangs infinitely, and if I enable CPU > virtualization in BIOS it starts to hang at line "[ 3.104103] Error: > Driver 'pcspkr' is already registered, aborting..." I ran into a similar issue with a computer I installed Guix on. It would not complete the boot up process. I am not sure if I was experiencing the same issue you are as I did not submit it to a Guix mailing list. I got help solving it on #guix. What worked for me was to add the Linux kernel argument `nomodeset` to my system configuration. In the operating system declaration of the system configuration I added: ``` (kernel-arguments (append (list "nomodeset") %default-kernel-arguments)) ```