- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Display those are not a system world writable 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
05-28-2009 12:55 AM
05-28-2009 12:55 AM
Display those are not a system world writable files in UNIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:10 AM
05-28-2009 01:10 AM
Re: Display those are not a system world writable files in UNIX
if you do a ls -l to a directory you'll see the permissions:
-rwxrwxrwx is a file who has r(ead)/w(rite)/(e)x(ecute) permissions for user (the first three rwx), group (the second group rwx) and all users (i.e. 'world', the last three rwx).
Seee also 'man chmod' for the explanations.
A '-' shows that the specific group don't have the specific right.
So 'not a system world writable files' have:
-rwxrwxr-x
HTH
Volkmar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:22 AM
05-28-2009 01:22 AM
Re: Display those are not a system world writable files in UNIX
V.Nyga has good explanation for your query, you can also refer below help page for chmod, thanks,
http://docs.hp.com/en/B2355-90680/chmod.1.html
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:30 AM
05-28-2009 01:30 AM
Re: Display those are not a system world writable files in UNIX
please go to your last questions (about system world writable files):
http://forums13.itrc.hp.com/service/forums/pageList.do?userId=WW240663&listType=unassigned&forumId=1
and assign points like mentioned here:
http://forums13.itrc.hp.com/service/forums/helptips.do?#28
V.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:37 AM
05-28-2009 01:37 AM
Re: Display those are not a system world writable files in UNIX
The link inside this link:
http://www.hpux.ws/?p=12
Includes a document by Bill Hassell.
This document includes the code for finding such files in HP-UX
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:38 AM
05-28-2009 01:38 AM
Re: Display those are not a system world writable files in UNIX
find the world writable files on a system
find . -perm -02 -exec ls -ld {} \;
find the none world writable files in a directory
find . ! -perm -02 -exec ls -ld {} \;
writable files are those which have a
"w" at the following position looking at
# ls -l toto
--------w- 1 root bin 0 May 28 11:32 toto
you have
owner group world
rwx rwx rwx
it also be converted in octal each letter set corresponding to a 1.
So 02 is world writeonly
754 eq rwxr-xr--
is rwx for owner
rx for group
r for world
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 01:56 AM
05-28-2009 01:56 AM
Re: Display those are not a system world writable files in UNIX
I want to know that those are not a world system files in a system other than user files.
Example:- Is there any OS files by default world writable files.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 02:08 AM
05-28-2009 02:08 AM
Re: Display those are not a system world writable files in UNIX
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 02:55 AM
05-28-2009 02:55 AM
Re: Display those are not a system world writable files in UNIX
I would like to know more information on UNIX, what are the OS world writeble files by default. I will appriciate your quick response.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-28-2009 03:17 AM
05-28-2009 03:17 AM
Re: Display those are not a system world writable files in UNIX
please re-read what Bill has answered to you:
http://forums13.itrc.hp.com/service/forums/questionanswer.do?threadId=1340325
By default there's no need in HP-UX for world writable files.
With some applications installed this could change ...
HTH
Volkmar