Skip to content
jcdutton edited this page Jul 22, 2025 · 2 revisions

This page describes how to download, compile and install "ectool". If you have fedora, you probably need to install some tools first. sudo dnf install gcc-c++ cmake ccache libftdi-devel

Start by downloading the source code from github:

git clone https://github.com/jcdutton/ectool.git

cd ectool

mkdir build

cd build

cmake ..

make

the "ectool" will now be in ... ectool/build/src/ectool

to make it easy to use, copy it to /usr/sbin

cp ./src/ectool /usr/sbin

To test "ectool"

sudo ectool version

Clone this wiki locally