- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- file size limit
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
10-29-2001 10:14 AM
10-29-2001 10:14 AM
file size limit
Thanks
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:19 AM
10-29-2001 10:19 AM
Re: file size limit
Cor files are the result of an application or the os have an internal error and the file is the output which can be analyzed to find problems. They are not always fatal.
Hope this helps.
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:29 AM
10-29-2001 10:29 AM
Re: file size limit
Also you can limit those nasty core files which can be created by anyone when program crashes. I think for that you can use the "ulimit" command with -c option.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:30 AM
10-29-2001 10:30 AM
Re: file size limit
Now for who can create a core...seems to me everybody is creating them some days. Cores can be created when something panics or aborts, that could be the system or an application.
Hope that helps,
Rita
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:42 AM
10-29-2001 10:42 AM
Re: file size limit
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:45 AM
10-29-2001 10:45 AM
Re: file size limit
According to man core it says that *A process with an effective user id diff from its real user id does not produce core image*. What does this mean?
Brian
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:56 AM
10-29-2001 10:56 AM
Re: file size limit
you can limit the core file
size by using ulimit -c
user profile file.
Log file size cannot be
limited directly. You can
maintain it by moving/trimming it at regular
intervals (week or so).
You can also create a
small Filesystem for the
logfile location and restrict
its size.
-Raj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 10:59 AM
10-29-2001 10:59 AM
Re: file size limit
you can try to set quota for the file. I think quota works for filesystems and not for files.
http://us-support.external.hp.com/cki/bin/doc.pl/sid=b85278e51a6fa0f45c/screen=ckiDisplayDocument?docId=200000057066330
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90681/B2355-90681_top.html&con=/hpux/onlinedocs/B2355-90681/00/02/286-con.html&toc=/hpux/onlinedocs/B2355-90681/00/02/286-toc.html&searchterms=quota&queryid=20011029-110130
Hope this helps.
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 11:10 AM
10-29-2001 11:10 AM
Re: file size limit
man 5 quota
Disk quotas can be used by the system administrator to limit the
number of files and file blocks owned by a user on a per-file-system
basis. Separate limits can be established for both the number of
files (inodes) and the number of 1-Kbyte blocks for each user. A soft
(preferred) and a hard limit are established.
---> Of course if you turn this feature on, you will have extra overhead. So use it wisely.
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-29-2001 11:15 AM
10-29-2001 11:15 AM
Re: file size limit
Answer to your question ..
*A process with an effective user id diff from its real user id does not produce core image*.
I think what it means is.. say you got program A which called program B. Both programs have different owners. If B crashes, it will not create core file because it's effective UID (ie UID of B) is different from its real UID (ie UID of A).