Linux CentOS5.5 Add root permissions User Method summary

Source: Internet
Author: User

V Operating system: CentOS 5.5

1, add users, first with the AddUser command to add a normal User:

The code is as follows Copy Code
#adduser junguoguo//to add a user named Junguoguo
#passwd Junguoguo//Change Password
Changing password for user Junguoguo.
New UNIX Password://Enter password here
Retype new UNIX Password://re-enter password
Passwd:all authentication tokens updated successfully.

2. Give root permission
Method One: Modify the/etc/sudoers file, find the line below, and remove the previous comment (#)

The code is as follows Copy Code

# # allows people in group wheel to run all commands
%wheel all= (All)
The user is then modified to belong to the root group (wheel):
#usermod-G Root Junguoguo

Modified, you can now log in with the Junguoguo account, and then use the command to su–, you can get the root permission to operate.

Method Two: Modify the/etc/sudoers file, find the following line, and add a row under Root, as follows:

The code is as follows Copy Code

# # Allow ROOT to run any commands anywhere
Root all= (All)
Junguoguo all= (All)

Modified, you can now log in with the Junguoguo account, and then use the command to su–, you can get the root permission to operate.

The above method I think the method two is the best, we can refer to the next.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.