Find the answer to your Linux question:
Results 1 to 5 of 5
When I try to do something it says I must be root to run this application, what does that mean?...
  1. #1
    Just Joined! dmg1287's Avatar
    Join Date
    Jan 2009
    Location
    Port Orchard, Wa
    Posts
    57

    root?

    When I try to do something it says I must be root to run this application, what does that mean?

  2. #2
    Linux Guru Lakshmipathi's Avatar
    Join Date
    Sep 2006
    Location
    3rd rock from sun - Often seen near moon
    Posts
    1,568

    Smile

    Code:
    When I try to do something it says I must be root to run this application, what does that mean?
    root refers to super user (like administator in windows) - when normal user try to access/execute root user (admin) commands - It will either say
    " command not found" or "you must be root to run this application".

    Some basic question -answered here
    The Fedora Basics FAQ
    - Lakshmipathi.G
    -------------------
    FOSS India Award winning ext3fs Undelete tool and tutorials www.giis.co.in
    First they criticize you,Then they laugh at you,Then they fight with you,Then you win. - M.K.Gandhi
    -------------------

  3. #3
    Just Joined! dmg1287's Avatar
    Join Date
    Jan 2009
    Location
    Port Orchard, Wa
    Posts
    57
    okay thanks but when do what it says to become root it says su: authentication failure, So what do I do?

  4. #4
    Linux Newbie egan's Avatar
    Join Date
    Feb 2009
    Location
    Mountain View, CA
    Posts
    132
    That means that for some reason, access was denied (based on your privileges or a failed password). Am I right to assume this is a personal PC? If it isn't, and you aren't the administrator, then you may have not been given the right to super user access.

    Also, it is probably better to use sudo rather than su.

  5. #5
    Linux Guru
    Join Date
    Nov 2004
    Posts
    6,110
    Quote Originally Posted by dmg1287 View Post
    okay thanks but when do what it says to become root it says su: authentication failure, So what do I do?
    You are using Ubuntu and in this particular distro direct root logon is not permitted by default.

    What you must do instead is either prefix the command with sudo which runs that one command as root, or run
    Code:
    sudo -i
    first to give you a root shell.

    HOWEVER....if you are running a graphical application do not use sudo, but rather gksu which is designed primarily for graphical applications. Can I ask what it is you are trying to do?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...