Installing Snapshot always fails with "failed to set user account password" error  [Solved]

When you run into problems installing MX Linux XFCE
Message
Author
User avatar
dolphin_oracle
Developer
Posts: 22792
Joined: Sun Dec 16, 2007 12:17 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#51 Post by dolphin_oracle »

ok thanks. obviously something screwy with that test then.

now

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' 
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

SIttner76
Posts: 82
Joined: Wed Mar 03, 2021 1:58 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#52 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 12:06 pm ok thanks. obviously something screwy with that test then.
now

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' 

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' 
stefan
stefan@HP-Linux:~
$ 

User avatar
dolphin_oracle
Developer
Posts: 22792
Joined: Sun Dec 16, 2007 12:17 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#53 Post by dolphin_oracle »

ok one more. and thanks!

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9]
echo $?
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

SIttner76
Posts: 82
Joined: Wed Mar 03, 2021 1:58 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#54 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 12:08 pm ok one more. and thanks!

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9]
echo $?

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -Eq [a-zA-Z0-9]
stefan@HP-Linux:~
$ echo $?
1
stefan@HP-Linux:~

User avatar
dolphin_oracle
Developer
Posts: 22792
Joined: Sun Dec 16, 2007 12:17 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#55 Post by dolphin_oracle »

is bash your shell? zsh requies some quotes around the pattern.

maybe

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q "[a-zA-Z0-9]"
echo $?
Last edited by dolphin_oracle on Mon Mar 14, 2022 12:16 pm, edited 1 time in total.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

SIttner76
Posts: 82
Joined: Wed Mar 03, 2021 1:58 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#56 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 12:13 pm is bash your shell?
I guess so. It says "~: bash - Konsole" in the window title.
I tried with quotes:

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q "[a-zA-Z0-9]"
stefan@HP-Linux:~
$ echo $?
0
stefan@HP-Linux:~

User avatar
dolphin_oracle
Developer
Posts: 22792
Joined: Sun Dec 16, 2007 12:17 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#57 Post by dolphin_oracle »

this is really weird, but its got us in the right direction!
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

User avatar
dolphin_oracle
Developer
Posts: 22792
Joined: Sun Dec 16, 2007 12:17 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#58 Post by dolphin_oracle »

we are going to adjust the installer. I imagine we will have one you can install and test. no need for a new snapshot, you can install the new installer while running live.
http://www.youtube.com/runwiththedolphin
lenovo ThinkPad X1 Extreme Gen 4 - MX-23
FYI: mx "test" repo is not the same thing as debian testing repo.
Live system help document: https://mxlinux.org/wiki/help-antix-live-usb-system/

SIttner76
Posts: 82
Joined: Wed Mar 03, 2021 1:58 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#59 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 12:21 pm we are going to adjust the installer. I imagine we will have one you can install and test. no need for a new snapshot, you can install the new installer while running live.
Great, thank you all for your help and support. I'll be happy to help testing, just let me know what to do when you are ready.

User avatar
AK-47
Developer
Posts: 1294
Joined: Sun Mar 24, 2019 7:04 pm

Re: Installing Snapshot always fails with "failed to set user account password" error

#60 Post by AK-47 »

SIttner76 wrote: Mon Mar 14, 2022 12:24 pm
dolphin_oracle wrote: Mon Mar 14, 2022 12:21 pm we are going to adjust the installer. I imagine we will have one you can install and test. no need for a new snapshot, you can install the new installer while running live.
Great, thank you all for your help and support. I'll be happy to help testing, just let me know what to do when you are ready.
You're welcome. One last thing: can we confirm that this works:

Code: Select all

/usr/bin/ls -1 /home | grep -Ev '^(lost\\+found|demo|snapshot)$' | grep -q '[a-zA-Z0-9]'
echo $?
Note single quotes instead of double quotes.

Post Reply

Return to “Installation”