Go to file
2007-02-05 14:40:30 +00:00
.gitattributes OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
.gitignore OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
elfutils-0.124-compile-fix.diff OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
elfutils-0.124-no-osl.tar.bz2 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
elfutils-portability.patch OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
makedumpfile-1.1.0.tar.bz2 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
makedumpfile-coptflags.diff OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
makedumpfile-static-elfutils.diff OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
makedumpfile.changes OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
makedumpfile.spec OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
README OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00
ready OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/makedumpfile?expand=0&rev=1 2007-02-05 14:40:30 +00:00

Introduction:
  To shorten the size of the dumpfile and the time of creating the
  dumpfile, makedumpfile copies only the necessary pages for analysis
  to the dumpfile from /proc/vmcore.   You can specify the kind of
  unnecessary pages with dump_level. If you want to shorten the size
  further, enable the compression of the page data.

Download:
    https://sourceforge.net/projects/makedumpfile/

Usage:
  makedumpfile [-c] [-E] [-d dump_level] [-x vmlinux] dump_mem dump_file

Example:
  If you want to exclude pages filled by zero, cache pages, user pages
  and free pages and to enable compression, please execute the following
  command.

  # makedumpfile -c -d 31 -x vmlinux /proc/vmcore dumpfile

SSH transporting support:
  For ssh transporting support, -F and -R options are added.
  A panic system sends dump data to a remote host with -F option, and
  a remote host re-arranges dump data received to a normal dumpfile
  (readable by analysis tools) with -R option.
  Example-1:
  # makedumpfile -F -cd31 -x vmlinux /proc/vmcore | ssh user@host "makedumpfile -R dumpfile"

  A perl script makedumpfile-R.pl implements the same function as '-R'
  option. Perl script does not depend on architecture, and a lot of
  systems have perl command. Even if a remote host does not have the
  makedumpfile command, it is possible to transport a dumpfile to a
  remote host with running this script.
  Example-2:
  1. Transport the script.
    # scp makedumpfile-R.pl user@remote:makedumpfile-R.pl
  2. Transport a dumpfile. 
    # makedumpfile -F -cd31 -i config /proc/vmcore | ssh user@remote "./makedumpfile-R.pl dumpfile"