Suppose a user belongs to a group that has all permissions on a file named jobs_list, but the user, as the owner of the file, has no permissions. Describe which operations, if any, the user/owner can perform on jobs_list. Which command can the user/owner give that will grant the user/owner all permissions on the file?

What will be an ideal response?

Initially the user/owner cannot perform any operations involving the file,

other than using ls to list it. When the user/owner gives the following com-
mand, the user/owner can perform any operation involving the file:

$ chmod u+rwx jobs_list

Computer Science & Information Technology

You might also like to view...

Which AI system will continue to analyze a problem until it finds the best solution?

A) Genetic algorithm B) Neural network C) Intelligent agent D) Expert system

Computer Science & Information Technology

After line 9 runs, what are the items in the vector?

``` 1 vector vNums; 2 vNums.push_back(10); 3 vNums.push_back(5); 4 vNums.push_back(15); 5 vNums.push_back(25); 6 cout << vNums.size(); 7 vNums.pop_back(); 8 cout << vNums.at(2); 9 vNums.pop_back(); 10 vNums.pop_back(); 11 vNums.pop_back();``` A. 10, 5 B. 5, 15 C. 10, 15, and 25 D. None of these are correct.

Computer Science & Information Technology