154

I tried to su to root so I could install lights, but I get an authentication error when I try:

user@host:~$ su
Password: 
su: Authentication failure
Seth
  • 57,282
  • 43
  • 144
  • 200
Michael
  • 2,449
  • 5
  • 19
  • 24

5 Answers5

241

The root account is disabled by default in Ubuntu, so there is no root password, that's why su fails with an authentication error.

Use sudo to become root:

sudo -i  
Seth
  • 57,282
  • 43
  • 144
  • 200
22

If su doesn't work, I do this (in bash):

user@host:~$ sudo bash
root@host:~# su
root@host:/home/user# 

Voila! You are now root!

A shortcut for this would be sudo su. In this case given that you are a member of /etc/sudoers with all privileges, then you would only need your user's password.

e.thompsy
  • 321
  • 1
  • 5
  • 9
    After `sudo bash` you are already root... – edwin Apr 11 '14 at 19:43
  • 7
    @edwin After `sudo bash` you are running bash as root, but '~' still points to /home/user or wherever your user's home directory is. So you are not *quite* root. A shortcut for this would be `sudo su` – e.thompsy Apr 21 '14 at 12:59
  • 1
    For all intends and purposes, you are already root... What's happening is that `sudo` is preserving some environment variables. Instead of `sudo bash` it's better to just use `sudo -i`. – edwin Apr 21 '14 at 16:50
  • 2
    @edwin In some cases these preserved environment variables matter a lot. So I would argue for *most* intents and purposes you are absolutely right. However, the OP has asked specifically about su to root. I was assuming they knew why they want to do that and that they have a good reason to do it. So I was adding an alternate path to becoming root to the discussion. And here is yet another way: `sudo -i` then `su`. But I would *totally* agree that in most cases just using sudo should be fine. That is what I usually do. Unless I **need** root. Then I use `su`. – e.thompsy Apr 23 '14 at 16:31
  • 2
    `sudo -i` already is enough. Seriously, you just `sudo su` or `sudo -i`, this is enough to become root (no need to "su" again)... – edwin Apr 23 '14 at 17:00
  • 1
    @edwin: Ok man. You are right. Have an awesome day! – e.thompsy Apr 29 '14 at 16:56
  • up voted for maintaining a positive attitude – Freedom_Ben Aug 04 '16 at 01:19
  • sudo -i is correct, and use ctrl+d if you need to logout of the root account. – john Jan 17 '20 at 13:27
12

You are getting Authentication failure because you are trying to become root which is disabled by default in all versions of Ubuntu. This can be easily circumvented in two ways:

  1. Enabling the root account. This can be achieved by setting up a password.
  2. Instead of su use sudo -i or better yet, append to any command sudo in the way of:

    sudo apt-get update
    [sudo] password for braiam:
    

I wouldn't recommend enabling root, since it could raise a security concern, for example, if you use any service exposed to the web.

Walkman
  • 3
  • 4
Braiam
  • 66,947
  • 30
  • 177
  • 264
11

Open root with sudo -s and when it's in this mode type:

passwd

Then, choose password. This password will be for su command.

aastefanov
  • 1,343
  • 11
  • 16
4

Use sudo your_command in place of su.
ie

sudo apt-get install "program to install"
girardengo
  • 4,925
  • 1
  • 26
  • 31