su doesn't work from regular or sudoers
I'm trying to use su command to change my identity on ubuntu 18.04
But from neither regular user to sudoer user or sudoer to regular user it doesnt work!
I get
su: Authentication failureThe sudo works and i can login to my users using ssh (ssh user@127.0.0.1) but cannot use su
What is the problem?
my cammand is simply this:
from user bob:
su alice 6 1 Answer
You could try:
sudo passwd aliceto renew password
Or, as a workaround:
sudo su - alicesudo -ithensu alice
When switching from root password isn't asked.