Shared Tutorials New
Website Development
2D & 3D Graphics
Audio & Video Editing
Databases
Desktop Programming
Operating Systems
Business Applications
Miscellaneous
Selected Reading
© 2011 TutorialsPoint.COM
|
Shared Tutorials Directory
Tutorials Shared by the Community
-
Learn how linux file permission works. Chmod, chown and chgrp commands explained with examples.
http://www.xater.com/articles/file-permissions.html
Tutorial Statistics
Total Hits: 978
Average Rating :     
Total Votes: 0 votes
Category: Linux/Basic Concepts
Submitted on: 2008-04-25 12:49:27
Submitted By: Devesh Khanna
Set as Favorite
In linux, files have many attributes. We can execute the following command in the command line to view them: ls -l
This command will list all files in the current directory. Each line is a file ie:
-rwxrwxrwx 1 root root 9580 abr 30 14:48 myfile is the type of file. rwxrwxrwx is the permission of the file. We will see how they work later on this article. 1 is the number of hard links root root the first root is the user owner of the file, and the second refers to the group. 9580 is the file size abr 30 14:48 is the date and time of the last modification of the file. myfile is the name of the file. More detail...
|
|
|