blob: 190a3bbe5b4c7ff444c1a00e5883c5d5f178e824 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
IMPORTANT:
kc v2.4 has introduced a new database file format that is incompatible
with the older one (<2.4).
Dump all your data to files before upgrading to version 2.4 and re-import:
1) Dump the old database with the old version of kc:
$ kc -k ~/.kc/default.kcd
Password:
<example_chain% > dump kcdump
Dump OK
<example_chain% > quit
$ ls kcdump.xml
kcdump.xml
2) Make a backup, just in case
$ mv ~/.kc/default.kcd ~/.kc/default.kcd-backup
3) Upgrade kc to version 2.4
4) Create a new, empty database file and import the dump
$ kc
Creating '~/.kc/default.kcd'
Using '~/.kc/default.kcd' database.
New password (empty to cancel):
New password again (empty to cancel):
<default% > importxml -k kcdump.xml
Import OK
<example_chain% > write
Save OK
<example_chain% > quit
5) Test if the import is ok
6) Remove the dump
rm -P kcdump.xml
|