-1

I'm new IT manager for an organisation and the previous person have installed Linux to maintain the computers. However, this is the first time I come in contact with Linux and Ubuntu. I'm trying to get into our image server, a kind of FOG web management. I can come in through a client's web browser but I want to be able to come into the actual machine and copy the images off the server to another computer. But the username and password that should work isn't working. I've tried many variants. So, I read some on Internet that it should be possible to reset the password by rebooting the server. What I found was to press the shift key during boot and a menu should come up with among other things a recovery option. However, that option isn't there. I only get two option: Debian GNU/Linux, kernel 2.6.26-2-686 and Debian GNU/Linux, kernel 2.6.26-2-686 (single-user mode)

How should I do to reset the password?

I assumed that the user name should be admin or administrator but I could be wrong?

Sincerely, Nitman

Nitman
  • 3
  • 3

1 Answers1

0

Hi and welcome to the linux world ;)

The administrator user in linux is called "root".

You need to boot into "single-user mode" (wich you already found in the Grub boot menu)

After that execute theese commands:

  1. mount -o remount,rw / (to remount the root filesystem read-write, so you can make changes to the filesystem)
  2. passwd root (to change the root password, you need to enter it twice)
  3. reboot (to restart the system and boot it normally)

Hope, this helps