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
0
votes
2 answers

How to make core dumping in linux for every process?

How make linux core dumping for every process not only for deaemons? Thanks!
Svisstack
  • 236
  • 5
  • 12
0
votes
2 answers

Splitting up SQL server dump

Is there a way how to split up dump of whole database server (with such tables as 'mysql' or 'information_schema') to single databases? Looking for better way than insert this whole dump and export needed databases... Need to recover only part of…
Marek Sebera
  • 271
  • 3
  • 16
0
votes
2 answers

How can I estimate the final size and processing time necessary to dump my entire repo?

Assume an SVN setup that consists of a single repo with nested project folders, something like this: \ - trunk - - projectA - - - trunk - - - - ... - - - branches - - - - ... - - projectB - - - trunk - - - - ... - - - branches - - - -…
Chris Bloom
  • 124
  • 1
  • 7
0
votes
1 answer

CentOS /sbin/dump to FTP

I want to do full backup of my cloud image to my FTP server by using this command: /sbin/dump -0uan -f - / | gzip -9 How do I send this to FTP server just by adding | ftp ... ?
MatBanik
  • 379
  • 3
  • 7
  • 28
0
votes
2 answers

Postgresql migration without dump

Greetings, after a hdd failure, I have a PostgreSQL DB restored, but OS is not working. I try to copy it to another server with a newer version of PostgreSQL but all I managed to get is: An old version of the database format was found. You need to…
dayan
0
votes
1 answer

How to dump a stream for a defined amount of time on a schedule basis

I have a video stream from a video4linux device /dev/dsp/adapter0/dvr0 I want to programmatically dump this stream for a predefined amount of time. I think to schedule the jobs I might use cron and update it each day? Any advice on how to achieve…
fabrizioM
  • 101
  • 2
0
votes
1 answer

Capturing text from windows applications

I had an application a while back that would allow me to dump text from any application on screen to a text file. Unfortunately, I used it so rarely that I don't remember what the name of it was. I found a similar application here:…
bshacklett
  • 1,378
  • 4
  • 19
  • 39
0
votes
4 answers

What's the meaning of consistent dataset? (MySQL)

I do daily backups of my mysql databases with mysqldump+scheduled tasks but, as i can read on this answer, mysqldump does not guarantee a consistent dataset... what's the meaning? That means that if someone will access the website while i am backing…
Magnetic_dud
  • 1,036
  • 2
  • 15
  • 29
0
votes
1 answer

Page files and dump files and D: drives on Windows Server 2008

I have a Windows 2008 server with 7.5 GB of RAM and I want to get complete crash dumps off it. I started by moving the page file mostly off the C: drive - I left a small 64-MB page file on the C: drive so there'd be one, but added a 8 GB initial and…
Ernest Mueller
  • 1,199
  • 2
  • 12
  • 25
0
votes
0 answers

mount LVM2 dump or extract files

I have a dump of a filesystem. I dont know how it was created. I want to extract all the files and the filestructure. file dump.bin says it is a LVM2 PV (Linux Logical Volume Manager) file and prints a UUID and the size. I tried to use kpartx like…
Vincent
  • 1
  • 1
0
votes
0 answers

How to troubleshoot multiple services and applications crashing at the same time?

Our application is run on multiple VMs (isolated instances). It comprises of a few services and ASP.NET website. This issue is happening on almost all of them to some degree. It was found that the service was crashing often, like every 2-4 hours,…
0
votes
1 answer

Detecting database breach

I wonder about detecting database breach. Currently, I use auditd to detect making database dump with mysqldump. I wonder what more can I do to detect potential database breach. Thanks for any ideas!
0
votes
1 answer

Automating GDB memory dumps

I'm trying to dump memory from a process on my Linux machine using GDB, but I'm trying to automate this using a script. So far I've been using the following commands (example): $ gdb --pid [pid] (gdb) dump memory dump_file 0x00621000 0x00622000 Is…
0
votes
1 answer

How does the 'stop' mode in Proxmox' vzdump backup tool work?

So i'm currently using vzdump with the parameter --mode stop. In the description it says that the VM gets shut down before the actual backup starts and after the backup has been started the VM gets started again - if it has been running before. Does…
0
votes
1 answer

Dump an external database in Kubernetes

I have created a Kubernetes CronJob (in AKS) to run a database dump (the database is not located inside the Kubernetes cluster). This CronJob create a Job each day which will dump the database in a single file and upload this file in a remote…
Alexis
  • 3
  • 1
1 2 3
9
10