Welcome to the Linux Foundation Forum!

Login problem

Hi all,

I put the topic here because I basically know nothing about Linux. I have been put in charge of the IT department in our organisation and the previous person knew much more about Linux. Now I need to come into this Linux computer with Ubuntu OS. It gives me a login screen but I'm not able to choose the Administrator account. At one point I was able to select the guest account but then I was not able to access everything

Comments

  • Normally in Ubuntu there is not an Administrator account. Normally Ubuntu works with "sudo" rather than "su".

    There are different accounts of what sudo means, but one is "super user do". Sudo gives temporary Root rights for about 15 minutes.

    If you know the sudo password all well and good. If not then you will need to reset it. Look at e.g. http://www.psychocats.net/ubuntu/resetpassword
  • Posts: 10
    edited January 2015
    Assumed your root filesystem is on 1 partition you can do following to inspect partition:
    1. fdisk

    Enter grub bootloader command line and modify kernel command line containing init=/bin/bash
    1. linux /boot/vmlinuz-3.14.25-rt22 root=/dev/sda1 ro init=/bin/bash verbose
    2. initrd /boot/initrd.img-3.14.25-rt22

    The your logged in as root ...
    When you want to change password you have to mount filesystems like:
    1. mount -o remount,rw /dev/sda1 /
    2. mount -vt devtmpfs devtmpfs /dev
    3. mount -vt devpts devpts /dev/pts -o gid=5,mode=620
    4. mount -vt proc proc /proc
    5. mount -vt sysfs sysfs /sys
    6. mount -vt tmpfs tmpfs /run

    Then you can finally do:
    1. passwd

    Assumed your bootloader is password protected then use grub-rescue CD-ROM put it in your drive and boot it. Do the steps above, as described. Hint with tabulator you get auto completion. So first do and substitute kernel and initrd with appropriate filename:

    Assumed first hard-disk drive first partition:
    set root=(hd0,1)
    1. linux /boot/vmlinuz-3.14.25-rt22 root=/dev/sda1 ro init=/bin/bash verbose
    2. initrd /boot/initrd.img-3.14.25-rt22
    3. boot

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Welcome!

It looks like you're new here. Sign in or register to get started.
Sign In

Categories

Upcoming Training