দেখে মনে হচ্ছে, একটি খালি পাসওয়ার্ড পাসওয়ার্ড জটিলতার প্রয়োজনীয়তার সাথে মেলে না।
এটাই আমি খুঁজে পেয়েছি man passwd
As a general guideline, passwords should consist of 6 to 8 characters including one or
more characters from each of the following sets:
· lower case alphabetics
· digits 0 thru 9
· punctuation marks
Care must be taken not to include the system default erase or kill characters. passwd will reject any password which is not
suitably complex.
সম্পাদনা: দুর্ভাগ্যক্রমে, আপনি যে ইউআইয়ের মাধ্যমে পাসওয়ার্ডটি খালি রাখতে পারবেন না।
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/quantal/gnome-control-center/quantal-proposed/view/head:/panels/user-accounts/um-password-dialog.c#L358
"ফাংশন" যা "পরিবর্তন" বোতামটি সক্ষম করে কিনা তা স্থির করে।
if (strlen (password) < MIN_PASSWORD_LEN) {
can_change = FALSE;
if (password[0] == '\0') {
tooltip = _("You need to enter a new password");
}
else {
tooltip = _("The new password is too short");
}
}
else if (strcmp (password, verify) != 0) {
can_change = FALSE;
if (verify[0] == '\0') {
tooltip = _("You need to confirm the password");
}
else {
tooltip = _("The passwords do not match");
}
}
else if (!um->old_password_ok) {
can_change = FALSE;
if (old_password[0] == '\0') {
tooltip = _("You need to enter your current password");
}
else {
tooltip = _("The current password is not correct");
}
}
else {
can_change = TRUE;
tooltip = NULL;
}
gtk_widget_set_sensitive (um->ok_button, can_change);
সর্বনিম্ন পাসওয়ার্ড লেন 6 হার্ডকডযুক্ত :(
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/quantal/gnome-control-center/quantal-proposed/view/head:/panels/user-accounts/um-password-dialog.c#L39
#define MIN_PASSWORD_LEN 6
pkexec
দেখুন askubuntu.com/a/614537/158442