answersLogoWhite

0

What Linux super-user account is built into Linux?

Updated: 8/21/2019
User Avatar

Wiki User

8y ago

Best Answer

With most Unix-derived systems, "root" is the super-user account.

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What Linux super-user account is built into Linux?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is root the superuser in Windows xp?

There is no root account in Windows XP. Nor is there an account that is a "superuser" account in the traditional sense.


What is a superuser in Linux?

The Linux superuser is called "root." There is very little root cannot do. This is why it is a Very Bad Idea to do anything as root unless absolutely necessary. Use sudo instead with commands that need it.


What is super in aix?

I assume you are asking about the superuser account - which is the administrator account of root.


What of the accounts is built into Linux?

For the most part, every Unix-based and Unix-like (and by extension, Linux) distribution will have a root account (equivalent to a system administrator account in Windows). The remaining accounts will be allocated for the users and for certain applications.


What account has complete control over a computer and its settings?

In Windows, it's called the Administrator account. In *nix systems it's generally called the root/superuser account.


What is Root user in a Linux machine?

The root account is the administrative account on Linux; this account has control over everything in the system.


What is the difference between a normal user and a root user in Linux?

A "root" user has the power to do anything on a Linux system. A "normal user" will be assigned some of these capabilities based on what group they are in, but is generally prevented from running any commands that may affect the system outside of their home directory. Users can be granted "sudo" rights, which allows them to run the sudo command and temporarily be granted root privileges.


Define the purpose for writing shell scripts as a superuser?

I presume you mean writing shell scripts that operate under the super user account - scripts are written for any reason to help automate tasks and make them much less error prone than issuing commands as a user. Running as the superuser merely means that the commands in the shell script require superuser priviledge to execute.


What can you do with su besides give yourself root privileges?

SU allows users to use programs with the security privileges of the superuser. This gives the user a huge amount of configurability with windows, mac and linux.


How do you run an installer as a superuser on Ubuntu Linux?

From the command line, always use sudo. For instance:sudo sh installer.shorsudo ./installer.binNote: If you don't have (don't want to use) sudo, then just: su -c './installer'


Why one should not use graphical user interface of Linux while loading and unloading modules?

There's nothing to stop you from loading modules while a GUI is running. It's just that GUIs are typically run under a limited user account, and as such you would have to open up a terminal and assume superuser privileges under it anyway.


What is the su command in Unix?

The su command is used to assume the permissions of another user. Without any parameters, it is used to assume the superuser, or root, account. When followed by the name of a user account, it will allow you to use that user's account and permissions.