unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: Christopher Howard <christopher@librehacker.com>
To: 59748@debbugs.gnu.org
Subject: bug#59748: task init:1 blocked
Date: Thu, 1 Dec 2022 11:42:29 -0900	[thread overview]
Message-ID: <Y4kRtc8Eh8ChScP4@theoden> (raw)

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

I did a system reconfigure today, and I have a boot failure when I use the new system profile. More specifically, after I load the kernel (6.0.10) then I get to a boot message that the kernel modules are loading. If I wait long enough, eventually I get a message "task init:1 blocked for more than 120 seconds", which repeats every two minutes or so. The keyboard still works (I can enter a newline and watch the cursor move) but I cannot enter commands. I am using a LUKS encrypted system, and the hangup occurs in between the point were the (initially decrypted) kernel loads and the time when I would enter the password to unlock the main filesystem.

My last system upgrade was on October 31. That profile still works.

I will attach my system manifest file.

Here is my system information (running under the old profile):

```
christopher@theoden ~$ neofetch --stdout
christopher@theoden 
------------------- 
OS: Guix System x86_64 
Host: OptiPlex 9020 00 
Kernel: 5.19.17-gnu 
Uptime: 19 mins 
Packages: 93 (guix-system), 182 (guix-user) 
Shell: bash 5.1.8 
Resolution: 1920x1080 
DE: GNOME 
Theme: Adwaita [GTK2/3] 
Icons: Adwaita [GTK2/3] 
Terminal: .gnome-terminal 
CPU: Intel i5-4570 (4) @ 3.600GHz 
GPU: Intel HD Graphics 
GPU: AMD ATI Radeon HD 8490 / R5 235X OEM 
Memory: 1425MiB / 7867MiB 
```

Here is the guix commit I pulled:

```
christopher@theoden ~$ guix describe
Generation 42	Dec 01 2022 08:57:30	(current)
  guix df25165
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: df25165530352161d6110466b2c9dbae7dc7e282
```

-- 
📛 Christopher Howard
🚀 gemini://gem.librehacker.com
🌐 http://gem.librehacker.com

בראשית ברא אלהים את השמים ואת הארץ

[-- Attachment #2: theoden-system.scm --]
[-- Type: text/plain, Size: 3225 bytes --]

;; -*- geiser-scheme-implementation: guile -*-

(use-modules (gnu)
	     (gnu packages cups)
	     (gnu packages gnome)
	     (gnu packages scanner))

(use-service-modules desktop networking ssh xorg cups)

(operating-system
 (locale "en_US.utf8")
 (timezone "America/Anchorage")
 (keyboard-layout
  (keyboard-layout "us" "altgr-intl" #:options '("ctrl:swapcaps")))
 (bootloader
  (bootloader-configuration
   (bootloader grub-bootloader)
   (targets (list "/dev/sda"))
   (keyboard-layout keyboard-layout)))
 (kernel-arguments (cons "cpufreq.default_governor=conservative"
			 %default-kernel-arguments))
 (mapped-devices
    (list (mapped-device
            (source
              (uuid "32325179-3734-4223-9d4a-fe15aeca876a"))
            (target "cryptroot")
            (type luks-device-mapping))))
  (file-systems
    (cons* (file-system
             (mount-point "/")
             (device "/dev/mapper/cryptroot")
             (type "ext4")
             (dependencies mapped-devices))
;	   %fuse-control-file-system
           %base-file-systems))
  (host-name "theoden")
  (users (cons* (user-account
		 (name "christopher")
		 (comment "Christopher Howard")
		 (group "users")
		 (home-directory "/home/christopher")
		 (supplementary-groups
		  '("wheel" "netdev" "audio" "video"
		    "dialout" "lp" "disk" "floppy"
		    "cdrom" "lpadmin" "kvm")))
		%base-user-accounts))
  (packages
   (append
    (list
     (list (specification->package "bind") "utils"))
   (append
    (map specification->package
	 '("cups"
	   "dosfstools"
	   "ed"
	   "evolution"
	   "evolution-data-server"
	   "file"
	   "font-adobe-source-code-pro"
	   "font-dejavu"
	   "font-fantasque-sans"
	   "font-fira-mono"
           "font-ghostscript"
	   "font-gnu-freefont"
	   "font-google-noto"
	   "font-hermit"
	   "font-inconsolata"
	   "font-mononoki"
	   "font-tamzen"
           "gnome-dictionary"
	   "gnome-maps"
	   "gnome-tweaks"
	   "gsettings-desktop-schemas"
	   "mg"
	   "neofetch"
	   "nss-certs"
	   "procenv"
	   "recutils"
	   "sane-backends"
	   "screen"
	   "seahorse"
	   "s-tui"
	   "simple-scan"
	   "torsocks"
	   "tmon"
	   "tree"
	   "turbostat"
	   "wget"))
   %base-packages)))

 (services
  (modify-services
   (cons*
    (service gnome-desktop-service-type)
    (service tor-service-type)
    (rngd-service)
    (service openssh-service-type)
    (set-xorg-configuration
     (xorg-configuration
      (keyboard-layout keyboard-layout)))
    (service cups-service-type
	     (cups-configuration
	      (web-interface? #t)
	      (log-level 'debug)
	      (access-log-level 'all)
	      (extensions
	       (list hplip-minimal cups-filters))))
    (udev-rules-service
     'usbasp
     (udev-rule
      "99-USBasp.rules"
      (string-append
       "SUBSYSTEM==\"usb\", ENV{DEVTYPE}==\"usb_device\", "
       "ATTRS{idVendor}==\"16c0\", ATTRS{idProduct}==\"05dc\", "
       "MODE=\"0666\"")))
    %desktop-services)
   (udev-service-type
    config =>
    (udev-configuration
     (inherit config)
     (rules (cons sane-backends
		  (udev-configuration-rules config)))))
   (guix-service-type
    config =>
    (guix-configuration
     (inherit config)
     (extra-options (list "--gc-keep-outputs=yes")))))))

             reply	other threads:[~2022-12-01 20:43 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-12-01 20:42 Christopher Howard [this message]
2022-12-02 17:09 ` bug#59748: task init:1 blocked Christopher Howard

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Y4kRtc8Eh8ChScP4@theoden \
    --to=christopher@librehacker.com \
    --cc=59748@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).