- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- egrep: not enough memory
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-10-2000 03:01 AM
08-10-2000 03:01 AM
egrep: not enough memory
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 03:04 AM
08-10-2000 03:04 AM
Re: egrep: not enough memory
ive seen a similar problem with the more command on HP-UX 11. Eventually the RC said there is a problem with it which will be fixed soon. For now, copy the HP-UX 10.20 version of more to our 11 box and it works fine! Try using the 10.20 version of the egrep binary and see if that works.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 03:50 AM
08-10-2000 03:50 AM
Re: egrep: not enough memory
You can check/change it in sam->kernel configuration->configurable parameters
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 05:01 AM
08-10-2000 05:01 AM
Re: egrep: not enough memory
Depending on how much VM you require, you could still be running out of room in your entire VM pool. What are your TOTAL figures when you run swapinfo -tma? Usually this type of error message is reflective of not enough swap. Also, do you have psuedo swap enabled? This will allow the Memory Management subsystem to use some of your available physical memory as swapspace.
Check kernel parameter swapmem_on for this.
Tony
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 05:27 AM
08-10-2000 05:27 AM
Re: egrep: not enough memory
Try setting the kernel parameter 'large_ncargs_enabled' to 1. This allows larger argument lists.
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 05:58 AM
08-10-2000 05:58 AM
Re: egrep: not enough memory
Another thought: If you are doing something like searching a large number of files in a directory, as for example:
# grep string *
...then instead try:
# find . -type f -print | xargs grep string
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2000 06:20 AM
08-10-2000 06:20 AM
Re: egrep: not enough memory
Set swapmem_on=1 to enable pseudo swapping.
Check out more on kernel tuning: http://www.docs.hp.com/hpux/content/KCparams.OverviewAll.html