- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Setting Permissions on System files.
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
11-17-2004 02:18 AM
11-17-2004 02:18 AM
I am looking for the most convenient place to get permissins/ownerships for HP-UX files. For example /bin/more, /etc/services, /.rhosts, etc. Is there one place to go on the system - one file to look in?
Thanks,
Darrell T
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2004 02:23 AM
11-17-2004 02:23 AM
Re: Setting Permissions on System files.
Not that I know of. If you want to list the files you're interested in, I'd be happy to post them for you.
$ ll /bin/more /etc/services /root/.rhosts
-r-xr-xr-x 2 bin bin 73728 Jul 16 2002 /bin/more
-r--r--r-- 1 bin bin 11129 Sep 29 08:26 /etc/services
-r--r--r-- 1 root sys 151 Mar 16 2004 /root/.rhosts
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2004 02:35 AM
11-17-2004 02:35 AM
Solutionswverify OS-Core.UX-CORE
This will check your core files.
If there's a specific file you want to check, you can see which package it exists in with something like (eg to : -
swlist -l file | grep /etc/services
tells you it's in package InternetSrvcs.INETSVCS-INETD
so then you can swverify this to check this file, and all other files in the package.
Sy
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2004 02:35 AM
11-17-2004 02:35 AM
Re: Setting Permissions on System files.
The files under /usr/newconfig are supposed to have default permissions and ownerships. They are the default configuration files. In case if the configuration files are corrupted and are not retrievable from backups, then you can copy these files to get the OS going.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2004 02:49 AM
11-17-2004 02:49 AM
Re: Setting Permissions on System files.
Yu can use swlist to print the default permissions for hpux files and directories
# swlist -l file -a mode | more
Hope this helps,
Robert-Jan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-20-2004 01:26 AM
11-20-2004 01:26 AM
Re: Setting Permissions on System files.
Thanks again,
Darrell Tschakert