web-dev-qa-db-ja.com

ログインパスワードが十分ではありません

Userという形式の小文字と大文字に続けて数字を使用してログインパスワードを設定しようとしました(Userは私のユーザー名であり、パスワードは少なくとも8文字で構成されています)。また、数字でイニシャルを試しました。私は十分に得られません。ログインパスワードの決定的なルールのセットを見つけることができませんでした。誰もがログインパスワードの決定的なルールセットを教えてくれますか?

5
John Rose

セキュリティに本当に関心がない場合は、システム 自動ログイン を使用することにより、パスワードを入力する必要がなくなります。

ただし、セキュリティで保護されたパスワード(ほとんどの場合、賢明なパスワード)が必要な場合は、次のガイドラインをお勧めします。

Strong Passwords

Applications, and libraries exist for your Ubuntu system to assist in generating, or enforcing strong passwords. A strong password is defined as any password which meets the following criteria:

    At least fifteen (15) characters in length.
    Does not contain your user name, real name, organization name, family member's names or names of your pets.
    Does not contain your birth date.
    Does not contain a complete dictionary Word.
    Is significantly different from your previous password.

    Should contain three (3) of the following character types.
        Lowercase Alphabetical (a, b, c, etc.)
        Uppercase Alphabetical (A, B, C, etc.)
        Numerics (0, 1, 2, etc.)
        Special Characters (@, %, !, etc.) 

ソース: https://help.ubuntu.com/community/StrongPasswords

編集:強力なパスワードを適用したり、パスワード要件を緩和したい場合は、/etc/security/pwquality.confを編集することですべて設定可能です。 -説明。それぞれのオプションの詳細は manページ にあります。

5
Elder Geek

https://help.ubuntu.com/lts/serverguide/user-management.html から:

デフォルトでは、Ubuntuは6文字以上のパスワードの長さと基本的なエントロピーチェックを必要とします

それで問題ないはずです。 /etc/pam.d/common-passwordへのアクセス権がある場合は、Word TEMPORARYにコメントして、アカウントを適切に設定するまで使用できます。 (そうでない場合は、ライブCDをお勧めします)

2
school_guy