Skip to content

Commit

Permalink
Merge pull request #3368 from andrum993/patch-1
Browse files Browse the repository at this point in the history
Correct password length limit
  • Loading branch information
Alasdair Allan authored Jan 15, 2024
2 parents 9d5a537 + 5b414d3 commit 749bf19
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ At the root of your SD card, create a file named `userconf.txt`.

This file should contain a single line of text, consisting of `<username>:<password>`: your desired username, followed immediately by a colon, followed immediately by an *encrypted* representation of the password you want to use.

NOTE: `<username>` must only contain lower-case letters, digits and hyphens, and must start with a letter. It must not be longer than 32 characters.
NOTE: `<username>` must only contain lower-case letters, digits and hyphens, and must start with a letter. It must not be longer than 31 characters.

To generate the encrypted password, use https://www.openssl.org[OpenSSL] on another computer. Open a terminal and enter the following:

Expand Down

0 comments on commit 749bf19

Please sign in to comment.