- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Max number of files on 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
02-28-2003 01:22 PM
02-28-2003 01:22 PM
I don??t talk about open files.
When i execute ll and ftp over a directory whit 5000 files, these don??t work.
I have hp-ux 11i
Thanks
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2003 01:33 PM
02-28-2003 01:33 PM
Re: Max number of files on directory
A practical limit is 256 (2^8), but you could probably have 1024 (2^10) without much trouble. Anything much more than that and then accessing that directory will take forever. Remember that a directory is just a flat file, containing information about other files. Accessing that flat file is not very efficient.
Interestingly, we could not rm * that directory. It would give "too many arguments". However, we could "for FILE in `ls -1';do;echo $FILE;rm $FILE;done". This ran for almost 3 full days to delete that many files--on an N class machine w/8 processors.
I'm not surprised ftp burped. Reduce the number of files in the directory and try again. Just FYI, you can probably still move the files around, just not list the directory.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2003 01:43 PM
02-28-2003 01:43 PM
SolutionThis link have several interesting info about:
http://forums.itrc.hp.com/cm/QuestionAnswer/1,,0xcd745220af9bd5118ff10090279cd0f9,00.html
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2003 02:13 PM
02-28-2003 02:13 PM
Re: Max number of files on directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-28-2003 02:19 PM
02-28-2003 02:19 PM
Re: Max number of files on directory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-01-2003 07:46 AM
03-01-2003 07:46 AM