Which chown command changes the ownership to dave and the group to staff on a file named data.txt?
Which chown command changes the ownership to dave and the group to staff on a file named data.txt?
The correct command to change the ownership to dave and the group to staff on a file named data.txt is 'chown dave:staff data.txt'. The 'chown' command in Unix-based systems uses a colon ':' to separate the username and group name.
chown USERNAME:GROUPNAME FILENAME
E is correct
E is ok
E is correct
correct!
correct!
As per MAX90 comments