You have set up an FTP server in Ubuntu Server. Jason, a user, calls to say he gets an error when trying to put a file in his /home/jason/files directory. You look at the directory structure and see that you forgot to give the user ownership of the directory. Which command can fix the problem?

a. chown jason:jason /home/jason/files
b. sudo chmod u=rwx /home/jason/files
c. sudo chown jason:jason /home/jason/files
d. chmod u-rwx /home/jason/files


Ans: c. sudo chown jason:jason /home/jason/files

Computer Science & Information Technology

You might also like to view...

In array items, which expression below accesses the value at row 3 and column 4?

a. items[3].[4] b. items[3[4]] c. items[3][4] d. items[3, 4]

Computer Science & Information Technology

Which of the following statements is false?

a. A catch block declares a type and an exception parameter name. b. Inside the catch block, you can use the parameter’s name to interact with a caught exception object. c. When a program is executed, array element indices are checked for validity—all indices must be greater than 0 and less than or equal to the length of the array. d. If an attempt is made to use an invalid index to access an element, an ArrayIndexOutOfBoundsException exception occurs.

Computer Science & Information Technology

The appointment area displays ____-minute time slots by default when viewing the Calendar in Day, Work Week, or Week view.

A. 10 B. 15 C. 30 D. 60

Computer Science & Information Technology

Algorithm ____ is the most challenging and creative part of the problem-solving process.

a. implementation b. design c. discovery d. analysis

Computer Science & Information Technology