- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Confusion between crash dump and swap area
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
12-11-2006 08:20 PM
12-11-2006 08:20 PM
Does the dump device require configuration, would editing /etc/rc.config.d/savecrash be sufficient to point to this dump area ?
Any thoughts,
Berd
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 09:27 PM
12-11-2006 09:27 PM
Re: Confusion between crash dump and swap area
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 09:44 PM
12-11-2006 09:44 PM
SolutionJust do a man on "lvlnboot" you will get complete details, I just did a cut paste of dump info for you.
Create a logical volume that will be used as the dump volume.
This volume should be contiguous.
lvcreate -n dump -L 64 -C y /dev/vglvmroot
Specify that the logical volume, root, will be used as the root
volume.
lvlnboot -r /dev/vglvmroot/root
Specify that the logical volume, boot, will be used as the boot
volume.
lvlnboot -b /dev/vglvmroot/boot
Specify that the logical volume, swap, will be used as the
primary swap.
lvlnboot -s /dev/vglvmroot/swap
Specify that the logical volume, dump, will be used as the dump
volume.
lvlnboot -d /dev/vglvmroot/dump
Display the results of the previous operations.
lvlnboot -v /dev/vglvmroot
The following example shows configuration of multiple dump volumes.
Specify that logical volumes /dev/vg00/swap1, /dev/vg00/dump2, and
/dev/vg00/dump3 should be used as the dump logical volumes and that
/dev/vg00/swap1 should also be used as primary swap. Assume that the
volume group and the logical volumes have been created and the logical
volumes are contiguous.
lvlnboot -s /dev/vg00/swap1
lvlnboot -d /dev/vg00/swap1
lvlnboot -d /dev/vg00/dump2
lvlnboot -d /dev/vg00/dump3
On your second question, Yes, it will move from dump area to the /var/adm/crash
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 09:50 PM
12-11-2006 09:50 PM
Re: Confusion between crash dump and swap area
So crashconf -v will only show me the dump area. In order to confirm the save area I need to look at /etc/rc.config.d/savecrash.
Is that correct ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 09:59 PM
12-11-2006 09:59 PM
Re: Confusion between crash dump and swap area
Just do a lvlnboot -v
That will display the boot, dump and swap information.
As mentioned, unless you set the parameters in /etc/rc.config.d/ both crashconf and savecrash.
and ensure that you have /var/adm/crash created.
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-11-2006 10:06 PM
12-11-2006 10:06 PM
Re: Confusion between crash dump and swap area
I am aware of how to setup the boot/dump/swap areas, but I was unsure as to how to translate the output from crashconf.
Crashconf display dump areas only, not saved dump areas.
Cheers,
BErd