[go: up one dir, main page]

Menu

[3fa3ea]: / BUILD  Maximize  Restore  History

Download this file

37 lines (26 with data), 853 Bytes

 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
= build pre-reqs =
Packages: automake, autoconf, libtool, gcc, openssl-devel, make
= build steps =
$ autoreconf -ivf
$ ./configure
$ make
# make install
= runtime pre-reqs =
For using tpm-luks with a LUKS key on your rootfs volume: dracut grubby
All uses: cryptsetup gawk coreutils tpm-tools-1.3.8 trousers-0.3.9
tpm-luks requires very recent tpm-tools and trousers versions, likely not
included in your distro. To get these versions, you'll need to install them
from their upstream repositories:
$ git clone git://trousers.git.sourceforge.net/gitroot/trousers/trousers trousers.git
$ git clone git://trousers.git.sourceforge.net/gitroot/trousers/tpm-tools tpm-tools.git
$ cd trousers.git
$ sh bootstrap.sh
$ ./configure
$ make
# make install
$ cd ../tpm-tools.git
$ sh bootstrap.sh
$ ./configure
$ make
# make install
EOF