1# download sedutil
2
3# make sure requisite libs are installed
4sudo apt update && sudo apt upgrade -y
5sudo apt install -y build-essential g++
6
7# install make tools
8sudo apt install autoconf -y
9
10# build sedutil (run from project root)
11autoreconf -i
12./configure
13make
Enable TPM libata.allow_tpm=1
by editing the GRUB config
1sudo nano /etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash libata.allow_tpm=1"
sudo update-grub
reboot
Add sedutil-cli
to $PATH
so that it can be executed from anywhere in the shell
1export PATH=$PATH:/home/aamnah/sedutil/sedutil-cli
2sudo ln -s /home/aamnah/sedutil/sedutil-cli /usr/bin/sedutil-cli
3source ~/.bashrc