Multiple choice technology operating systems

If you want to set the permission for a directory, such that except owner no one else should have access, even to view the directory contents

  1. chmod 744 dirname

  2. chmod 755 dirname

  3. chmod 700 dirname

  4. chmod 711 dirname

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

chmod 700 gives owner rwx (read/write/execute) and no permissions to anyone else, satisfying the requirement. chmod 744 allows group/others to read the directory, and chmod 711 allows them to enter it (execute permission) - both violate 'except owner no one else should have access'. chmod 755 is a common permission but too permissive.