Makefile: Fix order of arguments in linker call
[dmsetup-tc.git] / README
blobc4df393d19a488b22787bdb7a03ced17aff3fa5f
1 dmsetup-tc is a small utility that does what TrueCrypt(R) doesn't do:
2 mount encrypted system volumes. It does not work on other TrueCrypt(R)
3 volumes.
6 REQUIREMENTS
7 ============
9 * You need libgcrypt (tested with version 1.2.4) and its development headers.
10 * Currently, a little-endian system is required.
13 HOW TO USE IT
14 =============
16 Suppose you've got encrypted system volumes (or just one, doesn't matter) on
17 /dev/sda, and you want to mount /dev/sda1. Then you just do the following (as
18 root):
20     dmsetup-tc /dev/sda /dev/sda1 | dmsetup create foobar
22 This will create /dev/mapper/foobar which you can now mount just like a plain
23 old unencrypted partition.
25 Once you get tired of your filesystem and umount it, don't forget to get rid
26 of the mapped device afterwards:
28     dmsetup remove foobar
30 If you have the TrueCrypt volume header in a file, you can pass that as the
31 first argument instead of a device name.
34 CONTRIBUTE
35 ==========
37 dmsetup-tc is available via Git. For more information, visit
38 <http://repo.or.cz/dmsetup-tc.git>.
41 FEEDBACK
42 ========
44 If anything breaks or you have suggestions, please let me know! Just send an
45 e-mail to <jk@jk.gs>. Thanks!
47 --Jan