authconfig: command not found ubuntu
up vote
0
down vote
favorite
I'm trying to use hashcat to validate a hashing algorithm but keeping this error when using authconfig command.
error: authconfig: command not found ubuntu
Am I missing something? I haven't installed ldap but the server is configured as LAMP.
14.04 16.04 hash
add a comment |
up vote
0
down vote
favorite
I'm trying to use hashcat to validate a hashing algorithm but keeping this error when using authconfig command.
error: authconfig: command not found ubuntu
Am I missing something? I haven't installed ldap but the server is configured as LAMP.
14.04 16.04 hash
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm trying to use hashcat to validate a hashing algorithm but keeping this error when using authconfig command.
error: authconfig: command not found ubuntu
Am I missing something? I haven't installed ldap but the server is configured as LAMP.
14.04 16.04 hash
I'm trying to use hashcat to validate a hashing algorithm but keeping this error when using authconfig command.
error: authconfig: command not found ubuntu
Am I missing something? I haven't installed ldap but the server is configured as LAMP.
14.04 16.04 hash
14.04 16.04 hash
edited Dec 1 '16 at 12:35
muru
134k19282482
134k19282482
asked Dec 1 '16 at 12:32
John Todd
111
111
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
up vote
0
down vote
You need to use authconfig command to setup SHA-256/512 hashing. This command provides a simple method of configuring /etc/sysconfig/network to handle NIS, as well as /etc/passwd and /etc/shadow, the files used for shadow password support. Basic LDAP, Kerberos 5, and SMB (authentication) client configuration is also provided.
Type the following command:
authconfig --test | grep hashingConfigure Linux Server To Use The SHA-512
To configure the Linux system to use the SHA-512 algorithm, enter:
authconfig --passalgo=sha512 --updateNote: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:
change -d 0 userName
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
add a comment |
up vote
0
down vote
authconfig is not packaged with Ubuntu 14.04. You can use SSSD (System Security Services Daemon (SSSD) instead. I found this useful.
add a comment |
up vote
0
down vote
apt install ldap-auth-config
will generate a user-interactive prompt that will ask for your LDAP server name or IP and port number as well as the CN, OU and DC information.
I can only speak to Bionic Beaver as that's what I currently work with.
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You need to use authconfig command to setup SHA-256/512 hashing. This command provides a simple method of configuring /etc/sysconfig/network to handle NIS, as well as /etc/passwd and /etc/shadow, the files used for shadow password support. Basic LDAP, Kerberos 5, and SMB (authentication) client configuration is also provided.
Type the following command:
authconfig --test | grep hashingConfigure Linux Server To Use The SHA-512
To configure the Linux system to use the SHA-512 algorithm, enter:
authconfig --passalgo=sha512 --updateNote: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:
change -d 0 userName
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
add a comment |
up vote
0
down vote
You need to use authconfig command to setup SHA-256/512 hashing. This command provides a simple method of configuring /etc/sysconfig/network to handle NIS, as well as /etc/passwd and /etc/shadow, the files used for shadow password support. Basic LDAP, Kerberos 5, and SMB (authentication) client configuration is also provided.
Type the following command:
authconfig --test | grep hashingConfigure Linux Server To Use The SHA-512
To configure the Linux system to use the SHA-512 algorithm, enter:
authconfig --passalgo=sha512 --updateNote: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:
change -d 0 userName
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
add a comment |
up vote
0
down vote
up vote
0
down vote
You need to use authconfig command to setup SHA-256/512 hashing. This command provides a simple method of configuring /etc/sysconfig/network to handle NIS, as well as /etc/passwd and /etc/shadow, the files used for shadow password support. Basic LDAP, Kerberos 5, and SMB (authentication) client configuration is also provided.
Type the following command:
authconfig --test | grep hashingConfigure Linux Server To Use The SHA-512
To configure the Linux system to use the SHA-512 algorithm, enter:
authconfig --passalgo=sha512 --updateNote: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:
change -d 0 userNameYou need to use authconfig command to setup SHA-256/512 hashing. This command provides a simple method of configuring /etc/sysconfig/network to handle NIS, as well as /etc/passwd and /etc/shadow, the files used for shadow password support. Basic LDAP, Kerberos 5, and SMB (authentication) client configuration is also provided.
Type the following command:
authconfig --test | grep hashingConfigure Linux Server To Use The SHA-512
To configure the Linux system to use the SHA-512 algorithm, enter:
authconfig --passalgo=sha512 --updateNote: users need to change their passwords in order to generate hashes using SHA-512. You can force users to change their password on next login:
change -d 0 userNameanswered Dec 1 '16 at 16:21
Tarunkant Gupta
867
867
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
add a comment |
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
3
3
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
He is asking why the command is not found, not what to do with it.
– Bart C
Jan 20 '17 at 16:05
add a comment |
up vote
0
down vote
authconfig is not packaged with Ubuntu 14.04. You can use SSSD (System Security Services Daemon (SSSD) instead. I found this useful.
add a comment |
up vote
0
down vote
authconfig is not packaged with Ubuntu 14.04. You can use SSSD (System Security Services Daemon (SSSD) instead. I found this useful.
add a comment |
up vote
0
down vote
up vote
0
down vote
authconfig is not packaged with Ubuntu 14.04. You can use SSSD (System Security Services Daemon (SSSD) instead. I found this useful.
authconfig is not packaged with Ubuntu 14.04. You can use SSSD (System Security Services Daemon (SSSD) instead. I found this useful.
answered Jan 20 '17 at 16:12
Bart C
1113
1113
add a comment |
add a comment |
up vote
0
down vote
apt install ldap-auth-config
will generate a user-interactive prompt that will ask for your LDAP server name or IP and port number as well as the CN, OU and DC information.
I can only speak to Bionic Beaver as that's what I currently work with.
add a comment |
up vote
0
down vote
apt install ldap-auth-config
will generate a user-interactive prompt that will ask for your LDAP server name or IP and port number as well as the CN, OU and DC information.
I can only speak to Bionic Beaver as that's what I currently work with.
add a comment |
up vote
0
down vote
up vote
0
down vote
apt install ldap-auth-config
will generate a user-interactive prompt that will ask for your LDAP server name or IP and port number as well as the CN, OU and DC information.
I can only speak to Bionic Beaver as that's what I currently work with.
apt install ldap-auth-config
will generate a user-interactive prompt that will ask for your LDAP server name or IP and port number as well as the CN, OU and DC information.
I can only speak to Bionic Beaver as that's what I currently work with.
edited Jul 2 at 15:34
Stephen Rauch
1,1546716
1,1546716
answered Jul 2 at 13:39
Beth L
12
12
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f855737%2fauthconfig-command-not-found-ubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown