Navigation

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular

    Resetting an lost admin password on Ubuntu/Linux Mint

    Guides & Walkthroughs
    password password reset debian linux mint ubuntu lost password
    1
    1
    234
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Jared Busch
      Jared Busch last edited by

      If your IT department is doing things right, then the user account that you log in to a computer with will not have administrative access.

      In the Linux ecosystem this is called sudo access.

      Normally an accout is made with sudo rights that is only used as needed.

      If the password for this account is lost, then there is no longer a way to administer the computer.

      In the Windows world, you shutdown the system and then boot to a specially crafted USB boot disk that you can read the Windows information and then reset the admin password.

      For Linux, it is easier. You simply need to reboot and interrupt the normal grub boot sequence to get into single user mode.

      1. Reboot the system.
        • As soon as it powers back on begin tapping the ESC key.
          Technically, we are only wanting to stop grub from automatically booting. but with modern SSD or NVMe drives, this can go by so fast you never knew it was available to interrupt.
      2. The first grub entry should be highlighted by default and is normally the one you want. Press e to edit that entry.
      3. Find the line beginning with linux
      4. Go to the end of the line and add init=/bin/bash
      5. Press F10 to boot to this modified file without permanently saving it.
      6. The system will boot to a command prompt similar to [email protected](none):/#
      7. Enter mount -o remount,rw / and press Enter.
      8. Now you can reset the admin account password with the passwd command: passwd YOURADMINNAME.
      9. Enter the new password, then again to confirm it.
      10. Type exit and then use the power button to reboot the computer.
      1 Reply Last reply Reply Quote
      • First post
        Last post