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
AK-47
Developer
Posts: 1284
Joined: Sun Mar 24, 2019 7:04 pm

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

#41 Post by AK-47 »

What is the output of this command?

Code: Select all

/bin/ls -1 /home
Start it from your snapshot.

User avatar
fehlix
Developer
Posts: 12885
Joined: Wed Apr 11, 2018 5:09 pm

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

#42 Post by fehlix »

SIttner76 wrote: Mon Mar 14, 2022 8:14 am This did not go well... Unfortunately the commands didn't do what you hoped for (see below). When I logged back in as "stefan" I then found myself not in my desktop but back in the original ISO installer desktop. I then started the installer, which went through without error but it did not install my snapshot but rather the original version.
Hmm.., so you removed "something" under /home, and afterwards the installer worked.
What directories do you have under home on the snapshot? Something other then the home directory of the default user?

Code: Select all

ls -al /home
... Opps ... AK-47 already asked...

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

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

#43 Post by SIttner76 »

AK-47 wrote: Mon Mar 14, 2022 10:53 am What is the output of this command?

Code: Select all

/bin/ls -1 /home
Start it from your snapshot.
OK, here it is:

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home
stefan
stefan@HP-Linux:~
$ 

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

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

#44 Post by SIttner76 »

fehlix wrote: Mon Mar 14, 2022 11:13 am
SIttner76 wrote: Mon Mar 14, 2022 8:14 am This did not go well... Unfortunately the commands didn't do what you hoped for (see below). When I logged back in as "stefan" I then found myself not in my desktop but back in the original ISO installer desktop. I then started the installer, which went through without error but it did not install my snapshot but rather the original version.
Hmm.., so you removed "something" under /home, and afterwards the installer worked.
What directories do you have under home on the snapshot? Something other then the home directory of the default user?

Code: Select all

ls -al /home
... Opps ... AK-47 already asked...

Code: Select all

stefan@HP-Linux:~
$ ls -al /home
total 0
drwxr-xr-x 1 root   root    60 Mar 10 15:07 .
drwxr-xr-x 1 root   root   160 Mar 14 16:15 ..
drwxr-xr-x 1 stefan stefan 260 Mar 14 15:16 stefan
stefan@HP-Linux:~

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

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

#45 Post by dolphin_oracle »

SIttner76 wrote: Mon Mar 14, 2022 11:19 am
AK-47 wrote: Mon Mar 14, 2022 10:53 am What is the output of this command?

Code: Select all

/bin/ls -1 /home
Start it from your snapshot.
OK, here it is:

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home
stefan
stefan@HP-Linux:~
$ 
that's running your snapshot 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

#46 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 11:25 am
SIttner76 wrote: Mon Mar 14, 2022 11:19 am
AK-47 wrote: Mon Mar 14, 2022 10:53 am What is the output of this command?

Code: Select all

/bin/ls -1 /home
Start it from your snapshot.
OK, here it is:

Code: Select all

stefan@HP-Linux:~
$ /bin/ls -1 /home
stefan
stefan@HP-Linux:~
$ 
that's running your snapshot live?
Yes, freshly booted.

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

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

#47 Post by AK-47 »

What do you get with these commands? Run the second one immediately after the first with nothing in between the two commands.

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q [a-zA-Z0-9]
echo $?
Run on the live boot.

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

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

#48 Post by SIttner76 »

AK-47 wrote: Mon Mar 14, 2022 11:49 am What do you get with these commands? Run the second one immediately after the first with nothing in between the two commands.

Code: Select all

/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q [a-zA-Z0-9]
echo $?
Run on the live boot.

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 $?
1
stefan@HP-Linux:~
$ 

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

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

#49 Post by dolphin_oracle »

ok try again, but

Code: Select all

/usr/bin/ls -1 /home | grep -Ev '(lost\\+found|demo|snapshot)' | grep -q [a-zA-Z0-9]
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

#50 Post by SIttner76 »

dolphin_oracle wrote: Mon Mar 14, 2022 12:02 pm ok try again, but

Code: Select all

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

Code: Select all

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

Last edited by SIttner76 on Mon Mar 14, 2022 12:06 pm, edited 1 time in total.

Post Reply

Return to “Installation”