- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: general
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
06-27-2001 12:11 AM
06-27-2001 12:11 AM
Is there any way around to control the access/usage of tar or fbackup or cpio or dd (backup utilities) for a tape drive. I want to give write access to only two groups say root and oracle administrators, so that no one else can overwrite the tape. At present what is happening is, one user inserts one tape in the drive and one other just overwrites the same - accidently.
Thanx in advance.
Cheers !!!
Mathew
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2001 12:33 AM
06-27-2001 12:33 AM
SolutionYou should be able to chmod the device files for the drive in question so that only certain members of a particular group can write to it.
Add them to, say, a "backup" group. If your tape drive is /dev/rmt/1m
chgrp backup /dev/rmt/1m*
chmod 664 /dev/rmt/1m*
don't forget there are some other obscure device files associate with some drives, depending on how they've been set up - do an ioscan to get them all.
Robin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2001 03:17 AM
06-27-2001 03:17 AM
Re: general
I consider the tape drive /dev/rmt/0m for example. The file protection on that file is 666. and owned by bin and group is bin also.
You may :
1. Change the permission on that drive to 664 so that the "Other group" can only read the content of tapes but can't write ( since no write for others ).
2. Add the "bin group" to root and oracle users.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2001 04:08 AM
06-27-2001 04:08 AM
Re: general
Hi
Change the permission of /dev/rmt/0m as per ur requirement. This will solve ur problem
Shahul
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-27-2001 08:28 AM
06-27-2001 08:28 AM