Questions tagged [dump]

In computing, a dump refers to recording the contents of the working memory of a computer program or operating system at a specific time, generally when it has terminated abnormally (crashed). Dumps are written to file and can be useful in debugging and diagnosing the crash that prompted the dump.

In computing, a dump refers to recording the contents of the working memory of a computer program or operating system at a specific time, generally when it has terminated abnormally (crashed). Dumps are written to file and can be useful in debugging and diagnosing the crash that prompted the dump.

144 questions
3
votes
2 answers

Understanding core dump (Solaris 11 crash)

I'm still trying to get behind crashes on my Solaris 11 system. Recently, a core dump has been written during the crash. Looking into it with mdb yields > $C ffffff0021c09430 vpanic() ffffff0021c09460 vcmn_err+0x2e(3, fffffffff7a8a830,…
Pavel
  • 1,038
  • 1
  • 11
  • 30
3
votes
2 answers

how to get text with sed?

i want to grab the the text between tok98 and 5678 and dump that out to a file. if the tok98 and the 5678 was on the same line i can use this sed -n 's/.*\(tok98\)\(.*\)\(5678\).*/\2/p' testfile.txt > text.dmp but when the tokens are vertically…
Darkmage
  • 323
  • 3
  • 12
3
votes
3 answers

Good practices for backing up MySQL on a large scale

I am a newbie to DB and in particular to MySQL. Are there any good practices to backup MySQL on a large scale? For example, there are a few things I've already found. Use mysqlbackup (physical backup) instead of mysqldump. increase key_buffer_size…
com
  • 261
  • 2
  • 15
3
votes
3 answers

SVNAdmin Load Returns Checksum Mismatch

I'm trying to load a svn dumpfile onto my RHEL server. The dumpfile was loaded from our old Ubuntu server and I used svnadmin create reponame and then svnadmin load --quiet reponame < dumpfilename. After a short time, I receive the following…
SidC
  • 369
  • 3
  • 9
  • 23
3
votes
2 answers

Programme that accepts stdin, then writes to a datetime stamped file?

I wonder is there a programme that'll do what I want. This is like an streaming log rotation programme. For the linux/unix command line. Let's say I have some input that is streaming some data. I want to write it a file, but a different file per day…
Amandasaurus
  • 31,471
  • 65
  • 192
  • 253
3
votes
3 answers

Can I delete java dump files (java core dump, heap dump, snap dump, etc)

Can dump files like java core dump, heap dump, snap dump, be deleted? They are occupying lots of space on the server. Is there any usage of this file? Will anything happen on production servers if i delete these? The files I see…
sathishkumar
  • 71
  • 2
  • 2
  • 6
3
votes
1 answer

Analyze contents of a dump file

Is it possible to extract some details from a file generated with the dump(8) command on a FreeBSD system? Preferably, I'd like to see the file sizes for each file inside, to see what exactly makes my incrementals so large. I know there's the…
3
votes
2 answers

Interpreting minidump files from Windows Server 2008

I have a couple of minidump files generated by blue screen crashes on a Windows Server 2008 R2 x64 machine. I have installed the debugging tools and I am able to look at the contents of these files. However, I don't know how to find out the device…
CesarGon
  • 440
  • 3
  • 14
  • 27
2
votes
2 answers

Postgres 10.1 slow on Ubuntu 16.04

Installing a single table-dump is significant slower on U16.04 (and higher) than on U14.04. The test was done on the same computer with default settings. testdb=# \d photos_searchlog Table…
Barmi
  • 439
  • 1
  • 6
  • 15
2
votes
1 answer

make a memory dump of a large w3wp instance

I have a web service that under normal conditions consume about 6-7 GB of memory. Sometimes, however, consumption spikes to 11-12 GB and I want to figure out why. For that I want to make a memory dump of the w3wp.exe running that service so I could…
n0rd
  • 181
  • 2
  • 7
2
votes
0 answers

BIND cache dump file format parsing

I'm trying to analyze the contents of BIND's cache by looking into dump files, the ones generated by rndc dumpdb -cachedb. ; ; Start view _default ; ; ; Cache dump of view '_default' (cache _default) ; $DATE 20160606155942 ; authanswer . …
André Fernandes
  • 969
  • 1
  • 10
  • 25
2
votes
2 answers

/sbin/dump: "Bad magic number in super-block while opening filesystem"

I'm attempting a backup of one of our servers: [root@butler /]# /sbin/dump -0uan -f - / | gzip -2 | ssh -c blowfish IRUser@192.168.0.225 dd of=/RAIDPOOL01/sysbackup/full-backup-`date '+%d-%B-%Y'`.dump.gz This gives me a strange error: DUMP: No…
fredrik
  • 731
  • 15
  • 20
2
votes
1 answer

What steps are required to debug a memory.dmp? (walkthrough included)

I woke up to this in my eventlog today: The computer has rebooted from a bugcheck. The bugcheck was: 0x000000ef (0xffffe0018668f080, 0x0000000000000000, 0x0000000000000000, 0x0000000000000000). A dump was saved in: C:\Windows\MEMORY.DMP. Report…
makerofthings7
  • 8,911
  • 34
  • 121
  • 197
2
votes
1 answer

Virtualized Windows 2008 R2 throws random BSOD, but writes no minidumps

we are experiencing random BSODs inside a customers VMware-hosted RemoteDesktop-server. The BSODs happen nearly weekly. Curious thing is, the virtual machine does not write any dumps we could analyze, no minidumps in %systemroot%\minidump and no…
HannesS
  • 322
  • 1
  • 5
  • 17
2
votes
9 answers

How can I see what is on line 149351 of a large file?

I am trying to import a large MySQL dump file and am getting a consistent error on a certain line 149,351 (out of 4207442). I would like to see what that line is. The best way I have found to do this is like this: head -149351 dump.sql |…
Jeremy French
  • 675
  • 3
  • 12
  • 25
1 2
3
9 10