Super User

Asked by Rosalyn Pham

I just installed Ubuntu 8.10. I need to run my application as Super User under the root dir. I tried to setup as Super User by navigating through the menu: “system->administration->users” and “group->add user”, but this later option is grayed out. How do I run my application as super user?

Question information

Language:
English Edit question
Status:
Solved
For:
Ubuntu Edit question
Assignee:
No assignee Edit question
Solved by:
Tom
Solved:
Last query:
Last reply:
Revision history for this message
Koen (koen-beek) said :
#1

in a terminal add sudo before the command

you will be asked for your paswword and the command will run with superuser permissions

although it is possible to log in as a super user in ubuntu it is (strongly) recommended to use the sudo command in stead

Revision history for this message
Koen (koen-beek) said :
#2
Revision history for this message
Rosalyn Pham (rosalyn-pham) said :
#3

Thanks for the reply.
This is a more basic question: How do I start a terminal console from the menu?

-----Original Message-----
From: <email address hidden> [mailto:<email address hidden>] On Behalf Of Koen Beek
Sent: Wednesday, February 04, 2009 11:42 AM
To: <email address hidden>
Subject: Re: [Question #59906]: Super User

Your question #59906 on Ubuntu changed:
https://answers.launchpad.net/ubuntu/+question/59906

    Status: Open => Answered

Koen Beek proposed the following answer:
in a terminal add sudo before the command

you will be asked for your paswword and the command will run with
superuser permissions

although it is possible to log in as a super user in ubuntu it is
(strongly) recommended to use the sudo command in stead

--
If this answers your question, please go to the following page to let us
know that it is solved:
https://answers.launchpad.net/ubuntu/+question/59906/+confirm?answer_id=0

If you still need help, you can reply to this email or go to the
following page to enter your feedback:
https://answers.launchpad.net/ubuntu/+question/59906

You received this question notification because you are a direct
subscriber of the question.

Revision history for this message
peter (peter-neuweiler) said :
#4

If you are going to login as a super user, do the following:

1: System > Adminsitration
2: Click Login Window
3: Choose the tab Security
4: Activate the box Allow local system administration login

Now you'll be able to login as the root.

Hope it helps.
Peter

Revision history for this message
Best Tom (tom6) said :
#5

Always safer to use sudo tho. To run gedit, a handy text-editor, you'd first open a terminal console by going up to the top taskbar and click on

Applications - Accessories - Terminal

and into the terminal/command window/console type

sudo gedit --help

and then you'd be asked for your normal user password, not your SuperUser/Root one. Hopefully youcan run the program now. Please let us know how you get on by clicking on the link to this thread in the Questions/Answers forum

Good luck and regards from
Tom :)

Revision history for this message
Rosalyn Pham (rosalyn-pham) said :
#6

Thanks Tom, that solved my question.