Skip to content

Example of how to extract say the 'Template' from the dump file? #77

Answered by curzon01
Jibun-no-Kage asked this question in Q&A
Discussion options

You must be logged in to vote

Use JSON output format for backup instead of dmp files, this allows editing of your backup data and restoring subset of data.

Example for 'Template' related config data:

Step 1: Extract dmp data into human readable format (JSON)

decode-config.py -s config.dmp -o config.json

to reduce the JSON file before editing, the output can be limited to a command group (template is part of the Management command group):

decode-config.py -s config.dmp -o config.json -g Management

This creates an editable JSON file config.json.

Both examples work, but the second only contains the configuration data of Management cmnd and is easier to work with.

Step 2: Edit the generated JSON file to limit it to the de…

Replies: 3 comments 6 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by curzon01
Comment options

You must be logged in to vote
4 replies
@curzon01
Comment options

@Subnum12
Comment options

@curzon01
Comment options

@curzon01
Comment options

Comment options

You must be logged in to vote
2 replies
@curzon01
Comment options

@curzon01
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants
Converted from issue

This discussion was converted from issue #76 on October 20, 2023 08:37.