![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| File Permission | KhawHL | UNIX for Advanced & Expert Users | 2 | 05-24-2006 02:05 AM |
| The file permission | ust | Shell Programming and Scripting | 1 | 05-12-2005 06:01 AM |
| The file permission | ust | UNIX for Dummies Questions & Answers | 2 | 05-05-2005 06:18 AM |
| Log file - permission | ajkiruba | UNIX for Advanced & Expert Users | 6 | 04-24-2002 09:42 AM |
| File Permission | sanjay92 | UNIX for Advanced & Expert Users | 6 | 04-02-2002 04:19 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
hi all
i was reading some questions related to file permission if file has 000 permission then who can read the file ? i think no one can read the file. correct me if i am wrong |
| Forum Sponsor | ||
|
|
|
|||
|
File Permission
Yes you are correct. If we make the file permission as 000. No one can Read from/Write into the file. But the owner of the file can change the permission accordingly, so that owner/everyone can read/write the file.
|
|
|||
|
Quote:
Code:
# echo fred >banana # chmod 000 banana # ls -ld banana ---------- 1 root wheel 5 Dec 3 21:22 banana # cat banana fred |