- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- application core file size
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
08-01-2002 10:01 AM
08-01-2002 10:01 AM
Is there a way to determine the maximum size a core image could become. I realize they will not be the same size all the time, but was thinking that the kernel parms maxssiz, maxdsiz, and maxtsiz would be likely values to have some effect on the size to expect. Anyone have any insight into this?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 10:12 AM
08-01-2002 10:12 AM
Solution- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 10:14 AM
08-01-2002 10:14 AM
Re: application core file size
# ulimit -c 2048
The above limits the core size to 1Mb. You can adjust the above number, which means 2048 512-byte blocks.
Keeping mind that this will help you limit the size of the core file. However, you may not be able to debug the core files.
Hai
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 10:14 AM
08-01-2002 10:14 AM
Re: application core file size
the size of the core file depend on the memory used by the process. If you don't use that core file to debug that application, you could start your application in a shell where you would have change the coredump limit (by default that value is 2 Gig).
An easy way to do this is to create a small shell script to start you application (I will use xterm in my example):
#!/bin/sh
ulimit -c 2048 # set coredump size to 1 Meg 2048x512 Bytes
xterm
Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 10:15 AM
08-01-2002 10:15 AM
Re: application core file size
ulimit -c 4096
in /etc/profile. Otherwise, wrap the application in a shell that performs the same command.
Tom
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-01-2002 10:31 AM
08-01-2002 10:31 AM