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: Tue, 30 Jul 2019 22:53:45 +0000 Message-ID: References: , <87a7cv1kyk.fsf@ponder> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:58228) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hsb0B-0006gX-TW for help-guix@gnu.org; Tue, 30 Jul 2019 18:53:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hsb09-000063-D2 for help-guix@gnu.org; Tue, 30 Jul 2019 18:53:51 -0400 Received: from mail-eopbgr770123.outbound.protection.outlook.com ([40.107.77.123]:14822 helo=NAM02-SN1-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 1hsb07-0008Tz-Jo for help-guix@gnu.org; Tue, 30 Jul 2019 18:53:49 -0400 In-Reply-To: <87a7cv1kyk.fsf@ponder> 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: Vagrant Cascadian Cc: "help-guix@gnu.org" Hi Vagrant! That seems logical, but I'm really sure I typed the correct passphrase and = yes, it only asked me those 2 times, I admit, I typed it incorrectly a coup= le times, but when I did it told me it was incorrect, and asked me the same= passphrase again. 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: Vagrant Cascadian Enviado: martes, 30 de julio de 2019 13:38:43 Para: BYRON ELIAS MOLINA HERMOSILLA Cc: help-guix@gnu.org Asunto: Re: Help Installing GuixSD on ThinkPad X60 tablet On 2019-07-30, BYRON ELIAS MOLINA HERMOSILLA wrote: > I downloaded the i686 iso and flashed it to a 3.0 USB Kingston > DataTraveler with Balena Etcher, it worked fine, it booted, I followed > the graphical install, set the language and keymap, location, and > chose to use full disk with separate home partition and full > encryption, I also selected i3 and openbox as desktops and lastly > mozilla https and tor network. > 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! And by > typing ",help guix" it only showed me the option to switch to bournish > language! I read every single command that ",help all" showed me but > none helped, I saw also something about "repl" in the welcome message > but tried it and the command didn't work either. Typically, you need to type in the same passhrase twice for "/", once for grub and once from the initramfs to mount "/" ... are you sure you typed the right passphrases in at the right times? If you were only asked for two passphrases and got a guile prompt after the second passphrase, this would be my *guess* what happened. live well, vagrant