From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: core-updates call for testing Date: Sat, 25 Apr 2020 14:06:47 -0400 Message-ID: <20200425180647.GA32199@jasmine.lan> References: <87pnbxg508.fsf@devup.no> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="ikeVEW9yuYc//A+q" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58282) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSPCZ-0007uV-4y for guix-devel@gnu.org; Sat, 25 Apr 2020 14:06:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSPCY-000435-4g for guix-devel@gnu.org; Sat, 25 Apr 2020 14:06:54 -0400 Content-Disposition: inline In-Reply-To: <87pnbxg508.fsf@devup.no> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane-mx.org@gnu.org Sender: "Guix-devel" To: Marius Bakke Cc: guix-devel@gnu.org, help-guix@gnu.org --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline I reconfigured my Guix System based on core-updates, and afterwards I was unable to login, either remotely over SSH, or on the Linux console. After cutting the power to the computer and turning it back on, I was able to log in. I've attached my configuration file for your reference. --ikeVEW9yuYc//A+q Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="system.scm" ;; This is an operating system configuration template ;; for a "bare bones" setup, with no X11 display server. (use-modules (gnu)) (use-service-modules networking desktop dbus ssh sysctl) (use-package-modules admin certs curl ntp nvi ssh shells rsync tmux version-control vim) (operating-system (host-name "zamia") (timezone "America/New_York") (locale "en_US.UTF-8") (locale-libcs (list glibc-2.29 (canonical-package glibc))) (kernel-arguments '(;; Console resolution "gfxpayload=1440x900x16,1440x900" ;; console cursor. stops the blinking but the colors are bad "vt.cur.default=0x520032" "consoleblank=120" ;; ??? "quiet" ;; Disable the PC speaker "modprobe.blacklist=pcspkr,snd_pcsp")) ;; Assuming /dev/sdX is the target hard disk, and "my-root" is ;; the label of the target root file system. (bootloader (grub-configuration (target "/dev/sda") (terminal-outputs '(console)))) (file-systems (cons* (file-system (device (uuid "foo")) (mount-point "/") (type "btrfs")) (file-system (device (uuid "bar")) (mount-point "/home") (type "btrfs")) %base-file-systems)) ;; This is where user accounts are specified. The "root" ;; account is implicit, and is initially created with the ;; empty password. (users (append (list (user-account (name "leo") (group "users") (shell #~(string-append #$zsh "/bin/zsh")) ;; Adding the account to the "wheel" group ;; makes it a sudoer. Adding it to "audio" ;; and "video" allows the user to play sound ;; and access the webcam. (supplementary-groups '("wheel" "netdev" "audio")))) %base-user-accounts)) ;; Globally-installed packages. (packages (cons* curl git openssh mosh nss-certs ntp rsync tmux tree vim nvi %base-packages)) (services (cons* (dbus-service) (service gpm-service-type) (service openssh-service-type (openssh-configuration (password-authentication? #f))) (service ntp-service-type) (service dhcp-client-service-type) (service wpa-supplicant-service-type (wpa-supplicant-configuration (interface "wls1") (config-file "/etc/wpa_supplicant/wpa_supplicant.conf"))) (elogind-service) (modify-services %base-services (guix-service-type config => (guix-configuration (inherit config) (extra-options '("--max-jobs=4")) (substitute-urls '("https://private.mirror https://ci.guix.gnu.org")))))))) --ikeVEW9yuYc//A+q--