- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- chroot question?
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
07-23-2006 03:54 PM
07-23-2006 03:54 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2006 04:55 PM
07-23-2006 04:55 PM
Re: chroot question?
chroot is a possibility to define some directory as the upper (root) directory for an application or user[s].
This permits to define areas which are accessible for users or applications. For example, chroot can limit ftp users not to see directories except /home/ftpusers.
The details you can see in
man chroot and man 1m chroot
HTH
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2006 05:43 PM
07-23-2006 05:43 PM
SolutionHere is a good article about "chroot" : http://en.wikipedia.org/wiki/Chroot
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-23-2006 05:48 PM
07-23-2006 05:48 PM
Re: chroot question?
chroot is referred to often as the chroot jail.
It is a security method that keeps a process or user in a limited environment.
Say the user logs in and normally gets /home/username as home directory.
In a normal environment that user can cd / to root
In a chroot environment /home/username becomes root and the user can't move up to root and do harm.
The downside is that the user loses access to many necessary commands and a chroot configuration needs to provide that access to users.
The neat thing about chroot is its not just for users. DNS/Bind is commonly run in a chroot jail. HP's apache server ships with a configuration script to run it in a chroot jail.
In the case of an appliction, lets say a malicious web user figures out how to override apache and get a shell prompt. If its running in a chroot jail the user can do almost nothing with this session.
Quite useful, though not so easy to configure.
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
07-23-2006 07:21 PM
07-23-2006 07:21 PM
Re: chroot question?
You can check this documents as well,
New user and chroot configuration
http://docs.hp.com/en/T1471-90011/ch01s12.html
chroot-example:
http://hoohoo.ncsa.uiuc.edu/docs/tutorials/chroot-example.html
Cheers,
Raj.