- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: restricted access to directory
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
03-07-2003 01:16 PM
03-07-2003 01:16 PM
restricted access to directory
How can I do to restrict the access to a directory from a user ?
I need to assign to user X this home: /home/u1/X, and I need that this user can move up one level (/home/u1) and navigate, copy files, move files, etc.
I can use rsh, but I need to move up one level, and rsh not permit that.
any idea ??
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 01:21 PM
03-07-2003 01:21 PM
Re: restricted access to directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 01:22 PM
03-07-2003 01:22 PM
Re: restricted access to directory
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 01:24 PM
03-07-2003 01:24 PM
Re: restricted access to directory
I will make a test
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 02:27 PM
03-07-2003 02:27 PM
Re: restricted access to directory
any idea ??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 02:38 PM
03-07-2003 02:38 PM
Re: restricted access to directory
e.g.
In your users home dir:
ln -s /home/user1 myuser1
Now you can copy any files from myuser1. ls myuser1 will list the files and ls -Ll myuser1 will do a long listing. You can do all the operations you require; you just have to do them a bit differently.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-08-2003 09:52 AM
03-08-2003 09:52 AM
Re: restricted access to directory
chmod 2### /dir
-or-
chmod g+s /dir
Examples: With execute permission.
-rwsr-sr-- 1 bill user 242 Jun 13 2002 abc1
Without execute permission.
-rwSr-Sr-- 1 bill user 242 Jun 13 2002 abc2