From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= Subject: bug#35806: Login passwords incorrect on some newly installed 1.0.1 systems Date: Mon, 20 May 2019 17:01:40 +0200 Message-ID: <87o93xrwyz.fsf@gnu.org> References: <20190520093855.3ldl2mjhgi3fx6qz@pelzflorian.localdomain> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([209.51.188.92]:46071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hSjnf-0000Xn-3m for bug-guix@gnu.org; Mon, 20 May 2019 11:02:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hSjne-0003x0-5W for bug-guix@gnu.org; Mon, 20 May 2019 11:02:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:52092) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hSjne-0003wv-2T for bug-guix@gnu.org; Mon, 20 May 2019 11:02:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hSjnd-0000c2-US for bug-guix@gnu.org; Mon, 20 May 2019 11:02:01 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20190520093855.3ldl2mjhgi3fx6qz@pelzflorian.localdomain> (pelzflorian@pelzflorian.de's message of "Mon, 20 May 2019 11:38:55 +0200") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: "pelzflorian (Florian Pelz)" Cc: 35806@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi! "pelzflorian (Florian Pelz)" skribis: > on a system newly installed from the 1.0.1 ISO image =E2=80=94 on only so= me > reinstalls. Maybe it was my fault, but maybe not, it is kind of > spooky. Can others reproduce? No. (I did many installs in VMs before the release=E2=80=A6 :-)) Note that you can check by doing an install in a VM using the attached script. > The content of /etc/shadow was > > root:$6$vWBy92HZjt$P.g83qzyyuZ0AebfKjsS/gZV.1SlaMkUqsmsO9cP1yXtpsCIE.9gDN= DtMVwZWa..wmvVNqjqgjg7OFhKadshF.:18036:::::: So a password was set, as expected. Maybe you tried the wrong password, or with the wrong keyboard layout? Thanks, Ludo=E2=80=99. --=-=-= Content-Type: text/plain Content-Disposition: inline; filename=test-install.sh Content-Description: the script #!/bin/sh set -e set -x ISO="$(./pre-inst-env guix system disk-image --file-system-type=iso9660 gnu/system/install.scm)" qemu-img create -f qcow2 /tmp/t.img 10G #EFI_OPTS="-bios $(guix build ovmf)/share/firmware/ovmf_x64.bin" exec qemu-system-x86_64 -enable-kvm -hda /tmp/t.img -cdrom "$ISO" -m 1024 -boot d -net user -net nic,model=virtio -no-reboot $EFI_OPTS --=-=-=--