Hi all
I need to change the root password, is that password encrypted/encoded or just plain text in the /etc/shadow file?
The reason I ask is that mine is a long string of alphanumeric characters which include things like $ and /
Is this because the wizard generated a random password but it's still plain text?
Thanks in advance.
Dave.
root password in shadow file [SOLVED}
Forum rules
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
Porteus Kiosk section of the forum is unmaintained now. Its kept in a 'read only' mode for archival purposes.
Please use the kiosk contact page for directing your queries: https://porteus-kiosk.org/contact.html
root password in shadow file [SOLVED}
Last edited by Dave99 on 04 Jan 2015, 12:38, edited 1 time in total.
- fanthom
- Moderator Team
- Posts: 5667
- Joined: 28 Dec 2010, 02:42
- Distribution: Porteus Kiosk
- Location: Poland
- Contact:
Re: root password in shadow file
its encrypted. if you want to generate your own password then please run this command in terminal:
Code: Select all
echo YOUR_PASSWORD | openssl passwd -1 -salt `echo $(($RANDOM*12345678)) | cut -c 1-8` -stdin
Please add [Solved] to your thread title if the solution was found.
Re: root password in shadow file
Thank you fanthom.