0

I forgot my Ubuntu password. I followed the steps given on your sites and I almost reached the end, but then my computer said:

passwd: authentication token manipulation error

I tried to do it again many times but it comes to the same result. I cannot open my account.

Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493
  • 2
    Please give a full list of the steps you performed and the complete command that produced this output. Partial snippets are not too helpful. – Byte Commander Sep 24 '17 at 14:54
  • 2
    This happens because the filesystem that contains the password database is mounted readonly. Procedures for resetting the password usually contain a step to remount it readwrite first, before running `passwd`. See [How do I reset a lost administrative password?](https://askubuntu.com/questions/24006/how-do-i-reset-a-lost-administrative-password) and [Authentication token manipulation error](https://askubuntu.com/questions/91188/authentication-token-manipulation-error) – Eliah Kagan Sep 24 '17 at 16:15

1 Answers1

0

There is a Authentication Token Manipulation Error when trying to update user's password in Ubuntu because your root filesystem was mounted as read only, which prevents changing the password.

To mount it read/write, enter the command:

mount -o remount,rw /
Eliah Kagan
  • 116,445
  • 54
  • 318
  • 493
jpezz
  • 1,110
  • 7
  • 16