- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Memory Fault (coredump) when applying sed to l...
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-30-2001 09:43 AM
10-30-2001 09:43 AM
Any suggestions on how to:
1) prevent or diagnose the sed coredumps
2) work arounds for the awk line length limit
TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 09:51 AM
10-30-2001 09:51 AM
Re: Memory Fault (coredump) when applying sed to large file
This could be due to maxdsiz kernel parameter. Check the value of your maxdsiz on the system and adjust it accordingly.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 09:53 AM
10-30-2001 09:53 AM
Re: Memory Fault (coredump) when applying sed to large file
If your script has comments of more than 200 chars, awk will coredumps !! This might be fixed already in 11.x. I'm not sure ..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 11:28 AM
10-30-2001 11:28 AM
SolutionYour fix for the awk line length limit is to use gawk available from any of the HP-UX Porting Centres.
http://hpux.connect.org.uk/hppd/hpux/Gnu/gawk-3.1.0/
Unlike awk, gawk has dynamically allocated record lengths and can be set from the command line to any arbitrary length.
Clay
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-30-2001 12:38 PM
10-30-2001 12:38 PM
Re: Memory Fault (coredump) when applying sed to large file
I'll check these out with my SA and let you know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-06-2001 03:55 PM
12-06-2001 03:55 PM
Re: Memory Fault (coredump) when applying sed to large file
Bottomline, I may never know if gawk was truly the answer, tho I suspect it is.