Meaning of root:wheel

31,225

Solution 1

root is a user (the super user) and wheel is a group (of super users I guess).

chown root:wheel myfile

means making myfile belong to the user root and the group wheel (read man chown for more information).

Solution 2

More specifically about the wheel group:It is a Unix group specifically intended for only those users who have rights to su as root.

Share:
31,225
Casebash
Author by

Casebash

Bachelor of Science (Adv Maths) with Honors in Computer Science from University of Sydney Programming C/C++/Java/Python/Objective C/C#/Javascript/PHP

Updated on September 17, 2022

Comments

  • Casebash
    Casebash almost 2 years

    What does root:wheel mean in the following?

    chown root:wheel myfile

  • Michael Mrozek
    Michael Mrozek almost 14 years
    wheel is typically the group with sudo rights (see this question)
  • vk5tu
    vk5tu over 3 years
    Some Unixen do this for files which are to be accessed by system administrators. Typically these file will have a user:group of root:wheel and permissions rw-rw----. This approach has fallen out of favour, as it allows system changes to be too readily made in error (eg, cd /etc; …; vi hostname would succeed); rather the modern approach has system files owned by root:root and requires the use of the sudo command prior to successfully changing a file (eg, cd /etc; …; vi hostname would fail, only the more intentional sudo vi hostname succeeds).