Instruction using curl scripts to download and install iKGT
To download and install iKGT for Debian systems, use the following curl command:
###############################################################################
# This script is used to install the iKGT binary installation package on
# a Debian/Ubuntu system through the curl command.
# The uasge of this script is:
# curl -sSL <URL>/ikgt_deb_curl.sh | sudo bash
# It will download and install the iKGT installation package automatically.
###############################################################################
#!/bin/bash
servername=01.org/sites/default/files/downloads/intel-kernel-guard-technology
# get the ikgt1.0-0amd64deb.tar.gz
wget http://${servername}/ikgt1.0-0amd64deb.tar.gz
if [ $? -ne 0 ]; then
echo "Exit - fail to download ikgt1.0-0amd64deb.tar.gz!"
exit
fi
# unzip the ikgt1.0-0amd64deb.tar.gz
tar -xzf ikgt1.0-0amd64deb.tar.gz
cd ikgt_debian_package
chmod a+x *.sh
# install iKGT
./ikgt_deb_install.sh ikgt_1.0-0_amd64.deb
To download and install iKGT for RPM systems, use the following curl command:
###############################################################################
# This script is used to install the iKGT binary installation package on
# a RPM installation system through the curl command.
# The uasge of this script is:
# curl -sSL <URL>/ikgt_rpm_curl.sh | bash
# It will download and install the iKGT installation package automatically.
###############################################################################
#!/bin/bash
servername=01.org/sites/default/files/downloads/intel-kernel-guard-technology
# get the ikgt1.0-0x8664rpm.tar.gz
wget http://${servername}/ikgt1.0-0x8664rpm.tar.gz
if [ $? -ne 0 ]; then
echo "Exit - fail to download ikgt1.0-0x8664rpm.tar.gz!"
exit
fi
# unzip the ikgt1.0-0x8664rpm.tar.gz
tar -xzf ikgt1.0-0x8664rpm.tar.gz
cd ikgt_rpm_package
chmod a+x *.sh
# install iKGT
./ikgt_rpm_install.sh ikgt-1.0-0.x86_64.rpm
After the command, you will be prompted to reboot your system. The iKGT will be started in next boot.