- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: deleting a file
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 06:13 AM
08-13-2005 06:13 AM
I was never able to understood why this happened ?
I know some of the unix guru on this forum will shed some light :-))
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 06:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 06:33 AM
08-13-2005 06:33 AM
Re: deleting a file
Check that out and hopefully that is it
DP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 07:24 AM
08-13-2005 07:24 AM
Re: deleting a file
as already said: you need write permission on the directory in which the file is located in order to delete it.
The permissions on the file itself, e.g. 644, apply only to reading, writing/changing or executing the file.
regards,
John K.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 08:21 AM
08-13-2005 08:21 AM
Re: deleting a file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 09:54 AM
08-13-2005 09:54 AM
Re: deleting a file
The process was like this
1. You created a file in a directory for which you have rwx permission.
2. After sometime the directory premission was changed to r_x. Now you cannot modify(write) to the directory...
Following are the steps how it happened
$ ll
total 0
drwx------ 2 abc users 96 Aug 14 04:47 test1
$ > test1/test2
$ chmod 500 test1
$ rm test1/test2
rm: test1/test2 not removed. Permission denied
$ ll
total 0
dr-x------ 2 abc users 96 Aug 14 04:47 test1
$ chmod 700 test1
$ rm test1/test2
$ (file deleted)
Cheers !!!
eknath
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-13-2005 07:20 PM
08-13-2005 07:20 PM
Re: deleting a file
Probably the parent directory does not have write permission
Regards
Mahesh