From mboxrd@z Thu Jan 1 00:00:00 1970 From: BYRON ELIAS MOLINA HERMOSILLA Subject: Re: Help Installing GuixSD on ThinkPad X60 tablet Date: Wed, 31 Jul 2019 00:23:28 +0000 Message-ID: References: , <87k1bz5tsw.fsf@elephly.net>, Mime-Version: 1.0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:47989) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hscP5-00014m-JH for help-guix@gnu.org; Tue, 30 Jul 2019 20:23:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hscP0-0001u5-FM for help-guix@gnu.org; Tue, 30 Jul 2019 20:23:36 -0400 Received: from mail-eopbgr780099.outbound.protection.outlook.com ([40.107.78.99]:7840 helo=NAM03-BY2-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hscOw-0001rc-WE for help-guix@gnu.org; Tue, 30 Jul 2019 20:23:32 -0400 In-Reply-To: Content-Language: es-CL List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: Ricardo Wurmus Cc: "help-guix@gnu.org" I got it to boot! I reinstalled using the exact same configuration BUT I didn't use encrypted= LVM (it must have been the libreboot problem I said earlier, gonna try aft= er installing it), that actually made the guided partitioning define me a s= wap, something the encrypted one didn't do, why's that? And also, the wacom= integrated screen doesn't work, I installed xf86-input-wacom but on Gnome = Control Center it shows "no tablet/stylus detected". Do I have to configure= or install something more? Byron El=EDas Molina Hermosilla, Software Engineering Student, INACAP Renca, Chile. ________________________________ De: BYRON ELIAS MOLINA HERMOSILLA Enviado: martes, 30 de julio de 2019 18:49:37 Para: Ricardo Wurmus Cc: help-guix@gnu.org Asunto: Re: Help Installing GuixSD on ThinkPad X60 tablet Hi Ricardo! I used the guix-system-install-1.0.1.i686-linux iso, verified the authentic= ity of the image and got: gpg: assuming signed data in 'guix-system-install-1.0.1.i686-linux.iso.xz' gpg: Signature made Sun 19 May 2019 04:47:37 PM EDT gpg: using RSA key 3CE464558A84FDC69DB40CFB090B11993D9AEBB5 gpg: Good signature from "Ludovic Court=E8s " [unknown] gpg: aka "Ludovic Court=E8s " [unknown] gpg: aka "Ludovic Court=E8s (Inria) " [unknown] gpg: WARNING: This key is not certified with a trusted signature! gpg: There is no indication that the signature belongs to the owne= r. Primary key fingerprint: 3CE4 6455 8A84 FDC6 9DB4 0CFB 090B 1199 3D9A EBB5 And the system configuration (which I had to write down on hand so beware i= f you find any syntactic or semantic errors, I reviewed several times but, = in case): (use-modules (gnu)) (use-service-modules desktop networking ssh xorg) (operating-system (locale "en_US.utf8") (timezone "America/Santiago") (keyboard-layout (keyboard-layout "us" "alt-intl")) (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda") (keyboard-layout keyboard-layout))) (mapped-devices (list (mapped-device (source (uuid "xxxx")) (target "cryptroot") (type luks-device-mapping)) (mapped-device (source (uuid "yyyy")) (target "crypthome") (type luks-device-mapping)))) (file-systems (cons* (file-system (mount-point "/") (device "/dev/mapper/cryptroot") (type "ext4") (dependencies mapped-devices)) (file-system (mount-point "/home") (device "/dev/mapper/crypthome") (type "ext4") (dependencies mapped-devices)) %base-file-systems)) (host-name "my-hostname") (users (cons* (user-account (name "my-user") (comment "my-full-name") (group "users") (home-directory "/home/my-user") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) (packages (append (list (specification->package "i3-wm") (specification->package "nss-certs")) %base-packages)) (services (append (list (service gnome-desktop-service-type) (service tor-service-type) (set xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) %desktop-services))) I also saw in the web that only libreboot could see an encrypted /boot, not= the case for the proprietary BIOS, is that true? Maybe that should be the = reason it sent me to a Guile REPL? Thanks for contacting me! Byron El=EDas Molina Hermosilla, Software Engineering Student, INACAP Renca, Chile. ________________________________ De: Ricardo Wurmus Enviado: martes, 30 de julio de 2019 13:14:07 Para: BYRON ELIAS MOLINA HERMOSILLA Cc: help-guix@gnu.org Asunto: Re: Help Installing GuixSD on ThinkPad X60 tablet Hi, > It installed without errors, and asked me to reboot, after that it > asked me the / encryption passphrase, got to the grub screen, then > asked me the home passphrase, aaand... it booted to Gnu Guile! This probably means that it couldn=92t unlock the disk or wasn=92t able to find the unlocked partition. It falls back to a rescue Guile REPL, which is what you=92ve been interacting with. Could you please share your operating system configuration and the version of Guix you used to install? -- Ricardo