- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Release file permissions
Categories
Company
Local Language
Forums
Discussions
Knowledge Base
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
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
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
12-16-2004 03:14 PM
12-16-2004 03:14 PM
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 03:31 PM
12-16-2004 03:31 PM
Solutionchmod -R a+r *
everybody can read
chmod a-r /var
default permission of /var itself not readable.
Might not want to do this to a production machine. I'm not sure your wish is very system friendly.
Regards and felicitations,
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
12-16-2004 03:35 PM
12-16-2004 03:35 PM
Re: Release file permissions
chmod a+r file
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 08:08 PM
12-16-2004 08:08 PM
Re: Release file permissions
#man chmod
chmod u Modify permissions for user (owner).
g Modify permissions for group.
o Modify permissions for others.
a Modify permissions for all users (a is equivalent to ugo).
so you can correct by
#chmod a+r /var
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-16-2004 08:46 PM
12-16-2004 08:46 PM
Re: Release file permissions
One more way:
#chmod 444
It works!
Best and regard,
HoangChiCong
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-17-2004 01:35 AM
12-17-2004 01:35 AM
Re: Release file permissions
Now if you mean /var/tmp, that is a separate directory and it's permission must be 755 or 1755. The way that permissions work is that the directory gives 'visibility' to files inside the directory. If a directory is 700, then no one except the owner of the directory can cd into the directory or list (ls) the contents. Whether a user can 'see' the file is under the directory's control but whether a user can read the contents of a file is controlled by the file's permission. Change the file to 444 permission and now every user can read (but not change) the file's contents.
Bill Hassell, sysadmin