RHEL Linux - Red Hat System Administration Practice Exam

Disable ads (and more) with a membership for a one time $4.99 payment

Study for the RHEL Linux - Red Hat System Administration Exam. Enhance your knowledge with flashcards and multiple-choice questions, complete with hints and explanations. Prepare for your certification!

Practice this question and more.


Which command would you use to change the ownership of a file to a new user?

  1. chown

  2. chmod

  3. passwd

  4. chgrp

The correct answer is: chown

The command used to change the ownership of a file to a new user is "chown." This command allows users with the appropriate permissions (typically the root user) to modify the ownership of files and directories. The basic syntax involves specifying the new owner's username followed by the filename. For example, if you want to change the ownership of a file named "example.txt" to a user called "john," the command would be `chown john example.txt`. This effectively grants John the ownership rights over that file, allowing him to read, write, or execute it according to the permissions assigned. Other options serve different purposes: "chmod" is used to change the permissions of a file or directory, allowing you to set who can read, write, or execute the file. "passwd" is used for changing user passwords, and "chgrp" is meant for changing the group ownership of a file rather than the user ownership. Understanding the distinct functions of these commands is essential for effective file management and security within a Linux system.