unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#44927: Guix reboot stops with some errors
@ 2020-11-28 18:46 znavko--- via Bug reports for GNU Guix
  2020-11-28 19:05 ` znavko--- via Bug reports for GNU Guix
  0 siblings, 1 reply; 4+ messages in thread
From: znavko--- via Bug reports for GNU Guix @ 2020-11-28 18:46 UTC (permalink / raw)
  To: 44927


[-- Attachment #1.1: Type: text/plain, Size: 480 bytes --]

Hello!
I have a trouble that I cannot solve and did not have such before.
When I reboot or power off my pc the process of shutdown stops with lines of 'call trace' (in attach).
It happened today after hundreds of tries of update with network errors (from guix server as I think)
https://lists.gnu.org/archive/html/help-guix/2020-11/msg00220.html

I just added another disk to my system, it works fine.
But something happened.
Please where to dig?

Config is in attach.

[-- Attachment #1.2: Type: text/html, Size: 728 bytes --]

[-- Attachment #2: photo5336907176846930169.jpg --]
[-- Type: image/jpeg, Size: 259661 bytes --]

[-- Attachment #3: config-disks.config --]
[-- Type: application/octet-stream, Size: 3021 bytes --]

;-*- mode: Scheme; -*-
;;this is znavko's cute config
;; for lightweight xfce4 desktop
;; without networkmanager but wpa_supplicant + dhcp-client instead
;; notebok settings: disabling sleep on closing lid
;; disabling pc-speaker, lenovo wifi blocking solution
;; enabling touchpad tapping

(use-modules (gnu) (gnu system nss)
	     (gnu system locale) ;;for locale-definition
	     (gnu services desktop)
	     (srfi srfi-1)	       ;;for remove function
	     (gnu services networking) ;;for remove ntp
	     (gnu services avahi)      ;;for remove avahi
	     (gnu services xorg)
	     (gnu packages admin) ;;for wpa_supplicant
	     )

(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
		  (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi")))
		  (file-systems (cons* 
					(file-system (device "/dev/sda1") (mount-point "/boot/efi") (type "vfat"))
					(file-system (device "/dev/sda2") (mount-point "/") (type "ext4")) 
					(file-system (device "/dev/sdb1") (mount-point "/home/bob/disk1") (type "ext4"))
					(file-system (device "/dev/sdc1") (mount-point "/home/bob/disk2") (type "ext4")) 
				%base-file-systems))

		  (swap-devices '("/dev/sda3"))

		  (users (cons* (user-account (name "bob") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/bob"))
				(user-account (name "mom") (group "users")
					      (supplementary-groups '("wheel" "netdev" "audio" "video"))
					      (home-directory "/home/mom"))
				%base-user-accounts))

		  ;; This is where we specify system-wide packages.
		  (packages (cons* nss-certs ;for HTTPS access
				   gvfs	     ;for user mounts
				   wpa-supplicant
				   %base-packages))

		  (services (cons* 
			     ;; xfce4 desktop, dhcp-client, slim
			     (service xfce-desktop-service-type)
			     (service dhcp-client-service-type)
			     (service slim-service-type)

			     (modify-services      
			      ;; removing unnecessary services
			      (remove (lambda (service)
					(member (service-kind service)
						(list ntp-service-type avahi-service-type 
						      bluetooth-service network-manager-service-type
						      gdm-service-type)))
				      %desktop-services) ;end of remove lambda services

			      ;; wpa_supplicant + dhcp-client (above) instead of networkmanager
			      (wpa-supplicant-service-type config =>
							   (wpa-supplicant-configuration
							    (interface "wlp0s20f0u1")
							    (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))

			      )	;;end of modify-services
			     ))	;;end of services

		  ;; Allow resolution of '.local' host names with mDNS.
		  (name-service-switch %mdns-host-lookup-nss)

		  ;;blacklist ugly sound speaker, blacklist ideapad_laptop for prevent soft blocking wlan
		  (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp,bluetooth"))

		  ) ;;end of operating-system

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#44927: Guix reboot stops with some errors
  2020-11-28 18:46 bug#44927: Guix reboot stops with some errors znavko--- via Bug reports for GNU Guix
@ 2020-11-28 19:05 ` znavko--- via Bug reports for GNU Guix
  2020-11-28 20:31   ` Bengt Richter
  2020-12-03 16:55   ` Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: znavko--- via Bug reports for GNU Guix @ 2020-11-28 19:05 UTC (permalink / raw)
  To: 44927


[-- Attachment #1.1: Type: text/plain, Size: 970 bytes --]

I have deleted lines with disks in config and reconfigured but the error remains.

I switched to generation (system and packages by root) but an issue remains.

In Attach entire screen with trace.

What is that?
November 28, 2020 6:47 PM, "znavko--- via Bug reports for GNU Guix" <bug-guix@gnu.org (mailto:bug-guix@gnu.org?to=%22znavko---%20via%20Bug%20reports%20for%20GNU%20Guix%22%20<bug-guix@gnu.org>)> wrote:
Hello!
I have a trouble that I cannot solve and did not have such before.
When I reboot or power off my pc the process of shutdown stops with lines of 'call trace' (in attach).
It happened today after hundreds of tries of update with network errors (from guix server as I think)
https://lists.gnu.org/archive/html/help-guix/2020-11/msg00220.html (https://lists.gnu.org/archive/html/help-guix/2020-11/msg00220.html)

I just added another disk to my system, it works fine.
But something happened.
Please where to dig?

Config is in attach.

[-- Attachment #1.2: Type: text/html, Size: 1663 bytes --]

[-- Attachment #2: full.jpg --]
[-- Type: image/jpeg, Size: 506398 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#44927: Guix reboot stops with some errors
  2020-11-28 19:05 ` znavko--- via Bug reports for GNU Guix
@ 2020-11-28 20:31   ` Bengt Richter
  2020-12-03 16:55   ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Bengt Richter @ 2020-11-28 20:31 UTC (permalink / raw)
  To: znavko; +Cc: 44927

Hi znavko,

On +2020-11-28 19:05:25 +0000, znavko--- via Bug reports for GNU Guix wrote:
> I have deleted lines with disks in config and reconfigured but the error remains.
> 
> I switched to generation (system and packages by root) but an issue remains.
> 
> In Attach entire screen with trace.
> 
> What is that?
> November 28, 2020 6:47 PM, "znavko--- via Bug reports for GNU Guix" <bug-guix@gnu.org (mailto:bug-guix@gnu.org?to=%22znavko---%20via%20Bug%20reports%20for%20GNU%20Guix%22%20<bug-guix@gnu.org>)> wrote:
> Hello!
> I have a trouble that I cannot solve and did not have such before.
> When I reboot or power off my pc the process of shutdown stops with lines of 'call trace' (in attach).
> It happened today after hundreds of tries of update with network errors (from guix server as I think)
> https://lists.gnu.org/archive/html/help-guix/2020-11/msg00220.html (https://lists.gnu.org/archive/html/help-guix/2020-11/msg00220.html)
> 
> I just added another disk to my system, it works fine.
> But something happened.
> Please where to dig?
> 
> Config is in attach.

Just a guess, from my experience with device busy messages:

Is there a process which has a current working directory on the device when you shut down?

(E.g., I think it could happen if you had cd'd there to look around, and forgotten to cd back out first.
Or perhaps there is a bug doing something similar?)

HTH
-- 
Regards,
Bengt Richter




^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#44927: Guix reboot stops with some errors
  2020-11-28 19:05 ` znavko--- via Bug reports for GNU Guix
  2020-11-28 20:31   ` Bengt Richter
@ 2020-12-03 16:55   ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2020-12-03 16:55 UTC (permalink / raw)
  To: znavko; +Cc: 44927

Hi,

znavko@disroot.org skribis:

> I have deleted lines with disks in config and reconfigured but the error remains.
>
> I switched to generation (system and packages by root) but an issue remains.
>
> In Attach entire screen with trace.

Since you’re on an EFI machine, could it have to do with
<https://issues.guix.gnu.org/44956>?

If that is the case, it would seem that the solution is to pull and
reconfigure to a kernel >= 5.9.12 (the default in current ‘master’).

HTH,
Ludo’.




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-12-03 16:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-28 18:46 bug#44927: Guix reboot stops with some errors znavko--- via Bug reports for GNU Guix
2020-11-28 19:05 ` znavko--- via Bug reports for GNU Guix
2020-11-28 20:31   ` Bengt Richter
2020-12-03 16:55   ` Ludovic Courtès

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).