Description of UNIX, commands, ownership, and how it is written

Essay by ausha2College, UndergraduateA, October 2008

download word file, 3 pages 2.3

Downloaded 16 times

File directory permissions and ownershipIn UNIX, the system works with an owner, group, and everyone else. The owner is the designated user that creates the files and is allowed to change permissions with commands. The owner also can remove, modify, and create files at will. Permissions are advantages users have over a file’s contents and what can be viewed. This file viewing is controlled by commands. UNIX uses three commands for permissions, “rwx” (R) reading the file, (W) modifying the file’s content, and (X) executing, running a file.

The three letters that allow permission mean: 'owner', 'group' and 'all' and this is tripled for each, ending in nine. This can be on ‘set’ or ‘not set’ denoted by a dash (-).

An example of a written permission is: “rwxr-xr-x.”(http://www.perlfect.com/articles/chmod.shtml)What the above command represents is equal permission for the owner as the first portion denotes, but as the second and third portion has the two dashes, the group and everyone else do not have access to the file, only to read and execute it.

To view permissions, the is: $ ls –lMore examples:drwx------ 2 richard staff 2048 Jan 2 1997 privatedrwxrws--- 2 richard staff 2048 Jan 2 1997 admin-rw-rw---- 2 richard staff 12040 Aug 20 1996 admin/userinfodrwxr-xr-x 3 richard user 2048 May 13 09:27 public(http://www.dartmouth.edu/~rc/help/faq/permissions.html )The first row of permission “drwx” is a directory, because of the “d” and allows access to the owner only. The second row “drwxrws” is also a directory and the group is allowed to access this file because the “s” at the end denoting a group setting. The third row, “-rw-rw” there are limitations on the group and everyone else. Only read and execute are allowed according to the owner. Finally, on the fourth row, “drwxr-xr-x” the owner has full access, but the group is allowed...